/*!
 * Madosel Navigation Tabs 1.0.0-alpha12
 * Copyright 2020-2021 Kenan Gündoğan
 * https://www.madosel.com
 * Licensed under MIT https://github.com/kenangundogan/madosel/blob/master/LICENSE
 * Released under the MIT License
 */

@import "base/variable";

.navigation-tabs-container{
    position: relative; width: 100%;
    .navigation-tab-menu{
        position: relative; width: 100%; 
        display: flex;
        .navigation-tab-menu-item{
            position: relative;
            min-height: 70px;
            display: flex; align-items: center;
            border-radius: 5px; padding: 20px;
            cursor: pointer;
            border: dashed 1px #dedede; 
            white-space: pre;
            &.show{
                background-color: $primary-color-light;
                &:before{
                    content: "";
                    position: absolute; z-index: 10;
                    background-color: $primary-color-light;
                }
            }
        }
    }
    .navigation-tab-content{
        .navigation-tab-content-item{
            display: none;
            position:relative; overflow: hidden;
            padding: 20px; border: dashed 1px #dedede; 
            border-radius: 5px;
            &.show{
                display: block;
                background-color: $primary-color-light;
            }
        }
    }

    &.top{
        .navigation-tab-menu{
            .navigation-tab-menu-item{
                margin: 0 10px 10px 0;
                &.show{
                    &:before{
                        left: -1px; bottom: -12px;
                        width: 100%; height: 30px;
                        border-left: dashed 1px #dedede;
                        border-right: dashed 1px #dedede;
                    }
                }
            }
        }
    }

    &.right{
        display: flex; flex-direction: row-reverse;
        .navigation-tab-menu{
            flex-direction: column;
            .navigation-tab-menu-item{
                margin: 0 0 10px 10px;
                &.show{
                    &:before{
                        top: -1px; left: -12px;
                        width: 30px; height: 100%;
                        border-top: dashed 1px #dedede;
                        border-bottom: dashed 1px #dedede;
                    }
                }
            }
        }
    }

    &.bottom{
        display: flex; flex-direction: column-reverse;
        .navigation-tab-menu{
            .navigation-tab-menu-item{
                margin: 10px 10px 0 0;
                &.show{
                    &:before{
                        left: -1px; top: -12px;
                        width: 100%; height: 30px;
                        border-left: dashed 1px #dedede;
                        border-right: dashed 1px #dedede;
                    }
                }
            }
        }
    }

    &.left{
        display: flex;
        .navigation-tab-menu{
            flex-direction: column;
            .navigation-tab-menu-item{
                margin: 0 10px 10px 0;
                &.show{
                    &:before{
                        top: -1px; right: -12px;
                        width: 30px; height: 100%;
                        border-top: dashed 1px #dedede;
                        border-bottom: dashed 1px #dedede;
                    }
                }
            }
        }
    }

    
}