﻿/* -------------------------------------------------------------------------- */
/*                              Product List Style                            */
/* -------------------------------------------------------------------------- */

#dnn_ctr391_ProductList_pnlProductList {
    margin: 0 -.5rem;
}

.discountsPercent {
    position: absolute;
    background: #DE3434;
    border-radius: 0 16px 16px 0;
    padding: 0.125rem 0.75rem;
    color: #fff;
    display: block;
    top: 1.5rem;
    left: 0;
}

.ProductList__Main {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}


.productList__Card {
    border-radius: var(--border-radius);
    margin: 0.5rem;
    overflow: hidden;
    background: #fff;
    height: 420px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.ProductList__Main .productList__Card {
    margin: 0;
    position: relative;
}

.productList__Card:hover {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}

.productList__Card__Title a img {
    display: inline;
}

/* .personabar-visible .productList__Card {
    height: auto;
  } */

.productList__Card_Wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.productList__Card__ImgBox {
    flex: 0 0 70%;
    padding: 1.5rem;
    max-height: 70%;
}

.productList__Card__ImgBox img {
    display: block;
    width: auto;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
}

.productList__Card__Content {
    flex: 0 0 30%;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.productList__Card__Title {
    text-align: right;
    color: var(--tc1);
    font-weight: bold;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.productList__Card__OutOfStock {
    text-align: left;
    color: var(--tc2);
}

.productList__Card__PriceBox {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.productList__Card__FinalPrice {
    font-weight: bold;
    color: var(--mc1);
    position: relative;
}



.productList__Card__OldPrice {
    color: #B2B2B2;
    position: relative;
    font-size: var(--fz-sm) !important;
    margin-left: 0.5rem;
}

.productList .draggable {
    margin: 0 -.5rem;
}

.productList__Card__Content__Bottom {
    display: flex;
    justify-content: space-between;
}

/* counter */


/* .ProductList__CountDown .ListCell {
    flex: 0 0 33.33%;
    max-width: 33%;
    padding: .5rem;
} */

.productList_Count__Card {
    border-radius: var(--border-radius);
    margin: 0.5rem;
    overflow: hidden;
    background: #fff;
    height: 420px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.productList_Count__Card:hover {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}

.productList_Count__Card__Title a img {
    display: inline;
}

/* .personabar-visible .productList_Count__Card {
    height: auto;
  } */

.productList_Count__Card_Wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.productList_Count__Card__ImgBox {
    flex: 0 0 70%;
    padding: 1.5rem;
    max-height: 70%;
}

.productList_Count__Card__ImgBox img {
    display: block;
    width: auto;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
}

.productList_Count__Card__Content {
    flex: 0 0 30%;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.productList_Count__Card__Title {
    text-align: right;
    color: var(--tc1);
    font-weight: bold;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.productList_Count__Card__OutOfStock {
    text-align: left;
    color: var(--tc2);
}

.productList_Count__Card__PriceBox {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.productList_Count__Card__FinalPrice {
    font-weight: bold;
    color: var(--mc1);
    position: relative;
}

/* .productList_Count__Card__FinalPrice::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../Images/toman.svg) no-repeat center;
    background-size: cover;
    width: 25px;
    height: 16px;
} */

.productList_Count__Card__OldPrice {
    color: #b2b2b2;
    position: relative;
    margin-left: 0.5rem;
}

.productList .draggable {
    margin: 0 -.5rem;
}

.productList_Count__Card__Content__Bottom {
    display: flex;
    justify-content: space-between;
}

.productList__Card__Countdown {
    display: flex;
    background: #123163;
    border-radius: 16px 0px 0px 16px;
    position: absolute;
    padding: 0 0.25rem;
    top: 24px;
}

.timer__Box {
    padding: 0 0.25rem;
    position: relative;
}

.timer__Box span {
    width: 18px;
    display: block;
}

.timer__Box:not(:last-child):before {
    content: "";
    display: block;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translate(0, -50%);
    border: 1px dashed #F6CC7E;
    width: 1px;
    height: 16px;
}

.product__Ttl legend {
    padding-bottom: 12px;
    border-bottom: 1px solid #E9E9E9;
}

body.detail .product__Ttl legend{
    display: none;
}

/* sort style */

.ddlSortCatalogue {
    min-width: 110px !important;
    border: none !important;
    border-radius: var(--border-radius-sm) !important;
    position: absolute;
    top: 0;
    left: 0 !important;
    width: auto;
    color: var(--mc3);
    font-size: 14px;
    font-weight: 900;
    background-color: transparent !important;
    padding: 0.5rem 0.2rem;
}

.ddlSortCatalogue>option {
    color: var(--mc2);
}

/* Filter Style */

.FturLable,
.lblPriceFilter,
.LblColorFilter,
.LblBrandFilter,
.LblSizeFilter {
    font-weight: bold;
    display: block;
    padding: 0.75rem 0rem 0.75rem 1rem !important;
    border-bottom: unset;
    color: var(--tc4);
    font-size: var(--fz-sm);
}

.filter-wrap .TablePanel {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

div[id$="FilterProducts_FilterItemPanle"] table td label:after,
.DivBrandFilter label:after,
.DivSizeFilter label::after,
.DivColorFilter label::after {
    right: 0;
    border-radius: 3px;
    border: 1px solid var(--mc1);
    background-color: transparent;
    background-size: 20px;
    background-position: -1px -1px;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    z-index: 2;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
}

div[id$="FilterProducts_FilterItemPanle"] table td input:checked~label:after,
.DivBrandFilter input:checked~label:after,
.DivSizeFilter input:checked~label:After,
.DivColorFilter input:checked~label:After {
    background-color: var(--mc1);
    border-color: var(--mc1);
}

div[id$="FilterProducts_FilterItemPanle"] table td label,
.DivBrandFilter label,
.DivSizeFilter label,
.DivColorFilter label {
    padding: 7px 24px 7px 0 !important;
    font-size: 14px !important;
    background-color: transparent !important;
    margin: 0 1rem !important;
    width: 100% !important;
}

.DivColorFilter input:checked~label:After {
    width: 16px;
    height: 16px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 0;
    border: 1px solid var(--mc1);
}

div[id$="FilterProducts_FilterItemPanle"] table td input:checked~label:before,
.DivBrandFilter input:checked~label:before,
.DivSizeFilter input:checked~label:before {
    display: none;
}


.FturLable i.fa,
.FilterColorPanel i.fa,
.FilterBrandPanel i.fa,
.FilterSizePanel i.fa {
    top: 22px;
    left: 0 !important;
    transform: translate(0, -50%);
    height: auto;
    font-size: 16px;
    color: var(--mc2);
    position: absolute;
    z-index: 1;
}

.PriceFilter .DivPriceFilter {
    margin-bottom: 12px;
}

.price-max-range {
    font-size: 14px;
}

.PriceFilter .lblPriceFilter {
    margin-bottom: 6px;
    font-weight: bold;
    display: block;
    padding: 6px 0 !important;
    position: relative;
}

.PriceFilter .lblPriceFilter::before {
    content: "";
    display: block;
    padding: 12px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 5px;
    background: url(../Images/double-arrow.svg) no-repeat center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: var(--transition);
    transform: rotate(180deg);
}

.PriceFilter .lblPriceFilter.open::before {
    transform: rotate(0);
}

ّ div[id$="FilterProducts_FilterItemPanle"] table td,
.filter-wrap .TablePanel {
    background-color: transparent;
}

/* .sideProductList {
    border: 1px solid #D6D9DD;
    background: var(--mc2);
    margin-bottom: 32px;
    padding: 12px;
  }
  
  .sideProductList .title {
    border-bottom: 1px solid #D6D9DD;
    margin: 0 15px 15px;
    padding: 6px 0;
  } */

.FilterItemBox {
    border: unset;
    padding: 0;
    margin: 0 16px 8px;
}

#FilterColorPanel,
#FilterSizePanel,
#FilterBrandPanel,
.FilterItemBox,
.PriceFilter,
.FilterAvailability {
    padding: 0;
    margin: 0 !important;
    margin-bottom: 1.5rem !important;
    width: -webkit-fill-available;
    position: relative;
    background: #fff;
}

#FilterColorPanel {
    display: none !important;
}


.FilterAvailability #availability {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 1.25rem;
}

.FilterAvailability #availability,
.FilterAvailability #availability:after,
.FilterAvailability #availability:before,
.FilterAvailability #availability *,
.FilterAvailability #availability *:after,
.FilterAvailability #availability *:before,
.FilterAvailability #availability+.tgl-btn {
    box-sizing: border-box;
}

.FilterAvailability #availability::-moz-selection,
.FilterAvailability #availability:after::-moz-selection,
.FilterAvailability #availability:before::-moz-selection,
.FilterAvailability #availability *::-moz-selection,
.FilterAvailability #availability *:after::-moz-selection,
.FilterAvailability #availability *:before::-moz-selection,
.FilterAvailability #availability+.tgl-btn::-moz-selection,
.FilterAvailability #availability::selection,
.FilterAvailability #availability:after::selection,
.FilterAvailability #availability:before::selection,
.FilterAvailability #availability *::selection,
.FilterAvailability #availability *:after::selection,
.FilterAvailability #availability *:before::selection,
.FilterAvailability #availability+.tgl-btn::selection {
    background: none;
}

.FilterAvailability #availability+.tgl-btn {
    outline: 0;
    display: block;
    width: 2.5rem;
    height: 1.25rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #E6E7EA;
    border-radius: 1.25rem;
    padding: 2px;
    transition: all 0.4s ease;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
}

.FilterAvailability #availability+.tgl-btn:after,
.FilterAvailability #availability+.tgl-btn:before {
    position: absolute;
    display: block;
    content: "";
    width: 1rem;
    height: 1rem;
}

.FilterAvailability #availability+.tgl-btn:after {
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.FilterAvailability #availability+.tgl-btn:before {
    display: none;
}

.FilterAvailability #availability:checked+.tgl-btn:after {
    left: 50%;
}

.FilterAvailability #availability+.tgl-btn:after {
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
}

.FilterAvailability #availability:checked+.tgl-btn {
    background: var(--mc1);
}

.FilterAvailability label {
    font-size: var(--fz-sm);
    font-weight: 700;
    color: var(--tc4);
}

.filter-wrap {
    display: flex;
    flex-direction: column;
}

.PriceFilter {
    border: unset;
    border-bottom: 1px solid #e6e7ea;
    padding: 0;
    margin-bottom: 1.5rem;

    order: 0;
}

.FilterItemPanle {
    order: 2;
}

div#FilterSizePanel {
    order: 3;
}

div#FilterBrandPanel {
    order: 1;
}

.submit-btn {
    order: 6;
}

.DivColorFilter,
.DivBrandFilter,
.DivSizeFilter {
    background-color: transparent;
    border: none;
    margin-top: 0;
    /* display: none; */
    padding: 0 !important;
    max-height: 300px;
    overflow: auto;
}

.filter-close .FilterItemBox {
    margin: 0 0 8px;
}

.filter-head {
    padding-left: 15px;
    padding-right: 15px;
}

.DivColorFilter>div {
    display: inline-block;
    width: 100%;
}

.DivColorFilter input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}

.filter-wrap .submit-btn input[type="submit"] {
    width: 100%;
    color: #fff;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    padding: 8px 28px;
    background-color: var(--mc2);
    cursor: pointer;
    user-select: none;
    border: 1px solid var(--mc2);
    transition: var(--transition);
    margin: 0;
}

.filter-wrap .submit-btn input[type="submit"]:hover {
    background-color: transparent !important;
    color: var(--mc2) !important;
}

.filter-close {
    background: #fff !important;
}

.filter-close .submit-btn input[type="submit"] {
    border-radius: 0;
    width: 100%;
}

.filter-mobile-nav {
    margin-bottom: 2rem;
    border-radius: 0;
    overflow: hidden;
    color: var(--tc1);
    padding: 12px 32px;
    border-radius: var(--border-radius-sm);
    border: 1px solid #d9d9d9 !important;
    text-align: right;
    background: white url(../Images/filter.svg) no-repeat center right 8px;
}

.filter-mobile-nav i {
    top: 15px;
}

div[id$="FilterProducts_FilterItemPanle"] table td label:after,
.DivBrandFilter label:after,
.DivSizeFilter label::after,
.DivColorFilter label::after {
    background-image: url("data:image/svg+xml,<svg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'><path d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23FAFAFA' fill-rule='nonzero'/></svg>") !important;
}

.nofilter .DnnModule-WB_FilterProducts {
    display: none;
}

.categoryMsg__Wrapper {
    background-color: white;
    border-radius: var(--border-radius);
    border: 1px solid #E7E7E7;
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.categoryMsg__Wrapper .title_Md2 {
    color: var(--mc1);
    font-size: 20px;
}

.categoryMsg__Wrapper .showmore-button {
    font-weight: bold;
    font-size: 14px;
}

.categoryMsg__Wrapper .showmore-button{
    margin-top: 0 !important;
    text-align: center;
    position: relative;
    padding-top: 2rem;
}

.categoryMsg__Wrapper .showmore-button::before{
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    position: absolute;
    display: block;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    transform: translateY(-100%);
    transition: var(--transition);
    visibility: visible;
    opacity: 1;
}

.categoryMsg__Wrapper .showmore-button.active::before{
    visibility: hidden;
    opacity: 0;
}

.colorBox .showmore-button i {
    margin: 0rem 0.5rem;
}

.colorBox .showmore-button {
    margin-top: 0.5rem;
    justify-content: center !important;
    align-items: center;
    border: solid 1px #D9D9D9;

}


/* -------------------------------------------------------------------------- */
/*                            Product Detail Style                            */
/* -------------------------------------------------------------------------- */

.DetailTop {
    border-radius: var(--border-radius-sm);
    border: 1px solid #E7E7E7;
    background:var(--white);
}

.priceAndBasket {
    border: 1px solid #E7E7E7;
    background: #F8F8F8;
    border-radius: var(--border-radius-sm);
}

.priceAndBasket .brandimage__Wrapper {
    justify-content: center;
    max-height: 3rem;
    margin: 0rem 0rem 1rem;
}

.brandimage__Wrapper .brandimage__Wrapper_inner {
    background: white;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.priceAndBasket .brandimage__Wrapper img {
    max-height: 3rem;
    margin: 0.2rem;
}

.priceAndBasket .wishlsitBoxOut {
    border: 1px solid #D9D9D9;
    color: var(--mc1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    padding: .5rem 1.5rem;

}

.Detail .cart-btn {
    width: 100%;
}

.priceAndBasket .old_prices {
    text-align: left;
    margin-bottom: 0.5rem;
}

.priceAndBasket .SalePriceBox {
    display: flex;
    justify-content: space-between;
    color: var(--mc1);
    font-weight: bold;
    align-items: center;
    margin-bottom: 1rem;
}


.Detail .DiscountsPercent {
    background: #DE3434;
    border-radius: 5px 20px 20px 5px;
    color: #fff;
    padding: .25rem .5rem;
    margin-right: 5px;
    line-height: normal !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.Detail .OldPrice {
    position: relative;
    color: #A4A4A4;
}

.Detail .OldPrice::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #A4A4A4;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.priceAndBasket .addBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ceced4;
    padding-top: 1rem;
    /* margin-bottom: 1rem; */
}

.priceAndBasket .addToCart>span {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding-left: 2rem;
}


.addToCart>span{
    font-size: var(--fz-md) !important; 
}

.priceAndBasket .addToCart>span {
    transition: var(--transition);
}

.priceAndBasket .addToCart>span::before {
    content: "";
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    mask-image: url(../Images/basket.svg);
    -webkit-mask-image: url(../Images/basket.svg);
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: cover;
    -webkit-mask-size: cover;
    background: #fff;
    left: 0;
    transition: var(--transition);
    transform: rotate(0deg);
}

.addToCart:after,
.addToCart:before {
    display: none !important;
}

@keyframes basketShake {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(5deg);
    }

    30% {
        transform: rotate(-5deg);
    }

    45% {
        transform: rotate(4deg);
    }

    60% {
        transform: rotate(-4deg);
    }

    75% {
        transform: rotate(2deg);
    }

    85% {
        transform: rotate(-2deg);
    }

    92% {
        transform: rotate(1deg);
    }

    100% {
        transform: rotate(0);
    }
}

.showmore-button {
    margin-top: 1rem;
}

.showmore-button span {
    position: relative;
    cursor: pointer;
}

.showmore-button span .arrow-down {
    content: "";
    display: block;
    cursor: pointer;
    position: absolute;
    top: -2px;
    right: 100%;
    background: var(--tc2);
    width: 20px;
    height: 20px;
    transition: var(--transition);
    mask-image: url(../Images/arrow.svg);
    -webkit-mask-image: url(../Images/arrow.svg);
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: cover;
    -webkit-mask-size: cover;
}

.home__About_Wrapper  .showmore-button span .arrow-down,
.home__About_Wrapper  .showmore-button span .arrow-up{
    position: static;
}

.showmore-button span .arrow-up {
    content: "";
    display: block;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 100%;
    background: var(--tc2);
    width: 20px;
    height: 20px;
    transition: var(--transition);
    mask-image: url(../Images/arrow.svg);
    -webkit-mask-image: url(../Images/arrow.svg);
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: cover;
    -webkit-mask-size: cover;
    transform: rotate(180deg);
}

.priceAndBasket .addToCart.show-loading>span::before {
    animation: basketShake 0.75s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
}

/* qty */
.Detail .QTY-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0.75rem;
    min-width: fit-content;
}

.Detail .QTY-box input {
    width: 25px !important;
    text-align: center;
    border: 1px solid #D3D3D3;
    border-radius: 0;
    height: 42px;
    background: transparent;
    cursor: default;
    background: var(--white);
    font-family: "IranYekan";
}

.Detail .QTY-box .QTY-up,
.Detail .QTY-box .QTY-down {
    width: 20px;
    height: 42px;
    background: var(--white);
    color: var(--mc1);
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D3D3D3;
    user-select: none;
    transition: var(--transition);
}

.QTY-box .QTY-up.QTY-disabled,
.QTY-box .QTY-down.QTY-disabled {
    cursor: not-allowed;
    color: rgb(221, 221, 221) !important;
}

.Detail .QTY-box .QTY-up>span,
.Detail .QTY-box .QTY-down>span {
    display: block;
    transform: var(--transition);
}

.Detail .QTY-box .QTY-down {
    border-right: none;
    border-radius: 5px 0 0 5px;
}

.Detail .QTY-box .QTY-up {
    border-left: none;
    border-radius: 0 5px 5px 0;
}

.QTY-box>span:not(.QTY-down, .QTY-up) {
    display: none;
}

/* qty end*/



.Detail .ProName h2 {
    right: 0;
    padding-left: 0.5rem;
    background-color: white;
    display: inline;
    position: relative;
    z-index: 2;
}

.Specifications ul {
    padding-right: 1rem;
}

.Specifications ul li {
    color: var(--tc1);
    list-style: disc;
    font-weight: 500;
}

.Specifications table {
    width: 100% !important;
}

/* Models */

.brandBox {
    border-bottom: 1px solid #E7E7E7;
}

.modelBox .Models {
    margin-bottom: 2rem;
    position: relative;
}

.modelBox .Models .Display {
    border-radius: 4px;
    padding: 10px 1rem;
    background: white;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: solid 1px #E7E7E7;
    cursor: pointer;
}

.modelBox .Models .Display>i {
    transition: var(--transition);
}

.modelBox .Models .Display.open>i {
    transform: rotate(180deg);
}

.modelBox .Models .Display>.modelName {
    white-space: nowrap;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.DropModels {
    width: 100%;
    border-radius: 0px 0px 4px 4px;
    border: solid 1px #E7E7E7;
    border-top: solid 0px transparent;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    max-height: 13.75rem;
    overflow-y: auto;
}

.DropModels::-webkit-scrollbar {
    width: 10px;
}

.DropModels::-webkit-scrollbar-thumb {
    transition: var(--transition);
    background: var(--mc1,#a1a3a8);
    border-radius: 10px;
}

.DropModels::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.DropModels li.ModelItem {
    background: white;
    transition: var(--transition);
}

.DropModels li.ModelItem:hover {
    background: rgb(240, 240, 240);
}

.DropModels li.ModelItem>label {
    padding: 0.625rem 1rem;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* colors */
.colorChoices {
    display: flex;
    flex-wrap: wrap;
    width: 320px;
}

.colorChoices label.chooseColor {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.colorChoices label.chooseColor .product__Color {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    border: solid 2px #B2B2B2;
    border-radius: 50%;
    margin-left: 0.5rem;
}

.colorChoices label.chooseColor .product__Color>.checkmark {
    position: absolute;
    width: 60%;
    height: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../Images/Tick.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0;
    transition: var(--transition);
    filter: drop-shadow(0px 2px 50px red);
}

.colorChoices label.chooseColor>input:checked~.product__Color>.checkmark {
    opacity: 1;
}

/* .............. */


/* Detail Image Gallery */

.Detail .imageBox {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-content: flex-start;
}

.Detail .image {
    width: 100%;
    position: relative;
}

.Detail .image a {
    display: block;
    overflow: hidden;
    /* border-radius: var(--border-radius); */
    /* box-shadow: 0 0 10px rgb(0 0 0 / 15%); */
}


.Detail .imageBox {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-content: flex-start;
}

.Detail .image {
    width: 100%;
    position: relative;
}

.Detail .image a {
    display: block;
    overflow: hidden;
    /* border-radius: var(--border-radius); */
    /* box-shadow: 0 0 10px rgb(0 0 0 / 15%); */
}

.Detail .image a img {
    width: 100%;
}

.Detail .GalleryWrapper {
    padding-left: 15px;
    width: auto;
    order: 1;
    display: flex;
    justify-content: flex-start;
    padding: 2rem 0 0;
    margin: 0 -7px 0;
    min-width: 100%;
}

.Detail .GalleryInner {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
}

.Detail .GalleryOuter {
    margin-bottom: 0;
    width: 25%;
    padding: 0 7px;
    min-height: 94px !important;
}

.Detail .GalleryOuter .GalleryInner {
    width: fit-content;
}

.Detail .GalleryOuter .more-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #2F2F2F80;
    color: #fff;
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.Detail .wishlsitBoxOut {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.Detail .addToCart {
    width: 100%;
    padding: 8px 24px;
    border: 1px solid var(--mc1);
    border-radius: var(--border-radius-sm);
    display: inline-block;
    transition: var(--transition);
    white-space: nowrap;
    background: var(--mc1);
    color: #fff;
    outline: unset !important;
    cursor: pointer;
    transition: var(--transition);
}

.Detail .addToCart:hover {
    background: hsl(196, 100%, 37%);
}

/* WhatsApp Btn */

.whatsappBtn {
    width: 100%;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4ECB5B;
    color: white;
    transition: var(--transition);
    cursor: pointer;
    border-radius: var(--border-radius-sm);
}

.whatsappBtn:hover {
    background: hsl(126, 55%, 45%);
    color: white;
}

.whatsappBtn>span {
    background: white;
    margin-right: 0.5rem;
}

/* ........... */

/* Avilable and Outofstock Buttons  */
.ModNBStoreProductListC button.product-reminder {
    width: 100% !important;
    background-color: #ff0000 !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    outline: none !important;
    border: none !important;
    transition: var(--transition);
    text-align: center !important;
}

.ModNBStoreProductListC button.product-reminder:hover {
    background-color: rgb(212, 0, 0) !important;
}

.ModNBStoreProductListC button.product-reminder span {
    margin-left: 0.5rem !important;
}

.priceAndBasket {
    min-height: 265px;
}

.priceAndBasket .OutOfStock {
    min-height: 218px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

/* ........... */

/* Reminder modal  */

#NbStore-reminder .modal-dialog {
    border-radius: var(--border-radius) !important;
}

#NbStore-reminder .modalRight {
    display: none !important;
}

#NbStore-reminder h4.modal-title {
    margin-top: 1rem !important;
}

#NbStore-reminder .modalLeft {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
    border-radius: var(--border-radius) !important;
}

#NbStore-reminder .modal-header .close {
    margin: 0 !important;
    outline: none !important;
    border: none !important;
}

#NbStore-reminder .modal-body .userEmail {
    margin-bottom: 0.5rem !important;
}

#NbStore-reminder #btnSubmitReminder {
    border: none !important;
    outline: none !important;
    background-color: var(--mc1);
    border-radius: var(--border-radius);
    padding: 12px 31px;
    margin-right: 0 !important;
    color: white;
    font-weight: bold;
}

/* ........... */

/* Detail Information */

.Information {
    margin: 2rem 0;
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius-sm);
    background: #fff;
    border: 1px solid #E7E7E7
}

.Information article {
    font-weight: 300;
}

.Information__Nav {
    border-bottom: 1px solid #26274533;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.Information__Nav__Item {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    margin-left: 24px;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.Information__Nav__Item>span {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    margin-left: 0.5rem;
    background: var(--gray);
    transition: var(--transition);
    mask-size: contain;
    -webkit-mask-size: contain;
}

.active>.Information__Nav__Item {
    border-bottom: 2px solid var(--mc3);
    color: var(--mc3);
}

.active>.Information__Nav__Item>span {
    background: var(--mc3);
}

.Information__Nav__Item .wb_Icon {
    margin-left: 6px;
    background: var(--tc2);
    width: 16px;
    height: 16px;

}

.active>.Information__Nav__Item .wb_Icon {
    background: var(--mc1);
}

.UlGroupListView {
    /* border: 1px solid #26274533; */
    /* border-radius: 8px; */
    overflow: hidden;
}

.UlGroupListView>span {
    display: none !important;
}

.UlGroupListView li {
    display: flex;
}

/* .UlGroupListView li:not(:last-child) {
    border-bottom: 1px solid #26274533;
  } */

.UlGroupListView li:nth-child(even) {
    background-color: #F4f4f4;
}

.UlGroupListView li span:first-child {
    background: transparent !important;
    color: var(--mc2) !important;
    margin: 0 !important;
    /* border-left: 1px solid #26274533; */
    width: 15% !important;
}

.UlGroupListView li span:nth-child(2) {
    background: transparent !important;
    margin: 0 !important;
    width: 70% !important;
}

.UlGroupListView li span {
    font-size: var(--fw-md);
    font-weight: var(--fw-md);
}

.Information__Tab__Content .showMore {
    position: relative;
}

/* .Information__Tab__Content .showMore::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5018382352941176) 50%, rgba(255, 255, 255, 0) 100%);
} */

.Information__Tab__Content .showmore-button {
    color: var(--mc1);
    cursor: pointer;
    margin-top: 12px;
    font-family: inherit;
    text-align: left;
}



.Information__Tab__Content .showmore-button i {
    font-size: 12px;
    margin-right: 6px;
    color: var(--mc1);
}

/* Information In Mobile */

.InformationAc__Card {
    padding: 0 15px;
    border: 1px solid #26274533;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    position: relative;
    background: #fff;
}

.InformationAc__Card__Body {
    border-top: 1px solid #26274533;
    padding: 16px 0;
}

.InformationAc__Card__Head {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--tc1);
}

.InformationAc__Card__Head i {
    font-size: 12px;
    transition: var(--transition);
    color: var(--mc1);
    transform: rotate(-180deg);

}

.InformationAc__Card__Head__Text {
    display: flex;
    align-items: center;
    color: var(--tc1);
}

.InformationAc__Card__Head .wb_Icon {
    background: var(--tc1);
}

.InformationAc__Card.open .InformationAc__Card__Head {
    color: var(--mc1);

}

.InformationAc__Card.open .InformationAc__Card__Head i {
    transform: rotate(0);

}

.InformationAc__Card__Head .wb_Icon {
    margin-left: .25rem;
}

.InformationAc__Card.open .wb_Icon {
    background: var(--mc1);
}



/* -------------------------------------------------------------------------- */
/*                                Side Category                               */
/* -------------------------------------------------------------------------- */

.categorySideStyle .SCat-Main li>a {
    display: block;
    color: var(--tc2);
    padding: .25rem;
    padding-right: 10px;
    font-weight: bold;
    position: relative;
    transition: var(--transition);
}

.categorySideStyle .SCat-Main li>a::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--tc2);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.categorySideStyle .SCat-Main li>a:hover {
    color: var(--tc1);
}

.categorySideStyle .SCat-Main li>a:hover::before {
    background: var(--tc1);
}

.categorySideStyle .SCat-Main>li.SCat-have-sub-menu>ul.open-sub {
    display: block !important;
    background-color: white;
}

.categorySideStyle li:not(.SCat-Active, .SCat-ActiveParent),
.categorySideStyle .SCat-Active>a,
.categorySideStyle .SCat-ActiveParent>a {
    display: none !important;
}

.categorySideStyle .SCat-Active>.SCat-sub-menu>li,
.categorySideStyle .lastCategory li,
.categorySideStyle .firstLayerCategory>li {
    display: block !important;
}





/* -------------------------------------------------------------------------- */
/*                                 RESPONSIVE                                 */
/* -------------------------------------------------------------------------- */

@media all and (max-width: 991px) {
    .priceAndBasket .addBox {
        display: none;
    }

    #dnn_ProductRightThreePane .DnnModule-DNN_HTML {
        display: none !important;
    }

    .Detail .GalleryOuter {
        width: 33.3333%;
    }

    .priceAndBasket {
        min-height: 160px !important;
    }

    .priceAndBasket .SalePriceBox {
        margin-bottom: 0;

    }

    #NbStore-reminder .modalLeft {
        padding: 1rem !important;
    }

    /* .relatedPro .RelatedWrapper, */
    .blogListSlider .mainArticleWrapper,
    .blogRelated .related {
        overflow-x: auto !important;
        display: flex !important;
    }

    /* .relatedPro .productList__Card {
        width: 260px;
        min-width: 260px;
    } */

    .GalleryWrapper {
        justify-content: flex-start !important;
    }

    .UlGroupListView li span:first-child{
        width: 33% !important;
    }
}

@media all and (min-width: 992px) {
    .Detail .sellInfo {
        max-width: 320px;
        margin-right: auto;
    }

    .Detail .infoQty {
        margin-bottom: 100px !important;
    }
}



.categoryStyle {
    margin-top: 1.5rem;
    overflow-x: hidden;
}

.categoryStyle::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #fff;
}

.categoryStyle::-webkit-scrollbar {
    width: 2px;
    background-color: #fff;
}

.categoryStyle::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: var(--mc1);
}

.categoryStyle .SCat-Main>li a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 8px 0;
    margin-bottom: 8px;
    color: #838383;
}

.categoryStyle .SCat-Main>li>a {
    color: #666666;
    font-weight: var(--fw-bl);
    border-bottom: 1px solid #C4C4C4;
    transition: var(--transition);
}

.categoryStyle .SCat-Main>li:hover>a {
    color: var(--mc3);
}

.categoryStyle .SCat-Main>li:hover .WbIcon {
    background: var(--mc3);
}

.categoryStyle .SCat-Main>li>.SCat-sub-menu>li>a {
    padding-right: 20px;
}

.categoryStyle .SCat-Main>li>.SCat-sub-menu>li>.categoryStyle__Item .WbIcon {
    display: none;
}

.categoryStyle .SCat-Main>li>.SCat-sub-menu>li {
    position: relative;
}

.categoryStyle .SCat-Main a:hover {
    color: var(--mc3) !important;
}

.categoryStyle .SCat-Main>li>.SCat-sub-menu>li::before {
    content: "";
    display: block;
    position: absolute;
    top: .75rem;
    right: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #838383;
}

.categoryStyle .SCat-Main>li.SCat-Active>.SCat-sub-menu>li::before,
.categoryStyle .SCat-Main>li>.SCat-sub-menu>li.SCat-Active::before {
    background-color: var(--mc2);
}


.categoryStyle .SCat-Main>li>.SCat-sub-menu>li>.SCat-sub-menu>li>a {
    padding-right: 40px !important;
}

.categoryStyle .SCat-Main li.SCat-Active>a,
.categoryStyle .SCat-Main li.SCat-ActiveParent>a {
    color: var(--mc3) !important;
    border-color: var(--mc3);
}

.categoryStyle .SCat-Main>li.SCat-Active>.categoryStyle__Item .WbIcon,
.categoryStyle .SCat-Main>li.SCat-ActiveParent>.categoryStyle__Item .WbIcon {
    background-color: var(--mc3);
}

.categoryStyle .SCat-ActiveParent .SCat-Active {
    color: var(--mc3);
}

.categoryStyle .SCat-Main>.SCat-have-sub-menu {
    position: relative;
    flex-direction: column;
}

.categoryStyle .SCat-Main>li.SCat-have-sub-menu.SCat-Active>i,
.categoryStyle .SCat-Main>li.SCat-have-sub-menu.SCat-ActiveParent>i {
    color: #687182;
}

.categoryStyle .SCat-Main .SCat-have-sub-menu>i {
    content: "";
    display: block;
    padding: 12px;
    cursor: pointer;
    position: absolute;
    top: 12px;
    left: 5px;
    background: url(../Images/arrow.svg) no-repeat center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.categoryStyle .SCat-Main .SCat-have-sub-menu.open>i {
    transform: rotate(180deg);
}

.categoryStyle .SCat-Main li {
    padding: 0;
    position: relative;
    font-size: var(--fz-sm);
}

.sideProductList .categoryStyle .SCat-have-sub-menu .SCat-have-sub-menu>.SCat-sub-menu li>a {
    color: #979797;
    padding-right: 24px;
}

.categoryStyle .SCat-sub-menu {
    width: 100%;
    padding-right: 1rem;
}

.categoryStyle .SCat-Main>li>.SCat-sub-menu>li:has(.SCat-sub-menu)>a {
    padding-bottom: 0.25rem;
}

.categoryStyle .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li.SCat-have-sub-menu>.SCat-sub-menu {
    display: block !important;
}

.categoryStyle .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li.SCat-have-sub-menu>.SCat-sub-menu li {
    margin-bottom: 0.5rem;
}

.categoryStyle .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li.SCat-have-sub-menu>.SCat-sub-menu li:last-child {
    margin-bottom: 1rem;
}


.categoryStyle .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li.SCat-have-sub-menu>.SCat-sub-menu a {
    padding: 0;
    padding-right: 20px !important;
    margin: 0;
    position: relative;
}

.categoryStyle .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li.SCat-have-sub-menu>.SCat-sub-menu a::before {
    content: "";
    display: block;
    position: absolute;
    top: .5rem;
    right: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #838383;
}

.categoryStyle .SCat-Main>.SCat-have-sub-menu.SCat-Active>.SCat-sub-menu>li.SCat-have-sub-menu>.SCat-sub-menu a::before {
    background-color: var(--mc2);
}

.categoryStyle .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li.SCat-have-sub-menu>.SCat-sub-menu a .WbIcon {
    display: none;
}

.categoryStyle__Item .WbIcon {
    margin-left: .5rem;
    width: 1.5rem !important;
    height: 1.5rem !important;
}

.filter .WbIcon {
    width: 1rem;
    min-width: 1rem;
    height: 1rem;
    background-color: #000;
    mask-size: containt;
    -webkit-mask-size: contain;
}

.filter .Title_Sidebar_Text {
    width: 100%;
    position: relative;
}

.filter .Title_Sidebar_Text::before {
    content: "";
    display: block;
    padding: 12px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 5px;
    background: url(../Images/double-arrow.svg) no-repeat center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: var(--transition);
    transform: rotate(180deg);
}

.filter .Title_Sidebar_Text.open::before {
    transform: rotate(0);
}

div[id*=pnlProductList] .PagingTable {
    border: none !important;
    background: none !important;
}

div[id*=pnlProductList] .PagingTable a {
    background: #FFFFFF !important;
    color: #B2B2B2 !important;
    border: 1px solid #F5F5F5 !important;
    border-radius: 4px !important;
}

div[id*=pnlProductList] .PagingTable em,
div[id*=pnlProductList] .PagingTable a {
    font-family: "IranYekan" !important;
}

div[id*=pnlProductList] .PagingTable a:hover {
    background: var(--mc1) !important;
    color: var(--white) !important;
}


.topBanner {
    background-size: cover;
    background-repeat: no-repeat;
}

/* .topBanner .topBanner__Info {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      height: 100%;
      width: 100%;
      text-align: center;
      z-index: 2;
  } */

.topBanner * {
    color: #fff !important;
    z-index: 1;
}

.topBanner_About {
    background: url(../Images/top-banner-about.jpg) no-repeat center;
    background-size: cover;
    height: 470px;
    position: relative;
}

.topBanner_Contact {
    background: url(../Images/top-banner-contact.jpg) no-repeat center;
    background-size: cover;
    height: 470px;
    position: relative;
}

.topBanner .topBanner__Title i {
    display: none;
}

.topBanner::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #151414;
    mix-blend-mode: multiply;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.appendBreadcrumb .WB-breadcrumb ol li:nth-child(2) {
    font-weight: 900;
}

/* .topBanner_Blog .appendBreadcrumb .WB-breadcrumb ol li:last-child {
      display: none;
  }
  
  .topBanner_Blog .appendBreadcrumb .WB-breadcrumb ol li:nth-last-child(2) i {
      display: none;
  } */


.topBanner .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aboutUs__Content__Top__Img img {
    mix-blend-mode: hard-light;
    position: absolute;
    top: -150px;
}

.aboutUs__Content__Top {
    display: flex;
    margin-top: 150px;
    position: relative;
    margin-bottom: var(--main-space);
}

.aboutUs__Content__Top__Txt p {
    text-align: justify;
    width: 80%;
    margin-right: auto;
}

.aboutUs__Content__Bottom__Img {
    padding-left: 1.5rem !important;
}

.shopping__Guide__List {
    margin-bottom: 1rem;
}

.shopping__Guide__List li {
    position: relative;
    padding-right: 1.25rem !important;
}

.shopping__Guide__List li::before {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    right: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #838383;
}

.rules__List li:not(:last-child) {
    margin-bottom: .5rem;
}



.productList__Card_Home_Wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    position: relative;
    margin-bottom: 122px;
}

.ProductList__Home .ListCell {
    margin: 0 1.5rem;
}

.ProductList__Home .slick-list {
    padding: 3rem 0;
}

.productList__Card_Home__Content {
    width: 45%;
    height: 403px;
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 0 23px 5px rgb(0 0 0 / 8%);
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-42px, -28px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 75px;
    z-index: 2;
}

.productList__Card_Home__ImgBox {
    flex: 0 0 100%;
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    text-align: left;
}

.productList__Card_Home__ImgBox img {
    width: 316px;
    height: 316px;
    transform: translateX(20%);
    margin-right: auto;
}

.productList__Card_Home__DESCRIPTION {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2rem;
}

.productList__Card_Home__Title {
    margin-bottom: 1rem;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.productList__Card_Home {
    position: relative;
    z-index: 1;
}

.productList__Card_Home::before {
    content: "";
    display: block;
    position: absolute;
    width: 361px;
    height: 319px;
    background: #F6CC7E;
    border-radius: 5px;
    top: 0;
    right: 0;
    transform: translate(-20px, -44px);
    z-index: 1;
}

.productList__Card_Home::after {
    content: "";
    display: block;
    position: absolute;
    width: 154px;
    height: 161px;
    background: radial-gradient(79.91% 1307.94% at 20.09% 54.2%, #2462A5 0%, #123163 100%);
    border-radius: 5px;
    bottom: 0;
    left: 0;
    z-index: -1;
    transform: translate(-18px, 20px);
}

.productList__Card_Home__Btn .btnStyle__Primary_Inner {
    border-color: var(--mc3) !important;
}

.productList__Card_Home__Btn.btnStyle_Primary:focus .btnStyle__Primary_Inner::before,
.productList__Card_Home__Btn.btnStyle_Primary:hover .btnStyle__Primary_Inner::before {
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 100%;
    background: var(--mc3) !important;
}

@media(max-width: 992px) {

    .aboutUs__Content__Top__Txt p {
        width: 100%;
    }

    .aboutUs__Content__Bottom__Img {
        padding-left: 0 !important;
        margin-bottom: 1.5rem;
    }

    .RelatedWrapper .slick-arrow {
        width: 32px !important;
        height: 52px !important;
        background: #FFFFFF !important;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05) !important;
        border-radius: 5px !important;
    }

    .RelatedWrapper .slick-arrow.slick-next {
        transform: translate(50%, -50%) !important;
    }

    .RelatedWrapper .slick-arrow.slick-prev {
        transform: translate(-50%, -50%) !important;
    }

    .RelatedWrapper .slick-arrow::before {
        content: "" !important;
        background: url(../Images/arrow.svg) no-repeat center !important;
        background-size: cover !important;
        width: 2rem;
        height: 2rem;
        transform: translate(-50%, -55%) rotate(90deg) !important;
    }

    .RelatedWrapper .slick-arrow.slick-prev::before {
        transform: translate(-50%, -55%) rotate(-90deg) !important;

    }
    .modelBox .Models{
        width: 100%;
    }


}

.salesBox {
    display: flex;
}

body:not(.personabar-visible) .salesBox:not(:has(.productList_Count__Card)){
    display: none;
}

.salesBox__Card {
    flex: 0 0 30%;
    max-width: 30%;
    background: #123163;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 80px 30px;
}

.salesBox .ModNBStoreProductListC {
    flex: 0 0 70%;
    max-width: 70%;
    padding-right: 1.5rem;
}

.salesBox__Card__Ttl {
    color: #F6CC7E;
}

.salesBox__Card__Btn,
.salesBox__Card__Btn:focus,
.salesBox__Card__Btn:visited {
    padding: var(--pad-pri);
    border: var(--brd-pri) #F6CC7E;
    border: none;
    display: inline-block;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    background: transparent;
    overflow: hidden;
    z-index: 1;
    border-radius: var(--border-radius-sm);
}

.salesBox__Card__Btn .btnStyle__Primary_Inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border: var(--brd-pri) #F6CC7E;
    border-radius: var(--border-radius-sm);
}

.salesBox__Card__Btn .btnStyle__Primary_Inner::before {
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    height: 500%;
    background: #123163;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-60deg);
    transition: var(--transition);
}

.salesBox__Card__Btn {
    color: #F6CC7E !important;
}

.salesBox__Card__Btn:focus,
.salesBox__Card__Btn:hover {
    color: var(--white) !important;
}

.salesBox__Card__Btn:focus .btnStyle__Primary_Inner::before,
.salesBox__Card__Btn:hover .btnStyle__Primary_Inner::before {
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 100%;
    background: #F6CC7E;
}


.slick-arrow {
    width: 32px !important;
    height: 52px !important;
    background: #FFFFFF !important;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2) !important;
    border-radius: 5px !important;
}

.slick-arrow.slick-next {
    transform: translate(50%, -50%) !important;
}

.slick-arrow.slick-prev {
    transform: translate(-50%, -50%) !important;
}

.slick-arrow::before {
    content: "" !important;
    background: url(../Images/arrow.svg) no-repeat center !important;
    background-size: cover !important;
    width: 2rem;
    height: 2rem;
    transform: translate(-50%, -55%) rotate(90deg) !important;
}

.slick-arrow.slick-prev::before {
    transform: translate(-50%, -55%) rotate(-90deg) !important;

}


.newProdBox {
    display: flex;
}

.newProdBox__Card {
    flex: 0 0 30%;
    max-width: 30%;
    background: #123163;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 80px 30px;
    padding-left: 1.5rem;
}

.newProdBox .ModNBStoreProductListC {
    flex: 0 0 70%;
    max-width: 70%;
}

.newProdBox__Card__Ttl {
    color: #12457C;
}

.newProdBox__Card__Btn,
.newProdBox__Card__Btn:focus,
.newProdBox__Card__Btn:visited {
    padding: var(--pad-pri);
    border: var(--brd-pri) #12457C;
    border: none;
    display: inline-block;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    background: transparent;
    overflow: hidden;
    z-index: 1;
    border-radius: var(--border-radius-sm);
}

.newProdBox__Card__Btn .btnStyle__Primary_Inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border: var(--brd-pri) #12457C;
    border-radius: var(--border-radius-sm);
}

.newProdBox__Card__Btn .btnStyle__Primary_Inner::before {
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    height: 500%;
    background: #123163;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-60deg);
    transition: var(--transition);
}

.newProdBox__Card__Btn {
    color: #12457C !important;
}

.newProdBox__Card__Btn:focus,
.newProdBox__Card__Btn:hover {
    color: var(--white) !important;
}

.newProdBox__Card__Btn:focus .btnStyle__Primary_Inner::before,
.newProdBox__Card__Btn:hover .btnStyle__Primary_Inner::before {
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 100%;
    background: #12457C;
}

.newProdBox {
    display: flex;
}

.newProdBox__Card {
    flex: 0 0 30%;
    max-width: 30%;
    background: url(../Images/bg-tool.png) no-repeat center;
    background-size: contain;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 80px 30px;
}

.newProdBox .ModNBStoreProductListC {
    flex: 0 0 70%;
    max-width: 70%;
    padding-right: 1.5rem;
}

.newProdBox__Card__Ttl {
    color: #12457C;
}

.newProdBox__Card__Btn,
.newProdBox__Card__Btn:focus,
.newProdBox__Card__Btn:visited {
    padding: var(--pad-pri);
    border: var(--brd-pri) #12457C;
    border: none;
    display: inline-block;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    background: transparent;
    overflow: hidden;
    z-index: 1;
    border-radius: var(--border-radius-sm);
}

.newProdBox__Card__Btn .btnStyle__Primary_Inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border: var(--brd-pri) #12457C;
    border-radius: var(--border-radius-sm);
}

.newProdBox__Card__Btn .btnStyle__Primary_Inner::before {
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    height: 500%;
    background: #f3f3f3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-60deg);
    transition: var(--transition);
}

.newProdBox__Card__Btn {
    color: #12457C !important;
}

.newProdBox__Card__Btn:focus,
.newProdBox__Card__Btn:hover {
    color: var(--white) !important;
}

.newProdBox__Card__Btn:focus .btnStyle__Primary_Inner::before,
.newProdBox__Card__Btn:hover .btnStyle__Primary_Inner::before {
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 100%;
    background: #12457C;
}

.aboutUs__Content__Bottom__Txt p {
    text-align: justify;
}

@media (max-width:991px) {
    .ProductList__Main {
        grid-template-columns: repeat(2, 1fr);
    }

    .ProductList__Slider {
        display: flex !important;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .ProductList__Slider .productList__Card {
        min-width: 272px ;
        width: 272px;
    }

    .newProdBox__Card__Btn, .newProdBox__Card__Btn:focus, .newProdBox__Card__Btn:visited{
        transform: translateY(1.5rem);
    }

    .RelatedWrapper{
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .RelatedWrapper .productList__Card{
        min-width: 272px;
        width: 272px;
    }

    .newProdBox {
        display: block !important;
        position: relative !important;
    }

    .newProdBox__Card {
        flex: auto !important;
        max-width: 100% !important;
        padding: 0 !important;
        height: 550px !important;
        justify-content: space-between !important;
    }

    .newProdBox .ModNBStoreProductListC {
        padding-right: 0 !important;
    }

    .newProdBox__Card__Txt {
        display: none !important;
    }

    .newProdBox .ModNBStoreProductListC {
        display: block !important;
        max-width: 100% !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

        
    .ProductList__New{
        display: flex !important;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .ProductList__New .productList__Card{
        min-width: 272px;
        width: 272px;
    }

}

@media (max-width:767px) {
    .Information__Tab__Content .showMore table{
        width: 100% !important;
    }    
}

@media (max-width: 576px) {
    .ProductList__Main {
        grid-template-columns: repeat(1, 1fr);
    }

    .ProductList__Main .discountsPercent,
    .ProductList__Sidebar .discountsPercent
     {
        border-radius: 16px 0 0 16px;
        top: 1.5rem;
        right: 0;
        left: auto;
        transform: translate(+1.5rem , -1.5rem);
    }



    .ProductList__Main .productList__Card,
    .ProductList__Sidebar .productList__Card
    {
        height: 180px;
    }

    .ProductList__Main .productList__Card_Wrapper,
    .ProductList__Sidebar .productList__Card_Wrapper
    {
        justify-content: space-between;
        flex-direction: row;
    }

    .ProductList__Main .productList__Card__ImgBox, 
    .ProductList__Sidebar .productList__Card__ImgBox 
    {
        max-height: 100%;
        flex: 0 0 50%;
        padding: 0 0 0 1.5rem;
    }

    .ProductList__Main .productList__Card__Content,
    .ProductList__Sidebar .productList__Card__Content
    {
        flex: 0 0 50%;
        flex-direction: column;
        align-items: end;
        padding: 0;
    }

    .ProductList__Main .productList__Card__FinalPrice
    .ProductList__Sidebar .productList__Card__FinalPrice
    {
        white-space: nowrap;
    }

    .ProductList__Main .productList__Card__Content__Bottom, 
    .ProductList__Sidebar .productList__Card__Content__Bottom 
    {
        flex-direction: column;
        width: 100%;
        align-items: end;
    }

    .ProductList__Main .productList__Card,
    .ProductList__Sidebar .productList__Card
    {
        padding: 1.5rem;
    }

    .topBanner_Contact,
    .topBanner_About{
        height: 300px;
    }

    .aboutUs__Content__Top__Img img {
        top: 0;
    }

    .aboutUs__Content__Top {
        margin-top: 40px;
    }

    .productList__Card_Home__Content {
        box-shadow: none !important;
        width: 100% !important;
        height: auto !important;
        position: static !important;
        transform: translate(0, 0) !important;
        padding: 2rem !important;
        background: transparent !important;
        border-radius: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .productList__Card_Home__ImgBox {
        width: 100%;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        flex: auto !important;
        padding: 1rem !important;
    }

    .productList__Card_Home__ImgBox img {
        width: auto !important;
        height: auto !important;
        transform: translate(0, 0) !important;
    }

    .productList__Card_Home_Wrapper {
        flex-direction: column-reverse !important;
        background: #fff;
        border-radius: 10px;
    }

    .productList__Card_Home::before {
        width: 271px !important;
        height: 270px !important;
        transform: translate(16px, -16px) !important;
        z-index: -1 !important;
    }

    .productList__Card_Home::after {
        transform: translate(-16px, 16px) !important;
    }

    .salesBox {
        display: block !important;
        position: relative !important;
        overflow: hidden;
    }

    .salesBox__Card {
        flex: auto !important;
        max-width: 100% !important;
        padding: 2rem !important;
        height: 630px !important;
    }

    .salesBox .ModNBStoreProductListC {
        padding-right: 0 !important;
    }

    .salesBox__Card__Txt {
        display: none !important;
    }

    .salesBox .ModNBStoreProductListC {
        display: block !important;
        max-width: 100% !important;
        position: absolute !important;
        top: 50% !important;
        padding: 0 1.5rem !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

@media (min-width:577px) and (max-width:991px) {
    .aboutUs__Content__Top {
        margin-top: 90px;
    }

    .aboutUs__Content__Top__Img img {
        width: 442px;
        top: -90px;
    }

    .productList__Card_Home__Content {
        width: 336px !important;
        height: 380px !important;
        padding: 62px 24px !important;
    }

    .productList__Card_Home__ImgBox img {
        width: 276px !important;
        height: 276px !important;
        transform: translateX(0) !important;
    }

    .productList__Card_Home::before {
        width: 278px !important;
        height: 246px !important;
    }

}

/* brand */
.brand__List .slick-list {
    padding: 1rem 0;
}

.brand__List li {
    margin: 0 .5rem;
}

.brand__List__Item {
    padding: 50px 0;
    border: 1px solid #F5F5F5;
    /* filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.05)); */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 162px;
    min-height: 162px;
    transition: var(--transition);
    background: #f3f3f3;
}

.brand__List__Item:hover {
    background: #fff;
}

.brand__List__Img img {
    mix-blend-mode: darken;
}