/*
 * Copyright (C) $user$, Inc - All Rights Reserved
 *
 *  <other text>
 * @file        style.css
 * @author      ignatenkovnikita, Inreco LAN
 * @date        $date$
 */

html{
    width: 100%;
}

ul {
    border: none !important;
}

/* Discount */

.product-info-price-percent{
    margin-left: 14px;
    font-size: 22px;
    padding: 0 6px;
    background-color: red;
    color: white;
}

.product-price-percent-helper{
    margin-top: 5px;
    font-size: 20px;
    opacity: 0;
}

.product-price-percent{
    margin-top: 5px;
    font-size: 20px;
    color: white;
}

.product-price-percent>span{
    padding: 0 4px;
    background-color: red;
}

/* Blog */

.blog-list-wrapper{
    list-style: none;
    padding: 0;
}

.blog-list-wrapper>li {
    background-color: white;
    padding: 3px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 2px -2px 5px 0 rgba(0,0,0,.1),
         -2px -2px 5px 0 rgba(0,0,0,.1),
        2px 2px 5px 0 rgba(0,0,0,.1),
        -2px 2px 5px 0 rgba(0,0,0,.1);
    transition: 0.3s all linear;
}

.blog-list-wrapper>li:nth-child(2n) {
    border-left: 10px solid #2f3a85; 
}
    
.blog-list-wrapper>li:nth-child(2n+1) {
    border-left: 10px solid #feec00; 
}

.blog-list-wrapper>li:hover {
    transform: scale(1.05);
}

.blog-list-wrapper>li>a {
    text-decoration: none;
    color:black;
}

@media screen and (max-width: 767px) {
    .blog-search-field{
        width: 100%;
    }
}

@media screen and (min-width: 767px) {
    .blog-search-field{
        width: 600px;
    }
}

.blog-search-field{
    border: 1px solid grey;
    border-radius: 5px;
    background-color: #e9e9e9;
    margin-top: 20px;
    padding-left: 10px;
}

.main-article-title{
    font-size: 26px;
    margin: 20px 0;
}

.main-article>a>.shadow-article{
    box-shadow: inset 0px -70px 50px 0px rgba(0,0,0,0.75);
}

.shadow-article{
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: inset 0px -40px 50px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px -40px 50px 0px rgba(0,0,0,0.75);
    box-shadow: inset 0px -40px 50px 0px rgba(0,0,0,0.75);
}

.blog-article-title{
    margin-bottom: 10px;
    background-color: #feec00 !important;
    color: #2f3a85 !important;
    font-weight: bold;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, .1);
    padding: 10px 20px;
    text-transform: capitalize;
    text-align: center;
    border-bottom: 0;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.blog-banner>ul{
    padding: 0 18px;
}

.blog-banner{
    background-color: white;
}

.all_stats>a{
    color: grey;
    text-decoration: none;
}


.blog-list>li{
    line-height: 1;
    padding-bottom: 15px;
    list-style-type: none;
}

.articles-wrapper{
    font-weight: bold;
    color: white;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
    grid-auto-rows: minmax(90px, auto);
}

.articles-wrapper-all>div>a{
    text-decoration: none;
    color: black;
}

.articles-wrapper-else{
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    grid-auto-rows: minmax(200px, auto);
}

.else-article{
    position: relative;
}

.main-article{
    position: relative;
    grid-column: 1 / 5;
    grid-row: 1 / 5;
}

.main-article>a>span{
    font-size: 28px;
}

.second-article{
    position: relative;
    grid-column: 5 / 7;
    grid-row: 1 / 3;
}

.third-article{
    position: relative;
    grid-column: 5 / 7;
    grid-row: 3 / 5;
}

@media screen and (max-width: 767px) {
    .main-article>a>.shadow-article{
        box-shadow: inset 0px -40px 50px 0px rgba(0,0,0,0.75);
    }

    .main-article>a>span{
        font-size: 14px;
    }

    .articles-wrapper{
        grid-auto-rows: minmax(200px, auto);
        grid-template-columns: repeat(1, 1fr);
    }

    .main-article{
        grid-column: 1;
        grid-row: 1;
    }
    
    .second-article{
        grid-column: 1;
        grid-row: 2;
    }
    
    .third-article{
        grid-column: 1;
        grid-row: 3;
    }

    .articles-wrapper-else{
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(200px, auto);
    }
}

.main-blog-image{
    height: 100%;
    width: 100%;
    object-fit: cover;
    vertical-align: baseline;
}

.text-inside-image{
    color: white;
    position: absolute;
    bottom: 8px;
    left: 16px;
    right: 16px;
    font-weight: bold;
}

.article-button-wrapper{
    margin: 20px 0;
    text-align: center;
}

.article-button{
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid black;
    padding: 5px 30px;
}

/* Autocomplete */
.autocomplete-wrapper{
    font-size: 12px;
    max-height: 200px;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: white;
    z-index: 999;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-wrapper-items{
    padding: 0 18px;
    border: 1px solid #d4d4d4;
    border-top: none;
}

.autocomplete-wrapper-items>a{
    width: 100%;
    text-decoration: none;
    color: initial;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.autocomplete-wrapper-items>a:hover{
    color: red;
}

.autocomplete-wrapper-items:hover{
    background-color: #e9e9e9;
}

.autocomplete-price{
    font-weight: bold;
}

/* Grid list of element */
.pagination{
    border: none;
}

.grid-custom-list{
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    grid-gap: 2vw;
}

@media (max-width: 1200px){
    .grid-custom-list{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px){
    .grid-custom-list{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px){
    .grid-custom-list{
        grid-template-columns: 1fr;
        grid-gap: 8vw;
    }
}

/* Banner */

.custom_banner_wrapper{
    position: fixed;
    display: none;
    z-index: 9999;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
}

.custom_banner{
    top: 13vh;
    position: fixed;
    display: flex;
    justify-content: flex-end;
}

.custom_banner>a>img{
    pointer-events: none;
}

.cross{
    text-align: center;
    z-index: 2;
    cursor: pointer;
    position: absolute;
    opacity: 0.3;
    width: 35px;
    height: 35px;
    top: 20px;
    right: 20px;
    }

.cross:hover {
    opacity: 1;
    }
.cross:before, .cross:after {
    position: absolute;
    content: ' ';
    height: 35px;
    width: 6px;
    background-color: black;
    }

.cross:before {
    transform: rotate(45deg);
    }
.cross:after {
    transform: rotate(-45deg);
    }

/* Side menu */

.mobile-contact {
    display: none;
}

.menu-for-mobile {
    display: none;
}

.widget-categories__custom {
    background: transparent;
}

.widget-categories__custom .widget-title {
    -webkit-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    -moz-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
}

.widget-categories > div {
    background: #fff;
}

.widget-categories ul > li a {
    font-weight: 700;
}

.widget-categories ul > li.level2 a {
    font-weight: 600;
}

.widget-categories ul > li.level3 a {
    font-weight: 500;
}

.widget-categories > .widget-title {
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: bold;
    font-size: 19px;
    color: #000000 !important;
}

.widget-categories div > ul {
    border-radius: 7px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.widget-categories ul > li > a, .widget-links ul > li > a {
    z-index: 99;
}

.widget-categories ul > li::before, .widget-links ul > li::before {
    color: #000 !important;
    display: none;
}

.widget-categories ul > li.has-children ul li::before, .widget-links ul > li.has-children ul li::before {
    color: #323b86 !important;
}

/* custom menu */

.widget-categories__custom .widget-title {
    background-color: #feec00 !important;
    color: #2f3a85 !important;
    font-weight: bold;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, .1);
    padding: 10px 20px;
    z-index: 1001;
    text-transform: capitalize;
    text-align: center;
    border-bottom: 0;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.widget-categories__custom .widget-title .custom__name {
    border-bottom: 1px solid #2f3a85;
    position: relative;
    padding-left: 10px;
}

.widget-categories__custom .widget-title .custom__name:before {
    background-image: url(../img/new/ico-katalog.svg);
    position: absolute;
    left: -22px;
    height: 30px;
    width: 22px;
    content: '';
    background-repeat: no-repeat;
    background-size: cover;
    top: -3px;
}

.widget-categories__custom ul > li.has-children > a::after {
    color: #bec0c3 !important;
    content: "+";
    position: absolute;
    right: 10px;
    display: block;
    border: 1px solid #bec0c3;
    border-radius: 100%;
    font-family: initial;
    font-size: 20px;
    line-height: 21px;
    padding: 0 5px;
    background-color: #fff;
    top: 16px;
    -moz-transform: rotate(0deg); /* Для Firefox */
    -ms-transform: rotate(0deg); /* Для IE */
    -webkit-transform: rotate(0deg); /* Для Safari, Chrome, iOS */
    -o-transform: rotate(0deg); /* Для Opera */
    transform: rotate(0deg);
    transition: all .6s;
}

.widget-categories__custom ul > li.has-children.expanded > a::after {
    content: "–";
    padding: 0 6px;
    background-color: #ececec;
    -moz-transform: rotate(360deg); /* Для Firefox */
    -ms-transform: rotate(360deg); /* Для IE */
    -webkit-transform: rotate(360deg); /* Для Safari, Chrome, iOS */
    -o-transform: rotate(360deg); /* Для Opera */
    transform: rotate(360deg);
    transition: all .6s;
    padding-bottom: 3px;
    line-height: 18px;
}

.widget-categories__custom ul > li {
    margin: 0;
    padding: 0;
    border: 1px solid #ddd;
    border-top: 1px solid #eee;
    border-bottom: none;
}

.level1 ul>li {
    margin-left: 7px;
}

.level1 ul>li {
    border-top: 1px solid #ddd;
    /* border-radius: 6px; */
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.widget-categories__custom ul > li > a {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 52px;
    justify-content: center;
    color: #2e3846;
}

.widget-categories ul>li.has-children>ul, .widget-links ul>li.has-children>ul{
  background-color: #323b86;
}

.widget-categories__custom ul > li > a:hover {
    background-color: #323b86;
    color: #ffffff !important;
}

.widget-categories__custom ul > li > ul > li {
    background-color: #ececec;
}

.widget-categories__custom ul > li > ul > li a {
    color: #2e3846 !important;
}

.widget-categories__custom ul > li > a {
    color: #2f3a85;
    padding-left: 14px;
    padding-right: 35px;
}

.widget__contact-text {
    display: inline-block;
    transition: color .3s;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.widget-categories__custom ul > li.active > a, .widget-categories__custom .widget-links ul > li.active > a {
    background-color: #feec00;
    color: #000000 !important;
}

.widget-categories ul > li.active > a, .widget-links ul > li.active > a {
    background-color: #feec00;
    color: #000000 !important;
    font-weight: 700;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.widget-categories__custom .widget-title {
    margin-top: 0;
    margin-bottom: -1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

/* Side menu */

.page-title {
    padding: 10px 0;
}

h4.card-title {
    font-size: 16px;
    word-break: break-word;
}

.card-title {
    height: 70px;
}

.product-card .product-title {
    height: 100px;
}

.product-gallery {
    padding-top: 15px;
}

.product-gallery .product-badge {
    z-index: 12;
    left: 30px;
}

.navbar {
    margin-bottom: 0 !important;
}

.offcanvas-wrapper {
    background: url(./../img/wood_bg.jpg) 50% 50% repeat;
    background-attachment: fixed;
}

.site-logo {
    width: 260px !important;
    padding: 4px 0 0 15px !important;
    text-decoration: none !important;
    vertical-align: top;
}

.box {
    overflow: hidden;
    height: 200px;
    width: 150px;
    line-height: 20px;
}

.box:before {
    content: "";
    float: left;
    width: 5px;
    height: 200px;
}

.box > *:first-child {
    float: right;
    width: 100%;
    margin-left: -5px;
}

.box:after {
    content: "\02026";
    box-sizing: content-box;
    float: right;
    position: relative;
    top: -25px;
    left: 100%;
    width: 3em;
    margin-left: -3em;
    padding-right: 5px;
    text-align: right;
    background-size: 100% 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white);
}

.product-price-discount {
    color: #ff0000;
    font-size: 25px;
    float: none;
    clear: both;
    display: block;
    text-align: center;
}

.product-price-discount-detail {
    text-align: left;
}

.product-price-discount__detail {
    font-size: 35px;
}

.product-price__default {
    font-size: 25px;
}

.black {
    color: #000 !important;
}

.breadcrumb-custom {
    background: none !important;
}

.breadcrumb-custom > li.active {
    color: #2f3a85;
}

.breadcrumb-custom > li > a {
    color: #2f3a85;
}

.breadcrumb > li + li:before {
    color: #323b86 !important;
}

body {
    color: #000000 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.body {
    color: #000000;
    font-weight: bold;
}

/* new theme */

.navbar-custom {
    background-color: white;
    border-bottom: none;
}

.navbar {
    min-height: 50px;
}

.toolbar .cart > a {
    z-index: 999;
}

.toolbar .cart > a:after {
    display: none;
}

.navbar-custom .toolbar-custom {
    position: initial;
    height: initial;
}

.navbar-custom .toolbar-custom .inner {
    float: none;
    display: block;
    width: initial;
    height: initial;
    min-height: initial;
}

.navbar-custom .toolbar-custom .inner .tools {
    display: block;
}

.navbar-custom .toolbar-custom .inner .cart {
    float: none;
    margin: 0;
}

.cart-custom {
    background-color: #323b87;
    color: #FFFFFF !important;
}

.search-custom {
    color: white !important;
    background-color: #323b86;
}

.site-branding {
    position: initial !important;
}

.product-price-default {
    font-size: 13px !important;
}

.product-card .product-buttons {
    padding: 0 !important;
}

.product-card .product-title {
    font-size: 15px !important;
}

.card-custom {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    background: #fff !important;
    -webkit-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    -moz-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
}

.card-custom a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80px;
    width: 100%;
    padding: 15px;
}

.card-custom a:hover {
    background-color: #feec00;
}

.card-custom a h3 {
    color: #4b5bcc;
}

.card-custom > a > .row > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

a {
    color: #323b85;
}

.product-card-custom {
    padding: 10px !important;
    -webkit-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    -moz-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
}

.card-custom h6 {
    color: #000 !important;
    font-weight: 600;
    font-size: 15px;
}

.card-custom p {
    color: #000 !important;
    margin: 4px 0 0 0;
    padding: 0;
    font-size: 11px;
    line-height: 1.3;
}

.card-custom div.col-md-8 {
    padding-left: 2px;
}

.card-custom a {
    text-decoration: none;
}

.owl-carousel__brand {
    background-color: #ffffff;
}

.owl-centered .owl-wrapper {
    display: table !important;
}

.owl-centered .owl-item {
    display: table-cell;
    float: none !important;
    vertical-align: middle;
}

.owl-centered .owl-item > div {
    text-align: center;
}

.owl-carousel__brand .owl-item {
    border-right: 1px solid #f3f3f3;
}

/* cart custom */

.cart__custom {
    color: #f3f3f3 !important;
    border-radius: 5px !important;
    line-height: 22px;
    padding: 3px;
    padding-right: 5px;
    width: 180px;
}

.cart__custom .cart-meta {
    padding-left: 33px;
}

.cart__custom .count__custom, .subtotal__custom {
    line-height: 16px;
    font-size: 13px;
}

.cart__custom .subtotal__custom {
    line-height: 16px;
    font-size: 13px;
}

/* custom search */

.site-search__custom button {
    border-radius: 5px;
    background-color: #2f3a85;
    color: #f3f3f3;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    border-color: #ccc;
    padding-left: 10px;
    padding-right: 20px;
    width: 130px;
}

.site-search__custom input {
    border-radius: 5px;
    max-width: 713px;
    display: inline-block
}

.product-card .product-title > a:hover {
    color: #323b87 !important;
}

.btn-outline-primary {
    color: #323b87 !important;
    border: 1px solid #323b87;
}

.shopping-layout {
    border-radius: 10px;
    border: 1px solid rgb(221, 221, 221);
    box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    background-color: #fff;
    padding: 10px;
}

.container .site-search__custom {
    width: 100%;
}

.container .site-search__custom .form-control {
    width: 100%;
    height: 32px;
    background-color: #2f3a85;
    background-repeat: no-repeat;
    position: relative;
    background-size: 30px;
    background-position-x: 15px;
    background-position-y: 9px;
    color: #fff;
    font-size: 19px;
    border: none;
    border-radius: 0;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.container .site-search__custom .form-control::placeholder {
    font-size: 19px;
    color: #fff;
}

.site-search__custom .btn {
    margin: 0 0 0 2px;
    width: 36px;
    height: 32px;
    border-radius: 0;
    text-transform: none;
    text-shadow: none;
    padding: 0;
    font-size: 0;
    background-image: url(../img/new/ico-poisk.svg);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center;
    outline: none;
    border: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.header-second-line .dropdown-toggle {
    color: red;
    line-height: 32px;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 700;
    white-space: nowrap;
    text-transform: none;
}

.product-card .product-thumb > img {
    border-radius: 6px;
}

.banner {
    margin-top: 30px;
    margin-bottom: 20px;

    display: block;
    position: relative;
    width: 100%;
    border: 1px solid #e1e7ec;
    border-radius: 7px;

    -webkit-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    -moz-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
}

.banner img {
    border-radius: 7px;
}

.banner>a>img{
    width: 100%;
}

.scroll-to-top-btn{
    margin-bottom: 40px;
}

.field-icon{
    float: right;
    left: -15px;
    top: 43px;
    position: relative;
    font-size: 17px;
}

@media (min-width: 768px) {

    .header-second-line {
        padding-top: 10px;
        padding-bottom: 8px;
        background-color: #e9e9e9;
        border-top: 1px solid #d1d2d3;
        border-bottom: 1px solid #d1d2d3;
    }

    .header-second-line .dropdown {
        margin-right: 34px;
    }
}

@media (min-width: 992px) {

    .widget-categories__custom {
        margin-top: -43px;
    }
}

.owl-stage-outer{
    padding-bottom: 5px;
}

.large-controls>.owl-stage-outer{
    padding-bottom: 0;
}

.hero-slider1 .owl-carousel .owl-stage-outer {
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    -moz-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
}

.hero-slider1 img {
    min-width: 100%;
    border: 1px solid #ddd;
}

.btn > i {
    margin-top: -10px;
}

.navbar_contact {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-decoration: none;
    color: #2f3a85;
}

.form-control {
    border-radius: 5px;
}

.add_to_cart{
    display: flex;
    justify-content: space-evenly;
}

.add_to_cart>div{
    display: flex;
}

.add_to_cart .btn {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 2.5px;
    border-radius: 3px;
    line-height: 16px;
    max-height: 33px;
    padding: 0 3px !important;
}

.add_to_cart-minus {
    user-select: none;
    height: 33px;
    outline: none;
    border-radius: 2px;
    border: 1px solid rgb(118, 118, 118);
    margin-right: -1px;
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 6px;
    padding-right: 6px;
}

.full_height{
    height: 100% !important;
}

.add_to_cart-minus:hover:enabled{
    border: 1px solid rgb(74, 74, 74);
    background-color: rgb(218, 218, 218);
}

.add_to_cart-minus:disabled{
    padding-right: 7px;
    border-right: none;
    opacity: 0.5;
}

.add_to_cart-quantity:disabled{
    opacity: 0.5;
}

.add_to_cart-plus:disabled{
    border-left: none;
    opacity: 0.5;
}

.add_to_cart-minus:active{
    background-color: rgb(245, 245, 245);
    border-color: rgb(118, 118, 118);
}

.add_to_cart-plus {
    user-select: none;
    height: 33px;
    outline: none;
    border-radius: 2px;
    border: 1px solid rgb(118, 118, 118);
    margin-left: -1px;
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 5px;
    padding-right: 5px;
}

.add_to_cart-plus:hover:enabled{
    border: 1px solid rgb(74, 74, 74);
    background-color: rgb(218, 218, 218);
}

.add_to_cart-plus:active{
    background-color: rgb(245, 245, 245);
    border-color: rgb(118, 118, 118);
}

input[type="radio"]{
    -webkit-appearance: radio;
}

input[type="text"],
input[type="button"],
input[type="submit"], 
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.add_to_cart-quantity {
    border-radius: 0;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    height: 33px;
    border: 1px solid rgb(118, 118, 118);
    display: inline;
    width: 33px;
    text-align: center;
}

.add_to_cart-quantity__detail {
    max-width: 60px;
    z-index: 1;
}

.add_to_cart-button:hover {
    background-color: #313a86;
    color: #fff !important;
}

.nav-tabs .nav-link {
    padding: 15px 15px !important;
}

.tab-pane {
    background: none !important;
}

.product-card .product-title > a {
    color: #000000 !important;
}

.product-card .product-price {
    color: #000000 !important;
}

.navbar_contact1 br {
    display: none;
}

.navbar_contact1 .row {
    padding-top: 16px;
}

.navbar_contact1 span {
    font-size: 16px !important;
    font-weight: 100 !important;
    line-height: 23px !important;
    position: relative;
}

.navbar_contact1 span strong {
    font-weight: bold;
    font-size: 20px;
}

.navbar_contact1 span::before {
    z-index: 99;
}

.navbar_contact1 span:first-child::before {
    content: '';
    position: absolute;
    background: url("../img/new/ico-maps.svg");
    left: 0;
    height: 30px;
    width: 26px;
    background-repeat: no-repeat;
    background-size: cover;
    top: -3px;
}

.navbar_contact1 span:nth-child(2)::before {
    content: '';
    position: absolute;
    background: url("../img/new/ico-tel.svg");
    left: 0;
    height: 31px;
    width: 22px;
    background-repeat: no-repeat;
    background-size: cover;
    top: -3px;
}

.navbar_contact1 span:nth-child(3)::before {
    content: '';
    position: absolute;
    background: url("../img/new/ico-login.svg");
    left: 0;
    height: 30px;
    width: 29px;
    background-repeat: no-repeat;
    background-size: cover;
    top: -3px;
}

.navbar_contact1 span:first-child {
    padding-left: 36px;
}

.navbar_contact1 span:nth-child(2) {
    padding-left: 32px;
}

.navbar_contact1 span:nth-child(3) {
    padding-left: 29px;
}

.navbar_contact1 span ul.login-custom li a {
    padding: 0 7px;
    text-decoration: none;
}

.navbar_contact1 span ul.login-custom li + li a:before {
    position: absolute;
    content: " /";
    left: -3px;
}

.navbar_contact1 span ul.login-custom li a:hover {
    background-color: transparent;
    text-decoration: underline;
}

.toolbar-custom .inner .cart__custom {
    border-radius: 100% !important;
    border: 1px solid #ececec !important;
    background-color: transparent !important;
    width: 69px !important;
    height: 69px;
    position: relative;
}

.toolbar-custom .inner .cart__custom::after {
    content: '';
    position: absolute;
    background: url(../img/new/ico-shop.svg);
    background-repeat: no-repeat;
    background-size: contain;
    left: 16px;
    height: 33px;
    width: 31px;
    bottom: 3px;
}

.toolbar-custom .inner .cart__custom .cart-meta {
    padding: 0;
    font-size: 19px;
    color: #000;
    font-weight: 700;
    background-color: #e7dfd8;
    border-radius: 100%;
    height: 28px;
    line-height: 28px;
    width: 28px;
    text-align: center;
    display: inline-block;
    margin-top: 5px;
}

.toolbar-custom .inner .cart__custom .cart-meta .count__custom {
    line-height: 2;
}

.toolbar-custom .inner .cart__custom .cart-description {
    color: black;
    font-size: 12px;
    position: absolute;
    top: 100%;
    right: -1em;
    left: -1em;
    line-height: 1.15;
}

.toolbar-custom .inner .cart__custom .cart-description .description-label {
    display: block;
}

.toolbar-custom .inner .cart__custom .cart-description .description-value {
    display: block;
    font-weight: bold;
    font-size: 90%;
}

.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border: 1px solid #ececec;
    -webkit-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    -moz-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
    background-color: #2f3a85;
    width: 10px !important;
    height: 10px !important;
    border: 1px solid #ececec;
    opacity: 1;
}

.owl-carousel .owl-dots .owl-dot:hover {
    background-color: #feec00;
    width: 10px !important;
    height: 10px !important;
}

.large-controls>.owl-dots{
    cursor: pointer;
}


.owl-dots{
    padding-bottom: 10px !important;
}

.site-menu-custom {
    background: transparent;
}

.site-menu {
    position: relative;
    margin: 10px auto;
}

.site-menu .navbar-collapse {
    padding-left: 0;
}

.site-menu .navbar-collapse ul li a {
    padding-left: 0;
}

.site-menu ul {
    margin: 0;
    text-align: left;
}

.site-menu ul li {
    text-align: center;
    padding: 5px 0;
    display: inline-block;
}

.site-menu > ul > li > a {
    letter-spacing: 0;
    padding: 0 16px 0 0;
}

.site-menu > ul > li:first-child > a {
    margin-left: 0;
    padding-left: 0;
}

.site-menu ul li a span {
    line-height: 15px;
    font-size: 16px;
    text-decoration: underline;
    color: #2f3a85;
    font-weight: 700;
    white-space: nowrap;
    text-transform: none;
}

.site-menu ul li a span:hover {
    text-decoration: none;
    text-shadow: 0 5px 0 rgba(75, 91, 204, .15);
}

.site-menu-custom {
    padding-top: 5px;
    border: 0 solid;
}

header.navbar-custom {
    padding: 8px 15px 0 15px;
    box-shadow: inset 0 8px 5px -10px rgba(0, 0, 0, .55);
    border: none;
    border-radius: 0;
}

.header-custom {
    margin-bottom: 0 !important;
}

.main-block-custom {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.site-branding {
    padding: 20px 0;
}

.site-branding .inner {
    width: 100%;
}

.site-branding .inner img {
    max-width: 400px;
    margin: 0 auto;
}

.navbar_contact1 {
    width: 100%;
    text-align: center;
    margin: 10px auto;
    padding-left: 10px;
}

.site-menu-custom .navbar-toggle .icon-bar {
    background-color: blue;
}

.toolbar-custom .inner {
    float: none;
    margin: 10px auto;
    width: 100%;
}

.toolbar-custom .inner .cart {
    width: 100%;
    text-align: left;
}

.preheader {
    background-color: #2f3a85;
    padding: 10px 0;
}

.preheader .container {
    margin: 0 auto;
    color: #fff;
}

.preheader .auth {
    text-align: center;
    width: 100%;
    display: block;
}

.preheader .container a {
    color: #fff;
    text-decoration: underline;
}

.checkout-steps {
    display: flex;
    flex-direction: column;
}

.checkout-steps .element1 {
    order: 4;
}

.checkout-steps .element2 {
    order: 3;
}

.checkout-steps .element3 {
    order: 2;
}

.checkout-steps .element4 {
    order: 1;
}

.cat-collapse {
    float: right;
    cursor: pointer;
    display: block;
    width: 25px;
    height: 20px;
    overflow: hidden;
    position: relative;
    background-color: transparent;
    border: 0 solid;
}

.cat-collapse span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 8px;
    background: #fff;
    height: 2px;
}

.cat-collapse span:before {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    left: 0;
    top: -8px;
}

.cat-collapse span:after {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: -8px;
}

.shopping-cart {
    overflow-x: scroll !important;
}

.shopping-cart::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 2px;
    height: 4px;
}

.shopping-cart::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0 0 0.5px rgba(255, 255, 255, .5);
}

.modal-header .close {
    margin-top: 0;
    position: absolute;
    right: 20px;
}

.owl-carousel .owl-item > img {
    border-radius: 6px;
}

#sidebar.sidebar-tabs {
    display: flex;
    flex-direction: row;
}

.mini:hover {
    background-color: #323b87 !important;
}

.widget-featured-products .widget-title {
    color: #2e3846;
    font-weight: bold;
    font-size: 19px;
}

.widget-featured-products .entry {
    padding-top: 2px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    -moz-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
}

.widget-featured-products .entry:hover {
    background-color: #feec00;
    cursor: pointer;
}

.under-footer {
    background-color: #2e3846;
    color: #fff;
}

.site-footer {
    background-color: #ececec !important;
    color: #2e3846;
    border-top: 5px solid #2e3846;
}

.site-footer .widget-title, .site-footer .widget__contact-text.text-white {
    color: #2e3846 !important;
}

.site-footer .widget-links ul > li > a span {
    color: #2f3a85 !important;
    text-decoration: underline;
}

.owl-item .grid-item {
    padding-bottom: 10px;
}


.header-second-line.two {
    display: none;
}

.category_two {
    display: none;
}

.info_icon{
    margin-right: 23px;
    margin-top: 10px;
}

.footer_icon{
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    transition: 0.3s;
}

.footer_icon:hover {
    transform: scale(1.3);
   }

@media (max-width: 767px) {

    .autocomplete-wrapper-items{
        font-size: 14px;
    }

    .add_to_cart{
        margin: 4px 0;
        justify-content: center;
    }

    .add_to_cart>div{
        margin-right: 8px;
    }
    
    .scroll-to-top-btn{
        margin-bottom: 80px;
    }

    .cross{
        right: 10px;
        top: 10px;
    }

    .footer_icon:hover {
        transform: none;
    }

    .header_cart{
        display: none;
    }

    .header_flex_wrapper{
        flex-wrap: initial;
    }

    .header-second-line.first .dropdown {
        display: none;
    }

    .header-second-line.two {
        display: block;
    }

    .header-second-line.two .dropdown {
        display: block;
    }

    .header-second-line.first {
        margin-top: 10px;
    }

    .header-second-line.two {
        width: 100%;
        margin-top: 10px;
    }

    .header-second-line.two .site-search__custom {
        display: none !important;
    }

    .category_two {
        display: block;
    }

    .category_first {
        display: none;
    }

    .header-second-line .dropdown,
    .container .site-search__custom {
        margin-top: 8px;
    }

    .widget-categories__custom {
        margin-top: 13px;
    }

    .header-second-line .dropdown-toggle {
        height: 50px;
        line-height: 50px;
        background-color: #d9d2d2;
        display: block;
        text-align: center;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
    }

    .container .site-search__custom {
        max-width: 100%;
    }

    .container .site-search__custom .form-control,
    .site-search__custom .btn {
        height: 50px;
    }

    .site-search__custom .btn {
        width: 53px;
        background-size: 30px;
    }

    .widget-categories__custom .widget-title {
        padding: 13px 20px;
        border: 1px solid #ddd;
    }
}

@media (min-width: 577px) {

    .checkout-steps {
        display: block;
    }
}

@media (min-width: 768px) {
    .navbar_contact1 {
        width: auto;
        text-align: left;
        margin: 0;
    }

    .toolbar-custom .inner {
        float: right;
        margin: 0;
    }

    .toolbar-custom .inner .cart {
        width: auto;
        float: right;
        text-align: center;
    }
}

@media (min-width: 992px) {
    #sidebar.sidebar-tabs {
        flex-direction: row;
    }

    .site-branding {
        padding: 0;
    }

    #cat.in,
    #cat.collapsing,
    #cat.collapse {
        display: block !important;
    }
}

@media (max-width: 992px) {
    #sidebar.sidebar-tabs {
        flex-direction: column;
    }

    .container .site-search__custom {
        margin-left: 0;
    }

    .sidebar {
        max-width: 100%;
    }
}

@media (min-width: 1070px) {
    .site-menu {
        margin: 0 auto;
    }

    .site-branding .inner img {
        width: 263px;
        margin: inherit;
    }
}

@media (max-width: 1070px) {
    .site-menu {
        display: block !important;
    }
}

@media (max-width: 576px) {
    #cart_ajax .table tr td, #cart_ajax .table tr th {
        padding: 8px 0;
        font-size: 10px;
    }
}

.btn-primary-custom {
    background-color: #ffffff;
    color: #2f3a84;
    border: 1px solid #2f3a84;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.btn-primary-custom:hover {
    color: #ffff;
    background-color: #2f3a84;

}

@media (max-width: 767px) {
    tbody>tr:first-child td{
        border-top: none;
    }

    .navbar-custom {
        padding: 0 !important;
    }

    .navbar-custom .navbar-user-button {
        margin-top: -30px;
    }

    .navbar_contact1 span {
        display: none;
    }

    .mobile-contact {
        display: flex;
    }

    .navbar_contact1 span::before {
        display: none;
    }

    .menu-for-desktop {
        display: none;
    }

    .menu-for-mobile {
        display: flex;
    }

    .navbar-custom-icon {
        background-image: url(../img/new/ico-menu-g.svg);
        background-size: 30px 23px;
        background-repeat: no-repeat;

    }

    .mobile-icons .mobile-cart {
        background-image: url(../img/new/ico-shop.svg);
        background-size: 30px 23px;
        background-repeat: no-repeat;
    }

    .mobile-icons .mobile-contacts {
        background-image: url(../img/new/ico-maps.svg);
        background-size: 30px 23px;
        background-repeat: no-repeat;
    }

    .mobile-icons .mobile-login {
        background-image: url(../img/new/ico-login.svg);
        background-size: 30px 23px;
        background-repeat: no-repeat;
    }

    .mobile-icons .mobile-icon {
        height: 53px;
        width: 48px;
        border: 1px solid #eee;
        background-position: center;
        margin: 0;
        border-radius: 0;
        margin-left: -1px !important;
        margin-right: -1px !important;
        margin-top: -1px !important;
        margin-bottom: -1px !important;
    }

    .toolbar-custom {
        display: none;
    }

    header .mobile-contact span {
        display: flex;
        justify-content: center;
        align-self: center;
        width: 100%;
        font-size: 1.1em;
    }

    .site-menu ul li {
        display: list-item;
    }

    .site-menu-custom {
        padding: 0;
        min-height: 0;
    }

    .menu-for-mobile {
        padding: 0;
    }

    .navbar-collapse {
        padding: 0;
    }

    .navbar-collapse ul {
        padding: 10px;
        background: #eee;
        -webkit-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
        -moz-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
        box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    }
}

@media (max-width: 615px) {
    .mobile-icons .mobile-icon {
        flex-basis: 50%;
    }

}

@media (max-width: 520px) {
    header .site-branding {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        padding-right: 20px;
        padding-bottom: 10px;
        padding-top: 0;
        margin-top: 20px;
    }

    header .mobile-contact {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        display: none;
    }
}

/* custom style */

.tab-content {
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
}

.tab-content > .active {
    border: none;
}

.product-gallery {
    border: none;
}


.shopping-cart .count-input, .wishlist-table .count-input {
    width: 100px;
    display: flex;
    justify-content: center;
}


li.level1.expanded {
    background-color: #323d86;
}

li.level2.expanded {
    background-color: #323d86;
}
li.level3.expanded {
    background-color: #323d86;
}
li.level4.expanded {
    background-color: #323d86;
}

.expanded>a:first-child{
    background-color: #323d86;
    color: #ffffff !important;
}


.border_bottom_blue {
    border-bottom: 1px solid #30378a;
}


.field-orderpayform-id label {
    color: #000 !important;
}

.checkout-form-label {
    font-size: 16px !important;
    font-weight: bold !important;
}

.checkout-form-bordered {
    border-top: 2px solid blue;
    padding-top: 10px;
}

.padding-20 {
    padding-left: 20px;
}

.product-thumb .not-available {
    z-index: 110;
    width: 160px;
    height: 144px;
    text-align: center;
    position: absolute;
    top: 27px;
    background: url('/themes/unishop/img/not-available.png') 50% no-repeat;
}


.owl-carousel__brand .owl-stage-outer {
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    -moz-box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
    border-radius: 6px;
}

@media (max-width: 1070px) {

    .header.navbar-custom {
        padding: 0 !important;
    }
}

.login-custom a {
    color: #000;
}

.login_link {
    font-weight: bold;
    text-decoration: underline !important;
}

.login_link:hover {
    font-weight: bold;
    text-decoration: none !important;
    color: #00017f;
}

.header__links__detail {
    font-size: 13px;
}

.header__links__detail:hover {
    color: #00017f;
}

.menu-for-desktop {
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {

    .menu-for-desktop {
        margin-top: -41px;
    }
}

.hero-slider1 .owl-carousel .owl-stage-outer {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: 0 5px 0 0 rgba(46, 56, 70, 0.15);
}

/******************************************************************************/
/* Login & Signup Page ********************************************************/
/******************************************************************************/

#login-signup
{
    border: 1px solid black;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    overflow: auto;
    padding: 25px;
}

#login-signup > .col-md-6:nth-child(1)
{
    padding-right: 25px;
}

#login-signup > .col-md-6:nth-child(2)
{
    border-left: 1px solid black;
    border-top: none;
    padding-left: 25px;
    padding-top: 0;
}

@media only screen and (max-width: 991px)
{

    #login-signup > .col-md-6:nth-child(2)
    {
        border-left: none;
        border-top: 1px solid black;
        margin-top: 35px;
        padding-left: 0;
        padding-top: 25px;
    }

    #login-signup > .col-md-6:nth-child(2) .padding-top-3x.hidden-md-up
    {
        display: none;
    }

}

/******************************************************************************/
/* iPhone 5 Visual Bugs Fix ***************************************************/
/******************************************************************************/

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) /* iPhone 5 */
{

    header.navbar.navbar-sticky1.navbar-custom .col-lg-8.col-md-11.col-4.navbar-user-button
    {
        flex: 0 0 30%;
        max-width: 30%;
        padding: 0;
    }

    section .card.card-custom a .col-xs-8
    {
        padding: 0;
        width: 60%;
    }

}

/******************************************************************************/
/* Homepage Cards with Images *************************************************/
/******************************************************************************/

section .card.card-custom a
{
    padding: 0;
    padding-left: 15px;
}

section .card.card-custom a .col-xs-4 img
{
    margin: 0 !important;
    max-width: none;
    width: 80px !important;
}

/******************************************************************************/
/* Center the 4 Navigation Buttons in 1 Row Vertically ************************/
/******************************************************************************/

@media only screen and (min-width: 616px) and (max-width: 767px)
{

    .navbar-custom .navbar-user-button
    {
        margin-top: -10px;
    }

}

/******************************************************************************/
/* Drop Down Menu Triangles ***************************************************/
/******************************************************************************/

.menu-for-mobile .site-menu.site-menu-custom.navbar
{
    margin-top: -2px;
    z-index: 99;
}

.menu-for-mobile .site-menu.site-menu-custom.navbar .navbar-collapse
{
    border-top: none;
}

.menu-for-mobile .site-menu.site-menu-custom.navbar .navbar-collapse:before
{
    border-bottom: 7px solid #d1d2d3;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: '';
    display: inline-block;
    right: 24px;
    position: absolute;
    top: -7px;
}

.menu-for-mobile .site-menu.site-menu-custom.navbar .navbar-collapse:after
{
    border-bottom: 6px solid #d1d2d3;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    content: '';
    display: inline-block;
    right: 25px;
    position: absolute;
    top: -6px;
}

.show .dropdown-menu
{
    animation: none;
    -webkit-animation: none;
}

.dropdown-menu
{
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-menu:before
{
    border-bottom: 7px solid #d1d2d3;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: '';
    display: inline-block;
    left: calc((100% - 9px) / 2);
    position: absolute;
    top: -7px;
}

.dropdown-menu:after
{
    border-bottom: 6px solid #ffffff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    content: '';
    display: inline-block;
    left: calc((100% - 10px) / 2);
    position: absolute;
    top: -6px;
}

/******************************************************************************/
/* Menu for Mobile ************************************************************/
/******************************************************************************/

.menu-for-mobile ul li, .menu-for-mobile ul li a
{
    font-weight: bold;
}

.menu-for-mobile ul li, .menu-for-mobile ul li a
{
    color: #2f3a85 !important;
}

.menu-for-mobile ul li a, .menu-for-mobile ul li a span
{
    text-decoration: none;
}

.menu-for-mobile ul li a:hover
{
    text-decoration: underline;
}

/******************************************************************************/
/* Order Submenu for Mobile ***************************************************/
/******************************************************************************/

#order-submenu-for-mobile
{
    border-top: 1px solid black;
}

/******************************************************************************/
/* Login Menu for Mobile ******************************************************/
/******************************************************************************/

#login-menu-for-mobile ul li:nth-child(2), #login-menu-for-mobile ul li:nth-child(4)
{
    border-top: 1px solid black;
}

/******************************************************************************/
/* Actions Drop Down Menu *****************************************************/
/******************************************************************************/

.dropdown-menu
{
    border-color: #d1d2d3;
}

.dropdown-menu a.dropdown-item
{
    color: #2f3a85;
}

.dropdown-menu a.dropdown-item:hover
{
    color: #2f3a85;
    text-decoration: underline;
}

/******************************************************************************/
/* Desktop User Drop Down Menu ************************************************/
/******************************************************************************/

.login_link + .dropdown-menu a.dropdown-item
{
    line-height: 1.5;
    padding: 3px 20px;
}

/******************************************************************************/
/* Mobile User Drop Down Menus ************************************************/
/******************************************************************************/

.menu-for-mobile
{
    position: absolute;
}

.menu-for-mobile .site-menu.site-menu-custom.navbar
{
    left: auto;
    position: absolute;
    width: auto;
}

.menu-for-mobile .site-menu.site-menu-custom.navbar .navbar-collapse
{
    border: 1px solid #d1d2d3;
    border-radius: 5px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    overflow: hidden;
}

.menu-for-mobile .site-menu.site-menu-custom.navbar .navbar-collapse ul
{
    background: #fff;
    padding: .5rem 0;
}

.menu-for-mobile .site-menu.site-menu-custom.navbar .navbar-collapse ul li
{
    font-weight: 500;
    padding: 3px 20px;
}

.menu-for-mobile .site-menu.site-menu-custom.navbar .navbar-collapse ul li a
{
    font-weight: 500;
}

.menu-for-mobile .site-menu.site-menu-custom.navbar .navbar-collapse:before
{
    border-bottom: 7px solid #d1d2d3;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: '';
    display: inline-block;
    right: 24px;
    position: absolute;
    top: -6px;
}

.menu-for-mobile .site-menu.site-menu-custom.navbar .navbar-collapse:after
{
    border-bottom: 6px solid #ffffff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    content: '';
    display: inline-block;
    right: 25px;
    position: absolute;
    top: -5px;
}

/******************************************************************************/
/* Modal Window and Its Background ********************************************/
/******************************************************************************/

.modal-backdrop.fade
{
    opacity: 0.5;
}

.modal.fade .modal-dialog
{
    margin-top: 138px;
}

/******************************************************************************/
/* Mobile Cart ****************************************************************/
/******************************************************************************/

.quantity-product-item{
    font-size: 12px;
    color: rgb(190, 190, 190);
}

.mobile-img-item{
    min-width: 150px;
}

.mobile-count-item{
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 10px;
    justify-content: space-evenly;
    align-items: center;
    border-top: 1px solid rgb(221, 221, 221);
}

.mobile-product-item>div>div>a{
    color: black;
    text-decoration: none;
}

.mobile-product-item{
    margin-top: 5px;
    white-space: initial;
}

/******************************************************************************/
/* Cart Buttons ***************************************************************/
/******************************************************************************/

#cart_ajax .modal-dialog .btn
{
    min-width: 203px;
}

.shopping-cart-footer:nth-child(3) {
    border-top: none;
}
.shopping-cart-footer-mobile{
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #e1e7ec;
    text-align: center;
}

#cart_ajax .modal-dialog .btn, .shopping-cart-footer .btn, .checkout-footer .btn
{
    appearance: initial;
    -moz-appearance: initial;
    -o-appearance: initial;
    -webkit-appearance: initial;
    border-radius: 3px;
    font-size: 14px;
    height: 44px;
    line-height: 42px;
}

#cart_ajax .modal-dialog .btn[data-dismiss="modal"]
{
    background-color: transparent;
    border-color: #e1e7ec;
    color: #606975;
}

#cart_ajax .modal-dialog .btn[data-dismiss="modal"]:hover
{
    background-color: #f5f5f5;
}

#cart_ajax .modal-dialog .btn[href="/cart/index"], .checkout-footer .btn.btn-primary
{
    background-color: #43d9a3;
    border-color: transparent;
    color: white;
}

#cart_ajax .modal-dialog .btn[href="/cart/index"]:hover, .checkout-footer .btn.btn-primary:hover
{
    background-color: #27c28a;
    border-color: #398439;
}

.icon-edit:before
{
    background-image: url('../img/feather/edit.svg');
    background-size: cover;
    content: '';
    display: block;
    height: 14px;
    width: 14px;
}

footer h3.widget-title
{
    border: none;
    font-weight: bold;
    padding-bottom: 0;
    text-align: left;
}

footer h3.widget-title + ul li h3.widget-title
{
    margin-top: 45px;
}

footer section ul li
{
    padding-left: 0 !important;
}



@media screen and (max-width: 860px) {
    .shopping-cart .product-item .product-thumb, .wishlist-table .product-item .product-thumb {
        display: block;
    }
}




.widget-categories ul>li.has-children.expanded>ul, .widget-links ul>li.has-children.expanded>ul {
    max-height: 1500px;
}
