// Header
header {
    margin-bottom: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    @include trans();

    &.nav-up{
        .header{
            @include mqx(t){
                height: 72px;
            }
        }
        .navbar {
            @include mqx(t){
                &:after{
                    height: 72px;
                }
            }
            .navbar-brand {
                margin: 10px 0 0;

                > img{
                    transform: scale(0.8);
                }
            }
            .top-menu{
                padding: 0;
            }
            .navbar-toggle{
                margin: 25px 0;
            }
        }
    }

    .header{
        @include cfx;
        text-align: center;
        transition: .2s height ease-in-out;

        @include mqx(t){
            height: 94px;
        }
    }
    .navbar {
        border: none;
        margin-bottom: 0;
        border-radius: 0;
        background: $black;

        @include mqx(t){
            background: none;
            position: relative;

            &:after{
                content: '';
                position: absolute;
                background: $black;
                left: 0;
                top: 0;
                width: 100%;
                height: 94px;
                z-index: -1;
                transition: .2s height ease-in-out;
            }
        }

        .nav-con {
            @include cfx();

            .navbar-header {

                .navbar-brand {
                    height: 78px;
                    transition: .2s padding ease-in-out;

                    img {
                        height: 50px;
                        transition: .2s scale ease-in-out;
                    }
                    @media (max-width: $mobile) {
                        float: none;
                        margin: 0 auto;

                        img {
                            margin: 0 auto;
                        }
                    }
                }
                @media (min-width: $mobile) {
                    display: inline-block;
                }
            }
        }
        .lang-dropdown{
            &.open{
                > a{
                    border-bottom: 1px solid $black;

                    &:hover,
                    &:focus{
                        border-bottom: 1px solid $black;
                    }
                }
            }
        }
        .dropdown{
            &.open{
                > a{
                    background: transparent;
                    border-bottom: none;

                    &:hover,
                    &:focus{
                        color: #fff !important;
                        background: transparent;
                        border-bottom: none;
                    }
                }
            }
            > a{
                padding: 0 15px;
                font-size: 15px;
            }
            .lang-label{
                display: inline-block;
                line-height: 26px;
                font-size: 19px;
                color: #fff;

                @include mqx(t){
                    color: $black;
                }
                i {
                    font-size: 12px;
                }
            }
        }
        .header-icon{
            display: block;
            float: left;
            padding: 15px;

            svg{
                fill:#fff;
                width: 25px;
                position: relative;
                top: 7px;
                margin-top: -7px;
            }
            .hover{
                @include trans;
                opacity: 0;
            }
            &:hover{
                .hover{
                    opacity: 1;
                }
            }
        }
        .count{
            width: 24px;
            font-size: 14px;
            line-height: 24px;
            background: #e1e1e1;
            color: $black;
            text-align: center;
            display: inline-block;
            border-radius: 50%;
            margin-left: 3px;
        }
        .search-from{
            position: relative;
            margin: 0 15px;

            input[type="text"]{
                background-color: transparent;
                border: none;
                border-bottom: 1px solid #fff;
                border-radius: 0;
                padding: 13px 0;
                font-style: italic;
                color: #fff;
            }
            input[type="submit"]{
                position: absolute;
                top: 0;
                right: 0;
                width: 20px !important;
                height: 25px !important;
                background: transparent;
                border:none;
                background: url(../img/icons/search.png) no-repeat;
                padding: 0;
                margin: 12px 0;
                border: 0;
                transform: scaleX(-1) #{"/*rtl:scaleX(1)*/"};
                -webkit-transform: scaleX(-1) #{"/*rtl:scaleX(1)*/"};
            }
        }
        .navbar-brand{
            float: none;
            display: inline-block;
            padding: 0;
            margin: 15px 0;

            @include mqx(t){
                margin: 22px 0;
            }
            > img{
                margin: 0 auto;
            }
        }
        .top-menu{
            padding: 11px 0;
            transition: .2s padding ease-in-out;

            &.navbar-right{
                @include mqx(t){
                    float: right;
                }
            }
            &.search-menu{
                @include mqx(t){
                    display: none;
                }
            }

            > li{
                display: inline-block;

                &:first-child{
                    a{
                        padding-left: 0;
                    }
                }

                a{
                    @include cfx;
                    padding: 15px;

                    @include mqx(l){
                        padding: 15px 10px;
                    }
                }
            }
            .dropdown-menu > li > a{
                padding: 10px 15px;
            }
        }
        .navbar-collapse{
            text-align: center;
            
            @media (max-width: 880px) {
                text-align: left;
                background: #eee;
                width: 95%;
                height: auto;
                max-height: 86vh;
                overflow-x: hidden;

                .main-nav > li{
                    &.open > a{
                        color: $black;
                    }
                    &.menu-cart{
                        > a{
                            &:hover,
                            &:focus{
                                border-left: 7px solid transparent;
                            }
                        }
                    }
                    > a{
                        color: $black;
                        border-left: 7px solid transparent;
                        margin: 0;
                        padding: 10px 15px;


                        @include mqx(t){
                            font-size: 16px;
                        }
                        &:hover,
                        &:focus{
                            border-left: 7px solid $black;
                            color: $black !important;
                        }

                    }
                }
                .dropdown-menu.mega-menu .mega-level{
                    padding: 0 20px;

                    a {
                        color: $black;

                        &:hover,
                        &:focus {
                            color: $black !important;
                        }
                    }
                }

            }
        }
        .navbar-toggle{
            float: left;
            margin: 36px 0;
            border: none;
            padding: 0;
            transition: .2s margin-top ease-in-out;

            @include mqx(t){
                width: 64px;
            }
            &:hover,
            &:focus{
                background: none;
            }

            &[aria-expanded=true],
            &.active {
                .icon-bar {
                    &:nth-of-type(2) {
                        transform: translateY(12px) rotate(45deg);
                    }
                    &:nth-of-type(3) {
                        opacity: 0;
                    }
                    &:nth-of-type(4) {
                        transform: translateY(-8px) rotate(-45deg);
                    }
                }
            }
            .icon-bar {
                background: #fff;
                width: 32px;
                @include trans(.2s);

                + .icon-bar {
                    margin-top: 8px;
                }
            }
        }
        .main-nav{
            display: inline-block;
            float: none;
            
            @include mqx(t) {
                display: block;
            }
            > li{
                @include mqn(t) {
                    position: static;
                }
                position: relative;

                &.open{
                    > a{
                        color: #fff;

                        &:hover,
                        &:focus{
                            a{
                                color: #fff;
                                background: transparent !important;
                            }
                        }
                    }
                    i{
                        transform: rotate(90deg);
                    }
                }
                > a{
                    color: #e1e1e1;
                    font-size: 15px;
                    font-weight: 700;
                    text-transform: uppercase;
                    padding: 0 0 10px 0;
                    margin: 10px 15px;

                    i{
                        @include trans;
                    }
                    &:hover,
                    &:focus{
                        color: #fff;

                        &:after{
                            width: 100%;
                            left: 0;
                        }
                    }
                    &:after{
                        content: '';
                        position: absolute;
                        right: 0;
                        bottom: -3px;
                        -webkit-transition: all .5s;
                        transition: all .5s;
                        width: 0;
                        height: 2px;
                        background-color: #fff;
                    }
                }

            }
        }
        .off-menu{
            @include mqn(t){
                display: none;
            }
        }
        .menu-cart{
            &.open{
                i{
                    transform: rotate(-90deg) !important;
                }
            }
            &.profile-icon{
                .lang-label{
                    font-size: 15px;
                }
                span,i{
                    color: #959595;
                }
            }
            .dropdown-menu{
                position: absolute;
                top: 4px;
                left: 70px;

                a{
                    padding: 5px;
                }
            }
            .clearfix{
                border-bottom: 1px solid $black;
                padding-bottom: 5px;
            }
            .cart-icon{
                display: block;
                width: 20px;

                svg{
                    fill:$black;
                }
            }
        }
    }
}
.dropdown-container{
    > .row > .col-sm-8 > .row {

        .col-sm-4{
            @include mqn(t){
                &:first-of-type,
                &:nth-of-type(3),
                &:nth-of-type(4){
                    .mega-level{
                        margin-bottom: 30px;
                    }
                }
            }
            @include mqx(t){
                .mega-level{
                    margin-bottom: 20px;
                }
                &:nth-last-of-type{
                    .mega-level{
                        margin-bottom: 0;
                    }
                }
                &:nth-last-of-type(2){
                    .mega-level{
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}
.dropdown-menu.mega-menu{
    @include mqn(t){
        left: 50%;
        transform: translate(-50%,0);
        font-size: 15px;
        padding: 20px 0;
        background-position: right;
        background-size: contain;
    }
    @include mqx(t) {
        background-image: none !important;
    }


    h4{
        margin: 0 0 15px;
        color: $black;
        font-weight: bold;
        
        @include mqx(t){
            display: none;
        }
    }
    .mega-level{
        a{
            font-size: 15px;
            font-weight: 400;
            color: $black;

            @include mqx(t){
                color: #fff;
            }
            &:hover,
            &:focus{
                color: darken($black, 50%);

            }
        }
        ul {
            padding-left: 15px;

            li{
                margin: 5px 0;
            }
        }
    }
}
main{
    padding-top: 133px;

    @include mqx(t){
        padding-top: 94px;
    }
}
.home-slider{
    .slide-item,
    .vcenter{
        height: 640px;
    }
    .slide-item{
        -webkit-transform: scaleX(1) #{"/*rtl: scaleX(-1)*/"};
        transform: scaleX(1) #{"/*rtl: scaleX(-1)*/"};
    }
    .slide-content{
        text-align: center;
        width: 60%;
        margin: 0 auto;
        -webkit-transform: scaleX(1) #{"/*rtl: scaleX(-1)*/"};
        transform: scaleX(1) #{"/*rtl: scaleX(-1)*/"};

        @include mqx(t){
            width: 90%;
        }
        h2{
            font: 300 65px/1 $primaryFont;

            @include mqx(t){
                font: 300 50px/1 $primaryFont;
            }
        }
        p{
            font: 500 20px/1.2 $primaryFont;
            text-align: center;
            color: $black;

            @include mqx(t){
                font: 800 18px/1.2 $primaryFont;
            }
        }
        .btn-main{
            display: inline-block;
            text-align: center;
        }
    }
}
.slick-arrow{
    z-index: 1;
    -webkit-transform: scaleX(1) #{"/*rtl: scaleX(-1)*/"} ;
    transform: scaleX(1) #{"/*rtl: scaleX(-1)*/"} ;


    &:before{
        content: none !important;
    }
    i{
        color: $black;
        font-size: 36px;
    }
    &.slick-prev{
        right: 15px;
        left: initial;
    }
    &.slick-next{
        right: initial;
        left: 15px;
    }
}

.slick-dots{
    bottom: 25px;

    li{
        width: 38px;
        margin: 0 3px;

        &.slick-active{
            button{
                background: $black;
            }
        }
        button{
            width: 38px;
            height: 2px;
            background: #fff;
            border-radius: 0;
            padding: 0;
        }
    }
}
.slick-dotted.slick-slider{
    margin-bottom: 0;
}
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: 0;
}
.home-products{
    nav{
        text-align: center;
        margin-bottom: 50px;

        @include mqx(t){
            margin-bottom: 20px;
        }
        a{
            margin: 10px;
            color: #8b8b8f;
            font-size: 18px;
            text-transform: capitalize;
            padding-bottom: 10px;
            font-weight: 600;

            @include mqx(t){
                margin: 10px 20px;
                display: inline-block;
            }
            &.active{
                border-bottom: 2px solid $black;
                color: $black;
            }
        }
    }
}
.products-slider{
    .product-item {
        padding: 0 10px;
        outline: none;
    }
}
.product-item{
    .product-img{
        display: block;
        position: relative;

        img{
            width: 100%;
            height: auto;
            display: block;
            @include trans(.4s);

            &.hover-img{
                opacity: 0;
                position: absolute;
                top: 0;
                left: 0;
            }
            &:first-child{
                opacity: 1;
            }
            &:hover{
                opacity: 1;

                &:first-child{
                    opacity: 0;
                }
            }
        }
    }
    .sale{
        background: rgba(250,0,0,.5);
        position: absolute;
        top: 0;
        left: 15px;
        font-size: 15px;
        font-weight: bold;
        padding: 10px;
        color: #fff;
        width: 48px;
        text-transform: uppercase;

        @include mqx(t){
            font-size: 12px;
            padding: 10px;
            width: 44px;
        }
    }
    .product-content{
        a{
            color: $black;

            h2{
                font-size: 18px;
                line-height: 1.3;
                font-weight: 600;
            }
        }

        .product-footer{
            @include cfx;

            .price{
                span{
                    font-size: 14px;
                    font-weight: 600;
                }
            }
            .product-cta{
                .product-icon{
                    width: 22px;

                    &.active{
                        .hover{
                            opacity: 1;
                        }
                    }
                    svg{
                        fill: $black;
                    }
                    .hover{
                        @include trans;
                        opacity: 0;
                    }
                }
                a{
                    padding: 5px;
                    display: inline-block;

                    &:hover{
                        .product-icon{
                            .hover{
                                opacity: 1;
                            }
                        }
                    }
                }
            }
        }
    }
}

.home-news{
    @include cfx;
}
.slide-item{
    outline: none;
}
.two-equal{
    width: 350px;

    @include mqx(t){
        width: 100%;
    }
    .block {
        .block-img {
            height: 300px;
        }
    }
}
.one-big{
    width: 602px;

    @include mqx(t){
        width: 100%;
    }
    .block {
        .block-img {
            height: 602px;
        }
    }
}
.two-not-equal{
    width: 319px;

    @include mqx(t){
        width: 100vw;
    }
    .block:first-of-type {
        .block-img {
            height: 200px;
        }
    }
    .block:last-of-type {
        .block-img {
            height: 400px;
        }
    }
}
.block{
    padding: 1px;
    overflow: hidden;

    .block-img{
        position: relative;
        height: 370px;

        &:before{
            content: '';
            width: 100%;
            height: 100%;
            position: absolute;
            background:linear-gradient(rgba(255,255,255,0) 20%, rgba(0,0,0,1));
            top: 0;
            left: 0;
            opacity: .8;
        }
    }
    .block-content{
        color: #fff;
        padding: 15px;
        position: absolute;
        bottom: 0;
        width: 100%;

        h2{
            font-size: 18px;
            line-height: 1.3;
            font-weight: 600;
        }
        p{
            font-size: 14px;
            line-height: 1.3;
            font-weight: 500;
            color: #eee;
        }
        a{
            color: #fff;
            font-size: 16px;
            font-weight: 600;

            i{

            }
        }
    }
}
.hom-mob-slider{
    @include mqx(t){
        padding: 20px 0;
    }
}
.mob-news-slider{
    .slide-item {
        width: 100vw;
    }
    .block-content{
        position: initial;
        color: $black;

        h2{
            margin-top: 0;
        }
        p{
            color: $black;
        }
        a{
            color: $black;
        }
    }
}
.categories{
    background: #eee;

    .row{
        .col-sm-6{
            .category{
                margin-bottom: 30px;

                @include mqx(t){
                    margin-bottom: 15px;
                }
            }
            &:last-of-type{
                .category{
                    margin-bottom: 0;
                }
            }
            &:nth-last-of-type(1){
                .category{
                    margin-bottom: 0;
                }
            }
        }
    }
}
.category{
    position: relative;
    display: block;
    overflow: hidden;
    @include trans;

    &:hover{
        .category-img{
            transform: scale3d(1.2, 1.2, 1.2) #{"/*rtl: scale3d(-1.2, 1.2, 1.2)*/"};
        }
    }
    .category-img{
        @include trans;
        display: block;
        height: 155px;
        -webkit-transform: scaleX(1) #{"/*rtl: scaleX(-1)*/"};
        transform: scaleX(1) #{"/*rtl: scaleX(-1)*/"} ;
    }
    .category-title{
        height: 155px;
        margin: 0 50px;
        position: absolute;
        top: 0;
        left: 0;

        &.right{
            right: 0;
            left: initial;
        }
        &.white{
            color: #fff;
        }
        &.black{
            color: $black;
        }
        h2{
            font-size: 25px;
            margin: 0;
            font-weight: 600;
        }
    }
}
.checkbox-custom {
    @include cfx;

    .form-checkbox {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        display: inline-block;
        position: relative;
        background-color: transparent;
        color: #666;
        top: 10px;
        height: 20px;
        width: 20px;
        cursor: pointer;
        margin-right: 10px;
        outline: none;
        border-radius: 0;
        border: 1px solid #8b8b8f;
        margin-top: 0;

        &:focus {
            outline: none;
        }
        &:hover,
        &:checked {
            background-color: #8b8b8f;
            border: 2.5px solid #8b8b8f;
        }
    }
    label{
        margin-top: 8px;
        width: 80%;

        @include mqx(t){
            font-size: 15px;
            margin-top: 11px;
        }
    }
}
.radio-custom {
    @include cfx;
    display: inline-block;

    .form-checkbox {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        display: inline-block;
        position: relative;
        background-color: transparent;
        color: $black;
        top: 10px;
        height: 20px;
        width: 20px;
        cursor: pointer;
        margin-right: 10px;
        outline: none;
        border-radius: 50%;
        padding: 1px;
        border: 1px solid $black;
        @include trans;
        margin-top: 0;

        &:focus {
            outline: none;
        }
        &:hover,
        &:checked {
            background-color: $black;
            border: 2.5px solid $black;
        }
    }
    label{
        margin-top: 10px;
        font-weight: 600;
    }
}
// Footer
footer {
    background: $black;
    padding: 40px 0;

    .links{
        @media (max-width: 767px) {
            padding: 20px 0;
            border-bottom: 1px solid #8b8b8f;
        }
        padding: 20px 0;

        .panel-heading,
        .panel-body{
            padding: 0;
        }
        .panel-title{
            position: relative;

            > a {
                &[aria-expanded="true"] {
                    margin-bottom: 15px;
                    display: block;
                }
                &:hover,
                &:focus{
                    color: #fff;
                }
                @media (max-width: 767px) {
                    &[aria-expanded="false"]{
                        &:before {
                            -webkit-transform: rotate(90deg);
                            -moz-transform: rotate(90deg);
                            -ms-transform: rotate(90deg);
                            -o-transform: rotate(90deg);
                            transform: rotate(90deg);
                        }
                    }
                    &:before {
                        background: #fff;
                        content: '';
                        height: 2px;
                        position: absolute;
                        right: 0;
                        top: 50%;
                        -webkit-transform: rotate(0deg);
                        -moz-transform: rotate(0deg);
                        -ms-transform: rotate(0deg);
                        -o-transform: rotate(0deg);
                        transform: rotate(0deg);
                        @include trans;
                        width: 12px;
                    }
                    &:after {
                        background: #fff;
                        content: '';
                        height: 2px;
                        position: absolute;
                        right: 0;
                        top: 50%;
                        width: 12px;
                    }
                }
            }
        }
        //.panel-collapse{
        //    &.collapsing,
        //    &.in{
        //        margin-top: 15px;
        //    }
        //}
        h4{
            color: #fff;
            font-size: 14px;
            pointer-events: none;
            margin: 0;

            @include mqx(t){
                pointer-events: initial;
            }
            i{
                display: none;

                @include mqx(t){
                    display: block;
                }
            }
        }
        ul{
            li{
                margin: 5px 0;

                a{
                    color: #8b8b8b;
                    @include trans;
                    font-size: 14px;

                    &:hover,
                    &:focus{
                        color: lighten(#8b8b8b, 15%);
                    }
                }
            }
        }
    }
    .btn-wrapper{
        margin-top: 15px;

        @include mqx(t){
            text-align: center;
        }
    }
    .rights{
        font-size: 13px;
        color: #8b8b8b;

        @include mqx(t){
            text-align: center;
        }
    }
    .clearfix{
        text-align: center;

        > .btn-wrapper{
            margin-top: 30px;

            @include mqx(t){
                float: none!important;
            }
        }
    }
    .footer-form{
        .links{
            border-bottom: 1px solid transparent;

            h4{
                @include mqx(t){
                    text-align: center;
                }
            }
        }
    }
}
.cover-img{
    height: 245px;

    .vcenter{
        height: 245px;
    }
    .cover-content{

        h2{
            font-size: 60px;
            margin: 0;
        }
        p{
            @include mqx(t){
                display: none;
            }
        }
    }
}
.breadcrumb{
    background-color: transparent;
    padding: 15px 0;
    margin-bottom: 0;

    > li + li:before{
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        font-size: 12px;
        font-weight: 900;
        color: $grayColor;
        padding: 0 9px 0 7px;
    }
    .breadcrumb-item{
        font-size: 15px;
        font-weight: 600;

        a{
            color: $grayColor;
            @include trans;

            &:hover,
            &:focus{
                color: darken($grayColor, 15%);
            }
        }
        &.active{
            color: $black;
        }
    }
}
.filter{
    @media (max-width: 768px) {
        margin: -10px;
    }
    .pull-right{
        @media (max-width: 768px) {
            float: none !important;

            .text-right{
                text-align: left;
                margin: 0 10px 25px;
            }
        }

    }
    .col-sm-6{
        @media (min-width: 768px) {
            width: 100%;
        }
        @media (min-width: 769px) {
            width: 40%;
        }
        &:first-child{
            @media (min-width: 769px) {
                width: 60%;
            }

            .dropdown{
                &:last-of-type{
                    display: none;

                    @include mqx(t){
                        display: inline-block;
                    }
                }
            }
        }
    }
    .dropdown{
        display: inline-block;
        
        @media (max-width: 992px) {
            margin-right: 10px;
        }
        @media (max-width: 768px) {
            margin: 10px;
        }
        .dropdown-toggle{
            background: transparent;
            border: none;
            padding: 0 0 5px;
            font-weight: 600;
            border-bottom: 1px solid transparent;
            @include trans;

            &:hover,
            &:focus{
                border-bottom: 1px solid $black;
            }
        }
        .dropdown-menu{
            padding: 5px;
            min-width: 165px;

            a{
                display: block;
                color: $black;
                margin: 5px 8px;
                font-weight: 600;

                &:hover,
                &:focus{
                    color: lighten($black, 15%);
                }
            }
        }
    }
    .results{
        font-weight: 600;
        color: $grayColor;
    }
    .seprator{
        padding: 0 15px;
    }
}
.cart-dropdown {
    float: left;

    > a{
        padding: 10px 5px;
    }
    &.open {
        a {
            background: transparent;
        }
    }
    img {
        width: 30px;

        @media (max-width: $mobile) {
            width: 25px;
        }
    }
    .dropdown-menu.cart{
        min-width: 340px;
        padding: 10px;
        background: #eee;
        position: absolute;


        &:after{
            content: "";
            position: absolute;
            top: -10px;
            right: 37px;
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-bottom: 10px solid #eee;
        }
        @include mqx(t){
            right: 0;
            left: initial;

            &:after{
                right: 0;
            }
        }
        .cart-item{
            @include cfx;
            padding: 15px;

            &:nth-child(2n){
                background: #fff;
            }
            > a{
                float: left;
                width: 80px;
                padding: 0 5px 0 0;
            }
            a{
                @include mqx(t){
                    padding: 0 !important;
                }
            }
            .cart-content{
                float: right;
                width: 200px;
                padding-right: 5px;

                @include mqx(t){
                    margin-top: 0;
                }
                a{
                    padding: 0;
                    font-size: 18px;
                    color: $black;
                }
                h4{
                    margin: 0 0 10px;
                    line-height: 1.2;

                    @include mqx(t){
                        text-align: left;
                    }
                }
                .price,
                span{
                    font-size: 14px;
                    display: inline-block;
                }
                .price{
                    span{
                        font-size: 14px;
                        color: $black;
                    }
                }
                > span{
                    font-size: 12px;
                    padding-right: 6px;
                    margin-right: 6px;
                    border-right: 2px solid $black;
                }
            }
            .cart-img{
                height: 105px;
                margin: 0 auto;
                padding: 0 10px;

                img {
                    max-width: 40px;
                }
            }
        }
        .btn-wrapper{
            margin-top: 20px;

            .btn{
                padding: 10px 40px;
            }
        }
    }
}

.products-list{
    .product-item{
        margin-bottom: 15px;
    }
    .btn-wrapper{
        margin: 45px 0 60px;
    }
}
.profile{
    nav{
        text-align: center;

        a{
            color: $grayColor;
            font-size: 18px;
            font-weight: 600;
            margin: 0 20px;
            padding-bottom: 10px;

            @include mqx(t){
                display: inline-block;
                margin: 10px;
            }
            &:first-of-type{
                margin-left: 0;
            }
            &:last-of-type{
                margin-right: 0;
            }
            &.active{
                color: $black;
                border-bottom: 2px solid $black;
            }
        }
    }
}
.profile-content{
    margin: 50px 0;

    input{
        border-bottom: 1px solid $black;
    }
}
.select-custom{
    display: inline-block;
    position: relative;
    color: $black;
    cursor: pointer;
    margin-right: 30px;
    outline: none;
    padding: 13px 0;
    border: none;
    border-bottom: 1px solid $black;
    min-width: 100%;

    &:after{
        font-family: "Font Awesome 5 Free";
        content: "\f078";
        font-size: 12px;
        font-weight: 900;
        color: $black;
        position: absolute;
        right: 0;
        top: 18px;
    }
    select,
    option{
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: transparent;
        border: none;
        width: 100%;

        &:focus{
            outline: none;
        }
    }
}
.product-slider{
    .product-img{
        height: 700px;

        @include mqx(t){
            height: 450px;


        }
    }
}
.product-details{
    h2{
        font-size: 24px;

    }
    .mini-details{
        @include cfx;

        .sn{
            font-size: 14px;
        }
        .srp{
            font-size: 14px;
            font-weight: 800;

            @include mqx(t){
                margin-right: 0;
            }
        }
    }
}
.price{
    color: $black;
    font-size: 18px;

    @include mqx(t){
        font-size: 14px;
    }
}
.discount{
    text-decoration: line-through;
    color: $grayColor;

    @include mqx(m){
        margin-right: 0;

    }
}
.radio-label{
    position: relative;
    top: -4px;
    font-weight: 600;
    font-size: 16px;
}

.qty{
    @include mqx(t){
        margin-bottom: 10px;
    }
    span{
        position: relative;
        top: -13px;
    }
    .qty-content{
        @include cfx;
        border: 1px solid $black;
        height: 39px;
    }
    label{
        color: $black;
        font-size: 16px;
    }
    .qty-btn{
        color: $black;
        display: block;
        background: transparent;
        font-size: 20px;
        line-height: 37px;
        text-align: center;
        float: left;
        padding: 0 7px;

        &:hover,
        &:focus{
            color: $black;
        }
    }
    input{
        width: 35px;
        float: left;
        border: none;
        margin: 0;
        padding: 9px 7px;
        border-radius: 0;
        text-align: center;
        background: transparent;
    }
    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        -moz-appearance: textfield;
        margin: 0;
    }
}

.size{
    .radio-custom {
        @include cfx;
        display: inline-block;

        .form-checkbox {
            background-color: transparent;
            color: $black;
            top: 4px;
            height: 27px;
            width: 27px;
            margin-right: 0;
            border: 1px solid transparent;

            &:hover,
            &:checked {
                border: 1px solid $black;
            }
            &:disabled {
                color: $grayColor;

                &:hover{
                    border: 1px solid transparent;
                }
            }
            &:after{
                content: attr(data-value);
                position: absolute;
                top: 0;
                left: 0;
                font-size: 16px;
                padding: 3px;
            }
        }
    }
}
.cta{
    @include cfx;

    .qty{
        float: left;

        .qty-content{
            display: inline-block;
        }
    }
}
.btn-cart{
    border: none;
    background: $black;
    color: #fff;
    padding: 7px 60px;
    float: left;

    @include mqx(d){
        padding: 7px 30px;
    }
    span{
        font-weight: 600;
        position: relative;
        top: 2px;
    }
}
.icon-action{
    float: left;
    width: 40px;
    position: relative;

    .btn-wrapper{
        margin-top: 0;

        .btn-main{
            padding: 7px;
            height: 33px;
            width: 35px;

            &:hover,
            &:focus{
                fill:#fff;
            }
            svg{
                width: 18px;
                height: 18px;
                position: absolute;
                top: 45%;
                left: 50%;
                transform: translate(-50%,-50%);
            }
        }
    }
}
.out-of-stock{
    color: red;
    font-size: 12px;
    font-weight: 600;
}
.designer-desc{
    h3{
        margin: 10px 0;
        font-size: 16px;
        font-weight: 600;
    }
    p{
        font-size: 14px;
        line-height: 1.2;
    }
}
.product-tabs{
    .nav-tabs{
        border-bottom: 1px solid transparent;

        li{
            @include mqx(t){
                float: none;
                display: inline-block;
            }
            a{
                padding: 0 0 10px;
                margin-right: 25px;
                border: none;
                font-size: 16px;
                color: $grayColor;
                font-weight: 600;

                @include mqx(t){
                    margin: 10px;
                }
                &:hover,
                &:focus{
                    background: transparent;
                    border: none;
                }
            }
            &.active{
                a{
                    color: $black;
                    border: none;
                    border-bottom: 1px solid $black;
                }
            }
        }
    }
    .tab-content{
        padding: 10px;

        ul{
            font-size: 14px;
        }
        .tab-pane{
            p{
                font-size: 14px;
            }
        }
        table{
            font-size: 14px;

            thead>tr>th{
                border-bottom-color: transparent;
            }
            tbody>tr>td,
            tbody>tr>th{
                border-top-color: transparent;
            }
            td{
                color: #8b8b8f;
            }
            th{
                text-align: center;
            }
        }
    }
}
.text-link{
    color: $black;
    font-weight: 600;

    i{
        font-size: 13px;
    }
    &:hover,
    &:focus{
        color: lighten($black, 15%);
    }
}
.wear-with{
    background: #eee;

    h2{
        font-size: 24px;
        font-weight: 600;
    }
}
.related{
    background: #fff;
}
.profile-menu{
    li{
        margin: 5px 0;

        a{
            color: $black;

            &:hover,
            &:focus{
                color: lighten($black, 15%);
            }
        }
    }
}






.stepwizard {
    display: table;
    width: 100%;
    position: relative;

    .stepwizard-row {
        display: table-row;

        .stepwizard-step{
            display: table-cell;
            text-align: center;
            position: relative;

            p {
                margin-top: 10px;
            }
            button[disabled] {
                opacity: 1 !important;
                filter: alpha(opacity=100) !important;
            }
            .btn[disabled]{
                opacity: .1;
            }
            a{

                background: $black;
                padding: 4px;
                display: block;
                border-radius: 0;
            }
        }
    }
}
.setup-content{
    h3{
        font-weight: 600;
        font-size: 24px;
    }
}
.nextBtn,
.finishBTN{
    padding: 10px 60px;
    background: $black;
    @include trans;
    color: #fff;
    border-radius: 0;

    &:hover,
    &:focus{
        color: #fff;
        background: darken($black, 15%);
    }
}
.form-label{
    line-height: 38px;
}
.cart-items{
    .cart-item{
        background: #eeeeee;
        padding: 25px;

        &:nth-child(2n){
            background: #fff;
        }
        .cart-img{
            height: 300px;
            position: relative;

            .remove-cart{
                position: absolute;
                right: 10px;
                top: 10px;

                @include mqn(t){
                    display: none;
                }
            }
        }
    }
    .cart-head{
        h3{
            margin: 0 0 10px;
            font-size: 18px;
        }
    }
    .cart-icon{
        a{
            i{
                font-size: 26px;
                color: $black;
            }
            display: block;

            svg{
                width: 18px;
                height: 18px;
            }
        }
    }
    .edit-cart{

    }
    .remove-cart{

    }
    .product-cart-details{
        .qty{
            .qty-content{
                border:none;
                height: auto;
            }
            span{
                top: -6px;
            }
            .qty-btn{
                line-height: 19px;
            }
            input{
                padding: 0 7px;
            }
        }
    }
}
.mob-news-slider{
    @include mqn(t){
        display: none;
    }
}
.total{
    border-top: 1px solid #eee;

    .total-num{
        font-size: 18px;
    }
}
@media (max-width: 880px) {
    .navbar-header {
        float: none;
    }
    //.navbar-left,.navbar-right {

    //    float: none !important;
    //}
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        //float: none!important;
        margin-top: 7.5px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in{
        display:block !important;
    }
}
.profile-edit{
    @include mqx(t){
        .row.mtlg{
            margin-top: 0;
        }
        span{
            margin-bottom: 10px;
            display: block;
        }
    }


}