@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
body{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #8c8c8c;
}

/***
Custom Scrollbars
***/
::-webkit-scrollbar {  
    width: 12px;  
}  
::-webkit-scrollbar-track {  
    background-color: #eaeaea;  
    border-right: 1px solid #cecece;  
}  
::-webkit-scrollbar-thumb {  
    background-color: #cecece;  
}  
::-webkit-scrollbar-thumb:hover {  
    background-color: #aaa;  
}  
::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}

/*Selection*/
::selection {
    color: #ffffff;
    background: #010203;
}

a {
    transition: all .35s;
    color: inherit;
}
a:hover,
a:focus{
    text-decoration: none;
    color: #434343;
}

.btn{
    font-size: 14px;
    padding: 12px 20px;
    font-weight: 700;
    text-transform: uppercase;
    border: 0;
    border-radius: 3px;
    box-shadow: none !important;
    transition: all .2s ease;
}
.btn-default{
    background-color: #f1f1f1;
    color: #8c8c8c;
    text-transform: uppercase;
}
.btn-default:hover{
    background: #383838;
    color: #ffffff;
}
.btn-alt{
    background-color: #666;
    color: #ffffff;
}
.btn-alt:hover{
    background: #525252;
    color: #ffffff;
}
.btn-lg{
    font-size: 18px;
    padding: 13px 64px;
}
.btn-sm{
    font-size: 14px;
    padding: 5px 10px;
}

/*Forms*/
.form-group{
    margin-bottom: 20px;
}
.form-group>label{
    display: block;
    font-size: 15px;
    margin: 0 0 8px;
    font-weight: 700;
    color: #444;
}
.form-group>label>.required{
    float: right;
}
.form-group .custom-control{
    margin-bottom: 0;
}
.form-control{
    height: 45px;
    color: #8c8c8c;
    border-radius: 3px;
    font-size: 15px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    box-shadow: none;
    padding-left: 20px;
    padding-right: 20px;
}
textarea.form-control{
    padding-top: 15px;
    padding-bottom: 15px;
}
.modal .form-control{
    height: 60px;
}
.form-control::placeholder {
    color: #909090;
}
.form-control:focus{
    border-color: #e7e7e7;
    box-shadow: none;
}
.form-group .input-group{
    border: 1px solid #FAFAFA;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0 0 0 / 5%);
    padding-left: 25px;
    overflow: hidden;
    -ms-flex-align: center;
    align-items: center;
}
.form-group .input-group .custom-select{
    height: 20px;
    color: #03A5DB;
    font-size: 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    width: 115px;
    padding: 0 25px 0 0;
}
.form-group .input-group .form-control{
    padding-left: 10px;
    box-shadow: none;
    border-width: 0 0 0 1px;
}

.form-hint{
    font-size: 14px;
    letter-spacing: 1px;
    margin: 15px 0 0;
}
.form-hint>span{
    color: #06689B;
    font-weight: 500;
}
.date-picker {
    background-image: url(../images/icons/calendar.svg);
    background-position: right 15px center;
    background-repeat: no-repeat;
}


/*Custom Controls*/
.custom-control{
    padding-left: 25px;
    margin-bottom: 20px;
}
.custom-control:last-child{
    margin-bottom: 0;
}
.custom-control-label{
    cursor: pointer;
    color: #8c8c8c;
    font-weight: 300;
    font-size: 15px;
}
/*.custom-control-label a{
    color: #757679;
}
.custom-control-label a:hover{
    color: #DFC0BE;
}*/
.custom-control-input:focus~.custom-control-label::before{
    box-shadow: none !important;
    outline: none !important;
}
/*custom-radio*/
.custom-radio .custom-control-label::before{
    background: transparent !important;
    border: 1px solid #e7e7e7;
    width: 17px;
    height: 17px;
    top: 2px;
    left: -25px;
}
.custom-radio .custom-control-label::after{
    width: 9px;
    height: 9px;
    border-radius: 50%;
    top: 6px;
    left: -21px;
}
.custom-radio .custom-control-input:checked~.custom-control-label{
    color: #444;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before{
    background: transparent;
    border-color: #e7e7e7;
}
.custom-radio .custom-control-input:checked~.custom-control-label::after{
    background: #434343;
}

/*custom-checkbox*/
.custom-checkbox .custom-control-label::before{
    background: transparent;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    width: 17px;
    height: 17px;
    top: 2px;
    left: -25px;
}
.custom-checkbox .custom-control-label::after{
    width: 9px;
    height: 9px;
    border-radius: 0;
    top: 6px;
    left: -21px;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before{
    background: #fff;
    border-color: #e7e7e7;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after{
    background-color: #434343;
    background-image: none;
}

.modal-content{
    background-color: #ffffff;
    border-color: #F2F2F2;
    border-radius: 10px;
}
.modal-body{
    padding: 15px 40px;
}
.modal-header{
    display: block;
    padding: 30px;
    text-align: center;
    border: 0;
}
.modal-title{
    width: 100%;
    color: #4E4E4E;
    font-size: 30px;
    padding: 0 15px;
}
.modal-header p{
    color: #383838;
    margin: 7px 0 0;
}
.modal-header .close{
    outline: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1;
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    background: #4E4E4E;
    color: #ffffff;
    font-size: 16px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
}

/*Owl Override*/
.owl-theme .owl-dots{
    padding: 30px 0 0;
    text-align: center;
}
.owl-theme .owl-dots .owl-dot{
    display: inline-block;
}
.owl-theme .owl-dots .owl-dot span {
    display: block;
    width: 15px;
    height: 15px;
    margin: 5px;
    background: #010203;
    border-radius: 50%;
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span{
    background: #F4E6E5;
}
.owl-carousel .owl-nav .owl-next, 
.owl-carousel .owl-nav .owl-prev{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #d0d0d0;
    font-size: 14px;
    z-index: 1;
    transition: all .2s ease;
}
.owl-carousel .owl-nav .owl-next{
    right: -20px;
}
.owl-carousel .owl-nav .owl-prev{
    left: -20px;
}
.owl-carousel .owl-nav .owl-next:hover, 
.owl-carousel .owl-nav .owl-prev:hover{
    border-color: #434343;
    background-color: #434343;
    color: #ffffff;
}
.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
    max-width: 100%;
}


.dropdown-menu{
    background: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 0;
    padding: 10px 0;
    box-shadow: 0 0 20px rgb(0 0 0 / 16%);
}


/*header*/
.topbar{
    background-color: #444444;
    padding: 6px 0;
}
.topbar .list-unstyled{
    margin: 0 -5px;
    float: right;
}
.topbar .list-unstyled>li{
    padding: 0 5px;
    position: relative;
}
.topbar .list-unstyled>li>a{
    font-size: 13px;
    color: #ababab;
}
.topbar .list-unstyled>li>a:hover,
.topbar .list-unstyled>li>a:focus{
    color: #ffffff;
}
.topbar .dropdown-toggle::after{
    margin-left: -1px;
    vertical-align: 1px;
}

.topbar .dropdown-menu{
    padding: 0;
}
.topbar .dropdown-menu .dropdown-item{
    font-size: 13px;
    color: #ababab;
    padding: 5px 10px;
}

.header-middle{
    padding: 20px 0;
    background: #ffffff;
    position: relative;
}

.header-middle .logo img{
    width: 95px;
}

.form-inline .form-control{
    height: 47px;
    width: calc(100% - 47px);
    color: #8c8c8c;
    border: 1px solid #eee;
    border-right: 0;
    font-size: 14px;
    border-radius: 3px 0 0 3px;
    padding: 0 20px;
}
.form-inline .btn{
    width: 47px;
    flex-basis: 47px;
    height: 47px;
    text-align: center;
    padding: 0;
    line-height: 47px;
    border-radius: 0 3px 3px 0;
    font-size: 20px;
}

.header-middle .nav{
    margin: 0 -10px 0;
    padding: 0;
}
.header-middle .nav>li{
    padding: 0 10px;
}
.header-middle .nav>li>a{
    text-align: center;
    font-size: 13px;
    color: #8c8c8c;
    padding: 0;
    position: relative;
}
.header-middle .nav>li>a>i{
    display: inline-block;
    font-size: 24px;
    color: #8e8e8e;
    position: relative;
}

.header-middle .nav .dropdown-menu .dropdown-item{
    font-size: 13px;
    color: #8c8c8c;
    padding: 10px 17px;
}
.header-middle .nav .dropdown-menu .dropdown-item i{
    font-size: 17px;
    margin-right: 10px;
    vertical-align: -2px;
}

.qty{
    display: block;
    height: 15px;
    width: 15px;
    line-height: 15px;
    border-radius: 50%;
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    background-color: #434343;
    position: absolute;
    top: -2px;
    right: -8px;
}
.header-middle .nav>li>a>span{
    display: block;
    margin-top: 4px;
}
.header-middle .nav>li>a:hover,
.header-middle .nav>li>a:hover>i{
    color: #434343;
}

.header-middle .dropdown-toggle::after{
    display: none;
}
.login-dropdown-menu{
    min-width: 255px !important;
    padding: 20px !important;
}
.login-dropdown-menu .form-group{
    position: relative;
    margin-bottom: 5px;
}
.login-dropdown-menu .form-group>i{
    position: absolute;
    right: 15px;
    top: 14px;
    font-size: 15px;
    color: #8e8e8e;
}
.login-dropdown-menu .forgotpassword-link{
    display: block;
    width: 100%;
    background-color: #f6f6f6;
    padding: 5px 10px;
    font-size: 11px;
    color: #8c8c8c;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-top: -5px;
}
.login-dropdown-menu .form-check{
    margin: 10px 0;
}
.login-dropdown-menu .form-check label{
    font-size: 12px;
    color: #8c8c8c;
}
.login-dropdown-menu .btn{
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
.login-dropdown-menu .form-register-link{
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    text-transform: uppercase;
    color: #8c8c8c;
    font-weight: 500;
}
.login-dropdown-menu .form-register-link>i{
    margin-right: 10px;
}

.cart-dropdown-menu{
    min-width: 430px;
    padding: 20px;
}

.navbar {
    padding: 0 15px;
    background: #F3F3F3 !important;
}
.navbar .navbar-nav{
    width: 100%;
}
.navbar .navbar-nav .nav-link {
    color: #444444;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 15px;
    line-height: 50px;
    height: 50px;
    position: relative;
}
.navbar .navbar-nav .nav-link i{
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    color: #8c8c8c;
}
.navbar .navbar-nav .nav-item:hover .nav-link{
    background-color: #666;
    color: #fff;
}
.navbar .navbar-nav .nav-item:hover .nav-link i{
    color: #fff;
}

.navbar-toggler:focus,
.navbar-toggler:focus .navbar-toggler-icon{
    outline: 0;
}
.navbar .navbar-nav .nav-link::after{
    display: none;
}

.navbar-nav>li>.dropdown-menu{
    min-width: 220px;
    left: 0;
}
.navbar-nav>li>.dropdown-menu>li>a{
    display: block;
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 700;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
}
.navbar-nav>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li>a:active{
    background-color: #FAFAFA;
    color: #041A31;
}


@media (min-width: 992px){
    .navbar .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: rotateX(90deg);
        -moz-transform: rotateX(90deg);
        -ms-transform: rotateX(90deg);
        transform: rotateX(90deg);
        -webkit-transform-origin: top;
        -moz-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        -o-transition: 0.3s;
        transition: 0.3s;
        -ms-transition: 0.3s;
        -moz-transition: 0.3s;
        -webkit-transition: 0.3s;
    }
    .navbar .dropdown:hover>.dropdown-menu,
    .navbar .dropright:hover>.dropdown-menu{
        visibility: visible;
        opacity: 1;
        -webkit-transform: rotateX(0);
        -moz-transform: rotateX(0);
        -ms-transform: rotateX(0);
        transform: rotateX(0);
    }
}

.categories-list{
    border-right: 3px solid #ffffff;
}
.categories-list>.nav-link{
    width: 280px;
    font-size: 14px !important;
}
.categories-list>.dropdown-menu{
    width: 280px;
    left: 0;
}
.categories-list>.dropdown-menu>li,
.dropdown.full-width{
    position: static;
}
.dropdown.full-width>.dropdown-menu{
    left: 0;
    right: 0;
}
.categories-list>.dropdown-menu>li>a::after{
    float: right;
    margin-top: 15px;
}
.categories-list>.dropdown-menu>li>.dropdown-menu{
    min-height: 100%;
}

@media (min-width: 768px){
    .categories-list>.dropdown-menu>li>.dropdown-menu{
        width: 410px;
    }
}
@media (min-width: 992px){
    .categories-list>.dropdown-menu>li>.dropdown-menu{
        width: 650px;
    }
}
@media (min-width: 1200px){
    .categories-list>.dropdown-menu>li>.dropdown-menu{
        width: 830px;
    }
}

.dropdown-content{
    padding: 40px;
}

.stuck {
    position: fixed;
    top: 0;
    margin: 0;
    z-index: 997;
    width: 100%;

    box-shadow: 0 1px 2px rgb(0 0 0 / 16%);
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-name: fixedHeader;
    animation-name: fixedHeader;
} 

.header-middle.stuck{
    padding-top: 15px;
    padding-bottom: 15px;
}

@keyframes fixedHeader {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@-webkit-keyframes fixedHeader {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/*.stuck .navbar{
    display: none;
}*/


#masterslider{
    margin-bottom: 80px !important;
}

.section{
    margin-bottom: 80px;
}
.section-title{
    color: #444;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.thumbnail-wrapper{
    display: block;
    overflow: hidden;
    position: relative;
}
.thumbnail-wrapper img{
    transition: opacity 1s,transform 1s;
}
.thumbnail-wrapper:hover img{
    /*opacity: .9;*/
    transform: scale3d(1.1,1.1,1);
}

.category{
    text-align: center;
    background-color: #f6f6f6;
}
.category>h3{
    font-size: 17px;
    margin: 0;
}
.category>h3>a{
    display: block;
    color: #444;
    font-weight: 700;
    padding: 19px 15px;
}


.product-wrapper{
    border: 1px solid #eee;
    border-radius: 3px;
}
.product-wrapper .thumbnail-wrapper{
    display: flex;
    align-items: center;
}
.product-wrapper:not(.row) .thumbnail-wrapper{
    height: 265px;
}
.product-wrapper.row .thumbnail-wrapper{
    height: 145px;
}

.product-rollover{
    display: flex;
    align-items: center;
    justify-content: space-around;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: normal;
    text-align: center;
    background: rgba(68, 68, 68, .6);
    transform: scaleX(0);
    transition: all .3s ease-in-out;
    -webkit-transform-style: preserve-3d;
}
.product-wrapper:hover .product-rollover{
    transform: scaleX(1);
    opacity: 1;
}

.rollover-btns{
    position: relative;
    z-index: 999;
}
.rollover-btns>a{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    border-radius: 50%;
}

.product-ribbon{
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 75px solid #FBE344;
    border-left: 75px solid transparent;
}
.product-ribbon>label{
    position: absolute;
    top: -60px;
    right: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.outofstock{
    display: block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 13px;
    color: #dd4b39;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    background-color: rgba(241, 241, 241, .8);
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.discounted{
    font-size: 17px;
    color: #dd4b39;
    font-weight: 700;
    margin: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    text-shadow: 0 1px 5px rgba(255, 255, 255, .8);
}

.product-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    /*z-index: 1;*/
    font-size: 0;
}

.product-details{
    padding: 10px;
}
.product-title{
    height: 25px;
    margin: 0 0 7px;
    overflow: hidden;
    font-size: 18px;
    font-weight: 400;
    color: #444;
}

.product-rating{
    margin: 0 auto;
}

.product-prices{
    margin: 15px 0;
}
.product-prices .price{
    font-size: 14px;
    color: #434343;
    font-weight: 700;
}
.product-prices .old-price{
    text-decoration: line-through;
    font-size: 11px;
    color: #999;
}

.product-qty{
    float: left;
    position: relative;
}
.product-qty input[type="number"] {
    display: inline-block;
    width: 60px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    outline: none;
    font-size: 15px;
    padding: 0 15px 0 0;
    text-align: center;
    -moz-appearance: textfield;
}
.product-qty input[type="number"]::-webkit-outer-spin-button,
.product-qty input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.product-qty>.decrease,
.product-qty>.increase{
    position: absolute;
    right: 3px;
    display: inline-block;
    width: 15px;
    height: 16px;
    background-color: #f1f1f1;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: #8e8e8e;
    cursor: pointer;
    user-select: none;
    transition: all .2s ease;
}
.product-qty>.decrease:hover,
.product-qty>.increase:hover{
    background-color: #eaeaea;
}
.product-qty>.increase{
    top: 3px;
}
.product-qty>.decrease{
    bottom: 3px;
}

.product-actions .btn{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    line-height: 40px;
    float: right;
}


.bestsellers .nav{
    margin-bottom: 30px;
}
.bestsellers .nav>li{
    padding: 5px 20px;
}
.bestsellers .nav>li>a{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    color: #aeaeae;
    padding: 0;
}
.bestsellers .nav>li>a.active{
    color: #434343;
}

.category-box{
    border: 1px solid #eee;
    margin-bottom: 50px;
}
.category-box:last-child{
    margin-bottom: 0;
}
.category-box-header{
    text-align: center;
    padding: 40px 5px;
}
.category-box-header h3{
    font-size: 25px;
    color: #434343;
    margin-bottom: 15px;
}
.category-box-header .list-unstyled{
    padding: 0;
    margin: 0;
}
.category-box-header .list-unstyled>li{
    margin-bottom: 0;
}
.category-box-header .list-unstyled>li>a{
    display: block;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 17px;
    color: #aeaeae;
}
.category-box-header .list-unstyled>li>a:hover{
    color: #434343;
}

.category-box-image{
    position: relative;
    overflow: hidden;
    border-right: 1px solid #eee;
    border-left: 1px solid #eee;
}
.category-box-image>a{
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
}
/*.category-box-image img{
    max-width: 100%;
    max-height: 100%;
}*/
.category-box-image span{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    height: 45px;
    line-height: 45px;
    text-align: center;
    padding: 0 15px;
    background-color: #666;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}
.category-box-image:hover span{
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.category-box-image span i{
    font-size: 15px;
    margin-right: 10px;
}


.category-box-products{
    background-color: #f6f6f6;
    padding: 30px 20px;
}
.category-box-products .nav{
    margin-bottom: 20px;
}
.category-box-products .nav>li{
    padding: 0 20px;
}
.category-box-products .nav>li>a{
    font-size: 14px;
    font-weight: 700;
    color: #aeaeae;
    padding: 0;
}
.category-box-products .nav>li>a.active{
    color: #434343;
}

.product-wrapper.row{
    background: #ffffff;
    margin: 0 -10px 10px;
}
.product-wrapper.row .thumbnail-wrapper{
    padding: 10px;
}

.product-wrapper.row .product-rating {
    margin: 0;
    padding: 0;
}
.product-wrapper.row .product-prices {
    margin-bottom: 0;
}

.brands{
    background-color: #f6f6f6;
    padding: 30px 0;
}
.carousel-brands .thumbnail-wrapper,
.brands-dropdown .thumbnail-wrapper{
    display: flex;
    align-items: center;
    height: 120px;
    background: #ffffff;
    border-radius: 3px;
}
.brands-dropdown .dropdown-menu{
    padding-top: 20px;
    padding-bottom: 20px;
}
.brands-dropdown .thumbnail-wrapper{
    height: 50px;
    border: 1px solid #eee;
}
.brands-dropdown h5{
    font-size: 12px;
    margin: 5px 0 20px;
    text-align: center;
}



.footer-top{
    padding: 55px 0;
    background: #ffffff;
    color: #959595;
}
.footer-top .logo img{
    max-width: 100px;
}
.footer-widget h4{
    color: #444;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.footer-widget .list-unstyled>li{
    font-size: 15px;
    margin-bottom: 12px;
}
.footer-widget .social-list>li>a{
    font-size: 18px;
}
.footer-widget .list-unstyled>li>a:hover,
.footer-widget .social-list>li>a:hover{
    color: #434343;
}

.payment-methods {
    margin-top: 40px;
}
.payment-methods h4{
    margin-bottom: 15px;
}
.payment-methods img{
    max-width: 30px;
}

.footer-bottom{
    background-color: #444;
    padding: 13px 0;
}
.footer-bottom .copyrights{
    text-align: center;
    color: #a0a0a0;
    font-size: 14px;
    margin: 0;
}


.page-content{
    padding: 80px 0;
    position: relative;
}

.card{
    border: 1px solid #eee;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 30px;
}
.card-header{
    padding: 18px;
    font-size: 18px;
    font-weight: 300;
    color: #8c8c8c;
    background-color: #f9f9f9;
    border: 0;
    border-radius: 3px 3px 0 0;
    text-align: center;
}

.card-header[data-toggle="collapse"]{
    cursor: pointer;
    text-align: left;
}
.card-header[data-toggle="collapse"]::before{
    font-family: "Font Awesome 5 Pro"; 
    font-weight: 400; 
    content: "\f322";
    color: #434343;
    font-size: 11px;
    display: inline-block;
    margin-right: 15px;
    vertical-align: 1px;
    transition: all .2s ease;
}
.card-header.collapsed::before{
    transform: rotate(-90deg);
}
.card-body{
    padding: 30px;
}
.card-title{
    margin: 0 0 10px;
    font-size: 18px;
    color: #444;
}
.card-text{
    margin: 0 0 20px;
    font-size: 15px;
    color: #8c8c8c;
}

.bg-grey{
    background-color: #f6f6f6;
    border-color: #f6f6f6;
}

.form-card .card-body{
    padding: 45px 13% 20px;
}

.form-card .card-body .btn{
    text-transform: uppercase;
}

.accountpage-content{
    background-color: #f6f6f6;
    padding: 40px;
    min-height: 460px;
}
.accountpage-content .form-card{
    margin-right: 40px;
    margin-left: 40px;
}
.account-nav>li>a{
    display: block;
    position: relative;
    padding: 15px 0 15px 40px;
    font-size: 14px;
    color: #b7b7b7;
    text-transform: uppercase;
    font-weight: 700;
    border-right: 2px solid transparent;
    transition: all .2s ease;
}
.account-nav>li>a>i{
    width: 22px;
    text-align: center;
    font-size: 19px;
    color: #b7b7b7;
    position: absolute;
    left: 0;
    top: 15px;
    transition: all .2s ease;
}
.account-nav>li>a:hover,
.account-nav>li>a:hover>i,
.account-nav>li>a.active{
    color: #434343;
}
.account-nav>li>a.active{
    border-color: #434343;
}

.addressadd-card,
.address-card{
    text-align: center;
}
.addressadd-card i{
    display: block;
    margin-bottom: 30px;
    font-size: 100px;
    color: #8e8e8e;
}

.address-card{
    font-size: 16px;
    color: #959595;
    line-height: 30px;
}
.address-card strong{
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #444;
}
.address-actions{
    margin-top: 15px;
}
.address-actions>a{
    font-size: 16px;
    padding: 8px 13px;
    margin: 0 2px;
}

.order-card{
    font-size: 16px;
    color: #959595;
    line-height: 27px;
    text-align: center;
}
.order-card strong{
    font-weight: 700;
    color: #444;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}
.order-card .btn{
    margin-top: 20px;
}


.table-cart tbody tr:first-child td,
.table-cart thead th{
    border-top: 0;
}
.table-cart td,
.table-cart th{
    border-color: #eeeeee;
    vertical-align: middle;
}
.table-cart td{
    padding: 30px 15px;
    font-size: 16px;
    color: #444444;
}
.table-cart thead th{
    background-color: #f9f9f9;
    font-size: 17px;
    color: #959595;
    font-weight: 300;
    border-bottom-width: 0;
    padding: 17px 15px;
}

.table-cart .img-col .thumbnail-wrapper img{
    max-width: 80px;
}
.table-cart .total-col{
    font-weight: 700;
}
.table-cart .total-col,
.table-cart .price-col{
    white-space: nowrap;
}
.table-cart .remove-col,
.table-cart .addtocart-col{
    text-align: center;
}
.table-cart .remove-col .custom-checkbox,
.table-cart .addtocart-col .custom-checkbox{
    display: inline-block;
}

.cart-actions{
    display: flex;
}
.cart-actions .btn:not(:last-child){
    margin-right: 10px;
}
.cart-actions .btn i{
    font-size: 17px;
    margin-right: 10px;
}

.discounts-card .card-header{
    cursor: pointer;
    text-align: left;
}

#discounts>div:not(:last-child){
    margin-bottom: 30px;
}

.table-totals{
    margin-bottom: 40px;
}
.table-totals td{
    border: 0;
    padding: 5px 0;
    font-size: 16px;
    color: #444;
    font-weight: 400;
    vertical-align: middle;
}
.table-totals tfoot td{
    font-size: 20px;
    font-weight: 700;
}
.table-totals tr td:first-child{
    white-space: nowrap;
}
.table-totals tr td:last-child{
    text-align: right;
}

.checkoutpage-content .card{
    margin-bottom: 10px;
}
.checkoutpage-content .card-header{
    cursor: pointer;
    text-align: center;
    position: relative;
}
.checkoutpage-content .card-header::before{
    display: none;
}
.checkoutpage-content .card-header[aria-expanded="true"],
.checkoutpage-content .step-done .card-header{
    color: #434343;
    font-weight: 700;
}

.checkoutpage-content .step-done .card-header::after{
    font-family: "Font Awesome 5 Pro"; 
    font-weight: 400; 
    content: "\f00c";
    color: #00AB4E;
    font-size: 22px;
    position: absolute;
    right: 20px;
    top: 15px;
}

.checkout-option-box{
    padding: 20px 20px 20px 50px;
    border: 1px solid #eee;
    border-radius: 3px;
    margin: 0 0 10px;
}
.checkout-option-box label{
    padding-left: 15px;
}
.checkout-option-box label h6{
    font-weight: 700;
    color: #444;
    font-size: 18px;
    margin-bottom: 5px;
}
.checkout-option-box label p{
    margin: 0;
    font-size: 16px;
    color: #8c8c8c;
    font-weight: 400;
}

#paymentMethod .checkout-option-box label{
    padding-left: 70px;
}
#paymentMethod .checkout-option-box label img{
    position: absolute;
    left: 10px;
    top: 0;
    max-width: 50px;
}

.btn-upload{
    position: relative;
    cursor: pointer;
}
.btn-upload input[type="file"]{
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

.textblock{
    line-height: 1.5;
    font-size: 15px;
    color: #8c8c8c;
    font-weight: 400;
    margin-bottom: 40px;
}
.textblock h5{
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
}


.sidebar .card-header{
    font-size: 17px;
    color: #444;
    padding: 14px 30px;
    text-align: left;
    font-weight: 300;
    margin-bottom: 5px;
}

.sidebar .card-body{
    padding: 18px 30px ;
    margin-bottom: 5px;
}

.sidebar .card-body .nav .nav-link{
    display: inline-block;
    margin-right: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #8c8c8c;
}
.sidebar .card-body .nav .view-all{
    width: 100%;
    margin-top: 5px;
}
.sidebar .card-body .nav .view-all .nav-link{
    color: #434343;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}
.sidebar .card-body .nav .nav-link:hover{
    color: #434343;
}

.irs--round .irs-line{
    top: 36px;
    height: 8px;
    background-color: #E6E6E6;
}
.irs--round .irs-bar {
    top: 36px;
    height: 8px;
    background-color: #06689B;
}
.irs--round .irs-handle {
    top: 29px;
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
}
.irs--round .irs-from, 
.irs--round .irs-to, 
.irs--round .irs-single {
    font-size: 12px;
    padding: 0;
    background-color: transparent;
    color: #06689B;
    font-weight: 700;
    border-radius: 0;
}
.irs--round .irs-from:before, 
.irs--round .irs-to:before, 
.irs--round .irs-single:before{
    display: none;
}
.irs-from, .irs-to, .irs-single{
    top: 12px;
}
.irs--round .irs-min, 
.irs--round .irs-max{
    top: 7px;
}


.sidebar .card-body .product-wrapper{
    border-width: 0 0 1px 0;
    margin: 0;
    align-items:center;
}
.sidebar .card-body .product-wrapper:last-child{
    border-bottom-width: 0;
}
.sidebar .card-body .product-wrapper .product-title{
    font-size: 15px;
    color: #444444;
    height: auto;
}


.breadcrumb{
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
}
.breadcrumb-item{
    color: #a9a9a9;
    font-size: 14px;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: 8px;
}
.breadcrumb-item+.breadcrumb-item::before{
    padding-right: 8px;
    display: inline-block;
    vertical-align: middle;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    content: "\f105";
    font-size: 18px;
    margin-top: 1px;
    line-height: 1;
}
.breadcrumb-item.active{
    color: #a9a9a9;
}
.breadcrumb a:hover{
    color: #434343;
}

.category-subcats{
    border-bottom: solid 1px #eee;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.grid-controls{
    margin-bottom: 20px;
}
.grid-controls label{
    display: inline-block;
    font-size: 13px;
    color: #8c8c8c;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
}
.grid-controls .form-control{
    display: inline-block;
    width: auto;
    margin: 0 10px;
}

.grid-sort{
    margin-left: auto;
}

.grid-view>a{
    font-size: 22px;
    color: #8c8c8c;
    margin-left: 5px;
}
.grid-view>a:hover,
.grid-view>a.active{
    color: #434343;
}


.grid-wrapper>.row{
    margin-right: -5px;
    margin-left: -5px;
}
.grid-wrapper>.row>div{
    padding-left: 5px;
    padding-right: 5px;
}
.grid-wrapper .product-actions .btn{
    padding-right: 0;
    padding-left: 0;
    font-size: 12px;
}
.grid-wrapper .product-wrapper{
    margin-bottom: 10px;
}

.faq-group{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.faq-group-title{
    font-size: 20px;
    margin: 0;
    margin-bottom: 15px;
    color: #444;
    font-weight: 400;
}
.faq-group .card{
    margin-bottom: 10px;
}
.faq-group .card-header{
    color: #444;
    font-weight: 700;
    font-size: 14px;
    padding: 20px;
}

.faq-group .card-body{
    padding: 20px;
    color: #000;
}
.faq-group .card-body p{
    margin: 0 0 5px;
}

.site-msg{
    text-align: center;
    font-size: 15px;
    color: #8c8c8c;
    line-height: 2;
}

.simpleLens-gallery-container{
    margin-bottom: 40px;
}
.simpleLens-container{
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
    background: #ffffff;
    /*padding: 10px;*/
}

.simpleLens-big-image-container{
    direction: ltr;
    height: 350px !important;
}
.simpleLens-lens-image{
    display: flex;
    align-items: center;
    height: 350px !important;
}
.simpleLens-big-image{
    max-height: 100%;
}

.simpleLens-lens-element{
    width: 350px !important;
}

.simpleLens-thumbnails-container{
    text-align: center;
}
.simpleLens-thumbnails-container .simpleLens-thumbnail-wrapper{
    width: 85px;
    height: 85px;
    line-height: 85px;
    margin: 3px;
    border-radius: 3px;
    border: 1px solid #eee;
    overflow: hidden;
    background-color: #fff;
    cursor: pointer;
}
.simpleLens-thumbnails-container .simpleLens-thumbnail-wrapper img{
    max-width: 100%;
    margin-top: 0 !important;
}


.product-card .card-header{
    font-weight: 700;
    font-size: 13px;
    color: #8c8c8c;
    text-transform: uppercase;
    padding: 10px 20px;
}

.product-card .card-body{
    padding: 15px;
    text-align: center;
}
.product-card .product-prices{
    margin: 30px 0;
}
.product-card .product-prices .price{
    color: #434343;
    font-size: 25px;
}
.product-card .product-actions{
    margin-bottom: 30px;
}

.single-product-wrapper .product-title{
    font-size: 28px;
    height: auto;
    font-weight: 700;
}

.single-product-wrapper .product-rating {
    margin: 0 0 20px;
    display: inline-block;
}

.product-compare-link{
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #8c8c8c;
    text-transform: uppercase;
}
.product-compare-link>i{
    margin-right: 5px;
    font-size: 15px;
}

.single-product-wrapper .product-brief{
    margin: 30px 0;
}

.product-share .list-inline-item label{
    font-size: 15px;
    font-weight: 700;
    color: #444;
}



.product-tabs{
    background-color: #f6f6f6;
    padding: 0 0 40px;
    margin-top: 50px;
}

.product-tabs .nav{
    margin: -54px 0 50px;
}
.product-tabs .nav .nav-item{
    padding: 0 15px;
}
.product-tabs .nav .nav-link{
    font-size: 15px;
    font-weight: 700;
    padding: 15px;
    border-bottom: 2px solid transparent;
}
.product-tabs .nav .nav-link:hover,
.product-tabs .nav .nav-link.active{
    color: #434343;
}
.product-tabs .nav .nav-link.active{
    border-color: #434343;
}

.product-tabs .tab-pane h6{
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}
.product-newrate{
    margin: 0 auto;    
}

.product-color-box{
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 2px solid #e7e7e7;
}


/*Preloader*/
#loading{
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999;
    margin-top: 0px;
    top: 0px;
}
#loading-center{
    width: 100%;
    height: 100%;
    position: relative;
}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 150px;
    width: 150px;
    margin-top: -75px;
    margin-left: -75px;
}
.object{
    width: 20px;
    height: 20px;
    background-color: #2899d2;
    float: left;
    margin: 0 10px;
    margin-top: 65px;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
}

#object_one {	
    -webkit-animation: object_one 1.5s infinite;
    animation: object_one 1.5s infinite;
}
#object_two {
    -webkit-animation: object_two 1.5s infinite;
    animation: object_two 1.5s infinite;
    -webkit-animation-delay: 0.25s; 
    animation-delay: 0.25s;
}
#object_three {
    -webkit-animation: object_three 1.5s infinite;
    animation: object_three 1.5s infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;

}

@-webkit-keyframes object_one {
    75% { -webkit-transform: scale(0); }
}

@keyframes object_one {

    75% { 
        transform: scale(0);
        -webkit-transform: scale(0);
    }

}


@-webkit-keyframes object_two {


    75% { -webkit-transform: scale(0); }


}

@keyframes object_two {
    75% { 
        transform: scale(0);
        -webkit-transform:  scale(0);
    }

}

@-webkit-keyframes object_three {

    75% { -webkit-transform: scale(0); }

}

@keyframes object_three {

    75% { 
        transform: scale(0);
        -webkit-transform: scale(0);
    }

}

/*Written by MG*/
.valid{
    color: #009511;
}
.invalid{
    color: #FF0000;
}