@font-face{
    font-family:'sans-variable';
    src:url("../fonts/sans-variable.woff");
}
:root{
    --primary-color: #ed303b;
    --primary-gray: #f7f7f7;
    --primary-gray-font: #9f9d9d;
    --primary-white: #ffffff;
    --red-font: #bb5458;
    --link-hover: #f0f0f0;
    --footer-bg: #ed3336;
    --product-hover: #f2f2f2;
    --primary-gradient: linear-gradient(90deg, rgba(157,131,202,1) 0%, rgba(223,63,161,1) 67%, rgba(240,28,102,1) 100%);
    --gradient-2: linear-gradient(90deg, rgba(240,28,102,1) 0%, rgba(223,63,161,1) 67%, rgba(157,131,202,1) 100%);
    --default-font: "sans-variable",sans-sarif;
    --font-color: #000;
    --gray-bg: #f5f5f5;
    --primary-black: #383838;
}
dl, ol, ul{
    margin-top: 0;
    padding: 0;
    margin-bottom: 0;
}
body{
    background: var(--primary-white);
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 500;
}
h1, h2, h3, h4, h5, h6, p , span, del, small{
    font-family: var(--default-font);
    color: var(--font-color);
    margin: 0;
    padding: 0;
}
h1{
    font-size: 26px;
}
h2{
    font-size: 24px;
}
h3{
    font-size: 22px;
}
h4{
    font-size: 20px;
}
h5{
    font-size: 18px;
}
h6{
    font-size: 16px;
}
p{
    font-size: 14px;
    font-weight: 500;
}
a{
    text-decoration: none;
    color: var(--primary-gray);
}
.row>* {
    padding-right: 0;
     padding-left: 0;
}
header {
    width: 100%;
    background: var(--primary-white);
}

.gray-bg{
    background: var(--gray-bg);
}

.header-logo{
    width: 100%;
}

.header-logo img {
    width: 130px;
    margin-top: 11px;
    height: 40px;
}
.header-nav {
    width: 100%;
    padding: 14px 0px 0px 0px;
    display: flex;
    justify-content: start;
}

ul li{
    list-style: none;
}

.header-nav .category-button {
    margin: 5px 5px 0px 0px;
    position: relative;
}
.header-nav .category-button a {
    color: var(--primary-color);
    padding: 6px 23px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}
.header-nav .category-button a:hover{
    background: var(--primary-color);
    color: #FFF;
}

.header-nav .category-button a:hover img{
    filter: brightness(0) saturate(100%) invert(31%) sepia(38%) saturate(5196%) hue-rotate(338deg) brightness(93%) contrast(101%);
}

.header-nav .category-button a:hover .svg-img{
    filter: brightness(0) saturate(100%) invert(31%) sepia(38%) saturate(5196%) hue-rotate(338deg) brightness(93%) contrast(101%);
}

.header-nav .top-nav {
    width: 63%;
    padding: 6px 1px;
    margin-left: 10px;
}
.header-nav .top-nav ul {
    display: inline-flex;
    justify-content: space-between;
    width: 80%;
}
.header-nav .top-nav ul li a {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 4px;
    margin-top: -4px;
    width: 82px;
    text-align: center;
}

.header-nav .top-nav ul li a:hover {
    background: var(--primary-color);
    color: #FFF;
    padding: 4px;
    border-radius: 4px;
}

.top-preorder {
    width: 100%;
    margin-top: 16px;
    display: flex;
    justify-content: center;

}
.top-preorder a {
    text-decoration: none;
    color: #fff;
    padding: 6px 25px;
    border-radius: 4px;
    font-size: 12px;
    background: linear-gradient(90deg, rgba(157,131,202,1) 0%, rgba(223,63,161,1) 67%, rgba(240,28,102,1) 100%);
    background-size: 600% 600%;
    border-radius: 5px;
    animation: AnimateBorder 4s ease infinite;
    -webkit-animation: AnimateBorder 4s ease infinite;
    -moz-animation: AnimateBorder 4s ease infinite;
    transform: translate(-2px, -2px);
    transition: filter 1s ease-in;

}

.top-search {
    width: 100%;
    position: relative;
}
.top-search .top-input {
    width: 100%;
    margin-top: 13px;
}
.top-search .top-input input[type="text"] {
    width: 100%;
    height: 30px;
    border-radius: 7px;
    border: 1px solid var(--primary-color);

}
.top-search .top-input input[type="text"]:focus-visible{
    outline: unset;
}
form {
    width: 100%;
}

.top-search .top-button {
    position: absolute;
    top: 4px;
    right: 0px;
}
.top-search .top-button button {
    border: unset;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    margin-top: -11px;
    font-size: 11px;
    text-align: center;
    background-color: transparent;
    color: var(--primary-color);
}
.top-search .top-button button:focus-visible {
    border: unset;
    outline: 0;
}

.top-card-user {
    width: 100%;
    display: flex;
    justify-content: end;
    margin-top: 10px;
}

.top-card-user .link {
    font-size: 24px;
    color: var(--primary-color);
    display: block;
    margin-left: 15px;
}

.top-card-user .dropdown-menu {
    display: none;
    top: 50px;
    margin-right: 40px;
}

.top-card-user .dropdown-menu .dropdown-item {
    text-align: center;
    display: block;
    margin: 0 auto;
    width: 90%;
    margin-bottom: 1px;
    padding: 2px;
    border-radius: 8px;
}

.top-card-user .dropdown-menu .dropdown-item:hover{
    background: var(--primary-color);
    color: #FFF;
}

.carousel-caption {
    position: absolute;
    bottom: 30%;
    padding-top: 0;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
    width: 50%;
}

.carousel-caption h5 {
    font-size: 50px;
    color: #e5e2e2;
}
.carousel-caption p {
    font-size: 21px;
    font-weight: 500;
    color: #e5e2e2;
    margin-bottom: 20px;
}
.carousel-caption a {
    text-decoration: none;
    background: #dd27274f;
    padding: 6px 31px;
    color: #fff;
    border-radius: 4px;
}




.categories-section {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #898787;
    padding-bottom: 10px;
}

.categories-section h1{
    color:  var(--primary-color);
}

.subcats {
    border-radius: 4px;
    padding: 0px 0px 15px 0px;
}
.subcats:hover {
    background: #efefef;
}

.home-cat-active .home-category-img img {
    filter: brightness(0) saturate(100%) invert(31%) sepia(38%) saturate(5196%) hue-rotate(338deg) brightness(93%) contrast(101%);
}
.home-cat-active  .home-category-title h6{
    color: var(--primary-color);
}
.animate-bg {
    width: 100%;
    height: 91%;
    background: linear-gradient(90deg, rgba(157, 131, 202, 1) 0%, rgba(223, 63, 161, 1) 67%, rgba(240, 28, 102, 1) 100%);
    background-size: 600% 600%;
    border-radius: 12px;
    animation: AnimateBorder 4s ease infinite;
    -webkit-animation: AnimateBorder 4s ease infinite;
    -moz-animation: AnimateBorder 4s ease infinite;
    z-index: -1;
    transform: translate(-2px, -2px);
    transition: filter 1s ease-in;
    padding: 3px;
    margin-top: 30px;
}


@-webkit-keyframes AnimateBorder {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimateBorder {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimateBorder {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
.home-product {
    width: 100%;
    margin: 50px 0px;
}
.promo {
    height: 100%;
    width: 100%;
    background: var(--primary-white);
    border-radius: 12px;
    padding: 5%;
}


.promo .promo-title {
    width: 100%;
    margin-bottom: 10px;
}
.promo .promo-title h1 {
    font-size: 15px;
}
.promo-products {
    height: 100%;
    width: 100%;
    background: transparent;
}

.promo-products-list {
    width: 100%;
    padding: 10px 0px;
}
.promo-product {
    width: 100%;
    text-align: center;
    position: relative;
    cursor: pointer;
}


.promo-product .cart-view-icon {
    display: none;
    position: absolute;
    z-index: 999;
    top: 10;
    right: 11px;
    width: 10%;
}
.promo-product:hover  .cart-view-icon{
    display: block;
    transition: all ease-in 1s;
}
.promo-product .cart-view-icon .pro-icon {
    border: unset;
    margin-top: 6px;
    background: #fffffff0;
    color: var(--primary-color);
    width: 25px;
    height: 25px;
    border-radius: 3px;
    font-size: 12px;
    text-align: center;
    box-shadow: -1px 1px 4px 0px #403d3d5e;
}

.promo-product .promo-discount {
    position: absolute;
    padding: 2px 12px;
    border-radius: 4px;
    top: 12px;
    left: 13px;
    font-size: 12px;
    background: linear-gradient(90deg, rgba(157, 131, 202, 1) 0%, rgba(223, 63, 161, 1) 67%, rgba(240, 28, 102, 1) 100%);
    background-size: 600% 600%;
    border-radius: 5px;
    animation: AnimateBorder 4s ease infinite;
    -webkit-animation: AnimateBorder 4s ease infinite;
    -moz-animation: AnimateBorder 4s ease infinite;
    transform: translate(-2px, -2px);
    transition: filter 1s ease-in;
}
.promo-product .promo-discount span{
    color: var(--primary-white) !important;
}

.promo-product hr {
    border-color: #706e6e;
    margin-top: 28px;
}
.promo-product-title {
    padding: 4px;
    margin-top:15px;
}
.promo-product-title .model  {
    font-size: 14px;
    font-weight: 600;
    color: #525252;
}

.promo-product-title .price span {
    font-size: 15px;
    font-weight: 600;
    margin-left: 10px;
    color: var(--primary-color);
}
.promo-product-title .price del  {
    font-size: 13px;
    font-weight: 600;
    color: #a7a7a7;
}
.promo-product-title h4 {
    font-size: 14px;
    color: #424242;
}
.promo-timer {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 17px;
}
.promo-timer .day .day-num span {
    font-weight: 600;
    color: #404040;
}
.promo-timer .time-text span{
    color: #4a4949;
    font-weight: 600;
}

.top-products {
    width: 100%;
    padding: 0px 0px 0px 10px;
}

.top-pro-title {
    width: 100%;
    margin-bottom: 10px;
    padding: 0px 0px 0px 20px;
}
.top-pro-title h6{
    font-weight: 600;
    color: var(--primary-gray-font);
}

.top-pros {
    width: 100%;
    padding: 0px 0px 0px 10px;
}
.top-pro {
    position: relative;
    width: 100%;
    padding: 10px 0px;
}
.top-pro .top-pro-img {
    width: 80%;
    margin: 0 auto;
    background: #e1e1e1;
    border-radius: 7px;
    display: flex;
    justify-content: center;
}

.top-pro .top-pro-img a img{
    width:100%;
    border-radius:4px;
}
.top-pro .top-pro-details {
    width: 100%;
    padding: 0px 0px 0px 0px;
    margin-top: 10px;
    text-align: center;
}

.top-pro .top-pro-details p, .top-pro .top-pro-details h6 {
    color: var(--primary-black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

.home-discount {
    width: 100%;
    padding: 0px 20px;
}
.home-discount span{
    color:var(--primary-color);
    font-size:14px;
}
.top-pro .top-pro-details .price{
    color: var(--primary-color);
    font-size: 14px;
}
.top-pro .top-pro-details .code {
    font-size: 13px;
}

.top-pro  .cart-view-icon {
    position: absolute;
    right: 27px;
    width: 12%;
    height: 25%;
}

.top-pro  .cart-view-icon{
    display: none;
}
.top-pro:hover .cart-view-icon{
    display: block;
    transition: all ease-in 1s;
}
.top-pro .cart-view-icon .pro-icon {
    border: unset;
    margin-top: 6px;
    background: #fffffff0;
    color: var(--primary-color);
    width: 25px;
    height: 25px;
    border-radius: 3px;
    font-size: 12px;
    text-align: center;
    box-shadow: -5px -3px 4px 0px #6e6e6e21;
}

.subscription {
    width: 100%;
}


.subs-content {
    width: 100%;
    padding: 60px 20px;
}
.subs-details {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.subs-details h1 {
    font-size: 35px;
    font-weight: 700;
    color: #4a4a4a;
    text-transform: uppercase;
}
.subs-details p {
    font-size: 18px;
    font-weight: 600;
    color: #4a4a4a;
}

.subs-form {
    width: 50%;
    margin: 30px auto;
    display: flex;
    justify-content: center;
}
.subs-form .form-group {
    width: 100%;
    position: relative;
}
.subs-form .form-group .subs-input {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: 0px;
    padding: 10px;
}
.subs-form .form-group .subs-input:focus-within{
    outline: unset;
}
.subs-form .form-group  .subs-btn {
    position: absolute;
    right: 0px;
    width: 100px;
    height: 50px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 0px;
    background:var(--primary-color);
    color: #fff;
}
.subs-form a {
    margin-top: 7px;
    display: block;
    text-decoration: none;
    color: #ed303b;
    font-size: 17px;
    text-shadow: 0px 0px 0px #00000069;
    text-align: center;
}

.shipping-section {
    width: 100%;
    margin: 80px 0px;
}

.shipping-section .ship-icon {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

.shipping-section .ship-icon img {
    width: 50px;
    filter: brightness(0) saturate(100%) invert(31%) sepia(38%) saturate(5196%) hue-rotate(338deg) brightness(93%) contrast(101%);
}

.shipping-section .ship-icon :hover {
    margin-top: -10px;
    margin-bottom: 10px;
}

.shipping-section .ship-icon i {
    color: var(--primary-color);
    font-size: 40px;
}

.ship-desc {
    width: 100%;
    text-align: center;
}

.shipping-section  .ship-desc h6 {
    font-weight: 600;
    font-size: 16px;
    color: var(--font-color);
}
.shipping-section  .ship-desc p{
    font-weight: 500;
    font-size: 12px;
    color: var(--primary-gray-font);;
}
footer {
    width: 100%;
    padding: 44px 0px 10px 0px;
    background: var(--footer-bg);
    margin-top: 44px;
}

.page-breadcrumb {
    width: 100%;
    margin: 100px 0px 20px 0px;
}
.page-breadcrumb nav {
    padding: 20px;
    border-bottom: 1px solid #b1abab;
}
.breadcrumb .breadcrumb-item a{
    color:#000;
}
.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.about-us {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
}
.page-titile {
    width: 95%;
    margin: 0 auto;
}
.page-titile h1{
    font-weight: 600;
    color: var(--primary-color);
}

.page-content{
    width: 95%;
    margin: 0 auto;
}

.page-content p {
    text-align: justify;
    color: #626161;
    font-size: 16px;
    line-height: 25px;
}

.page-content .highlight {
    width: 100%;
    background: var(--primary-gray);
    padding: 22px;
    border-radius: 10px;
}
.page-content .highlight p{
    text-align: justify;
    color: #626161;
    font-size: 16px;
    line-height: 25px;
    font-style: italic;
}

.page-content  p.underline{
    text-decoration: underline;
}

.page-content ul{
    width: 100%;
    margin: 0;
    padding: 0;
}
.page-content ul li {
    list-style-type: none;
    font-size: 15px;
    width: 100%;
    margin-bottom: 5px;
}
.page-content ul li::before{
    content: "-";
    font-weight: 600;
    margin-right: 4px;
}

.members{
    width: 100%;
    margin-bottom: 20px;
}
.member {
    width: 100%;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    padding: 20px;
    background: #f5f5f5;
    cursor: pointer;
}
.member .member-img{
    width: 100%;
    position: relative;
}
.member .member-details {
    width: 100%;
    margin-top: 16px;
    text-align: center;
}
.member .member-details h6{
    font-size: 18px;
    font-size: 600;
    color: #000;
}
.member .member-details p{
    font-size: 14px;
    font-weight: 600;
    color: gray;
}
.member .member-img .social-media {
    position: absolute;
    z-index: 999;
    bottom: 13px;
    width: 80%;
    right: 20%;
    display: none;
}
.member .member-img .social-media ul {
    list-style: none;
    display: inline-flex;
    width: 80%;
    justify-content: center;
    margin: 0 19% 20px;
}
.member .member-img .social-media ul li {
    margin: 0px 5px;
}
.member .member-img .social-media ul li a {
    color:  var(--primary-color);
    border-radius: 50%;
    border: 1px solid  var(--primary-color);
    background: #FFF;
    text-align: center;
    padding: 9px 14px;
    font-size: 20px;
}
.member:hover{
    border: 1px solid var(--primary-color);
}
.member:hover .social-media{
    display: block;
}

.team-text{
    color: var(--primary-color);
    font-weight: 600;
}

.off-cart-list{
    border-top: 1px solid #f1f1f1;
    position: relative;
}


.off-cart {
    width: 100%;
    display: flex;
    justify-content: start;

    padding: 0px 0px 10px 0px;
}
.off-cart-border{
    border-bottom: 1px solid #cbc7c7;
}

.off-cart .cart-img {
    width: 22%;
    margin-right: 5px;
    padding: 0px;
}
.off-cart .cart-img img {
    height: 80px;
    width: 80px;
}

.off-cart .cart-details {
    width: 68%;
    margin-right: 5px;
    padding: 10px;
}
.off-cart .cart-remove {
    width: 10%;
    text-align: center;
    padding: 30px 0px;
}
.total-text {
    width: 100%;
    text-align: left;
}
.total-price {
    width: 100%;
    text-align: right;
}

.cart-total {
    position: absolute;
    bottom: 0;
    width: 91%;
    background: var(--primary-white);
}

.btn-primary{
    background: var(--primary-color);
    color: var(--primary-white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover{
    background: var(--footer-bg);
    color: var(--primary-white);
    border: 1px solid var(--primary-color);
}
.btn{
    border-radius: 4px;
}
.btn-full {
    width: 100%;
    padding: 15px;


}


.btn-gray{
    color: #000;
    text-align: center;
    display: block;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    background: #e9e9e9;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    background: var(--footer-bg);
    color: var(--primary-white);
    border: 1px solid var(--primary-color);
    outline: none;
    box-shadow: none;
}
.login-user-icon {
    width: 100%;
    margin-bottom: 5px;
}

.login-user-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.login-text {
    width: 100%;
}

.login-text h4{
    font-weight: 600;
    color: var(--primary-color);
}

.login-text p{
    margin-top: 5px;
    color: var(--primary-black);
}
.form-control {
    height: 45px;
    font-weight: 500;
}

.form-control:focus{
    box-shadow: unset;
    border: 1px solid var(--primary-color);
}

.form-control:focus-within{
    outline: unset;
}
.forget-password {
    width: 100%;
    margin: 5px 0px;
}
.forget-password a{
    color: var(--primary-black);
}
.pos-relative{
    position: relative;
}
.sign-up-link {
    color: var(--primary-black);
    display: block;
    margin-top: 5px;
}

.checkbox-wrapper-4 * {
    box-sizing: border-box;
  }
  .checkbox-wrapper-4 .cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
    display: inline-block;
  }
  .checkbox-wrapper-4 .cbx:not(:last-child) {
    margin-right: 6px;
  }
  .checkbox-wrapper-4 .cbx:hover {
    background: rgba(0,119,255,0.06);
  }
  .checkbox-wrapper-4 .cbx span {
    float: left;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-4 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    transform: scale(1);
    border: 1px solid #cccfdb;
    transition: all 0.2s ease;
    box-shadow: 0 1px 1px rgba(0,16,75,0.05);
  }
  .checkbox-wrapper-4 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-4 .cbx span:last-child {
    padding-left: 8px;
    line-height: 18px;
  }
  .checkbox-wrapper-4 .cbx:hover span:first-child {
    border-color: var(--primary-color);
  }
  .checkbox-wrapper-4 .inp-cbx {
    position: absolute;
    visibility: hidden;
  }
  .checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
    background:var(--primary-color);
    border-color:var(--primary-color);
    animation: wave-4 0.4s ease;
  }
  .checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
  }
  .checkbox-wrapper-4 .inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
  }
  @media screen and (max-width: 640px) {
    .checkbox-wrapper-4 .cbx {
      width: 100%;
      display: inline-block;
    }
  }
  @-moz-keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  @-webkit-keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  @-o-keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  @keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }

 .pass-show{
    position: absolute;
    top: 13px;
    right: 10px;
    cursor: pointer;
  }

    .cart-table{
        width: 100%;
    }
    .cart-table thead th{
        font-weight: 500;
        color: var(--primary-black) !important;
    }
    .cart-tr td img {
        height: 100px;
        width: 100px;
    }

    .cart-tr .td-10{
        width: 10%;
    }
    .cart-table>tbody>tr>.v-middle {vertical-align: middle}

    .cart-remove-link {
        color: #696969;
    }
    .cart-remove-link:hover{
        color: var(--primary-color);
    }
    .btn-small {
        padding: 9px 13px;
    }
    .pr-10 {
        padding: 0px 10px;
    }
    .update-group {
        width: 100%;
        display: flex;
        justify-content: end;
    }
    .text-right {
        text-align: right;
    }

    .text-left{
        text-align: left;
    }
    .cart-info {
        width: 100%;
        padding: 10px;
        border-bottom: 1px solid #f1f1f1;
    }

    .desktop-header {
        width: 100%;
        display: block;
        padding: 0px 0px 10px 0px;
        box-shadow: 0px 0px 3px 1px #0000002b;
    }
.home-category-list {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-flow: wrap;
}
.hom-cat {
    width: 15%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column;
    cursor: pointer;
}

.hom-cat:hover .home-category-title h6 {
    color: var(--primary-color);
}
.hom-cat:hover .home-category-img img{
    filter: brightness(0) saturate(100%) invert(31%) sepia(38%) saturate(5196%) hue-rotate(338deg) brightness(93%) contrast(101%);
}

.hom-cat .home-category-img {
    width: 100%;
    padding: 20px;
}
.hom-cat .home-category-img img{
    height: 80px;
    width: 80px;
}
.mobile-header{
    width: 100%;
    display: none;
    background: var(--primary-white);

}
.required {
    color: var(--primary-color);
}

.custom-label {
    display: inline-block;
    margin-bottom: 7px;
    font-weight: 500;
    color: #767676;
    font-size: 16px;
}

.contant-text {
    width: 100%;
    color: var(--primary-color);
}
.contant-text p,  .contant-text h1{
    color: var(--primary-color);
}
.contant-text h2{
    color: var(--primary-black);
}

.contant-address {
    width: 100%;
    margin-top: 25px;
}
.content-icon-text {
    display: flex;
    justify-content: start;
}
.content-icon-text .content-icon {
    width: 16%;
}
.content-icon-text .content-icon i {
    font-size: 42px;
    color: var(--primary-black);
}
.content-text p {
    font-size: 16px;
    color: var(--primary-black);
}

.mh-100{
    height: 100px;
}

.map{
    width: 100%;
}
.map iframe {
    width: 100%;
    height: 300px;
}

.zoom-image {
    width: 100%;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    margin-bottom: 10px;
}
.zoom-image img {
    width: 100%;
    border-radius: 8px;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .desktop-header {
        display: none;
        visibility: hidden;
    }
    .mobile-header {
        display: flex;
        position: fixed;
        top: 0;
        z-index: 999;
        justify-content: space-between;
        border-bottom: 1px solid #f1f1f1;
        box-shadow: 0px 0px 0px 1px #d7d7d7;
    }
    .mobile-top-logo {
        width: 50%;
        margin: 0px 10px 0px 0px;
        padding: 8px 0px;
    }
    .mobile-top-logo a img {
        width: 130px;
        height: 40px;
    }
    .mobile-nav{
        width: 30%;
    }
    .mobile-nav ul {
        width: 100%;
        display: flex;
        padding: 16px 0px;
        justify-content: space-around;
    }
    .mobile-nav ul li{
        margin-right: 10px;
    }
    .mobile-nav ul li a {
        color: red;
        font-size: 18px;
    }
    .mobile-nav .dropdown-menu {
        margin-left: -135px;
    }
    #loginModal {
        margin-top: 64px;
    }

    .offcanvas {
        z-index: 9999999;
    }
    .page-breadcrumb {
        width: 100%;
        margin: 57px 0px 0px 0px;
    }

    .subs-content {
        width: 100%;
        padding: 0px 0;
    }
    .subs-details {
        width: 100%;
        text-align: center;
        margin-top: 13px;
    }
    .subs-details h1 {
        font-size: 24px;
        font-weight: 700;
        color: #4a4a4a;
        text-transform: uppercase;
    }
    .subs-details p {
        font-size: 15px;
        font-weight: 600;
        color: #4a4a4a;
    }
    .subs-form {
        width: 70%;
    }
    .subs-form .form-group .subs-input {
        height: 35px;
    }
    .subs-form .form-group .subs-btn{
        height: 35px;
    }

}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 11px;
    height: 11px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #cfcccc;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
    border-radius: 50% !important;
}
.carousel-indicators .active {
    opacity: 1 !important;
    width: 18px;
    height: 18px;
    margin-top: 5px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
}
.carousel-circle {
    height: 70%;
    width: 70%;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 3px;
    display: none;
}

.carousel-indicators .active .carousel-circle{
    display: block;
}

.mobile-search {
    position: absolute;
}


.mobile-search {
    position: absolute;
    left: 0;
    top: 62px;
    width: 100%;
    box-shadow: -6px 2px 9px -1px #0000003b;
}

.mobile-search form {

    width: 100%;
    justify-content: center;
    top: 19px;
}
.mobile-search form {
    width: 97%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.mobile-search-btn {
    border: unset;
    width: 47px;
    height: 38px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 4px;
    margin-left: -50.5px;
    margin-top: 2.5px;
    background: #e31d2a;
    color: #FFF;
}
.mobile-search {
    position: absolute;
    left: 0;
    top: 61px;
    width: 100%;
    background: #FFF;
    padding: 4px;
    display: none;
}
.search-form-close {
    display: block;
    float: right;
    margin-right: 10px;
    margin-top: -5px;
}

.category-heading {
    width: 100%;
    padding: 10px 46px;
}

.category-heading p{
    margin-top: 3px;
}
.price-range {
    width: 100%;
    height: 28px;
    text-align: center;
    border-radius: 5px;
}
.price-range:focus{
    border: 1px solid #4a4a4a;
}
.category-select {
    height: 28px;
    border: 1px solid #b3a7a7;
    border-radius: 8px;
    width: 100%;
}

.category-select:focus{
    border: 1px solid #e1e1e1;
    outline: unset;
}
.category-select option{
    margin-top: -10px;
}
.category-select option:checked, .category-select option:hover {
    background: #e1e1e1;
    color: #5e5e5e;
    margin-top: -10px;

}
.category-select:focus > option:checked {
    background: #e1e1e1 !important;
}

.header-nav .category-button:hover  .menu-nav{
    display: block;
}
.menu-nav {
    position: absolute;
    background: #FFF;
    margin-top: 5px;
    left: 31px;
    width: 260px;
    display: none;
    padding-top: 21px;
}
.menu-nav ul {
    box-shadow: 0px 6px 5px 2px #0000005e;
    width: 100%;
}
.menu-nav ul li {
    width: 100%;
    margin-bottom: 3px;
}

.menu-nav ul li:last-child{
    margin-bottom: 0;
}
.menu-nav ul li a {
    padding: 4px 19px !important;
    display: block !important;
    color:#5a5858 !important;
    border-radius: unset !important;
    font-size: 14px !important;
    text-decoration: none;
    font-weight: 600 !important;
}

.menu-nav ul li a .menu-nav-lik {
    width: 100%;
    display: flex;
    justify-content: start;
}
.menu-nav ul li a .menu-nav-lik .icon {
    width: 42px;
    height: 42px;
    text-align: center;
    margin-right: 10px;
    padding: 0px;
    font-size: 21px;
    padding: 4px;
}
.menu-nav ul li a .menu-nav-lik .icon img {
    height: 30px;
    width: 30px;
    border-radius: 4px;
}
.menu-nav ul li a .menu-nav-lik .menu-ext {
    padding: 11px 0px;
    width: 170px;
    height: 42px;
    position: relative;
}
.menu-nav ul li a .menu-nav-lik .menu-ext span{
    color: #5a5858 ;
}
.menu-nav ul li a:hover {
    background: #ededed !important;
    color: #FFF;
}

.menu-nav ul li a:hover .icon i, .menu-nav ul li a:hover .menu-ext span, .menu-nav ul li a:after{
    color: var(--primary-color);
}

.has-childs .menu-nav-submenu {
    display: none;
    background-color: #f7f7f7;
    min-height: 267px;
    top: 16px;
    position: absolute;
    left: 260px;
    box-shadow: 4px 3px 2px -2px #3735352e;
    justify-content: start;
    z-index: 9;
    min-width: 500px;
}

.sub-menu-div {
    width: 40%;
    margin-right: 4px;
}

.has-childs:hover .menu-nav-submenu{
    display: flex;
}
.sub-menu-div .sub-menu-item {
    margin: 5px;
    padding: 10px !important;
    display: block !important;
}
.sub-menu-div .sub-menu-item:hover{
    background: #FFF !important;
    color: var(--primary-color) !important;
}

.sub-mnu-image {
    position: absolute;
    right: 21px;
    bottom: 15px;
}
.sub-mnu-image img {
    width: 150px;
    height: 150px;
}
.svg-img {
    margin-right: 5px;
    width: 5px;
    margin-top: 8px;
    filter: brightness(0) saturate(100%) invert(38%) sepia(1%) saturate(507%) hue-rotate(325deg) brightness(90%) contrast(96%);
}
.footer-section {
    width: 92%;
    margin: 0 auto;
}
.footer-section .footer-logo {
    width: 80%;
    margin: 10px auto 10px auto;
    text-align: center;
}
.footer-social-link {
    width: 100%;
}
.footer-social-link ul {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.footer-social-link ul li {
    display: inline-flex;
    margin: 0px 6px;
    justify-content: center;
    text-align: center;
}

.footer-social-link ul li a {
    width: 35px;
    height: 35px;
    border: 1px solid #f1f1f1;
    padding: 3px 3px 0px 4px;
    border-radius: 50%;
    font-size: 18px;
    background: #fff;
    color: var(--primary-color);
}

.footer-section h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 16px;
}
.footer-section ul {
    width: 100%;
}
.footer-section ul li {
    margin-bottom: 5px;
}
.footer-section p {
    color: #FFF;
    font-size: 13px;
    text-align: justify;
    margin-bottom: 18px;
}
.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 22px;
    flex-flow: wrap;
}
.card-img {
    width: 58px;
    margin-right: 10px;
    border-radius: 4px;
    display: inline-block;
    background: #FFF;
    padding: 5px;
}
.card-img img {
    border-radius: 4px;
    margin: 3px 0px;
}
hr {
    margin: 1rem 0;
    color: inherit;
    border: 7px;
    border-top: var(--bs-border-width) solid;
    opacity: 0.9;
    border-color: #FFF;
}
.copyright p{
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
}
.home-category {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 10px;
}
.home-category .home-category-title {
    width: 100%;
    text-align: center;
    margin: 5px 0px;
}

.flickity-button:focus {
    outline: 0;
    box-shadow: 0 0 0 5px #1199ff00;
}
.image-slider {
    width: 100%;
    margin-top: 60px;
}
.sliders {
    width: 100%;
}
.type-image{
    width: 100%;
    position: relative;
}
.type-image .slide-image img{
    width: 100%;
}

.type-video {
    width: 100%;
}

.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
}
.flickity-page-dots .dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin: 0 8px;
    background: #333;
    border-radius: 50%;
    opacity: .25;
    cursor: pointer;
}
.flickity-page-dots .dot.is-selected{
    background: var(--primary-color);
    width: 13px;
    height: 13px;
    border: 1px solid var(--primary-color);
    position: relative;
}
.flickity-page-dots .dot.is-selected:after {
    position: absolute;
    content: "";
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 1px solid red;
    margin-left: -11px;
    margin-top: -6px;
}

.home-promo {
    width: 100%;
    padding: 8px;
    background: var(--gradient-2);
    margin-top: 0;
    position: absolute;
    z-index: 99;
}

.promo-holder {
    width: 80%;
    display: flex;
}
.promo-text {
    width: 50%;
}
.promo-text p {
    font-size: 18px;
    text-align: center;
    color: #FFF;
}
.promo-text p span {
    font-weight: 800;
    color: #FFF;
}

.promo-time {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    margin-top: 2px;
}
.promo-day {
    margin-right: 20px;


}
.promo-day span{
    font-size: 16px;
    color: #FFF;
    text-transform: uppercase;
}
.promo-day.has-before::before {
    content: "";
    position: absolute;
    width: 1px;
    background-color: #fffffffa;
    height: 24px;
    margin-left: -11px;
}

.profile-content {
    width: 95%;
    margin: 0 auto;
}
.profile {
    width: 100%;
    padding: 0px 12px 0px 0px;
    position: relative;
}
.profile-info {
    width: 100%;
    height: 100vh;
    border-right: 1px solid #717171;
}
.profile-info .profile-img {
    width: 80%;
    margin: 0 auto;
    border: 1px solid #a59f9f;
    border-radius: 4px;
}

.profile-info .profile-img img{
    width: 100%;
    border-radius: 4px;
}
.profile-info .profile-details {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
.profile-info .profile-details h3 {
    font-size: 16px;
    font-weight: 500;
}
.profile-info .profile-details p {
    font-weight: 500;
    text-align: center;
    font-size: 13px;
    margin-top: -5px;
}
.profile-info .profile-details p span {
    width: 8px;
    height: 8px;
    background: red;
    display: inline-block;
    margin-top: 9px;
    border-radius: 51%;
    position: absolute;
    margin-left: 5px;
}

.profile-menu {
    width: 100%;
    margin-top: 20px;
}

.profile-menu ul li {
    width: 100%;

}
.profile-menu ul li a {
    display: block;
    width: 100%;
    background: #FFF;
    color: #000;
    padding: 15px 10px;
}
.profile-menu ul li a span{
    margin-left: 10px;
}
.profile-menu ul li a:hover{
    background: #f3f3f3;
}
.profile-menu ul li a.active{
    background: #f3f3f3;

}
.profile-info .logout {
    position: absolute;
    z-index: 9;
    bottom: 48px;
    width: 80%;
    display: flex;
    justify-content: center;
}

.profile-content .details {
    width: 100%;
    padding: 0px 13px;
}
.profile-content .details .element {
    width: 100%;
    padding: 5px;
    margin-bottom: 30px;
}
.profile-info .logout a{
    color: #333;
}
img.profile-img {
    width: 98%;
    margin: 0 auto;
    border-radius: 4px;
    border: 1px solid #c3c1c1;
}

.img-label {
    position: relative;
    width: 100%;
}
.img-label .icon {
    position: absolute;
    right: 7px;
    color: #4c4a4a;
    cursor: pointer;
}

.user-carts {
    width: 100%;
    padding: 0px 0px 0px 13px;
    margin-top: 27px;
}

.product-details {
    padding: 0px 0px 0px 20px;
    margin-bottom: 30px;
}
.product-title {
    width: 100%;
    margin-bottom: 10px;
}
.pro-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-title .pro-title .pro-heading {
    width: 74%;
    margin-right: 5px;
}
.product-title .pro-title .pro-heading h1 {
    font-size: 20px;
    color: var(--primary-color);;
}

.product-title .pro-title  .pro-stock {
    width: 25%;
}
.product-title .pro-title .pro-stock span, .product-title .pro-title .pro-stock i{
    color: green;
}
.pro-model {
    width: 100%;
}
.pro-model p {
    font-size: 14px;
    color: #686767;
}

.product-price {
    width: 100%;
    margin-bottom: 10px;
}

.product-price span {
    color: var(--primary-color);;
    font-size: 20px;
    margin-right: 10px;
}
.product-price del{
    font-size: 18px;
    color: #686767;
}

.product-attributes {
    width: 100%;
}

.attribute {
    width: 100%;
    margin-bottom: 15px;
}

.attribute p {
    font-size: 15px;
    color: #686767;
    font-weight: 500;
}
.attribute .attr-values{
    width: 100%;
}
.attr-values {
    display: flex;
    justify-content: start;
    width: 100%;
}
.attribute .attr-values .size {
    border: 0px;
    margin-right: 5px;
    padding: 8px;
    font-size: 13px;
    color: #202020;
    border-radius: 5px;
    min-width: 37px;
}
.mobile-nav-item {
    border-bottom: 1px solid #5c5c5c17;
    padding: 0px 0px 0px 9px;
}
.attribute .attr-values .size.selected {
    background: #6c6c6c;
    color: #FFF;
}
.attribute .attr-values .color {
    width: 45px;
    height: 45px;
    margin-right: 5px;
    border: 0px;
    border-radius: 4px;
    border: 1px solid #d9d5d5;
}
.details-padding {
    padding: 40px;
}
.attribute .attr-values .color.selected {
    box-shadow: 0px 0px 1px 1px #fb4141;
}

.top-pro-details-2 {
    width: 100%;
    margin-top: 10px;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
}

.product-details-2 {
    width: 50%;
    padding: 0px 0px 0px 20px;
}
.product-details-2 a h6, .product-details-2 p {
    color: gray;
}

.non-discount{

    margin-top: 16px;
}
.product-single-price del {
    color: gray;
    font-size: 12px;
}

.single-discount {
    width: 14%;
    text-align: center;
    padding: 2px;
    border-radius: 4px;
    position: absolute;
    bottom: 81px;
    right: 48px;
    background: linear-gradient(90deg, rgba(157, 131, 202, 1) 0%, rgba(223, 63, 161, 1) 67%, rgba(240, 28, 102, 1) 100%);
    background-size: 600% 600%;
    border-radius: 5px;
    animation: AnimateBorder 4s ease infinite;
    -webkit-animation: AnimateBorder 4s ease infinite;
    -moz-animation: AnimateBorder 4s ease infinite;
    transform: translate(-2px, -2px);
    transition: filter 1s ease-in;
    color:#FFF;
}

.product-details-2 a h6 {
    font-size: 14px;
}

.code{
    font-size:12px;
}
.product-single-price span {
     display: block;
     width:100%;
    color: var(--primary-color);
}
.product-single-price {
    width: 40%;
    padding: 0px 22px 0px 0px;
    text-align: right;
}

.product-qty.mt-4 {
    width: 100%;
    display: flex;
    justify-content: start;
}
.qty-text {
    width: 20%;
    padding: 10px 0px;
}
.qty-field {
    background: rgb(223, 222, 222);
    padding: 7px;
    border-radius: 4px;
}
.qty-field button {
    width: 25px;
    height: 25px;
    border: unset;
    border-radius: 4px;
    box-shadow: 0px 0px 2px 1px #b1aeae;
    font-weight: 600;
}
.qty-field input[type='text'] {
    width: 38px;
    border: 0;
    background: transparent;
    text-align: center !important;
}
.qty-field input[type='text']:focus-visible{
    outline: unset;
}

.product-add-to-cart {
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.product-add-to-cart .add-to-cart {
    width: 48%;
    border: unset;
    padding: 15px;
    border-radius: 4px;
    background:var(--primary-color);
    color: var(--primary-white);
}

.product-add-to-cart  .order-now{
    width: 48%;
    border: unset;
    padding: 15px;
    border-radius: 4px;
}

.product-contact {
    width: 100%;
    justify-content: start;
    display: flex;
}

.product-contact .pro-con-icon {
    width: 50px;
    text-align: center;
    padding: 10px 0;
}
.product-contact .pro-con-icon i {
    font-size: 17px;
}

.product-contact .pro-con-text {
    width: 80%;
    padding: 0px 0px 0px 10px;
}
.product-contact .pro-con-text p {
    font-size: 13px;
}
.product-contact .pro-con-text .con-num{
    color: var(--primary-color);
    text-decoration: underline;
}

.product-side {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 7px;
}
.product-side h6 {
    font-size: 15px;
    margin-bottom: 1px;
}
.product-side h6.emi{
    color: #7c7ceb;
    cursor: pointer;
}
.product-side p {
    font-size: 14px;
    color: #707070ad;
}
.side-text {
    width: 100%;
    padding: 2px 0px 0px 24px;
    display: flex;
    justify-content: start;
    flex-flow: wrap;
}
.side-text .pro-pay-img {
    width: 50px;
    margin: 3px 0px 0px 3px;
    border-radius: 4px;
    border: 1px solid #dfdfdf;
    padding: 3px;
}
.accrodiaon-tabs {
    width: 100%;
    margin: 30px 0px;
}
.accrodiaon-tabs ul{
    width: 100%;
    margin: 0;
    padding: 0;
}
.accrodiaon-tabs ul li {
    display: inline-block;
    margin: 0px 15px 15px 0px;
}

.accrodiaon-tabs ul li a {
    color: #5a5a5a;
    padding: 11px 24px;
    border-radius: 4px;
}
.accrodiaon-tabs ul li a:hover {
    background: #dddddd;
    color: #343434;
}
.accrodiaon-tabs ul li a.active{
    background: #dddddd;
    color: #343434;
}

.accrodiaon-data {
    width: 100%;
}
.product-data {
    width: 100%;
}
.product-data {
    width: 100%;
    padding: 0px 0px 0px 15px;
}
.reviews {
    width: 100%;
    margin-top: 20px;
}
.comment {
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 20px;
}
.comment:last-child{
    border-bottom: unset;
}

.comment-place {
    width: 100%;
    display: flex;
    justify-content: start;
}
.comment-place .user-img {
    width: 75px;
    border-radius: 50%;
    border: 1px solid #f1f1f1;
    height: 75px;
}
.comment-place .user-img img{
    width: 100%;
    border-radius: 50%;
}

.user-says {
    width: 80%;
    margin-left: 16px;
}

.user-says h6 {
    font-size: 15px;
    font-weight: 600;
}
.user-says p {
    color: #ff5f3a;
}
.user-says p.star{
    color: #ff3101;
}
.comment-text {
    width: 100%;
    margin-top: 10px;
}
.comment-text p {
    color: #000;
    text-align: justify;
}

.comment-text a.replay {
    color: #000;
    margin-top: 14px;
    display: block;
}
.comment .replay-place {
    width: 100%;
    padding: 0px 0px 0px 70px;
    margin-top: 10px;
}

.similer-products {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.similer-products h1 {
    font-size: 14px;
    color: #6a6a6a;
    margin-left: 20px;
}
.similer-products .items{
    width: 100%;
    margin-top: 10px;
}

.images {
    width: 100%;
    text-align: center;
    padding: 0px 10px;
}

.thumb-images {
    width: 100%;
    display: flex;
    justify-content: center;
}
.thumb-images .thumb {
    width: 70px;
    height: 70px;
    border: 1px solid #f1f1f1;
    margin: 3px;
    cursor: pointer;
}
.thumb-images .thumb img{
    width: 100%;
}

.top-margin-150px{
    margin-top: 150px;
}

.video {
    position: relative;
    width: 100%;
}
.video-file {
    width: 100%;
    height: 650px;
    object-fit: fill;
}
.video button{
    position: absolute;
    z-index: 999999;
}
.video button {
    position: absolute;
    z-index: 999999;
    top: 40%;
    width: 100px;
    height: 100px;
    right: 50%;
    border-radius: 50%;
    background: #ededed00;
    border: unset;
    border: 3px solid #f1eaeaa3;
    color: #ffffffa6;
    font-size: 40px;
    text-align: center;
    display: none;
}
.video:hover  > button{
    display: block;
}
.cart-count-link{
    position: relative;
}
.cart-counter {
    position: absolute;
    top: -9px;
    font-size: 12px;
    display: block;
    color: #ffffff;
    right: -13px;
    width: 17px;
    height: 17px;
    background:var(--primary-color);
    border-radius: 50%;
    text-align: center;
}
.checkout-login {
    width: 100%;
    margin-bottom: 20px;
}
.checkout-login  p{
    font-size: 14px;
}
.checkout-login  p span{
    color: var(--primary-color);
    cursor: pointer;
}

.checkout-login-form {
    width: 100%;
    padding: 20px;
    border: 1px solid var(--primary-gray);
    margin-top: 12px;
    display: none;
}
.check-out-login-padding {
    padding: 8px 0px;
}
.checkout-login-btn {
    width: 90%;
    border-radius: 4px;
    border: unset;
    padding: 4px;
}
.input-padding {
    padding: 13px;
}
.checkout-create-account-text {
    width: 100%;
    text-align: center;
    padding: 4px 0px;
}
.checkout-create-account-text a.create-account {
    color: #585858;
    text-decoration: underline;
}

.checkout-create-account-text a.reset-password {
    color: #818181;
}

.input-placeholder {
    position: relative;
}

.input-placeholder input:valid + .placeholder {
    display: none;
}

.placeholder {
    position: absolute;
    pointer-events: none;
    top: -5px;
    bottom: 0;
    height: 14px;
    font-size: 13px;
    left: 14px;
    margin: auto;
    color: #181717;
    background: transparent;
}
.address-name {
    color: #363636;
    font-size: 16px;
}

.address-name span{
    color: var(--primary-color);
    font-size: 16px;
}

.placeholder span {
    color: var(--primary-color);
}
.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #aaa8a8;
    font-size: 13px;
    opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #aaa8a8;
    font-size: 13px;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #aaa8a8;
    font-size: 13px;
}

#shipping_address{
    accent-color: var(--primary-color);
}
#shipping_address_form{
    display: none;
}
.checkout-total {
    width: 100%;
    padding: 0px 22px 13px 22px;
}

.checkout-total p{
    color: var(--primary-black);
}
.checkout-border{
    border-bottom: 1px solid #dee2e6;
}

.gateway{
    accent-color: var(--primary-color);
}

.order-success {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 163px;
    height: 100%;
}
.order-success h4 {
    font-size: 32px;
    margin-bottom: 12px;
    color: gray;
}

.order-success h4 span{
    color: var(--primary-color);
}

.order-success p{
    text-align: center;
    font-size: 16px;
}

.user-orders {
    width: 100%;
    padding: 12px;
}
.table-borderless tr {
    border-bottom: 1px solid #dbd9d9;
}

.custom-tooltip {
    --bs-tooltip-bg: #FFF;
    --bs-tooltip-color: #000;
    background: #FFF;
    box-shadow: 0px 0px 0px 1px #81818123;
    border-radius: 4px;
    padding: 4px;
  }
 .whatsapp-icon {
    height: 57px;
    width: 57px;
    position: fixed;
    z-index: 999;
    bottom: 87px;
    right: 50px;
    border-radius: 50%;
}
.whatsapp-icon img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

figure.containerZoom {
    background-position: 50% 50%;
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: zoom-in;
    margin: 0;
    border-radius: 8px;
}
.model-head {
    position: relative;
    padding: 23px 20px 0px 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.modal-close {
    background: var(--primary-color);
    color: var(--primary-gray);
    padding: 1px;
    border: 0;
    height: 20px;
    width: 20px;
}
.cart-product-list {
    width: 100%;
    height: 70%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.cart-product-list::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
    display: none;
}

.cart-product-list::-webkit-scrollbar
{
	width: 8px;
	background-color: #F5F5F5;
    display: none;
}

.cart-product-list::-webkit-scrollbar-thumb
{
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.top-pro-details p del {
    font-size: 13px;
    color: #a7a7a7;
}

.show-more {
    width: 100%;
    border: unset;
    padding: 6px;
    border-radius: 5px;
    background: #FFF;
    border: 1px solid #f1f1f1;
}
.show-more:hover{
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #FFF;
}

.subs-content-2 {
    width: 100%;
    padding: 110px 20px;
}
.discover-link {
    background: red;
    background: red;
    padding: 1px 0px;
    margin: 10px auto;
    display: block;
    width: 14%;
    font-size: 14px;
    border-radius: 3px;
}

.cookie {
    width: 29%;
    background: #fdfdfd;
    position: fixed;
    bottom: 40px;
    z-index: 9999;
    padding: 20px;
    left: 40px;
    box-shadow: 0px -4px 13px 4px #00000045;
    border-radius: 5px;
}
.cookie .cookie-details{
    width: 100%;
    margin-bottom: 20px;
}
.cookie .cookie-details h6 {
    font-weight: 600;
    color: #404040;
    margin-bottom: 10px;
}

.cookie .cookie-details p{
    color: #404040;
    margin-bottom: 10px;
}
.reject-cookie {
    border: unset;
    padding: 8px 32px;
    border-radius: 4px;
}
.accept-cookie {
    border: unset;
    padding: 8px 22px;
    background: var(--primary-color);
    color: var(--primary-white);
    background-repeat: no-repeat;
}

.emi-body{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.table-title {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.bank-list ul li {
    list-style: none;
    font-size: 15px;
    width: 100%;
    margin-bottom: 5px;
}
.bank-list ul li::before{
    content: '';
}

.password-reset-form {
    width: 100%;
    padding: 68px 0px;
}

@media (max-width:600px){
    .home-category-title h6{
        font-size: 11px;
    }
    .top-pro .top-pro-details p, .top-pro .top-pro-details h6 {
        font-size: 13px;
    }
    .top-pro .top-pro-details .code {
        font-size: 15px;
    }
    .top-pro .top-pro-details .price {
        font-size: 14px;
    }

    .ship-desc {
        margin-bottom: 20px;
    }
    .home-promo {
        margin-top: 0;
        padding: 0;
    }
    .footer-section {
        margin-bottom: 18px;
        padding: 10px;
    }

    .view-icon{
        display: none;
    }

    .flickity-page-dots .dot.is-selected {
        background: var(--primary-color);
        width: 8px;
        height: 8px;
        border: 1px solid var(--primary-color);
        position: relative;
    }

    .flickity-page-dots .dot.is-selected:after {
        position: absolute;
        content: "";
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 1px solid red;
        margin-left: -7px;
        margin-top: -4px;
    }
    .subs-content-2 {
        width: 100%;
        padding: 38px 20px;
    }
    .discover-link {
        display: block;
        width: 22%;
    }
    .promo-time {
        margin-top: 4px;
    }

    .promo-holder {
        width: 100%;
    }
    .promo-day {
        margin-right: 8px;
        text-align: center;
    }
    .promo-day span {
        font-size: 11px;
        color: #FFF;
    }
    .promo-text p {
        font-size: 11px;
    }
    .promo-day.has-before::before {
        height: 22px;
        margin-left: -4px;
    }
    .slide-image img{
        height: 155px;
        width: 100%;
    }

    .video-file {
        height: 155px;
        object-fit: fill;
    }

    .video button {
        position: absolute;
        z-index: 999999;
        top: 28%;
        width: 60px;
        height: 60px;
        right: 42%;
        border-radius: 50%;
        background: #ededed00;
        border: unset;
        border: 3px solid #f1eaeaa3;
        color: #ffffffa6;
        font-size: 30px;
        text-align: center;
    }
    .promo-text {
        width: 50%;
        padding: 6px 0px;
    }

    .hom-cat {
        width: 20%;
        padding: 7px;
    }

    .hom-cat .home-category-img img {
        height: 25px;
        width: 88px;
    }

    .product-details {
        padding: 40px;
    }

    .whatsapp-icon {
        height: 40px;
        width: 40px;
        bottom: 13px;
        right: 14px;
    }
    .cart-counter {
        top: 2px;
        right: 27px;
    }
    .cookie {
        width: 80%;
        bottom: 78px;
        left: 10%;
    }

    .single-discount {
        width: 17%;
        bottom: 112px;
        left: 40px;
    }
    .product-details-2 p {
       font-size:9px;
    }
    .product-single-price del {
        font-size: 9px;
    }
    .product-single-price span {
        font-size: 9px;
    }

    .password-reset-form {
        width: 100%;
        padding: 0 30px;
    }

}
@media (max-width:1366px){
    .cart-product-list {
        width: 100%;
        height: 70%;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .promo-day.has-before::before {
        height: 24px;
    }
}
.flickity-button {
    position: absolute;
    background: unset;
    border: none;
    color: #333;
}

.flickity-button:hover {
    background: transparent;
    cursor: pointer;
    color: gray;
}
