﻿.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* White background with transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's above the content */
}

.loader {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
}

#loader-2 span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: var(--theme-color);
    margin: 35px 5px;
}

    #loader-2 span:nth-child(1) {
        animation: bounce 1s ease-in-out infinite;
    }

    #loader-2 span:nth-child(2) {
        animation: bounce 1s ease-in-out 0.33s infinite;
    }

    #loader-2 span:nth-child(3) {
        animation: bounce 1s ease-in-out 0.66s infinite;
    }

@keyframes bounce {
    0%, 75%, 100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-20px);
    }
}


.faq {
    margin: 50px 0;
}

/* FAQ Elements */
.faq__header {
    margin-bottom: 48px;
    text-align: center;
}

.faq__title {
    font-size: 2.5rem;
    color: #2A2D72; /* Primary color */
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq__intro {
    font-size: 1.125rem;
    color: #4A5568; /* Text color */
    max-width: 600px;
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 16px;
    border: 2px solid #E2E8F0; /* Border color */
    border-radius: 12px; /* Radius */
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq__item--active {
    border-color: #2A2D72; /* Primary color */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* Shadow */
}

.faq__question {
    padding: 24px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #2A2D72; /* Primary color */
    font-weight: 600;
}

    .faq__question:hover {
        color: #FF6B6B; /* Accent color */
    }

    .faq__question.collapsed .faq__icon {
        transform: rotate(0deg);
    }

.faq__icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 24px;
    color: #4A5568; /* Text color */
    line-height: 1.6;
    transition: all 0.3s ease;
}

    .faq__answer.collapse:not(.show) {
        display: none;
    }

    .faq__answer.show {
        padding-bottom: 24px;
    }

@@media (max-width: 768px) {
    .faq__title {
        font-size: 2rem;
    }

    .faq__question {
        padding: 18px;
        font-size: 1rem;
    }
}












.seller-card {
    padding: 25px 40px;
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius:10px;
    margin:5px 0;
    background: #ffffff;
}



    .seller-detail i {
        color: var(--theme-color);
    }




.seller-type {
    color:var(--theme-color);
    display:flex;
    align-items:center;
    width:fit-content;
}


.seller-icon {
    font-size: 1.2rem;
    margin-left: 10px;
    color:var(--theme-color);
}

.price-tag {
    font-weight: 700;
    color: #2c3e50;
}

.btn-custom {
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size:12px;
}

.seller-normal .btn-custom {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.seller-golden .btn-custom {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.seller-special .btn-custom {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.seller-detail {
    border-right: 3px solid;
    padding-right: 20px;
}

.seller-normal .seller-detail {
    border-color: var(--theme-color);
}

.seller-golden .seller-detail {
    border-color: var(--theme-color);
}

.seller-special .seller-detail {
    border-color: var(--theme-color);
}

@media (max-width: 768px) {
    .seller-card {
        text-align: center;
    }

    .seller-detail {
        border-right: none;
        border-bottom: 3px solid;
        padding-right: 0;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

.line-header {
    position: relative;
    padding-left: 15px;
}

    .line-header::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 95%;
        height: 1px;
        background-color: var(--theme-color);
        transform: translateY(-50%);
    }

    .line-header h5 {
        display: inline-block;
        color:var(--theme-color);
        position: relative;
        padding: 0 10px;
        background-color:#fff;
    }

.card-container {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    padding: 20px 10px;
}
@media(max-width:500px){
    .card-container {
        padding: 20px 15px 20px 30px;
    }
}
.product-card {
    border-radius: 8px; /* Reduced radius further */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px; /* Adjusted width to make it smaller */
    margin: 8px; /* Adjusted margin to make it smaller */
}

.card-sleek {
    color: white;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .card-sleek img {
        width: 100%;
        height: 150px;
        object-fit: contain;
        border-radius: 6px;
    }

    .card-sleek h3 {
        font-size: 14px;
        margin: 8px 0;
    }

    .card-sleek .price {
        font-size: 14px;
        font-weight: bold;
        color: #525252;
    }

    .card-sleek .add-to-cart {
        text-decoration: none;
        padding: 5px 10px;
        border-radius: 30px;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s, color 0.3s;
        color: #ffffff;
        font-size: 11px;
        border: 1px solid;
        background-color: #ff6b6b;
    }
    

        .card-sleek .add-to-cart i {
            margin-right: 5px;
        }

        .card-sleek .add-to-cart:hover {
            transform:translateY(-2px);
            text-decoration: none;
        }

    .card-sleek:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

.product-info {
    color: #3a3a3a;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}






.related-products .product-card {
    margin: auto;
    padding: 10px;
    border-radius: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.related-products .product-like {
    color: #757575;
    font-weight: bold;
    background-color: #EEEEEE;
    padding: 5px;
    border-radius: 50%;
}

.related-products .product-like-checked {
    color: #E53935;
}

.related-products .product-like:hover {
    color: #E53935;
    cursor: pointer;
}

.related-products .product-pic1 {
    width:130px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.related-products .product-pic {
    padding-left: auto;
    padding-right: auto;
    width: 100%;
}

.related-products .product-card-1 {
    padding: 15px 15px 20px 15px !important;
    border: none;
    min-width: 220px;
    height:355px;
    transition:all 0.2s ease;
    cursor:pointer;
}

    .related-products .product-card-1:hover {
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .related-products .product-category {
        padding-top: 15px;
        color: grey;
    }

.related-products .product-name {
    padding-bottom: 10px;
    font-size: 16px;
    text-align:center;
}

.related-products .product-price {
    font-size: 12px;
    font-weight: bold;
}

.related-products .product-sm-text {
    font-size: 12px;
}

.related-products .product-fa-star, .related-products .product-fa-star-o {
    font-size: 12px;
    color: #FF6F00;
    cursor: pointer;
}

.related-products .product-add-to-cart-btn {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    transition:all 0.2s ease
}

.add-to-cart .product-add-to-cart-btn:hover{
    text-decoration:none;
    background-color:var(--theme-color);
    color:#fff;

}

.swiper-title {
    display: inline-block;
    font-size: 24px;
    margin: 15px;
    color: #6f6f6f;
    border-bottom: 2px solid red;
    padding-bottom: 10px;
}

.related-products .swiper-button-next,
.related-products .swiper-button-prev {
    background-color: transparent;
    width: 24px;
    height: 24px;
    color: black;
    font-size: 14px;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.related-products .swiper-button-disabled,
.related-products .swiper-button-disabled {
    opacity: 0 !important;
}

.related-products .swiper-button-next::after,
.related-products .swiper-button-prev::after {
    font-family: "Font Awesome 6 Pro"; /* Updated font-family */
    font-weight: 900; /* Ensure this matches the icon style */
    font-size: inherit;
}

.related-products .swiper-button-prev::after {
    content: "\f054" !important;
}

.related-products .swiper-button-next::after {
    content: "\f053" !important;
}

.related-products .swiper-button-prev {
    right: 0% !important;
    top: 50%;
    background-color: var(--theme-color);
    padding: 20px;
    border-right: 1px solid #9aa0a5;
    border-radius: 50%;
    color: #ffffff;
}

.related-products .swiper-button-next {
    left: 0% !important;
    top: 50%;
    background-color: var(--theme-color);
    padding: 20px;
    border-right: 1px solid #9aa0a5;
    border-radius: 50%;
    color: #ffffff;
}

























.strikethrough {
    position: relative;
}

    .strikethrough:before {
        position: absolute;
        content: "";
        left: 0;
        top: 44%;
        right: 0;
        border-top: 1.5px solid;
        border-color: #ff0000;
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
        transform: rotate(9deg);
    }

.item-color.activeDiversity {
    border-bottom: 2px solid var(--theme-color);
    padding-right: 5px;
}

.color-picker {
    display: flex;
}

.color {
    display: inline-block;
    height: 25px;
    margin-right: 10px;
    cursor: pointer;
}

    .color:hover {
        transform: scale(1.25);
    }

.color {
    transition: transform .2s ease-in-out;
}

.sellPlanLabel {
    background-color: #f1f1f1;
    width:275px;
    padding: 5px 20px;
    color: var(--theme-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px dashed;
}



.item-size.activeDiversity {
    background-color: var(--theme-color);
    color: #fff !important;
}

.item-guarantee {
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition for border-right */
}

    .item-guarantee:hover {
        border-right: 1.5px solid var(--theme-color);
        padding-right: 5px;
    }

    .item-guarantee.activeDiversity {
        padding: 5px;
        border-right:3px solid var(--theme-color);
        border-radius: 5px;
        background-color: #efefef;
        color: var(--theme-color);
    }

.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: 50%;
}

.grid-item {
    text-align: center;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    color: var(--theme-color);
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

    .grid-item:hover {
        transition: all ease 0.5s;
        background-color: var(--theme-color);
        color: white;
    }

.gridWrapper {
    width: 100%;
    margin: auto;
}

.guarantee-diversity {
    width: fit-content;
}








.productSection {
    border-radius: 10px;
    background: #fff;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
    padding: 10px;
    width: 93%;
    margin: auto;
}


.productDescription {
    width: 100%;
    height: auto;
    border-radius: 10px;
    background-color: #E9E8E8;
}



.AddingToBasket, .VidItemPrd, .img-zoom-lens {
    pointer-events: none
}

.mainPrice, .off .price {
    text-decoration: line-through
}

.MiniBtnShowDetail:hover, .heading-title:after {
    color: var(--color-golden)
}

/*#FinalPrice, #TotalPrice {
    color: #f22424;
}*/

        .AddingToBasket {
    opacity: .7
}

.AddBasketWating {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    display: none
}

.AddingToBasket .AddBasketWating {
    display: inline-block;
}

.usersComment .col-12, ul {
    padding: 0
}

.AdditionalLbl {
    margin: 0 10px 0 0;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-wrap: wrap
}

.AdditionalBox input {
    width: 18px;
    height: 18px;
    cursor: pointer
}

.AdditionalName {
    width: 100%;
    font-weight: 700;
    margin-bottom: 7px
}

    .AdditionalName a {
        transition: .3s
    }

        .AdditionalName a:hover {
            color: #ff4c29;
            border-bottom: 1px solid #ffe2db
        }

.AdditionalPrice {
    margin-left: 15px
}

.AllAdditionalBox {
    border: 1px solid #ececec;
    border-radius: 5px;
    padding: 10px;
    background: #f9f9f9
}

.AdditionalBox {
    border-bottom: 1px solid #ececec;
    padding-bottom: 10px
}

    .AdditionalBox:last-child {
        margin-bottom: 0 !important;
        border-bottom: 0 !important
    }

#imgmain, .div_icns a {
    margin-bottom: 15px
}

.PriceEffectType {
    color: #ff4c29
}

.MiniBtnShowDetail {
    font-size: 17px
}

.WH50px {
    width: 50px;
    height: 50px
}

.BoxPrdCount {
    outline: 0 !important;
    border-radius: 5px;
    display: flex !important;
    flex: 1;
    font-size: 1.3rem;
    padding: 0 .2rem;
    height: inherit;
    min-height: auto;
    max-width: 100%;
    -webkit-appearance: textfield;
    border: 1px solid #eee;
    color: #666;
    justify-content: space-between;
    position: relative;
    margin: 0 5px
}

.InputPrdCount {
    text-align-last: center;
    width: 45px;
    text-align: center;
    outline: 0 !important;
    border: 0 !important
}

.PlusNum {
    border-bottom: 1px solid #eee
}

.MinNum, .PlusNum {
    width: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    height: 22px
}



.MinNum {
    font-size: 25px
}

    .MinNum::selection, .PlusNum::selection {
        background: 0 0 !important
    }

.VidLogo {
    position: absolute;
    bottom: 4px;
    right: 1px
}

#div_VideoMain, .MainPicBox {
    text-align: center
}

#imgmain {
    height: auto;
    border-radius: 5px;
    max-width: 600px;
    max-height: 600px;
}

.btnlikez {
    z-index: 0;
    opacity: 0
}


btn_addToFavorite{
    cursor:pointer;
}

.Activ_addToFavorite .btnlikez {
    z-index: 2;
    opacity: 1;
    display: block;
    position: absolute;
}

.Activ_addToFavorite svg{
    fill:red;
}

.my_img_logo {
    width: 25px !important;
    height: 25px !important;
    margin-left: 5px;
    position: relative;
    z-index: 1;
    cursor: pointer
}

.mainImg_wrapper .noImg {
    width: 330px;
    height: auto
}

.mainImg_wrapper {
    width: 95%;
    flex: 0 0 95%
}

.bg_sub_infor {
    background-color: #fafafa;
    margin-left: 10px;
    color: #5e5e5e;
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.proTitle, .product_title {
    font-weight: 600;
    color: #000
}

.img-zoom-container {
    position: relative;
    padding: 0 2rem
}

/*.img-zoom-lens {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 9;
    margin-top: 10px;
    visibility: hidden;
    border: 1px solid #ee04818f;
    border-radius: 10px;
    background: #ee04812b
}*/

/*.img-zoom-result {
    border: 1px solid #e0e0e2;
    width: 28%;
    height: 300px;
    position: fixed;
   top:95px;
     Right: 478px; 
    z-index: 9;
    border-radius: 10px;
}*/
.o-headline, .o-headline > span, .productBrand, .readmore {
    position: relative
}

.custom-select_p {
    height: 45px
}

.max1676 {
    max-width: 1670px;
    margin: auto
}

.mt130px {
    margin: 40px auto 0
}

.pproductName {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%
}

.o-headline {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 49px;
    padding-right: 0;
    flex-wrap: wrap
}

    .o-headline > span {
        font-weight: 700;
        padding: 8px 0;
        min-height: 49px;
        font-size: 1.286rem;
        line-height: 31px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

.product_title {
    white-space: normal;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.383rem;
    line-height: 28px
}

.proTitle {
    line-height: 31px;
    font-size: 20px
}

.o-headline > span:before {
    content: "";
    position: absolute;
    right: 0;
    left: -40px;
    background-color: var(--theme-color);
    height: 1px;
    z-index: 1;
    opacity: .3
}

.o-headline > span:after {
    content: "";
    position: absolute;
    left: -45px;
    width: 15px;
    height: 1px;
    background-color: #fff;
    z-index: 1
}

.o-headline:after {
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    background-color: #dfdfdf;
    height: 1px;
    content: "";
    z-index: 0
}

.productBrand {
    color: #6c6869;
    font-size: 14px;
    text-align: right
}

.discount {
    padding: 3px .7rem 1px;
    font-weight: 700;
    background: #fb3449;
    border-radius: 1rem;
    color: #fff;
    font-size: 10px;
    margin: 0;
    display: none !important;
}

.finalPrice {
    display: inline;
    color: #000;
    font-weight: 900;
    font-size: 20px;
    line-height: 41px
}

.BoxRowImgPro, .read_more, .read_more a {
    display: flex
}

.finalPrice span {
    font-size: 27px;
    color: #292b30
}

.finalPrice #FinalPrice {
    font-size: 20px;
    font-weight: 800;
    color: #1f1f1f;
    background: transparent;
}

#btn_addBasket {
    width: 100%;
    max-width: 350px
}

.description_tabs .nav-tabs .nav-link {
    font-size: 18px;
}

    .description_tabs .nav-tabs .nav-link.active, .description_tabs .nav-tabs .nav-link.active:hover {
        color: var(--color-golden) !important;
        border-bottom: 2px solid var(--color-golden);
        border-width: 0 0 2px
    }

.description_tabs .nav-tabs {
    border-bottom: 1px solid #eee;
    background: #fff !important
}

    .description_tabs .nav-tabs .nav-link:hover {
        border-color: transparent
    }

.description_tabs {
    width: 100%;
    white-space: normal;
    direction: rtl;
    padding-top: 20px
}

    .description_tabs .tab-pane {
        font-size: 18px;
        line-height: 2rem;
        text-align: right;
        padding: 20px 7px 7px
    }

.CardSimilarPro, .fade_bg, .off_container {
    display: block
}

.read_more a {
    align-items: center;
    justify-content: start;
    font-size: 16px;
    color: #ef394e
}

.read_more span {
    padding-left: 7px
}

.rotate_chevron {
    transform: rotate(-180deg)
}

.readmore {
    max-height: 120px;
    overflow: hidden;
    transition: max-height .15s ease-out
}

.expand {
    max-height: 5000px !important;
    transition: max-height .35s ease-in-out
}

.fade_bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 60px;
    text-align: center;
    color: #00f;
    font-weight: 700;
    font-size: 16px;
    padding-top: 40px;
    background-image: linear-gradient(to bottom,transparent,#fff);
    cursor: pointer
}

.readmore-link.expand {
    position: relative;
    background-image: none;
    padding-top: 10px;
    height: 20px
}

.readmore-link.fade_bg span:after {
    content: "مشاهده‌ی بیشتر"
}

.readmore-link span:after {
    content: "مشاهده‌ی کمتر"
}

.CurrentImg {
    height: 100%;
    border: 1px solid #e0e0e2;
    border-radius: 5px;
    padding: 4px
}

.ActImg_F {
    border: 1px solid var(--theme-color);
}

.main_img_container {
    text-align: center;
    position: relative
}

.price, .productPrice {
    text-align: left
}

.price {
    font-size: 18px;
    color: #a1a3a8;
    margin-left: 6px
}

.price_unit {
    color: #424750;
    font-weight: 800;
    font-size: 14px;
    line-height: 21px
}

.change-number-size {
    color: #81828b;
    font-size: 14px;
    text-align: left
}

.text-info {
    color: #0fabc6 !important
}

.featureTitle {
    font-size: 16px;
    line-height: 1.571;
    font-weight: 600;
    margin-bottom: 10px;
    color: #55565a
}

.propertise ul {
    padding-right: 0
}

    .propertise ul li {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        width: 100%;
        color: #686868;
        margin: 2px 0;
        font-size: 12px
    }

        .propertise ul li:before {
            content: "";
            width: 5px;
            height: 5px;
            background: #ccc;
            vertical-align: middle;
            margin-left: 5px;
            border-radius: 50%
        }

        .propertise ul li span {
            margin-left: 5px;
            white-space: normal
        }

            .propertise ul li span:last-of-type {
                -webkit-box-flex: 1;
                -ms-flex: 1;
                flex: 1
            }

.f5bg_hr {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    line-height: normal;
    background-color: #f5f5f5;
    border: 1px solid #e4e4e4;
    border-radius: 8px
}

.txtcenterRes {
    font-weight: 700;
    color: #424750;
    font-size: 14px
}

.btnbg_hr {
    font-size: 15px;
    line-height: 1.222;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    min-height: 48px;
    padding: 12px 18px;
    background-color: #ef394e;
    border: none;
    width: 100%;
    overflow: hidden;
    outline: 0;
    cursor: pointer
}

.img-circle {
    border-radius: 15px
}

.my_final_pro .color_box .product_carousel .item {
    border: 1px solid #eee;
    border-radius: 15px;
    margin-top: 17px;
    padding: 10px 13px
}

.CardSimilarPro {
    background: #fff;
    height: 100%;
    position: relative;
    -webkit-transition: -webkit-box-shadow .2s cubic-bezier(.4, 0, 1, 1),-webkit-transform .2s cubic-bezier(.4, 0, 1, 1);
    transition: box-shadow .2s cubic-bezier(.4, 0, 1, 1),transform .2s cubic-bezier(.4, 0, 1, 1),-webkit-box-shadow .2s cubic-bezier(.4, 0, 1, 1),-webkit-transform .2s cubic-bezier(.4, 0, 1, 1);
    padding: 30px 12px 46px
}

    .CardSimilarPro:after {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        bottom: 8px;
        width: 1px;
        background-color: #eee
    }

    .CardSimilarPro .AimgSize {
        height: 180px;
        width: 180px;
        display: block;
        position: relative;
        margin-bottom: 15px
    }

        .CardSimilarPro .AimgSize img {
            width: 100%;
            height: 100%;
            border-radius: 15px
        }

    .CardSimilarPro h4 {
        height: 100%;
        min-height: 43px;
        font-size: 18px;
    }

.product-effect {
    height: 70px;
    overflow: hidden;
    cursor: pointer;
    width: 70px
}

.icon-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 9px 9px 16px #a3b1c699,-9px -9px 16px #ffffff80;
    margin: 0 .5rem
}

.grade, .path_container ol li {
    display: inline-block
}

#SocialShare .facebook {
    background-color: #3b5998
}

#SocialShare .twitter {
    background-color: #1da1f2
}

#SocialShare .pinterest {
    background-color: #2eb937
}

#SocialShare .reddit {
    background-color: #35a9eb
}

.grade {
    background-color: #ef394e;
    color: #fff;
    padding: 0 .5rem;
    min-width: 50px;
    font-weight: bolder;
    font-size: 16px;
    position: relative
}

    .grade:before {
        content: " ";
        width: 0;
        height: 0;
        border-top: 14px solid transparent;
        border-left: 16px solid #ef394e;
        border-bottom: 14px solid transparent;
        position: absolute;
        left: 100%;
        top: 0;
        bottom: 0
    }

.mainPrice {
    padding-left: 7px
}

.disnone {
    display: none !important
}

.productInf__wrapper {
    flex-wrap: wrap;
    display: flex;
    align-content: baseline;
    justify-content: space-around;
}


.div_scorepro {
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .div_scorepro:before {
        background-color: #e0e0e2;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 1px
    }

.div_icns {
    display: flex;
    align-items: baseline;
    flex: 0 0 5%;
    width: 5%
}

.OwlImgGallery .owl-next, .OwlImgGallery .owl-prev {
    width: 35px;
    position: absolute;
    top: 7px;
    background: #fff
}

.OwlImgGallery .owl-prev {
    left: 0 !important
}

.OwlImgGallery .owl-next {
    right: 0 !important
}

@media(max-width: 1300px) {
    .main_img_container img {
        width: 400px;
        height: 400px
    }
}

@media(max-width: 1150px) {
    .main_img_container img {
        width: 300px;
        height: 300px
    }

    .product_title {
        font-size: 16px;
        transition: .3s
    }

    .finalPrice {
        font-size: 20px;
        transition: .3s
    }

    .btnbg_hr {
        font-size: 16px;
        padding: 8px;
        min-height: unset
    }

    .custom-select_p {
        width: unset;
        height: unset;
        transition: .3s;
        padding: 5px;
        font-size: 13px
    }
}

@media(max-width: 960px) {
    .main_img_container img {
        width: 250px;
        height: 250px
    }

    .div_galery_pic, .div_scorepro {
        flex: 0 0 100%;
        width: 100%;
        padding: .5rem;
        transition: .3s
    }

    .img-zoom-container {
        padding-right: 10px;
        padding-left: 10px
    }
}

@media(max-width: 900px) {
    .prInfo_wrapper .image_section, .prInfo_wrapper .informatin_section {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 7px;
        transition: .3s
    }

    .activities {
        padding: 0 10px;
        transition: .3s
    }

    .product_title {
        font-size: 16px;
        transition: .3s
    }

    .price {
        font-size: 13px;
        transition: .3s
    }

    /* #myresult, .img-zoom-lens {
        display: none !important
    }*/

    .container {
        padding-right: 10px;
        padding-left: 10px
    }

    .mt130px {
        margin: 60px auto 30px
    }
}

@media(max-width: 700px) {
    .div_galery_pic, .div_scorepro {
        flex: 0 0 100%;
        width: 100%;
        padding: .5rem;
        transition: .3s
    }

    .OwlImgGallery .owl-prev {
        left: -20px !important
    }

    .OwlImgGallery .owl-next {
        right: -20px !important
    }

    .description_tabs .tab-pane {
        font-size: 13px;
        line-height: 1.5rem;
        text-align: right;
        padding: 20px 1px 1px
    }

    .bg_sub_infor {
        margin-left: 0
    }

    .div_scorepro .mt-3 {
        margin-top: .2rem !important;
        transition: .3s
    }

    .div_scorepro .py-3 {
        padding-bottom: .3rem !important;
        padding-top: .3rem !important;
        transition: .3s
    }

    .finalPrice {
        font-size: 17px;
        transition: .3s
    }

    #imgmain {
        width: 220px;
        height: auto
    }
}

@media(max-width: 600px) {
    #myimage {
        width: 220px;
        height: 220px;
        transition: .3s
    }

    .description_tabs .nav-tabs .nav-link {
        font-size: 13px;
        transition: .3s
    }

    .readmore {
        font-size: 14px;
        transition: .3s
    }

    .description_tabs .nav-tabs .nav-link.active, .description_tabs .nav-tabs .nav-link.active:hover {
        color: #000;
        border-bottom: 1px solid var(--color-golden);
        border-bottom-width: 2px;
        font-size: 14px;
        transition: .3s
    }

    .div_icns a {
        margin-bottom: 4px;
        transition: .3s
    }
}

@media(max-width: 470px) {
    .miniSize, .section_devider {
        display: block;
        transition: .3s
    }

    .img_sourse li img {
        width: 35px;
        height: 35px;
        transition: .3s
    }

    .img_sourse {
        order: 3
    }

    .main_img_container {
        order: 2
    }

    .prInfo_wrapper .image_section {
        flex-direction: column;
        align-items: center;
        transition: .3s
    }

    .img_sourse ul {
        flex-direction: row;
        overflow-x: auto;
        transition: .3s;
        padding: 20px 0 0;
        margin: 0
    }

    .activities {
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 15px
    }

    #myimage {
        width: 200px;
        height: 200px;
        transition: .3s
    }

    .image_section .favorites {
        display: none;
        transition: .3s
    }

    .section_devider {
        margin: 10px 25px;
        width: 100%
    }

    .description_tabs {
        order: 4;
        transition: .3s
    }

        .description_tabs .nav-tabs .nav-link {
            padding: .3rem;
            font-size: 14px;
            transition: .3s
        }
}

a {
    color: #222429
}

.path_container ol {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    list-style: none;
    margin-bottom: 28px;
    background: 0 0;
    padding: 0
}

    .path_container ol li a {
        color: #6a6a6a
    }

    .path_container ol li:hover a {
        font-weight: 500;
        color: #000
    }

    .path_container ol li a:hover {
        text-decoration: none
    }

    .path_container ol li:after {
        content: "/";
        color: #cfcfcf;
        letter-spacing: .4px;
        font-size: 13px;
        vertical-align: top;
        margin-left: 5px;
        padding-right: 5px;
        font-weight: 400 !important
    }

    .path_container ol li:last-child:after {
        content: ""
    }

.comment_header {
    display: flex;
    justify-content: space-between
}

.comments, .description_tabs .nav-link, div.ProfHeader span.mx-1 {
    font-weight: 600
}

.description_tabs .nav-link {
    padding-left: 13px;
    padding-right: 0
}

.o-headline > span:after, .o-headline > span:before {
    bottom: 10px
}

.imgBox {
    border: 2px solid #f2f2f2
}

    .imgBox, .imgBox img {
        border-radius: 8px
    }

.DivrsityColor {
    display: block;
    margin-bottom: 8px;
    border-bottom: 1px dashed #f4f6f6
}

    .DivrsityColor span:first-child {
        font-size: 14px;
        font-weight: 500;
        padding: 1px 3px 0;
        background: #f4f6f6;
        margin-left: 5px;
        border-radius: 5px;
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)
    }

.DivrsityItem label {
    position: relative;
    display: block
}

.EndRemainAmount, .ZiroRemainAmount {
    color: #ff4c29;
    font-weight: 500;
    font-size: 14px
}

.ZiroRemainAmount, .panel.shadow .title-box h1 {
    font-weight: 700;
    font-size: 14px;
}



.LoadingCmBtn {
    width: 23px;
    height: 23px;
    margin-right: 8px;
    margin-bottom: 3px;
    display: none
}

.panel.shadow {
    box-shadow: none !important
}

    .panel.shadow label {
        font-weight: 600;
        margin-bottom: 0
    }

    #txt_EmailReplay, .panel.shadow .form-control.email, .rate_view .ratingSection .ratingBox:first-child {
        margin: 0
    }

    .panel.shadow .d-flex.col-12.justify-content-center.alig-items-center.mt-3 {
        align-items: center;
        margin-top: 0 !important
    }

    #inputCaptcha, .panel.shadow .btnSendComment {
        margin: 0 !important
    }

    .panel.shadow .dotted-box {
        position: relative;
        display: block;
        width: 100%;
        min-height: 1px;
        margin: 0 auto;
        border: none;
        box-sizing: content-box;
        height: 0;
        overflow: visible;
        background: repeat-x #d2d9e6;
        transition: transform .3s cubic-bezier(.175, .885, .32, 1.275);
        transform-origin: left;
        -webkit-animation: 3s linear infinite waving;
        animation: 3s linear infinite waving;
        transform: scaleX(1)
    }

    .panel.shadow .title-box h1 {
        margin-bottom: 0;
        line-height: 31px;
        padding: 10px 10px 10px 0;
        color: #212529;
        margin-top: 25px
    }

        .panel.shadow .title-box h1:before {
            content: '';
            position: relative;
            display: inline-block;
            width: 1%;
            height: 4px;
            background: #3d434f;
            border: 5px solid #d2d9e6;
            box-shadow: inset 3px 5px 0 0 var(--color-golden),3px 5px 0 0 var(--color-golden);
            margin-left: 6px;
            border-radius: 20px
        }

.single-pricing-table .d-flex.align-items-center.justify-content-between {
    display: block !important
}

.ReplyComment svg {
    fill: currentcolor;
    width: 20px;
    stroke: currentcolor
}

.CmItem {
    border-radius: 30px !important;
    border: none !important;
    width: 75%;
    padding: 18px 42px 18px 25px !important;
    position: relative;
    margin: 15px auto;
    background: #fbf6f4
}

    .CmItem:before {
        content: " ";
        width: 20px;
        height: 20px;
        display: block;
        background: #fbf6f4;
        position: absolute;
        border: 1px solid #fbf6f4;
        border-right: 0;
        border-top: 0;
        right: -12px;
        transform: rotate(-135deg);
        top: 40px
    }

    .CmItem:after {
        content: " ";
        width: 50px;
        height: 50px;
        background-image: url(/FileManager/Icons/userdash.png);
        display: block;
        background-size: cover;
        border-radius: 50%;
        position: absolute;
        border: 1px solid #e7e7e7;
        right: -75px;
        top: 20px
    }

.fs13px {
    color: #878a90
}

.fa-sync-alt:before {
    content: '';
    width: 18px;
    height: 18px;
    position: relative;
    background: url('/FileManager/Icons/refresh.png') 0 0/100% no-repeat;
    display: block;
    filter: invert(5)
}

.refreshCaptchaComment {
    padding: 2px
}

    .refreshCaptchaComment i {
        width: 20px;
        height: 20px;
        color: #fff;
        fill: #fff
    }

.owl-nav .owl-next, .owl-nav .owl-prev {
    position: absolute;
    top: 41%;
    background: #e0e0e2 !important;
    width: 20px;
    height: 20px;
    outline: 0 !important
}

.owl-nav .owl-next {
    border-radius: 0 8px 8px 0;
    left: 0
}

.owl-nav .owl-prev {
    border-radius: 8px 0 0 8px
}

.owl-nav button.owl-next:after, .owl-nav button.owl-prev:after {
    content: '';
    line-height: 5;
    position: relative;
    background-image: url(/FileManager/Icons/chevron-left.svg);
    background-size: cover;
    display: block;
    width: 18px;
    height: 18px;
    margin: auto
}

.owl-nav button.owl-prev:after {
    transform: rotate(180deg)
}

.owl-nav .owl-next span, .owl-nav .owl-prev span {
    position: absolute;
    top: -4px;
    right: 15px;
    display: none
}

.main_title {
    position: relative;
    z-index: 0;
    margin-bottom: 30px;
    text-align: center
}

    .main_title p {
        text-align: justify
    }

.wave-line {
    display: block;
    fill: var(--color-golden);
    width: 80px;
    height: 10px;
    text-align: center;
    margin: auto auto 13px;
    background-image: url(/FileManager/Icons/5644.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat
}

.choosed:before, .heading-title, .heading-title:after, .in-stock {
    display: inline-block
}

.heading-title {
    line-height: 1.3em;
    position: relative;
    color: transparent;
    background: linear-gradient(315deg,#3d434f 50%,var(--color-golden) 100%);
    -webkit-background-clip: text;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 800
}

    .heading-title:after {
        content: ".";
        font-size: inherit;
        width: 0;
        position: relative
    }

.BoxSizeColor button {
    background: #fff;
    border: 1px solid #dddd;
    border-radius: 9px;
    padding: 4px 5px;
    outline: 0 !important;
    transition: .3s
}

.ChooseColorBox button span {
    padding: 3px;
    font-size: 11px;
    font-weight: 600;
    color: #000;
    border-radius: 8px
}

.BoxSizeColor button:hover {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.27) !important
}

.TitleChBox {
    font-weight: 700;
    color: #666d7a
}

.BoxSizeColor button.choosed span, .ChooseColorBox button.choosed span, .choosed {
    color: #fff !important
}

.choosed {
    border: 1px solid #fff !important;
    background: #ee0481 !important
}

    .choosed:before {
        content: '';
        background: url('/FileManager/Icons/tick.png') 50%/80% no-repeat;
        width: 15px;
        height: 15px;
        position: relative;
        top: 3px;
        margin-left: 4px
    }

#ColorName, #SizeName {
    color: #000 !important
}

.unavailable {
    opacity: .4 !important;
    pointer-events: none !important
}

.in-stock span {
    padding: 7px 15px;
    background-color: #ebfae9;
    border: 1px solid #82d45e;
    border-radius: 5px;
    margin: 0 0 20px;
    min-width: 200px;
    font-weight: 500;
    color: #222;
    display: block;
}

.in-stock span {
    min-width: 100px;
    font-weight: 700;
    color: #26901b
}

.rate_view {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right
}

    .rate_view .ratingSection {
        display: flex;
        justify-content: flex-start;
        align-items: center
    }

        .rate_view .ratingSection .ratingBox {
            position: relative;
            padding-left: 17px;
            margin-right: 10px;
            font-size: 13px;
            font-weight: 500;
            color: #666;
            vertical-align: middle
        }

            .rate_view .ratingSection .ratingBox:after {
                position: absolute;
                content: "";
                font-size: 18px;
                line-height: 1.8;
                left: -3px;
                color: #00f0ff;
                top: 5px;
                background: url('/FileManager/Icons/down-chevron.svg') 0 0/100% no-repeat;
                transform: rotate(90deg);
                display: block;
                height: 10px;
                width: 10px
            }

            .rate_view .ratingSection .ratingBox:last-child:after {
                content: none
            }

.ribbon {
    position: absolute;
    left: var(--right,30px);
    top: var(--top,-3px);
    filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, .5));
    z-index: 50
}

    .ribbon > .content {
        background: linear-gradient(45deg,rgba(0,0,0,0) 0,rgba(255,255,255,.25) 100%) var(--theme-color);
        color: #fff;
        font-size: 14px;
        text-align: center;
        font-weight: 700;
        padding: 10px 2px 4px;
        clip-path: polygon(0 0,100% 0,100% 100%,50% 100%,0 100%);
        width: 52px;
        min-height: 48px;
        transition: clip-path 1s,padding 1s,background 1s
    }

    .ribbon.up > .content {
        clip-path: polygon(0 0,100% 0,100% calc(100% - 20px),40% 100%,0 calc(100% - 12px))
    }

#FinishBuy {
    font-weight: 100;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: #e0e0e2;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.div_addbascket {
    flex-direction: row-reverse
}

.productInf__wrapper .custom-html-widget {
    flex: 0 0 21%;
    width: 21%;
    padding: 1rem
}

.D-sidebar-bg {
    padding: 40px 35px;
    background-color: #ffffff;
    margin: 0 0 20px;
    display: flex;
    justify-content: space-around;
    border-radius: 15px;
    width: 93%;
    box-shadow: 0px 0px 11px 1px #e9e9e9;
    margin: auto;
}

.D-products-list li {
    display: flex;
    /* border-bottom: 1px solid #e5e5e5; */
    /* padding: 0 0 15px; */
    /* margin: 0 0 15px; */
    width: 310px;
    padding: 25px;
    border-radius: 10px;
    background-image: linear-gradient(-91deg, #FFFEFF 0%, var(--theme-color) 100%);
    box-shadow: 0px 0px 11px 1px #e9e9e9;
}

    .D-products-list li img {
        margin-left: 25px;
        height: 100%
    }

    .D-products-list li h6 {
        font-size: 16px;
        margin: 0 0 4px
    }

    .D-products-list li .text, .D-sidebar-bg .text {
        font-size: 16px;
    }



.D-sidebar-bg h6 {
    font-size: 16px;
    margin: 0 0 2px
}

.D-sidebar-bg .phone {
    font-size: 24px;
    margin: 18px 0 0
}

@media(max-width: 1340px) {




    .productInf__wrapper .custom-html-widget {
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        justify-content: space-between
    }

        .productInf__wrapper .custom-html-widget .D-sidebar-bg:nth-child(2) {
            -ms-flex: 0 0 25%;
            flex: 0 0 25%;
            max-width: 25%;
            text-align: center;
            border-radius: 10px 0 0 10px
        }

        .productInf__wrapper .custom-html-widget .D-sidebar-bg:first-child {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 0 10px 10px 0
        }

    .D-products-list {
        flex-direction: column;
        max-width: 75%
    }

        .D-products-list li {
            border: none;
            -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
            padding: 0;
            margin: 0;
            justify-content: center
        }
}

@media(max-width: 1068px) {
    .productInf__wrapper .custom-html-widget .D-sidebar-bg:nth-child(2) {
        display: none
    }

    .productInf__wrapper .custom-html-widget .D-sidebar-bg:first-child {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        border-radius: 10px
    }
}

@media(max-width: 926px) {
    .rate_view {
        flex-direction: column;
        align-items: baseline
    }
}

@media(max-width: 854px) {
    .div_galery_pic, .div_scorepro {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .rate_view {
        flex-direction: row;
        align-items: center
    }

    .productInf__wrapper .custom-html-widget .D-sidebar-bg:first-child {
        padding: 20px
    }

    .D-products-list li img {
        margin-left: 7px;
        height: 29px;
        width: 29px
    }

    .D-products-list li h6 {
        font-size: 13px
    }
}

@media(max-width: 696px) {
    .D-products-list li {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        margin: 0 0 15px
    }

    .productInf__wrapper .custom-html-widget .D-sidebar-bg:first-child {
        flex-wrap: wrap;
        justify-content: center
    }
}

@media(max-width: 528px) {
    .rate_view {
        flex-direction: column;
        align-items: baseline
    }

    .D-products-list li {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        display: block;
        text-align: center;
        border-bottom: 1px solid #e5e5e5;
        padding: 0 0 10px
    }

    .productInf__wrapper .custom-html-widget .D-sidebar-bg:first-child {
        flex-wrap: wrap
    }

    .D-products-list li img {
        margin: 0 0 10px
    }

    .proTitle {
        font-size: 16px
    }
}

@media(max-width: 493px) {
    .rate_view .ratingSection {
        gap: 10px;
        flex-wrap: wrap;
    }

        .rate_view .ratingSection .ratingBox {
            margin: 0 0 5px
        }



    .rate_view {
        flex-direction: row
    }

    .o-headline > span:before {
        right: 0;
        left: 0
    }

    .o-headline:after, .o-headline > span:after {
        content: none
    }
}

@media(max-width: 428px) {
    #FinishBuy {
        flex-wrap: wrap;
        justify-content: end
    }

    .TRPrdBundel {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center
    }

        .TRPrdBundel .mr-5 {
            margin-right: 5px !important
        }

    .imgBox {
        margin: 0 0 15px;
        margin-right: 0 !important
    }

    .CardSimilarPro {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column
    }
}

.viewBox svg {
    width: 15px;
    height: 15px;
    fill: #8c8c8c;
}

.aghsati a {
    background-color: transparent;
    padding: 10px 0;
    border-radius: 0;
    border-bottom: 1px dashed var(--color-ocean);
    color: var(--color-ocean);
    font-size: 14px;
}

.d-flx {
    display: flex;
    flex-wrap: wrap;
}

.j-between {
    justify-content: space-between;
}

.j-end {
    justify-content: end;
}

.items-center {
    align-items: center;
}

.flx-75 {
    max-width: 75%;
    flex: 0 0 75%;
}

.flx-25 {
    max-width: 25%;
    flex: 0 0 25%;
}

.p-15 {
    padding: 15px;
}

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

#SuplierList p {
    color: #424750;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.15;
    margin-left: 8px;
}

    #SuplierList p span:first-child {
        margin-left: 4px;
    }

    #SuplierList p span svg {
        width: 20px;
        height: 20px;
        fill: #434851;
    }

    #SuplierList p:nth-child(1) span svg {
    }

    #SuplierList p:nth-child(2) span svg {
        fill: #ee0481;
    }

    #SuplierList p:nth-child(3) span svg {
        fill: #3dd28d;
    }

#SuplierList .supplier-b:nth-of-type(even) {
    background-color: #f7f7f8;
}

#SuplierList p.SupplierName {
    color: #81858b;
}

#SuplierList .Btn_AddToBasket, #SuplierList .btn-request {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 2.17;
    background: #ee0481;
    color: #fff;
    outline: none;
    overflow: hidden;
    transition: top .3s ease-in-out;
    border-radius: 8px;
    border: 0;
    margin-right: 6px;
}

#SuplierList .btn-request {
    background: #fab528;
}

    #SuplierList .Btn_AddToBasket:hover, #SuplierList .btn-request:hover {
        background: #3dd28d;
        color: #fff;
    }

#SuplierList .price-n {
    font-size: 19px;
    font-weight: 700;
    line-height: 2.12;
    margin-left: 18px;
}

    #SuplierList .price-n span {
        font-size: 14px;
        font-weight: 500;
    }

#SuplierList .flx-75 p {
    flex: 0 0 32%;
    max-width: 32%;
}

.in-stock .ZiroRemainAmount {
    color: #5a5c7a;
    background: #f1f2f4;
    border: 1px solid #e0e0e2;
}


#back2Top {
    height: 50px !important;
    width: 50px !important;
    font-weight: 900;
    color: #fff;
    position: fixed;
    right: auto;
    bottom: 34px;
    z-index: 999;
    font-size: 0;
    text-align: center;
    padding-top: 5px;
    line-height: 36px;
    border-radius: 50%;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    left: 25px;
}

#back2Top, .btn-radio input, .socials-menu span:not(.shopDS-svg-icon) {
    display: none;
}

.BackToTop, .rate-star, .site-footer, .widget_mc4wp_form_widget .mc4wp-form-fields label {
    position: relative;
}

    .rate-star:hover .rate-tooltip {
        top: 26px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .rate-star .rate-tooltip {
        position: absolute;
        top: 0;
        font-size: 14px;
        background-color: #ff9d28;
        color: #fff;
        padding: 0;
        border-radius: 5px;
        box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
        opacity: 0;
        pointer-events: none;
        transition: .3s cubic-bezier(.68, -.55, .265, 1.55);
        font-weight: 500;
        z-index: 1;
        width: 13px;
        height: 20px;
        text-align: center;
        line-height: 1.5;
    }

    .rate-star svg, .ratingBox svg {
        width: 13px;
        height: 13px;
    }

.GoldScore, .ratingBox .Score:hover {
    fill: #ff9d28;
    stroke: #ff9d28;
}

.c-breadcrumb {
    font-size: 13px;
}
