﻿
body {
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-size: 14px;
    background: #fafafa;
}
.color-white{
    color:#fff;
}
.color-black {
    color: #000;
}
.color-dark {
    color: #333;
}
.bg-color-dark {
    background-color: #333;
}
.bg-color-white {
    background-color: #fff;
}
.bg-color-light {
    background-color: #efefef;
}
.bg-color-primary {
    background-color: #e6111b;
}
.header {
    border-bottom: 2px solid var(--border-color2);
    color: var(--header_cl);
    background-color: var(--header_bg);
    
}

.header-search {
    flex: auto;
    justify-content: space-between;
    gap: 10px;
    background-color: #f3f3f3;
    padding: 3px;
    border-radius: 5px;
}
    .header-search > button,
    .header-search > input {
        border: none;
        background: none;
        outline: 0;
        padding: 5px 10px;
        font-size: 14px;
    }
    .header-search > input {
        flex:auto;
    }
    .header-search > button {
        font-size: 18px;
    }
a {
    color: inherit;
    text-decoration: none;
}
.bg-none{
    background:none;
}
.header-nav > ul > li > a {
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--header_cl);
}
    .header-nav > ul > li > a:hover,
    .header-nav > ul > li > a:focus {
        color: var(--color2);
    }
.btn-header {
    background-color: transparent;
    color: currentColor;
    border: 1px solid #e1e3e1;
}
    .btn-header:hover {
        color: currentColor;
        background-color: var(--color2);
    }
.header a.active {
    color: var(--color2);
}
.btn-primary {
    color: var(--theme1_cl);
    background-color: var(--theme1_bg);
    border-color: var(--theme1_bg);
}
    .btn-primary:hover {
        background-color: var(--color2);
        border-color: var(--color2);
    }
.content {
    display: flex;
}
/*.badge{
    padding:.45rem 1rem;
    word-break:break-all;
    max-width:100%;
    white-space:normal;
}
.badge > button:hover {
    color:#fff !important;
}*/
.grid-card {
    display:grid;
    grid-column-gap: 15px;
    grid-template-columns: 40% 1fr;
    grid-template-areas:
        "image body"
        "image body";
}
    .grid-card .grid-image {
        grid-area: image;
        width: 100%;
    }
    .grid-card .grid-body {
        grid-area: body;
        width: 100%;
    }
ul.products {
    border: 0 solid rgba(0,0,0,.125);
    border-width: 0 0 1px 1px;
    background-color:#fff;
}

li.product {
    position:relative;
    border: 0 solid rgba(0,0,0,.125);
    border-width: 1px 1px 0 0;
    padding: 1em;
    display:flex;
    gap:8px;
    flex-direction:column;
    justify-content:space-between;
}
    li.product:hover {
        box-shadow: 0px 0px 0px 1px #000000;
    }
.product-title{
    /*white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;*/
    font-size:16px;
}
.product-img {
    max-width: 100%;
}
.card-img-top {
    height: 200px;
    width: 100%;
    object-fit: cover;
    background: #dfdfdf;
}
.card-img-product {
    height: 100%;
    width: 100%;
    object-fit: contain;
    /*background: #f4f4f4;*/
}
.card-description {
    height: 187px;
    overflow-y: auto;
    padding: 8px;
    background-color: #dfdfdf;
}
.card-img-popup {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.product-modal{
    position:fixed;
    left:0;
    top:0;
    width:100vw;
    height:100vh;
    max-width:100%;
    background:#000;
    z-index:5;
}
.product-modal > .row {
    width: 100vw;
    height: 100vh;
}
.pm-left {
    overflow-y: auto;
    max-height: 100%;
}
.pm-right {
    background: #333;
    max-height: 100%;
}
.pm-right-scroll {
    overflow-y: auto;
    max-height: calc(100% - 60px);
}
body.product-modal-open {
    overflow: hidden;
}
body:not(.product-modal-open) .product-modal {
    display: none;
}
.card-pbtn {
    right: 0;
    bottom: 0;
    border:1px solid rgba(0,0,0,.125);
    border-right:none;
    border-bottom:none;
}
.p-slider {
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.border-radius-0 {
    border-radius: 0;
}
.pm-slider .slick-slider {
    height:calc(-150px + 100vh);
}
.pd-slider .slick-slider {
    height: 51vh
}
.card {
   /* border-color: var(--theme1_bg);*/
}
.card-header {
    background-color: var(--theme1_bg);
    color: var(--theme1_cl);
    font-weight: 600;
    padding:0.5rem;
}
.flex-auto{
    flex:auto;
}
.like-btn {
    color: #ddd;
    font-size: 25px;
    background: #fff;
    border: #ddd;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    padding: 3px 0 0 0;
    box-shadow: 0px 0px 10px 0px rgba(207,207,207,0.3);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(207,207,207,0.3);
    -moz-box-shadow: 0px 0px 10px 0px rgba(207,207,207,0.3);
}
    .like-btn:hover,
    .like-btn.active {
        color: #fab005;
    }
        .like-btn.active .like-uncheck,
        .like-btn:not(.active) .like-check {
            display: none;
        }
.card-title {
    font-size: 14px;
    font-weight:400;
    color:#696969;
}
.w-initial {
    width: initial;
}
.header-logo{
    width:100%;
    height:67px;
}
.header-logo > img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center center;
}
.nav1 li:nth-child(1) a {
    padding-left:0 !important;
}
.info {
    display: flex;
    gap: 5px;
    align-items: center;
}
    .info > input,
    .info > select,
    .info > div {
        flex: auto;
        align-self: center;
        width: initial;
    }
.info-btn {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: .375rem .75rem;
    font-size:1rem;
    line-height:1.5rem;
}
    .info-btn .fa-regular,
    .info-btn .fa-solid {
        line-height: 1.5rem !important;
    }
.info-btn:hover {
    border-color:#333;
}
.info-label {
    width: 160px;
    border: 1px solid #b8d5dd;
    padding: 5px 6px;
    background-color: #b8d5dd;
    word-wrap: break-word;
    flex-shrink: 0;
}
.modal-header {
    padding: .5rem 1rem;
}

.filter-ul{
    max-height:200px;
    overflow-y:auto;
}
.no-result {
    border: 1px dashed #ccc;
    background-color: #fff;
    padding: 1rem;
    margin: 0 0 1.5rem 0;
    text-align: center;
}
.list-group-item.active {
    background-color: var(--theme1_bg);
    border-color: var(--theme1_bg);
}
.fs-7{
    font-size:0.9rem;
}
.fs-8 {
    font-size: 0.8rem;
}
.cookie{
    background-color:var(--theme1_bg);
}
.page-item.active .page-link{
    background-color: var(--theme1_bg);
    border-color: var(--theme1_bg);
}
.page-link {
    color: var(--theme1_bg);
}
.beta {
    border: 1px dashed #7a1b3b;
}

.scart, .smenu {
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 390px;
}

.smenu {
    grid-template-columns: 390px 1fr;
}
.icon-btn {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}
.gray-border {
    border: 1px solid #6C7275;
}
.scart-light {
    background: #00000066;
}

.scart-content {
    background: #fff;
    display: grid;
    grid-template-rows: 1fr auto;
    overflow-y: auto;
}

body:not(.megamenu-open) .megamenu,
body:not(.scart-open) .scart,
body:not(.smenu-open) .smenu {
    display: none;
}

body.scart-open,
body.smenu-open {
    overflow: hidden;
}
.line-1{
    height:1px;
    background-color:#ccc;
}
.cart-list > li {
    border-bottom: 1px solid #E8ECEF;
    padding-bottom: 13px;
    margin-bottom: 16px;
}
.obox {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #141718;
    background-color: #f3f5f7;
    gap: 10px;
    width: calc(25% - 12px);
    min-height: 52px;
    border-radius: 5px;
}

    .obox.not-active {
        background-color: #fefefe;
    }

    .obox > span {
        padding-top: 3px;
    }

.obox-cargoname {
    min-width: 335px;
}
.cursor-pointer{
    cursor:pointer;
}
.overflow-y-auto{
    overflow-y:auto;
}
.border-1px {
    border: 1px dashed #e8ecef;
}
.mega-left-ul li > a {
    display:block;
    line-height: 2.3rem;
}
.mega-left-ul li:not(:nth-last-child(1)) {
    border-bottom: 1px solid #e8ecef;
}
.cart-wrapper{
    display:flex;
    gap:10px;
    font-size:1.2rem;
}
.carttab {
    background: none;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 3px 5px;
}
.header-bars{
    font-size:28px;
}
.cbtn{
    border:none;
    display:flex;
    gap:5px;
    align-items:center;
    justify-content:center;
}
.cbtn1 {
    background-color: #38cb89;
    color:#fff;
    padding:7px;
}
    .cbtn1:hover {
        background-color: #269d67;
        color: #fff;
    }
.cbtn2 {
    background-color: #c40948;
    color: #fff;
    padding: 7px;
}

    .cbtn2:hover {
        background-color: #c40948;
        color: #fff;
    }
.variant_condition{
    margin-bottom:5px;
}
.ptag i {
    font-size: 18px;
}
.sale-price {
    font-size: 1.2rem;
}
.list-price {
    color: #7b7b7b;
}
.card-body{
    padding:.5rem;
}
.ptags {
    display: flex;
    gap: 5px;
    flex-wrap:wrap;
}
.ptag {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(207,207,207,0.3);
    flex: auto;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    color: #fff;
}
/*
.ptag-free-shipping {
    background-color: #ffead8;
    color: #f27a1a;
}
.ptag-installment {
    background-color: #fef0f2;
    color: #c40948;
}
.ptag-discount {
    background-color: #effbf5;
    color: #027a34;
}
.ptag-campaign {
    background-color: #fef4ec;
    color: #b44c11;
}
*/
.pcard .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slick-slide{
    height:auto !important;
}
.menu-search h6{
    font-size:13px;
}
.side-show-btn{
    border:none;
    outline:none;
    color:currentColor;
}
.circled-images img{
    border-radius:50%;
}
.hover-effect-scale-images img {
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    overflow:hidden;
}
.hover-effect-scale-images img:hover {
    -webkit-transform: scale(.9) rotate(0.01deg);
    transform: scale(.9) rotate(0.01deg);
}
/*X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
}


/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    
}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .obox {
        width: calc(50% - 8px);
    }
    .header {
        flex-wrap: wrap;
    }

    .header-search {
        width: 100% !important;
        order: 10;
    }

    .grid-card {
        grid-template-areas:
            "image image"
            "body body";
    }

    .product-modal > .row {
        width: initial;
        height: initial;
    }

    .pm-left {
        padding: 0 1.5rem;
    }

    .info {
        flex-wrap: wrap;
    }

    .info-label {
        width: 100%;
    }

    .fflex2 {
        order: 100;
        width: 100%;
    }

    .scart {
        grid-template-columns: 1fr 380px;
    }

    .obox-cargoname {
        min-width: 120px;
    }

    .header-nav {
        flex:auto;
    }
    .header-logo {
        height:50px;
    }
    .header-logo > img{
        object-position:center center;
    }
}


/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .obox {
        width: 100%;
    }
    .card-body{
        padding:0.5rem;
    }
    .card-title{
        font-size:14px;
    }
    .header-bars{
        font-size:24px;
    }
}

/*X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
}