@import url("../../general-assets/css/fonts.css");
@import url("vars.css");
:root{
    --swiper-theme-color:#fe435b
}

/*   Scrollbar   */
*::-webkit-scrollbar {
    width: 6px;
}
*::-webkit-scrollbar-thumb {
    background-color: var(--quaternaryColor);
    width: 8px;
    border-radius: 4px;
}
*::-webkit-scrollbar-track {
    background-color: var(--backGroundColor);
}
/*   Scrollbar   */
.object-cover {
    object-fit: cover;
}
.object-contain{
    object-fit: contain;
}
.mh-500{
    max-height: 500px;
}

* {
    direction: rtl;
    font-family: "IRANYekanX", sans-serif;
    font-weight: 500;
    font-size: var(--mainFontSize);
    -moz-font-feature-settings: "ss02";
    -webkit-font-feature-settings: "ss02";
    font-feature-settings: "ss02";
    color: var(--primaryTextColor);
}
.font-block{
    font-family: "Block", sans-serif;
}
.font-negare{
    font-family: Negare, Tahoma, sans-serif;
    word-spacing: 2px;
}
.form-control{
    font-weight: 500;
}
.font-feature-settings-normal{
    font-feature-settings: normal;
}
body{
    background-color: #fff;
    /*background-image: url("../images/fuchsia.jpg");*/
}
:focus-visible {
    outline: 0;
}
body a {
    text-decoration: none;
    color:var(--primaryTextColor);
}
a:hover{
    color:var(--primaryTextColor)
}
a.border-bottom-dash-blue:hover{
    color: #37393b;
    border-bottom: 1px dashed #37393b;
}

ul{
    list-style-type: none;
}
hr {
    background-color: #4a373785;
}

h2 {
    font-size: 16px;
}

.text-color{
    color: #555;
}
.main-color{
    color: var(--primaryColor)!important;
}
.primary-color{
    color: var(--primaryColor);
}
.bg-primary-color{
    background-color: var(--primaryColor);
}
.primary-color-darker{
    color: var(--primaryColorDarker);
}
.quinary-color {
    color: var(--quinaryColor);
}
.secondary-color{
    color: var(--secondaryColor)!important;
}
.secondary-color-darker{
    color: var(--secondaryColorDarker)!important;
}
.bg-secondary-color{
    background-color: var(--secondaryColor)!important;
}
.bg-secondary-color-dark{
    background-color: var(--secondaryColorDarker)!important;
}
.text-first{
    color: var(--primaryColor)!important;
}
.text-first-lite{
    color: #fe435bdb!important;
}
.text-second{
    color: var(--secondaryColor)!important;
}
.text-second-lite{
    color: #1bb2a4db!important;
}
.text-yell0w{
    color: #fac74b;
}
.text-blue{
    color: var(--secondaryColor);
}
.text-mute{
    color: #ababab;
}
.text-black{
    color: #000;
}
.text-green{
    color: #239d1a;
}
.text-red-dark{
    color: var(--primaryColorDarker);
}
.invalid-feedback{
    color: var(--primaryColor);
}
.center-flex{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}
.mw-2000{
    max-width: 2000px!important;
}
/*general-style*/
.two-lines-ellipsis{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 3em;
}
.one-lines-ellipsis{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 3em;
}
.max-height-two-banner{
    max-height: 240px;
}
@media (max-width: 3600px){
    .max-height-img{
        max-height: 180px;
    }
}
@media (max-width: 1920px){
    .max-height-img{
        max-height: 158px;
    }
    .max-height-img-m{
        max-height: 154px;
    }
    .max-height-img-s{
        max-height: 142px;
    }
    .max-height-img-xs{
        max-height: 110px;
    }
}
@media (max-width: 990px){
    .max-height-img{
        height: 145px;
    }
    .max-height-img-m{
        max-height: 132px;
    }
    .max-height-img-s{
        max-height: 120px;
    }
    .max-height-img-xs{
        max-height: 140px;
    }
}
@media (max-width: 450px){
    .max-height-img{
        max-height: 134px!important;
    }
    .max-height-img-m{
        max-height: 120px!important;
    }
    .max-height-img-s{
        max-height: 105px!important;
    }
    .max-height-img-xs{
        max-height: 70px;
    }
}
@media (max-width: 1920px){
    .pdc-img{
        max-height: 360px!important;
        width: auto;
    }
}
@media (max-width: 980px){
    .pdc-img{
        max-height: 320px!important;
        width: auto;
    }
}
@media (max-width: 440px){
    .pdc-img{
        max-height: 230px!important;
        width: auto;
    }
}

.cursor-zoom{
    cursor: zoom-in!important;
}
/*general-style*/

.header{
    min-height: 65px;
    position: relative;
    z-index: 1000;
    transition: transform .5s;
    background-color: #fff;
}
.menu{
    z-index: 800;
    min-height: 50px;
}
.smart-scroll{
    position: sticky;
    top: 65px;
    right: 0;
    left: 0;
    transition: top 0.3s
}
.scrolled-down{
    transform:translateY(-105%); transition: all 333ms linear;
}
.scrolled-up{
    transform:translateY(0); transition: all 333ms linear;
}

.header-top{
    height: 39px;
    background-color: #f7f8f9;
}

.header-bottom {
    height: 75px;
}
.main-navbar .nav-item{
    display: flex;
    padding: 4px;
}
.main-navbar .nav-item .nav-link{
    color:#333;
    display: flex;
    align-items: center;
}
.main-navbar .nav-item .nav-link i{
    color: #727272;
}
.main-navbar .nav-item .nav-link:hover{
    cursor: pointer;
    border-radius: 6px;
    /*background-color: #fdeaee;*/
}
.main-navbar .nav-item .nav-link:hover span,
.main-navbar .nav-item .nav-link:hover i{
    color: var(--primaryColorDarker);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover
/*.navbar-light .navbar-nav .nav-link:hover i*/{
    color: var(--primaryColorDarker);
}
.nav-category::after{
    border-left: 1px solid #b3b3b3;
    content: "";
    height: 20px;
    position: absolute;
    top: 0;
    transform: translateY(75%);
}
.sidebar,.overlay{
    position: fixed;
    top: 0;
    bottom: 0;
}
.sidebar {
    right:-100%;
    max-width: 82vw;
    transition: all ease 0.34s;
    z-index: 2000;
    overflow-y: auto;
    height: 100vh;
}
.overlay {
    left:0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    visibility: hidden;
    z-index: 2000;
}
.z-50{
    z-index: 50;
}
.main-navigation.active .sidebar{
    right: 0;
}
.main-navigation.active .overlay{
    visibility: visible;
}
#search-box{
    z-index: 20;
}
.search-result-container{
    width: 100%;
    top: 3.55rem;
    z-index: 1;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.01), 0 0 8px rgb(206,212,218);
}
.search-result-hover{
    border-right: 3px solid #fefefe;
}
.search-result-hover:hover{
    border-right: 3px solid var(--primaryColor) !important;
}
.search-result-hover:hover span{
    color: var(--secondaryColor);
}
.search-overlay{
    background-color: rgba(74,74,74,0.4);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.search-box.close-search .search-link > i.fal::before {
    content: "\f00d";
    color: #f94e60;
}

.top-form.top-search{
    transition-duration: 0.3s;
}


.search-box.close-search .top-form.top-search {
    opacity: 1;
    visibility: visible;
    z-index: 20;
}

.header-mobile .top-form.top-search #search-input{
    width: 100%;
    font-size: 0.75rem;
}
.top-form.top-search .search-input {
    width: 100%;
    background-color: #f5f5f5;
    height: 100%;
    text-indent: 38px;
    border: 1px solid #ddd;
}

.top-form.top-search .button-search-pro {
    position: absolute;
    color: #adadad;
    line-height: 0;
}
.bg-glass{
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.top-form.top-search .button-search{
    position: absolute;
    color: #adadad;
    line-height: 0;
    right: 18px;
    z-index: 99;
}
.top-form.top-search .button-clear-search {
    position: absolute;
    color: #adadad;
    line-height: 0;
}

.dropdown-item.active, .dropdown-item:active{
    background-color: transparent;
}
.dropdown-menu{
    min-width: 12rem;
    border: 0;
}
.dropdown-menu.account-dropdown.show {
    opacity: 1;
    transition: all 0.3s ease;
}
.dropdown-menu.account-dropdown {
    transform: translate(120px,6px);
    opacity: 0;
}
.account-dropdown-sm {
    transform: translate(140px,6px)!important;
}
.dropdown-menu.cart-dropdown {
    transform: translate(26px, 0);
    width: 250px;
    border-radius: 10px;
}
.header-mobile .dropdown-menu.cart-dropdown {
    transform: translate(210px, 0);
    width: 250px;
    border-radius: 10px;
}
.dropdown-mega .dropdown-menu[data-bs-popper]{
    top: 50px;
}
ul.account-dropdown li{
    line-height: 2.25;
}
.dropdown-item.active, .dropdown-item:active{
    color: #666;
}
.account-dropdown li:first-child .dropdown-item:hover,
.category-menu li:first-child.dropdown-item:hover
{
    border-top-right-radius: var(--mainBorderRadius);
    border-top-left-radius: var(--mainBorderRadius);
}
.account-dropdown li:last-child .dropdown-item:hover,
.category-menu li:last-child.dropdown-item:hover
{
    border-bottom-right-radius: var(--mainBorderRadius);
    border-bottom-left-radius: var(--mainBorderRadius);
}
.mini-account-box{
    position: absolute;
    width: 140px;
    background-color: #fff;
    z-index: 99;
    box-shadow: 0 3px 8px 0 rgba(0,0,0,.30);
    border-radius: 10px;
    left: 0;
    transform: scale(0);
    transition-duration: 0.2s;
    transform-origin: top left;
    opacity: 0;
    transition-delay: 0.1s;
}

.profile:hover .mini-account-box {
    transform: scale(1);
    opacity: 1;
}
a.profile-menu:hover{
    background-color: var(--backGroundColor);
}
.badge {
    padding: 0.35em;
}
.qty-badge{
    position: absolute;
    width: 28px;
    height: 28px;
    left: 10px;
    top: 20%;
    border: 1px solid #aaa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    line-height: 1.85;
    font-size: 0.65rem;
}
.badge-notification {
    position: absolute;
    font-size: 12px;
    bottom: 0;
    right: 0;
    width: 17px;
    height: 17px;
    line-height: 8px;
    background-color: var(--primaryColor);
    border-radius: 4px;
}
.category-sub-menu{
    position: absolute;
    display: none;
    top: 0;
    background-color: #fff;
    right: 11.5rem;
    border-radius: var(--mainBorderRadius);
}
.mobile-category:hover .category-sub-menu{
    display: block;
    z-index: 99;
}
.category-sub-menu ul li a:hover{
    color: var(--primaryColor);
}
.category-sub-menu ul li:hover{
    background-color: #fff;
}
.card-lg{
    background-color: #fff;
    box-shadow: 0 0 1px 0 rgba(0,0,0,.1);
    border-radius: 10px;
    border: 1px solid #dfdfdf;
}
.card-lg-border{
    background-color: #fff;
    border-radius: var(--mainBorderRadius);
    border: 1px solid #e6e6e6;
}

.separator-title{
    border-radius: 50rem;
    padding: .2rem 1.25rem;
    background-color: #fefefe;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.separator-hr{
    display: inline-block;
    width: 74%;
    position: absolute;
    top: 0;
    transform: translateY(10px);
    color: #a3a3a3;
}
.more-products{
    position: absolute;
    left: 0;
    border-radius: 50rem;
    padding: .85rem 1.5rem;
    background-color: #fefefe;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
/*amazing deals*/
/*.category-content {
    margin: 0 1rem 0 1rem;
    position: relative;
}
.category-content::before {
    content: "";
    background: #fff;
    border-radius: 20px;
    min-height: 145px;
    width: 100%;
    position: absolute;
    z-index: -1;
    bottom: 0;
    border: 1px solid #f3f3f3;
}*/
.category-img {
    width: 150px;
    margin: auto;
    text-align: center;
    min-height: 230px;
    display: flex;
    justify-content: center;
    -ms-flex-pack: center;
    align-items: flex-end;
}
.category-text h1 {
    color: #292b2c;
    font-size: 1.3rem;
    font-family: "Poppins",sans-serif;
    margin-bottom: 5px;
}
.category-text p {
    font-size: 11px;
    color: #bbb;
    margin-bottom: 6px;
    line-height: 24px;
    font-family: "Poppins",sans-serif;
}
.category-text {
    padding: 25px 15px 15px 20px;
    text-align: center;
}
/*countDownTimer*/
#clockdiv{
    display: inline-block;
    direction: ltr;
}
#clockdiv > div{
    border-radius: 3px;
    display: inline-block;
}
#clockdiv div > span{
    font-size: 1.25rem;
}
/*countDownTimer*/
.accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}
.amaze-deal{
    background-color: #f94e60;
    background-image: url('../images/bg-amaze.jpg');
    background-size: contain;
    background-blend-mode: hard-light;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
    padding: 4px;
}

#gototop{
    position: absolute;
    left: 90%;
    transform: translateX(-50%) translateY(-50%);
    height: 3rem;
    width: 3rem;
    border-radius: 10px;
    box-shadow: 0 0 1px 6px rgba(249,78,96,0.15);
    background-color: var(--primaryColor);
    color: rgba(255,255,255,0.5);
    border: 0;
}
#gototop_blog{
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    height: 3.6rem;
    width: 3.6rem;
    border-radius: 10px;
    box-shadow: 0 0 1px 6px rgba(249,78,96,0.15);
    background-color: var(--primaryColor);
    color: rgba(255,255,255,0.5);
    border: 0;
}
/*footer*/
footer#footer .content i{
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 6px;
    background-color: #eee;
    /*border: 1px solid #ddd;*/
}
ul.address-list{
    padding: 0;
}
ul.address-list li{
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
}
.owl-1.owl-carousel>div{border-radius: 1.2rem}

.btn:focus, .btn:active, a:focus, a:active, button:focus, button:active {
    outline: 0;
    box-shadow: none!important;
}
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    /*box-shadow: none!important;*/
    /*border-color: #00a1e599;*/

    border:1px solid var(--secondaryColor);
    outline: none;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.01), 0 0 8px rgb(206,212,218);
    background-color: #fff;
}
.h-80 {height: 80%!important;}
.w-20 {width: 20%!important;}
.w-33{width: 33%!important;}
.w-60{width:60%!important}
.w-85{width:85%!important}
.w-90{width: 90%!important;}
.card-hover:hover{
    box-shadow: 0 0 2px rgba(0,0,0,.15);
}
.shadow-lite{
    box-shadow: 0 0 2px 0 rgba(0,0,0,.1);
}
.shadow-card{
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
}
.shadow-1{
    box-shadow: rgba(50, 50, 93, 0.25) 0 2px 5px -1px, rgba(0, 0, 0, 0.3) 0 1px 3px -1px;
}
.shadow-image{
    box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(0,0,0,.1);
}
.shadow-button{
    box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 -3px 6px rgba(0,0,0,.1);
}
.shadow-bottom{
   box-shadow: 0 1px 0 rgba(0,0,0,.14), 0 2px 0 rgba(0, 0 ,0 , .05);
}
.shadow-top{
    box-shadow: 0 -1px 0 rgba(0,0,0,.14), 0 -2px 0 rgba(0,0,0,.05);
}
.text-shadow{
    text-shadow: 0px 0px 3px rgb(26 26 26 / 80%);
}
.text-shadow-lite{
    text-shadow: 2px 2px 4px #5e5e5e35;
}

.fs-big{
    font-size: 3.2rem;
}
.fs-main{
    font-size: var(--mainFontSize);
}
.fs-3-5{
    font-size: 1.6rem;
}
.fs-5-5{
    font-size: 1.145rem;
}
.fs-4-5{
    font-size: 1.375rem!important;
}
.fs-7{
 font-size: 0.875rem;
}
.fs-7-5{
    font-size: 0.8rem;
}
.fs-title{
    font-size: 0.88rem;
}
.fs-8{
    font-size: 0.75rem;
}
.fs-9{
    font-size: 0.65rem;
}
.fs-13{
    font-size: 13px;
}
@media (max-width: 576px) {
    .fs-sm-7-5{
        font-size: 0.75rem;
    }
    .fs-sm-9{
        font-size: 0.65rem;
    }
}
.fw-100{
    font-weight: 100;
}
.fw-200{
    font-weight: 200;
}
.fw-300{
    font-weight: 300;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-800{
    font-weight: 800;
}
.fw-900{
    font-weight: 900;
}
.fw-930{
    font-weight: 930;
}
.fw-960{
    font-weight: 960;
}
.fw-990{
    font-weight: 990;
}
.mx-05{
    margin-left: .1rem!important;
    margin-right: .1rem!important;
}
.mt-07{
    margin-top: 0.75rem!important;
}
.mt-4-5{
    margin-top: 2rem;
}
.p-input {
    padding: 0.65rem;
}
.p-select{
    padding: 0.7rem;
}
.p-05{
    padding: 0.125rem;
}
.py-1-5{
    padding-top: 0.375rem!important;
    padding-bottom: 0.375rem!important;
}
.py-2-5{
    padding-top: 0.8rem!important;
    padding-bottom: 0.8rem!important;
}
.p-2-5{
    padding: 0.75rem!important;
}
@media (min-width: 992px){
    .p-lg-2-5 {
        padding: 0.8rem!important;
    }
}
.py-2r{
    padding-top: 2rem!important;
    padding-bottom: 2rem!important;
}
.rounded-7{
    border-radius: 1rem!important;
}
.rounded-6{
    border-radius: 0.5rem!important;
}
.rounded-6-bottom{
    border-radius: 0 0 0.5rem 0.5rem!important;
}
.rounded-5{
    border-radius: 0.475rem!important;
}
.rounded-10{
    border-radius: 1rem!important;
    /*//for image*/
}
.lh-2-half{
    line-height: 2.5;
}
.rounded-50{
    border-radius: 50px!important;
}
.rounded-card{
    border-radius: 15px;
}
.border-right{
    border-right: 1px solid #f4f4f4 ;
}
.border-secondary-lite{
    border: 1px solid #1bb2a4aa;
}
.border-right-secondary {
    border-right: 2px solid var(--secondaryColor);
    padding-right: 6px;
}
.border-right-secondary-bold {
    border-right: 3px solid var(--secondaryColor);
    padding-right: 6px;
}
.border-right-primary-bold {
    border-right: 3px solid var(--primaryColor);
    padding-right: 6px;
}
.border-right-primary-x-bold {
    border-right: 6px solid var(--primaryColor);
}
.border-left{
    border-left:1px solid #f4f4f4;
}
.border-bottom{
    border-bottom:1px solid #f4f4f4!important;
}
.shadow-header-bottom{
   box-shadow:0 1px 0 rgba(0, 0, 0, .14), 0 2px 0 rgba(0, 0, 0, .05);
}
.border-bottom-bold{
    border-bottom:1px solid #eee!important;
}
.border-bottom-primary-bold{
    border-bottom:2px solid #fe435b!important
}
.half-a-border-on-top{
    border-top: 1px solid;
    border-image: linear-gradient(to right, #eee 5%, #f5f5f530 60%) 40% 1;
}
.border-top-bold{
    border-top:1px solid #eee!important;
}
.border-top-bolder{
    border-top:1px solid #ddd!important;
}
.border-dash-main{
    border:1.5px dashed #aaa!important;
}
.border-bottom-dash{
    border-bottom: 1px dashed #ccc;
}
.border-top-dash{
    border-top: 1px dashed #ccc;
}
.border-bottom-dash-blue{
    border-bottom: 1px dashed var(--secondaryColor);
}
.rounded-left{
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}
.rounded-right{
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}
.border-soft{
    border: 1px solid #e9e9e9;
}
.border-soft-2{
    border: 2px solid #e4e4e4;
}
.border-light-rounded{
    border: 1px solid #d4cfcf;
    border-radius: 10px;
}
.border-t-l{
    border-top-left-radius: 10px!important;
}
.border-t-r{
    border-top-right-radius: 10px!important;
}
.cursor-pointer{
    cursor: pointer;
}
.d-ltr{
    direction: ltr!important;
}
.d-rtl{
    direction: rtl!important;
}
.v-hidden{
  visibility: hidden!important;
}
.v-hide{
    visibility: hidden;
}
.bg-main{
    background-color: #f94e60;
}
.bg-background{
    background-color: var(--backGroundColor);
}
.bg-comment{
    background-color: #fefefe;
}
.bg-green{
    background-color: #18b34a;
}
.bg-button-submit{
    background-color: var(--primaryColor);
    color: #fff;
    font-weight: 800;
}
.bg-accordion{
 background-color: #eef5ff;
}
.bg-opacity-50{
    background: linear-gradient(180deg, hsla(2, 100%, 99%, 0) 0, #000000aa);
}
.btn-green{
    color: #fff;
    background-color: #34D399;
    border-color: #13c68b;
}
.btn-green:hover{
    color: #fff;
    background-color: #31bf8b;
    border-color: #13c68b;
}
/*social color*/
.bg-facebook{
    background-color: #3b5998bb;
}
.bg-twitter{
    background-color: #00acedbb;
}
.bg-linkedin{
    background-color: #007bb6bb;
}
.bg-instagram{
    background-color: #c70066bb;
}
.bg-whatsapp{
    background-color: #00ce53bb;
}
.bg-telegram{
    background-color: #6cc1e3bb;
}
/*social color*/
.btn-red,.btn-red-out:hover{
    color: #fff;
    background-color: var(--primaryColor);
}
.btn-red-out{
    color: #fff;
    background-color: #ff6384;
    border-color: #ff6384;
}
.btn-red-outline{
    color: var(--primaryColor)!important;
    background-color: #fff;
    border-color: var(--primaryColor);
}
.btn-red:hover {
    color: #fff;
    background-color: var(--primaryColorDarker);
    border-color: #cb1028;
}

.btn-red-magic{
    background: linear-gradient(45deg, #c70b50, #ff3366);
    box-shadow: 0 4px 30px rgba(223,45,70,.35);
}

.btn-sky{
    color: #fff;
    background-color: var(--secondaryColor);
}

.btn-sky:hover{
    background-color: #119b8f;

    color: #fff;
}
.secondary-btn{
    background-color: var(--secondaryColor);
    border-radius: 0.35rem;
    padding: 0.5rem;
    color: #fff;
}
.red-btn{
    background-color: #fdeaee!important;
    color: var(--primaryColorDarker)!important;
    border: 1px solid #ffcfd9;
}
.grey-btn{
    background-color: #eee;
    color: #707070;
    border: 1px solid #ddd;
}

.grey-button{
    border-radius: 6px;
    background-color: #eee;
    color: #6c757d;
    padding: 4px 8px;
}
.blue-btn{
    background-color: #dafcff;
    color: #05707c;
}
.green-btn{
    background-color: #daffdf;
    color: #00af3e;
    border: 1px solid #c0ebc6;
}
.yellow-btn{
    background-color: #fbf2a7;
    color: #6c620e;
    border: 1px solid #e9e096;
}
.bg-button-submit:hover{
    color: #fff;
}

.bg-transparent-md{
    background: #ffffffcc;
}

.bg-footer-dark{
    background-color: #2f2f2f;
}
.input-error{
    font-size: 0.75rem;
    font-weight: 800;
    color: #f3263c;
    margin-right: 0.25rem;
}
.form-error{
    border: 1px solid var(--primaryColor);
    outline: none;
}
.vertical-center{
    margin: 0;
    position: absolute;
    right:0;
}
.login-title{
    border-right: 3px solid var(--secondaryColor);
    color: var(--primaryColor);
}

.inp-icon{
    left: 10px;bottom: 0
}
/*custom-grid*/

@media (min-width: 576px){
    .col-sm-3-half {
        flex: 0 0 auto;
        width: 29.167%;
    }
}
@media (min-width: 768px){
    .col-md-3-half {
        flex: 0 0 auto;
        width: 29.167%;
    }
}
@media (min-width: 992px){
    .col-lg-3-half {
        flex: 0 0 auto;
        width: 40%;
    }
}
@media (min-width: 1200px) {
    .col-lg-3-half {
        flex: 0 0 auto;
        width: 36%;
    }
}
@media (min-width: 1300px) {
    .col-lg-3-half {
        flex: 0 0 auto;
        width: 30%;
    }
}
/*custom-grid*/
.logo-max-h{
    max-height: 70px;
}
.item-price{
    font-size: 17px;
    color: #6e6e6e;
}

.item-price del {
    text-decoration-color: #6c757d;
}
.item-price ins {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    margin-right: 8px;
}

.card-body .card-title{
    line-height: 1.6rem;
    height: 3.2rem;
    overflow: hidden;
    color: #535353;
    font-weight: bold;
}
@media (max-width: 768px){
    .border-small-0 {
        border: 0!important;
        border-radius: 0!important;
    }
}
@media (max-width: 768px){
    .border-radius-0 {
        border-radius: 0!important;
    }
}
/* for overriding bootstrap styles use like below */
.btn.btn-newsletter{
    background-color: var(--primaryColor);
    border-radius: 0.35rem;
    line-height: 1;
    position: absolute;
    left: 3px;
    top: 4px;
    height: 26px;
    color: #fff;
}
.social-link {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background-color: var(--backGroundColor);
}
.social .aparat img{
    width: 28px;
}
.social-link:hover {
    opacity: 0.7;
}
.social-link.fab.fa-telegram {
    color: #6cc1e3;
}
.social-link.fab.fa-whatsapp {
    color: #29cb46;
    /*color: #fff;
    background-color: #29cb46;*/
}
.social-link.fab.fa-instagram {
    color: #e52c7d;
}

.card-overlap{
    min-height: 400px;
    z-index: 5;
    background-size: cover;
    border-radius: 10px;
    background-color: #3d3d3d80;
    background-blend-mode: saturation;
}
.smooth-card{
    transition: all ease-in-out .2s;
}
.smooth-card:hover{
    margin-top: -16px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #111;
    border-bottom: 3px solid #f94e60;
    background-color: #fff;
}
.nav-pills .nav-link {
    border-radius: 0;
    transition: none;
}

/*.nav-pills-custom{

    padding: 10px 0 10px 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.nav-pills-custom .tab-link {
    color: #313131;
    font-size: 1rem;
    height: 40px;
    padding: 0 10px 0 10px;
    line-height: 3em;
    margin: 2px 20px;

}

.nav-pills-custom .tab-link:hover {
    cursor: pointer;
    background: #fde9eb;
    font-size: 1rem;
    border-radius: 50px;
}

.nav-pills-custom .tab-link span{
    line-height: 1.5em;
}

.nav-pills-custom .tab-link.active {
    color: #fff;
    background-color: #f94e60;
    border-radius: 50px;
    transition: all 1.84s ease;
}
.nav-pills-custom .tab-link.active::before {
    opacity: 1;
}*/

ul.amazing-list{

}

ul.amazing-list li{
    display: block;
    margin: 0;
    padding-right: 20px;
    position: relative;
    line-height: 30px;
}

ul.amazing-list li::before{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bebebe;
    position: absolute;
    right: 0;
    top: 50%;
    content: "";
    transform: translateY(-50%);
}
.img-brand {
    width: 90%;
    height: 104px;
}
.img-h-300{
    max-width: 100%;
    height: 300px;
}
/***************************************** product page ****************************************/

/*set a border on the images to prevent shifting*/
.add-to-cart-sm{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

.variations-label{
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    display: block;
}

.variations-label:before,.variations-label:after {
    background-color: #cdcdcd;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
}

.variations-label:after {
    width: 100%;
}
.variations-label:before {
    width: 30px;
}
/*aside*/
aside {
    position: relative;
    z-index: 0;
}

aside.fixed {
    position: fixed;
}
.sticky-sidebar{
    position:-webkit-sticky;
    position:sticky;
    top:122px;
    transition: top 0.3s
}
/*aside*/
.like-btn,.dislike-btn{
    color: #a9a9a9;
}
/*gallery*/
/*fancy-app*/
.fancybox__carousel *,.fancybox__toolbar__items--right,.fancybox__toolbar,
.fancybox__thumbs *{
    direction: ltr;
}
.fancybox__backdrop{
    background: #ffffff!important;
}
.fancybox__thumbs{
    padding: 6px 0 !important;
    margin-bottom: 0.5rem;
}
.fancybox__toolbar{
    background: transparent!important;
    margin-top: .5rem;
}
.carousel__button:not(.is-next),
.carousel__button:not(.is-prev){
    margin-right: 8px;
    border: 1px solid #d9d9d9;
    border-radius: 0.65rem;
    width: 3rem;
    height: 3rem;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after{
    border-width: 1px!important;
    border-color: #f94e60!important;
}
.fancybox__image{
    border-radius: 8px!important;
}
.fancybox__thumb{
    background-size: contain !important;
    border: 1px solid #d9d9d9;
}
.fancybox__caption{
    color: #888 !important;
    font-weight: 600;
}
@media (max-width: 700px) {
    .fancybox__nav .carousel__button.is-next,
    .fancybox__nav .carousel__button.is-prev
    {
        display:none;
    }
}
.fancybox__content, .fancybox__iframe{
    border-radius: 0.7rem;
}
.fancybox__progress {
    background: #fe435b!important;
}
/*fancy-app*/
.product-gallery *{
    direction: ltr;
}
.product-gallery > .thumb{
    cursor: zoom-in;
}
.product-gallery .thumbs a.thumb  {
    display: inline-block;
    width: 100%;
    padding: 0 5px;
    max-height: 70px;
}

.product-gallery .thumbs a.thumb img {

    cursor: zoom-in;
    width: 100%;
    height: auto;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    opacity: .7;
}
.product-gallery .thumbs a.thumb img:hover {
    opacity: 1;
}

.product-gallery .btn-float{
    position: absolute;
    top: 1.5rem;
    z-index: 8;
    right: 0;
}

.product-gallery .btn-float span {
    color: #9b9b9b;
    display: block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.product-gallery .btn-float a.btn-wishlist:hover{
    color: #f94e60;
}
.gallery-items {
    float: left;
    position: relative;
    cursor: pointer;
}
.gallery-items span {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    color: #fff;
    font-size: 40px;
    transform: translate3d(-50%, -50%, 0);
}

/*section*/
.section-title-home
{
    border-radius: 6px;
    padding: 0.35rem 0.5rem;
}

/*gallery*/
#scrollspy-list .list-group-item-action{
    border-bottom: 2px solid transparent!important;
    border-top: 0!important;
    border-right: 0!important;
    border-left: 0!important;
}
#scrollspy-list .list-group-item-action:focus, #scrollspy-list .list-group-item-action:hover,#scrollspy-list .list-group-item.active {
    background-color: transparent;
    border-bottom: 2px solid var(--primaryColor)!important;
    border-top: 0!important;
    border-right: 0!important;
    border-left: 0!important;
    border-radius: 0!important;
    margin-top: 0!important;
}
#scrollspy-list .list-group-item-action:focus i, #scrollspy-list .list-group-item-action:hover i,#scrollspy-list .list-group-item.active i{
    color: var(--secondaryColor)!important;
}

input[type="radio"].color-input {
    display: none;
}
input[type="radio"]:checked + label span {
    transform: scale(1.3);
    border: 2px solid #1bb2a4;
}
input[type="radio"]:checked + label div {
    border: 2px solid #1bb2a4aa;
    color: #343434;
}

label.color-picker-label {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    cursor: pointer;
}
label.color-picker-label:hover span {
    transform: scale(1.25);
}
label.color-picker-label span {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease-in-out;
    border-radius: 50%;
    border:2px solid #ccc;
}
label.color-picker-label span.red {
    background: #4e56b8;
}

label.color-picker-label span.yellow {
    background: #000000;
}

label.color-picker-label span.green {
    background: #f6cb1c;
}

.product-price-discount{
    background-color: var(--primaryColor);
    color: #fff;
    padding: 0 6px;
    border-radius: 6px;
}
.product-price-discount span{
    line-height: initial;
}
.comment-numbers:before{
    content: "";
    height: 1rem;
    width: 1px;
    margin-left: 8px;
    background-color: #dfdfdf;
}

.comment-numbers{
    margin-right: 8px;
    align-items: center;
    cursor: pointer;
}
.product-params ul li{
    color: #5c5c5c;
    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%;
    margin: 2px 0;
}
.product-params ul li span {
    margin-left: 5px;
    white-space: normal;
}
.product-params ul li:before{
    content: "";
    width: 5px;
    height: 5px;
    background: var(--secondaryColor);
    vertical-align: middle;
    margin-left: 5px;
    border-radius: 50%;
}
.section-title .product-name-en:before{
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background-color: #f94e60;
    bottom: -1px;
}
#specification table.product-attributes{
    border-spacing: .5rem;
    border-collapse: separate;
}
#specification table.product-attributes td,#specification table.product-attributes th{
    font-size: 13px;
    padding: 5px 16px 5px 5px;
    margin: 0;
    line-height: 2;
    border-radius: 6px;
    border: 1px solid #efefef;
    background-color: #f9f9f9;
    width: 68%;
}
#specification table.product-attributes th{
    width: 28% !important;
    font-weight: 600;
    vertical-align: top;
}
#specification table.product-attributes tr:nth-child(2n) td,
#specification table.product-attributes tr:nth-child(2n) th{
    background-color: #fff3f3;
}
/*pagination*/
@media screen and ( max-width: 400px )
{

    li.page-item {

        display: none;
    }
    .page-item:first-child,
    .page-item:nth-child(2),
    .page-item:nth-last-child(2),
    .page-item:last-child,
    .page-item.active,
    .page-item.disabled {

        display: block;
    }
    .page-item.active{
        margin: 0 1rem!important;
    }
    .page-item.active:before,
    .page-item.active:after{
        content: '...';
    }

    .page-item.active .page-link{
        display: inline-table;
        margin: 0 0.5rem;
        padding: 0.3rem 1rem;
    }
    /*.page-item:first-child
    {
        margin-left: 1rem!important;
    }
    .page-item:last-child
    {
        margin-right: 1rem!important;
    }*/
}
.pagination{
    margin-top: 1rem;
}
.pagination .page-item{
    margin: 0 .5rem;
}
.pagination .page-item .page-link{
    line-height: 28px;
    height: 40px;
    width: 40px;
    border-radius: 33%;
    text-align: center;
    font-size: 1rem;
    font-weight: 900;
}
.page-item.active .page-link {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}
.page-link,.page-link:hover,.page-item.disabled .page-link,.page-link:focus{
    color: var(--primaryColor);
}

/*pagination*/

ul.product-rate li{
    display: flex;
    display: -moz-flex;
    align-items: center;
    justify-content: flex-end;
    margin: 12px 0;
}
.rate-progress{
    margin-right: 14px;
    width: 42%;
}
.rate-progress-back{
    height: 4px;
    border-radius: 3px;
    background-color: #d9d9d9;
    width: 100%;
}
.rate-progress-width{
    height: 100%;
    background-color: #4fd5ec;
    border-radius: 3px;
}
.header-avatar{
    width: 40px;
    height: 40px;
}
/*****************userprofile*********************/
.user-avatar{
    width: 76px;
    height: 76px;
    background-size: contain;
}
.user-avatar-big{
    width: 126px;
    height: 126px;
    background-size: contain;
}
.user-link a span {
    font-weight: 700;
}
.user-profile .sign-out a:hover,.user-profile .sign-out a:hover i{
    color: #c90c20;
}
.user-menu *:hover{
    color: var(--secondaryColorDarker);
    box-shadow: none;
}
.fa-sign-out:hover,.ex:hover{
    color: var(--primaryColorDarker);
}
.table-last-orders thead{
    background-color: #ececec;
}
.table-last-orders thead tr th,.table-order-details thead tr th{
    text-align: center;
    vertical-align: middle;
}
.table-last-orders tbody tr th,.table-last-orders tbody tr td,
.table-order-details tbody tr th,.table-order-details tbody tr td{
    padding: 1.5rem 0.5rem;
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
}
/*****************userprofile*********************/
.cart-item-details li span{
    line-height: 1.6;
    color: #555;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3px 0;
}
.form-control,.form-select{
    font-size: var(--mainFontSizeSmall);
}
.form-control:focus{
    outline: none;
    box-shadow: none;
}
.form-select:focus {
   box-shadow: none!important;
}
.form-control:disabled, .form-control[readonly]{
    background-color: #fff;
}
.qty{
    border-radius: 0!important;
    border-right: 0!important;
    border-left: 0!important;
    border-color:#ddd!important;
    height: 36px;
    width: 34px;
    font-weight: 600;
    display: inline-block;
}
.button-container{
    display: flex;
    justify-content: space-between;
    /*flex-direction: column;*/
}
.button-container .form-control{
    max-width: 40px;
    text-align: center;
    display: inline-block;
    margin: 0;
}
.cart-qty-plus,
.cart-qty-minus{
    width: 34px;
    height: 36px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: .5rem;
}
.cart-qty-plus{
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.cart-qty-minus{
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.cart-item-delete{
    width: 32px;
    height: 34px;
    border-radius: 0.5rem 0 0 0.5rem;
    border: 1px solid #e6e6e6;
}

.cart-item-delete::after{
    font-family: 'Font Awesome 5 Pro', sans-serif;
    content: '\f2ed';
}
.edit-icon::after{
    font-family: 'Font Awesome 5 Pro', sans-serif;
    content: '\f044';
}
/************************cart**************/
/*orderdetail*/

.table-order-details tbody tr th *{
    color: #5c5c5c;
}
.max-l-1{
    line-height: 1.6rem;
    height: 1.6rem;
    overflow: hidden;
}
.max-l-2{
    line-height: 1.6rem;
    height: 3.2rem;
    overflow: hidden;
}

.progress{
    height: 6px;
}
/*orderdetail*/

/*shop*/


.form-switch .form-check-input{
    width: 3em;
    height: 1.5em;
}
 .form-check-input:checked {
     background-color: var(--secondaryColor);
     border-color: var(--secondaryColor);
 }
.form-switch .form-check-input:hover{
    cursor: pointer;
}
.form-check-input:focus {
    border-color: #cfcfcf;
    /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");*/
    outline: 0;
    box-shadow: none;
}
.checkbox .form-check-input{
    width: 1.5em;
    height: 1.5em;
}
.checkbox-sm .form-check-input{
    width: 1rem;
    height: 1rem;
}
.checkbox .form-check-input:hover{
    cursor: pointer;
}
.shop-product-item:hover{
    box-shadow: inset 0 0 10px 4px rgba(82,99,116,.13);
}

.shop-item-sorting span a{
    padding: 0.5rem 0.45rem;
    border-radius: 0.65rem;
    margin: 0 0.3rem;
}
.shop-item-sorting span a.active{
    background-color: var(--secondaryColor);
    color: #fff;
}
.shop-item-sorting span a:hover:not(.active){
    background-color:#e9e9e9;
    cursor: pointer;
}
.form-check-input{
    background-position: initial;
}

input[type="radio"].product-sorting {
    display: none;
}
/*shop*/

/*--comment--*/

.circle-prefix-green:before,.circle-prefix-red:before {
    font-family: 'Font Awesome 5 Pro', sans-serif;
    content: '\f301';
    position: absolute;
    right: -20px;
    top: -1px;
    font-size: 14px;
    font-weight: 600;
    color: #1cc88a;
}
.circle-prefix-red:before {
    content: '\f308';
    color: #ff6384;
}

textarea.comment-box{
    height: 165px;
}
/*--comment--*/

/*responsive-table*/
.table-container{
    padding: 0 10%;
    margin: 40px auto 0;
}

.heading{
    font-size: 40px;
    text-align: center;
    color: #f1f1f1;
    margin-bottom: 40px;
}
.table{
    width: 100%;
    border-collapse: collapse;
}

.table tr{
    vertical-align: middle;
}

.table thead tr th{
    font-size:1rem;
    font-weight: 500;
    color: #444;
    opacity: 1;
    padding: 12px;
    vertical-align: top;
    text-align: center;
}
.table tbody tr td,
.table tbody tr td span,
.table tbody tr td a{
    font-size: var(--mainFontSize);
}

.table tbody tr td{
    font-weight: normal;
    color: #666;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
}

.table .text-open{
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.35px;
    color: #ff1046;
}

@media (max-width: 780px) {
    .table thead{
        display: none;
    }
    .table, .table tbody, .table tr, .table td{
        display: block;
        width: 100%;
    }
    .table tr{
        margin-bottom: 3rem;
    }
    .table tbody tr td{
        text-align: left;
        padding-right: 50%;
        position: relative;
    }
    .table td:before{
        content: attr(data-label);
        position: absolute;
        right: 0;
        width: 50%;
        padding-right: 4px;
        font-weight: 500;
        font-size: 14px;
        text-align: right;
    }
}
/*responsive-table*/
/*payment*/
.coupon-btn{
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-color: #bebebe;
}
.coupon-input{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-color: #bebebe;
}
/*payment*/
/*sweet-alert*/
.swal-footer{
    text-align: center!important;
    margin-top: 0;
}
.swal-button--danger{
    background-color: var(--primaryColor)!important;
}
.swal-icon--success__ring{
    border: 4px solid #1bb2a490;
}
button.swal-button:not([disabled]):hover {
    background-color: #3ebfb2;
    color: #fff;
}
button.swal-button.swal-button--confirm {
    font-weight: 700;
    background-color: #1bb2a4;
}
/*loader*/
.overlap{
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    position: fixed;
}
/*loader*/
.cart-btn{
    border-radius: 0 var(--mainBorderRadius);
    padding: 10px 0;
}
.cart-title-drop{
    height: 3.3rem;
    overflow: hidden;
    color: #525050;
}
.cart-scroll{
    max-height: 250px;
    overflow-y: scroll;
}
.ribbon{
    height: 25px;
    padding: 3px;
    position: absolute;
    text-align: center;
    color: #fff;
    background-color: var(--primaryColor);
}
.label-ribbon{
    transform: rotate(270deg);
    border-radius: 10px 0 0 10px;
    top: 13px;
    width: 56px;
    height: 24px;
    font-weight: 800;
}
.dot-colors{
    top: 80px;
    right: 6px;
    background: transparent!important;
    transform: rotate(90deg);
    text-shadow: 0 0 black;
}
.color-checkout{
    /*left: -6px;*/
    right: auto;
}
.discount-box{
    left: -1px;
    right: auto;
    bottom: 40px!important;
    top: auto;
    border-radius: 0 10px 10px 0;
    width: 42px;
}
.discount-box-shop{
    left: 4px;
    bottom: 60px!important;
    border-radius: 0.65rem;
}
.label-ribbon-shop{
    top: 25px;
    border-radius: 10px;
}
.border-b-l-0{
    border-bottom-left-radius: 0!important;
}
.border-image{
    border: 1px solid #ccc;
}
.cart-scroll::-webkit-scrollbar {
    width: 3px;
    height: 7px;
}
.cart-scroll::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

article.introduction p{
    margin-bottom: .25rem;
    font-size: 1rem;
}
article img {
    max-width: 100%;
}
.cart-link:hover .cart-dropdown{
    display: block;
}
/*swiper*/
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 12px;
}
.pe-4-5{
    padding-left: 2.25rem!important;
}
.mainSliderSwiper .swiper-slide img {
    height: auto;
    display: block;
    width: 100%;
    min-height: 230px;
    /*max-height: 380px;*/
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #dedede;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled{
    pointer-events: auto!important;
}
.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff;
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231bb2a4'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}
.accordion-item {
     border: 0;
}
.card-swiper-button{
    color: var(--primaryColorDarker);
    background: #ffffffeb;
    width: 2.25rem;
    height: 4.25rem;
    border-radius: 10px 0 0 10px;
    box-shadow: -1.5px 0 4px 0 rgba(0,0,0,0.15);
    line-height: 5.65rem;

}
.card-swiper-button:after{
    color: #f94e60!important;
    text-shadow: none!important;
}
.button-next{
    left: 0!important;
    right: auto!important;
    border-radius: 0 10px 10px 0;
    box-shadow: 1.5px 0 4px 0 rgba(0,0,0, 0.15)!important;
}
.button-prev{
    right:0!important;
    left: auto!important;
}
.swiper-btn-prev-top{
    top: 4px;
    left: 48%!important;
    right: auto!important;
    transform: rotate(270deg);
    width: 3.25rem;
    height: 5.65rem;
    border-radius: 10px 0 0 10px;
    box-shadow: -1.5px 0 4px 0 rgba(0,0,0,0.2);
}
.swiper-btn-next-bottom{
    bottom: -18px;
    top: auto;
    left: 48%!important;
    right: auto!important;
    transform: rotate(270deg);
    width: 3.25rem;
    height: 5.65rem;
    border-radius:0 10px 10px 0;
    box-shadow: 1.5px 0 4px 0 rgba(0,0,0,0.2);
    line-height: 5.65rem;
}
.swiper-btn-next-bottom:after,.swiper-btn-prev-top:after{
    color: #f94e60!important;
    text-shadow: none!important;
}
/*.swiper *{*/
/*    direction: ltr!important;*/
/*}*/
/*swiper*/
/*incredible swiper*/
/*Header Category styles*/
.dropdown-toggle.dropdown-category::after{
    display: none!important;
}
.dropdown-toggle::after{
    font-size: 1rem;
}
.mega-content a:hover,
.mega-content a:hover h6{
    color: var(--primaryColor)!important;
}
.category-image{
    width: 82px;
    height: 82px;
}
.dropdown-category.dropdown-toggle.nav-link.show,
.dropdown-category.dropdown-toggle.nav-link.show i {
    color: #fe435b;
}
.navbar-category .nav-item a.nav-link{
    display: flex;
    align-items: center;
    color: rgb(0 0 0 / 74%);
    font-weight: 500;

}
#scrollspy-list .list-group-item-action i,
.btn-float div{
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 6px;
    background-color: #eee;
    color: #707070;
}
.btn-float div{
    line-height: 36px!important;
}
/*Header Category styles*/
.btn-special-sale{
    transform: rotate(270deg);
    position: absolute;
    top: 4rem;
    z-index: 8;
    left: -35px;
}
.incredible-container{
    background-color: #f94e60;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    font-family: 'Font Awesome 5 Pro', sans-serif;
    color: #4f4f4f;
    font-size: 1.8rem;
}
.categorySwiper .swiper-button-prev:after,
.categorySwiper .swiper-button-next:after {
    font-size: 1.3rem;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '\f104';
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '\f105';
}
.swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    transition: all .3s;
}
.mainSliderSwiper .swiper-pagination-bullet-active{
    width: 16px!important;
    border-radius: 10px;
    background-color: #fff;
}
.mainSliderSwiper .swiper-button-prev,
.mainSliderSwiper .swiper-button-next{
    background-color: #fff;
    width: 3rem;
    height: 3rem;
    opacity: 0;
}

.mainSliderSwiper .swiper-button-prev{
    right: 18px;
    left: auto;
    border-radius: 0.65rem;
}
.mainSliderSwiper .swiper-button-next{
    left: 18px;
    right: auto;
    border-radius: 0.65rem;
}
.categorySwiper .swiper-button-prev,
.categorySwiper .swiper-button-next{
    background-color: #fff;
    border-radius: 0.65rem;
    border: 1px solid #e9e9e9;
    width: 2.4rem;
    height: 2.4rem;
}
.categorySwiper .swiper-button-prev{
    right: 0;
}
.categorySwiper .swiper-button-next{
    left: 0;
}
.mainSliderSwiper:hover .swiper-button-next,
.mainSliderSwiper:hover .swiper-button-prev{
    opacity: 1;
    border: 1px solid #dbdbdb;
}

.inc-dis-box{
    padding: 0.2rem 0.5rem;
}
/*incredible swiper*/
.swal-text{
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.swal-icon--success__line {
    background-color: #1bb2a4;
}
.swal-title {
    color: rgba(0,0,0,.85);
    font-size: 20px;
}
.swal-modal{
    width: 340px;
}
.ms-6{
    margin-right: 5rem!important;
}
.me-4-5{
    margin-left: 2.2rem!important;
}
.bg-primary-color{
    background-color: var(--primaryColor);
}
.bg-primary-color-lite{
    background-color: #ffd6e0;
}
.bg-grey{
    background-color: #999999!important;
}
/*modal*/
.modal-backdrop.show {
    opacity: .4;
}
.modal-footer,
.modal-content{
    border: 0;
}
.modal-content{
    border-radius: .75rem;
}
@media (min-width: 768px){
    .modal-open {
        padding-right: 8px !important;
    }
}
/*star rating*/
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center
}

.rating>input {
    display: none
}

.rating>label {
    position: relative;
    width: 1em;
    font-size: 40px;
    font-weight: 200;
    color: #FFD600;
    cursor: pointer
}

.rating>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0
}

.rating>label:hover:before,
.rating>label:hover~label:before {
    opacity: 1 !important
}

.rating>input:checked~label:before {
    opacity: 1
}

.rating:hover>input:checked~label:before {
    opacity: 0.4
}
/**/

/*avin-blog*/
.blog{
    padding: 0.35rem 1.5rem;
}
.blog-article p, .blog-article p ul li a{
    font-size: 1rem;
    line-height: 2.5;
}
.blog-article a {
    color: #026c85;
}
.blog-card .card-footer {
    background-color: transparent!important;
    border-top: 0!important;
}
.card-blog-info{
    display: flex;
    align-items: center;
}
.card-blog-info i,.card-blog-info small{
    color: var(--primaryTextColor);
}
.blog-navbar .nav-link{
    padding: 1rem 0.5rem!important;
    display: flex;
}
.blog-navbar .nav-link:hover, .blog-navbar .nav-link.active{
    color: #417f85!important;
    background-color: #deedff!important;
}

nav.blog-navbar ul li:first-child {
    border-right: 1px solid #f7f7f7;
}
nav.blog-navbar ul li{
    border-left: 1px solid #f7f7f7;
}
.blog-list-group .list-group-item{
    border: 1px dashed rgba(0,0,0,.125)!important;
    border-width: 0 0 1px!important;
}
.list-group-flush>.list-group-item:last-child {
    border-bottom-width: 0!important;
}

/*plyr*/
.plyr__controls,.plyr__controls__item.plyr__volume input,
.plyr__progress input,.plyr__progress__buffer,.plyr__control.plyr__control--forward span,
.plyr__control.plyr__control--back span,.plyr__control{
    direction: ltr!important;
}
#plyr,.plyr {
    border-radius: 8px;
}
:root {
    --plyr-color-main: var(--primaryColor);
}
.mw-100{
    max-width: 100%!important;
}
/*plyr*/
/*avin-blog*/
/*faq*/
.accordion-body.faq *{
    color: #6a6a6a;
    line-height: 2.5!important;
}
.accordion-item.faq{
    border: 1px solid #eaeaea;
}
.accordion-button.faq:not(.collapsed){
    background-color: #eaeaea;
}
/*faq*/

/*header category*/
.main-menu{
    min-width: 420px;
    border-radius: 14px;
    margin-top: .05rem;
    /* background-color: #1bb2a4; */
}
.category-item-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 8px 0 50px;
    /* border-radius: 12px; */
}
.category-content-container{
    /*padding: 8px;*/
    border-radius: 12px 0 0 12px;
    background-color: #1bb2a42b;
}
.category-item {
    padding: 10px;
    background-color: #fff;
    border-radius: 12px;
    cursor: pointer;
    border: 0;
}
.category-item-container button span {
    color: rgba(0,0,0,0.74);
}
.category-item-container button {
    text-align: start;
}
.category-item.active span{
    color: var(--primaryColorDarker)!important;
}
.category-content-container .category-content {
    display: none;
    padding: 10px 10px 10px 60px;
}
.category-content-container .category-content.active {
    display: block;
}
/**/
/* Keyframes for fade-in and fade-out */
@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
        /*transform: translateY(-10px);*/
    }
    50% {
        opacity: 1;
        /*transform: translateY(0);*/
    }
}

/* Styling for the text */
.anim-text-fade {
    animation: fadeInOut 2.5s ease-in-out infinite; /* Infinite loop with a 3-second duration */
}
