/** Shopify CDN: Minification failed

Line 3688:0 Unexpected "}"

**/
/* !!!!        SITE GLOBAL STYLE CSS        !!!! */


main#MainContent {
    overflow: hidden;
}
*,:after,:before {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    text-decoration: inherit;
    vertical-align: inherit;
}
.recent-slider .product-card-inner .product-title, .recent-slider .product-card-inner .price {
    color: var(--black);
}
.section-title.d-flex {
    gap: 15px;
}
html {
    outline: none;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
  padding:0 !important;
}
body.product .testimonials-section {
    padding: 0;
}
body,html {
    scrollbar-width: none;
}
body::-webkit-scrollbar {
    display: none;
}
body::-moz-scrollbar {
    display: none;
}
svg,img {
    max-width: 100%;
    display: block;
}
a,.btn,button { 
    text-decoration: none;
    outline: none; 
    color: inherit;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    cursor: pointer;
    margin: 0;
}
a,a:hover,a:focus,a:active,button,button:hover,button:focus,input,input:hover,input:focus,select,select:hover,select:focus,textarea,textarea:hover,textarea:focus,.btn,.btn:hover,.btn:focus,.btn:active:focus,.btn:active.focus,.btn.active:focus,.btn.active.focus {
    text-decoration: none;
    -webkit-text-decoration-skip: objects;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    font-family: var(--first-font);
}
.form-control:focus,[type="text"]:focus,[type="email"]:focus,[type="checkbox"]:focus,[type="password"]:focus,[type="file"]:focus,[type="radio"]:focus,[type="submit"]:focus,[type="date"]:focus,[type="time"]:focus,[type="tel"]:focus,[type="search"]:focus,[type="button"]:focus,[type="number"]:focus,textarea:focus,select:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
::-webkit-input-placeholder {
    color: var(--theme-color);
}
:-ms-input-placeholder {
    color: var(--theme-color);
}
::placeholder {
    color: var(--theme-color);
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}
*{
    margin: 0;
    padding: 0;
    font-size: 100%;
    list-style: none;
    vertical-align: baseline;
}
body {
    color: var(--theme-color);
    font: var(--common-text);
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}
/* !!!!         SITE TYPOGRAPHY CSS         !!!! */
p,li,ul,ol {
    margin: 0;
    padding: 0;
    list-style: none;
    font: var(--common-text);
}
h1,.h1 {
    font: var(--h1);
}
h2,.h2 {
    font: var(--h2);
}
h3,.h3 {
    font: var(--h3);
}
h4,.h4 {
    font: var(--h4);
}
h5,.h5 {
    font: var(--h5);
}
h6,.h6 {
    font: var(--h6);
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
.uppercase {
    text-transform: uppercase;
}
.text-center {
    text-align: center !important;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
b {
   font-weight: bold;
     display: inline-block; 
}
.section-title b,.common-banner-content .section-title h2,.contact-right-inner h2,.blog-grid-section .section-title h2{
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    background-clip:text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight:600;
    display: inline-block;
}
p:not(:last-of-type) {
    margin-bottom: 15px;
}
/* !!!!             GRID CSS                !!!! */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.no-gutters {
    margin: 0 !important;
}
.row [class*="col-"] {
    padding: 0 15px;
}
.no-gutters [class*="col-"] {
    padding: 0;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
.d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.align-items-start {
    -ms-flex-align: start;
    align-items: flex-start;
}
.align-items-end {
    -ms-flex-align: end;
    align-items: flex-end;
}
.align-items-center {
    -ms-flex-align: center;
    align-items: center;
}
.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.justify-content-between {
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.justify-content-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.justify-content-center {
    -ms-flex-pack: center;
    justify-content: center;
}
.justify-content-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.no-wrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.desk-only,.hidden,.visually-hidden,[hidden]{
  display: none !important;
}
.mobile-only {
    display: block !important;
}
/*****  Columns  *****/
.col-auto {
    flex: 0 0 auto;
    width: auto;
}
.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}
.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}
.col-3 {
    flex: 0 0 auto;
    width: 25%;
}
.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}
.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}
.col-6 {
    flex: 0 0 auto;
    width: 50%;
}
.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}
.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}
.col-9 {
    flex: 0 0 auto;
    width: 75%;
}
.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}
.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.offset-1 {
    margin-left: 8.33333333%;
}
.offset-2 {
    margin-left: 16.66666667%;
}
.offset-3 {
    margin-left: 25%;
}
.offset-4 {
    margin-left: 33.33333333%;
}
.offset-5 {
    margin-left: 41.66666667%;
}
.offset-6 {
    margin-left: 50%;
}
.offset-7 {
    margin-left: 58.33333333%;
}
.offset-8 {
    margin-left: 66.66666667%;
}
.offset-9 {
    margin-left: 75%;
}
.offset-10 {
    margin-left: 83.33333333%;
}
.offset-11 {
    margin-left: 91.66666667%;
}
@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-sm-0 {
        margin-left: 0;
    }
    .offset-sm-1 {
        margin-left: 8.33333333%;
    }
    .offset-sm-2 {
        margin-left: 16.66666667%;
    }
    .offset-sm-3 {
        margin-left: 25%;
    }
    .offset-sm-4 {
        margin-left: 33.33333333%;
    }
    .offset-sm-5 {
        margin-left: 41.66666667%;
    }
    .offset-sm-6 {
        margin-left: 50%;
    }
    .offset-sm-7 {
        margin-left: 58.33333333%;
    }
    .offset-sm-8 {
        margin-left: 66.66666667%;
    }
    .offset-sm-9 {
        margin-left: 75%;
    }
    .offset-sm-10 {
        margin-left: 83.33333333%;
    }
    .offset-sm-11 {
        margin-left: 91.66666667%;
    }
}
@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-md-0 {
        margin-left: 0;
    }
    .offset-md-1 {
        margin-left: 8.33333333%;
    }
    .offset-md-2 {
        margin-left: 16.66666667%;
    }
    .offset-md-3 {
        margin-left: 25%;
    }
    .offset-md-4 {
        margin-left: 33.33333333%;
    }
    .offset-md-5 {
        margin-left: 41.66666667%;
    }
    .offset-md-6 {
        margin-left: 50%;
    }
    .offset-md-7 {
        margin-left: 58.33333333%;
    }
    .offset-md-8 {
        margin-left: 66.66666667%;
    }
    .offset-md-9 {
        margin-left: 75%;
    }
    .offset-md-10 {
        margin-left: 83.33333333%;
    }
    .offset-md-11 {
        margin-left: 91.66666667%;
    }
}
@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-lg-0 {
        margin-left: 0;
    }
    .offset-lg-1 {
        margin-left: 8.33333333%;
    }
    .offset-lg-2 {
        margin-left: 16.66666667%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
    .offset-lg-4 {
        margin-left: 33.33333333%;
    }
    .offset-lg-5 {
        margin-left: 41.66666667%;
    }
    .offset-lg-6 {
        margin-left: 50%;
    }
    .offset-lg-7 {
        margin-left: 58.33333333%;
    }
    .offset-lg-8 {
        margin-left: 66.66666667%;
    }
    .offset-lg-9 {
        margin-left: 75%;
    }
    .offset-lg-10 {
        margin-left: 83.33333333%;
    }
    .offset-lg-11 {
        margin-left: 91.66666667%;
    }
}
@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-xl-0 {
        margin-left: 0;
    }
    .offset-xl-1 {
        margin-left: 8.33333333%;
    }
    .offset-xl-2 {
        margin-left: 16.66666667%;
    }
    .offset-xl-3 {
        margin-left: 25%;
    }
    .offset-xl-4 {
        margin-left: 33.33333333%;
    }
    .offset-xl-5 {
        margin-left: 41.66666667%;
    }
    .offset-xl-6 {
        margin-left: 50%;
    }
    .offset-xl-7 {
        margin-left: 58.33333333%;
    }
    .offset-xl-8 {
        margin-left: 66.66666667%;
    }
    .offset-xl-9 {
        margin-left: 75%;
    }
    .offset-xl-10 {
        margin-left: 83.33333333%;
    }
    .offset-xl-11 {
        margin-left: 91.66666667%;
    }
}
@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-xxl-0 {
        margin-left: 0;
    }
    .offset-xxl-1 {
        margin-left: 8.33333333%;
    }
    .offset-xxl-2 {
        margin-left: 16.66666667%;
    }
    .offset-xxl-3 {
        margin-left: 25%;
    }
    .offset-xxl-4 {
        margin-left: 33.33333333%;
    }
    .offset-xxl-5 {
        margin-left: 41.66666667%;
    }
    .offset-xxl-6 {
        margin-left: 50%;
    }
    .offset-xxl-7 {
        margin-left: 58.33333333%;
    }
    .offset-xxl-8 {
        margin-left: 66.66666667%;
    }
    .offset-xxl-9 {
        margin-left: 75%;
    }
    .offset-xxl-10 {
        margin-left: 83.33333333%;
    }
    .offset-xxl-11 {
        margin-left: 91.66666667%;
    }
}
/* !!!!          NICE SELECT CSS           !!!! */
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color:transparent;
    border: solid 1px var(--theme-color);
    color: var(--theme-color);
    cursor: pointer;
    border-radius: 0px 10px 0px 10px;
    display: block;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    outline: none;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 10px 35px 10px 15px;
    width: 100%;
    -webkit-border-radius: 0px 10px 0px 10px;
    -moz-border-radius: 0px 10px 0px 10px;
    -ms-border-radius: 0px 10px 0px 10px;
    -o-border-radius: 0px 10px 0px 10px;
    appearance: none;
  background: url(dropdown.svg) no-repeat;
    background-size: 14px;
    background-position: calc(100% - 15px) 50%;
}
.no-csspointerevents .nice-select .list {
    display: none;
}
.no-csspointerevents .nice-select.open .list {
    display: block;
}
.slick-slide .nice-select .list {
    max-height: 60px;
    overflow: auto;
    scrollbar-width: none;
}
.slick-slide   .nice-select .option { 
    padding: 5px 15px;
}
.slick-slide .nice-select .list::-webkit-scrollbar {
    display: none;
}
.slick-slide .nice-select .list::-moz-scrollbar {
    display: none;
}
/* !!!!          SLICK SLIDER CSS           !!!! */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,.slick-track:after {
    display: table;
    content: "";
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
    outline: none;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-dots,.swiper-pagination-bullets {
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding-top: 35px;
}
.slick-dots li:not(:last-child),.swiper-pagination-bullets span:not(:last-child) {
    margin-right: 10px;
}
.slick-dots li,.swiper-pagination-bullets span {
   display: flex;
   height: 2px;
   width: 30px;
   background-color: var(--white);
   border-radius: 5px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   -ms-border-radius: 5px;
   -o-border-radius: 5px;
}
.slick-dots li.slick-active,.swiper-pagination-bullets span.swiper-pagination-bullet-active {
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    width: 30px;
    height: 2px;
    border-radius: 5px;
}
.slick-dots li button {
    display: none;
}
.slick-arrow,.swiper-arrow {
    width: 39px;
    height: 39px;
    position: absolute;
    top: 50%;
    font-size: 0;
    border: 0;
    outline: none;
    z-index: 1;
    -webkit-border-radius: 33px;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 33px;
    -moz-border-radius: 33px;
    -ms-border-radius: 33px;
    -o-border-radius: 33px;
     background: var(--blue);
}
.swiper-arrow svg path, .slick-arrow svg path {
    fill: var(--white);
}
.common-arrows .slick-arrow svg path,.common-arrows .swiper-arrow svg path {
    fill: var(--white);
}
.common-arrows .slide-arrow svg,.common-arrows .swiper-arrow svg {
    height: 10px;
    width: 15px;
}
.common-arrows .slick-arrow,.common-arrows .swiper-arrow {
    width: 35px;
    height: 35px;
    background-color:var(--blue);
}
.slide-arrow svg,.swiper-arrow svg {
    height: 12px;
    width: 15px;
    margin: 0 auto;
}
.slick-arrow.slick-next,.swiper-arrow.swiper-button-next{
    right: 0px;
    left: auto;
}
.swiper-button-next,.swiper-button-prev{
  margin: 0px;
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after{
  display:none
}
.slick-arrow.slick-prev,.swiper-arrow.swiper-button-prev {
    right: auto;
    left: 0px;
    -webkit-transform: translateY(-50%) scale(-1);
    -moz-transform: translateY(-50%) scale(-1);
    -ms-transform: translateY(-50%) scale(-1);
    -o-transform: translateY(-50%) scale(-1);
    transform: translateY(-50%) scale(-1);
}
.slick-arrow:focus, .slick-arrow:hover,.swiper-arrow:focus, .swiper-arrow:hover {
    background-color: var(--second-color);
}
.slick-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
}
.slick-lightbox .slick-loading .slick-list {
    background-color: transparent;
}
.slick-lightbox .slick-prev {
    left: 15px;
}
.slick-lightbox .slick-next {
    right: 15px;
}
.slick-lightbox-inner .slick-arrow {
    background: var(--white) url(right-arrow.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    z-index: 1;
    position: absolute;
    top: 50%;
    width: 35px;
    height: 35px;
    font-size: 0;
    border: 0;
}
.slick-lightbox-hide {
    opacity: 0;
}
.slick-lightbox-hide-init {
    position: absolute;
    top: -9999px;
    opacity: 0;
}
.slick-lightbox-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slick-lightbox-slick-item {
    text-align: center;
    overflow: hidden;
}
.slick-lightbox-slick-item:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}
.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
    display: block;
    text-align: center;
}
.slick-lightbox-slick-item-inner {
    display: inline-block;
    vertical-align: middle;
    max-width: 90%;
    max-height: 90%;
}
.slick-lightbox-slick-img {
    margin: 0 auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}
.slick-lightbox-slick-caption {
    margin: 10px 0 0;
    display: block;
    color: var(--white);
}
.slick-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    padding: 0;
    border: none;
}
.slick-lightbox .close svg {
    height: 85%;
    width: 85%;
}
.slick-lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    opacity: 1;
    background: transparent;
    border: none;
    height: 27px;
    width: 27px;
    padding: 0;
}
.shop-protab-slider {
    margin: 0 -10px;
}
/* !!!!          COMMON BUTTON              !!!! */
.btn {
    text-align: center;
    padding: 10px 40px;
    font-family: var(--first-font);
    box-shadow: none;
    appearance: none;
    color: var(--white);
    outline: none;
    cursor: pointer;
    position: relative;
    border-radius: 22px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    border: 0;
    border-radius: 0px 20px 0px 20px;
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    -webkit-border-radius: 0px 20px 0px 20px;
    -moz-border-radius: 0px 20px 0px 20px;
    -ms-border-radius: 0px 20px 0px 20px;
    -o-border-radius: 0px 20px 0px 20px;
}
.btn-wrapper:hover a {
    transition: all ease-in-out 0.5s;
    transform: translateY(-5px);
}
.btn svg, .btn-primary svg,.btn-transparent svg {
    flex-shrink: 0;
    margin-left: 12px;
    height: auto;
    fill: var(--white);
    max-width: 24px;
}
.btn:hover,
.btn:focus {
    background-color: var(--second-color);
    color: var(--white);
}
.btn:focus svg path,
.btn:hover svg path {
    fill: var(--white);
}
.btn-primary{
    text-align: center;
    color: var(--white);
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    padding: 12px 40px;
    outline: none;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    transition: all ease-in-out 0.3s;
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    justify-content: center;
    appearance: none;
    border-radius:0px 20px 0px 20px;
    -webkit-border-radius:0px 20px 0px 20px;
    -moz-border-radius:0px 20px 0px 20px;
    -ms-border-radius:0px 20px 0px 20px;
    -o-border-radius:0px 20px 0px 20px;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}
.btn-primary:hover{
    background: transparent;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}
.btn-primary:hover svg path{
    fill: var(--theme-color);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid var(--second-color);
    color: var(--second-color);
    background: transparent;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    border-radius: 0px 20px 0px 20px;
    text-transform: uppercase;
    -webkit-border-radius: 0px 20px 0px 20px;
    -moz-border-radius: 0px 20px 0px 20px;
    -ms-border-radius: 0px 20px 0px 20px;
    -o-border-radius: 0px 20px 0px 20px;
}
.btn-ic {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    margin-left: 10px;
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.btn-secondary svg {
    width: 12px;
    height: 12px;
}
.btn-secondary svg path {
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    fill:  var(--white);
}
.btn-secondary:hover {
    background: var(--theme-color);
    color: var(--white);
    border-color: var(--theme-color);
}
.btn-secondary.white-btn .btn-ic{
    background: var(--white);
}
.btn-secondary:hover svg path {
    fill: var(--theme-color);
}
.btn-secondary.white-btn {
    border: 1px solid var(--white);
    color: var(--white);
}
.btn-secondary.white-btn:hover .btn-ic {
    background: var(--theme-color);
}
.btn-secondary.white-btn svg path {
    fill: var(--theme-color);
}
.btn-secondary.white-btn:hover {
    border: 1px solid var(--white);
    color: var(--theme-color);
    background: var(--white);
}
.btn-secondary:hover .btn-ic{
    background: var(--white);
}
.btn-secondary.white-btn:hover svg path {
    fill: var(--white);
}
.btn-transparent {
    background: transparent;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    transition: all ease-in-out 0.3s;  
    -webkit-transition: all ease-in-out 0.3s;
    text-align: center;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    padding: 12px 40px;
    outline: none;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    font-size: 14px;
    border-radius: 0px 20px 0px 20px;
    -webkit-border-radius: 0px 20px 0px 20px;
    -moz-border-radius: 0px 20px 0px 20px;
    -ms-border-radius: 0px 20px 0px 20px;
    -o-border-radius: 0px 20px 0px 20px;
}
.btn-transparent:hover{
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    color: var(--white);
    border: 1px solid transparent;
}
.btn-transparent:hover svg path{
    fill: var(--white);
}
.add-cart-btn{
    padding: 7px 30px;
    border-radius: 0px 10px 0px 10px;
    -webkit-border-radius: 0px 10px 0px 10px;
    -moz-border-radius: 0px 10px 0px 10px;
    -ms-border-radius: 0px 10px 0px 10px;
    -o-border-radius: 0px 10px 0px 10px;
    margin-right: 0%;
}
.add-cart-btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}
/* !!!!             FORM  CSS               !!!! */
.form-control,input:not([type="submit"]),input:not([type="checkbox"]),input:not([type="radio"]),select,textarea {
    position: relative;
    border: 1px solid var(--border-color);
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: var(--transparent);
    font-size: 13px;
    font-family: var(--first-font);
    line-height: 1;
    border-radius: 0px 20px 0px 20px;
    color: var(--theme-color);
    -webkit-border-radius: 0px 20px 0px 20px;
    -moz-border-radius: 0px 20px 0px 20px;
    -ms-border-radius: 0px 20px 0px 20px;
    -o-border-radius: 0px 20px 0px 20px;
}
textarea {
    resize: none;
}
form .row {
    margin: 0 -8px;
}
form .row [class*="col-"] {
    padding: 0 10px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}
sup {
    top: -0.5em;
}
sub,sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
.form-group label sup {
    color: red;
}
.checkbox-custom input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.checkbox-custom label {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;  
    font-size: 14px;
    line-height: 1.1;
    margin: 0;
    padding: 0 0 0 30px;
}
.checkbox-custom label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    padding: 8px;
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 15px;
    left: 0;
    top: 54%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.checkbox-custom input:checked+label:before { 
    background-color: var(--second-color);
    border-color: var(--theme-color);
}
.checkbox-custom input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 7px;
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0px 1px 1px 0;
    transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
} 
.checkbox-custom label a {
    text-decoration: underline;
    font-weight: 600;
}
/** RADIO BUTTON CSS **/
.radio-group input[type="radio"] {
    display: none;
    padding: 0;
    border: 0;
    background: transparent;
}
.radio-group label {
    cursor: pointer;
    position: relative;
    font-size: 12px;
    padding-left: 24px;
    color: var(--theme-color);
    margin: 0;
    vertical-align: bottom;
}
.radio-group label::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: transparent;
    border: 2px solid var(--black);
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: border-color 400ms ease;
    -webkit-transition: border-color 400ms ease;
    -moz-transition: border-color 400ms ease;
    -ms-transition: border-color 400ms ease;
    -o-transition: border-color 400ms ease;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.radio-group label::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    background-color: var(--black);
    border: 2px solid var(--black);
    border-radius: 50%;
    top: 50%;
    left: 1px;
    right: auto;
    transform: translateY(-50%) scale(0);
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transition: transform 400ms ease;
    -webkit-transition: transform 400ms ease;
    -moz-transition: transform 400ms ease;
    -ms-transition: transform 400ms ease;
    -o-transition: transform 400ms ease;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.radio-group input[type="radio"]:checked+label::before {
    border-color: vvar(--black);
}
.radio-group input[type="radio"]:checked+label::after {
    transform: translateY(-50%) scale(0.55);
    -webkit-transform: translateY(-50%) scale(0.55);
    -moz-transform: translateY(-50%) scale(0.55);
    -ms-transform: translateY(-50%) scale(0.55);
    -o-transform: translateY(-50%) scale(0.55);
}
/*****  SCROLLBAR CSS  *****/
.slick-slide .nice-select .list::-webkit-scrollbar {
    width: 2px;
}
.slick-slide .nice-select .list::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.slick-slide .nice-select .list::-webkit-scrollbar-thumb {
    background:var(--second-color);
}
.slick-slide .nice-select .list .option {
    font-size: 11px;
    line-height: 1;
}
.slick-slide .nice-select .list {
    height: 65px;
    overflow: auto;
    border-radius: 0px 10px 0px 10px;
}
/*****  COMMON CSS  *****/
body.active-menu,body.no-scroll {
    overflow: hidden;
    position: relative;
}
.padding-top {
    padding-top: 70px;
}
.padding-bottom, body.product .home-product-extra{
    padding-bottom: 70px;
}
.section-title {
    margin-bottom: 40px; 
}
/*****  SUBSCRIBE POPUP CSS *****/
.subscribe-popup {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 550px;
    width: 95%;
    margin: 0 auto;
    text-align: center;
    padding: 60px 50px;
    background: linear-gradient(75deg,var(--blue) 0%,var(--second-color) 100%);
    color: var(--white);
    z-index: 5;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
} 
.subscribe-popup input[type="email"]{
    border: 1px solid var(--white);
    color: var(--white);
    padding: 13px 50px 13px 15px;
    background: transparent;
    font-size: 13px;
    letter-spacing: 1px;
}
.subscribe-popup input[type="email"]::placeholder{
    color: var(--white);
}
.subscribe-popup .close-sub-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 0;
    height: 16px;
    width: 16px;
    padding: 0;
}
.subscribe-popup .close-sub-btn svg {
    height: 100%;
    width: 100%;
}
.subscribe-popup .close-sub-btn svg path {
    fill: var(--white);
}
.subscribe-popup h2 {
    font-family: var(--second-font);
    font-weight: 500; 
    font-size: 31px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-style: italic;
}
.subscribe-popup p {
    letter-spacing: 1px;
    max-width: 330px;
    margin: 0 auto 25px;
}
.form-row {
    position: relative;
}
.form-row .btn-svg {
    background: transparent;
    border: 0;
    position: absolute;
    top: 50%;
    right: 20px;
    padding: 0;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.form-row .btn-svg svg {
    width: 100%;
    height: 100%;
}
.form-row .btn-svg svg path{
    fill: var(--white);
} 
.subscribe-overlay {
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 3;
    background: rgba(0,0,0,0.85);
    visibility: hidden;
    opacity: 1;
}
.subscribe-overlay.open {
    opacity: 1;
    visibility: visible;
}
/* !!!!     CUSTOMIZE THE NAVBAR            !!!! */
.header-style-one {
    position: fixed;
    left: 0;
    right: 0;
    background: transparent;
    top: 0;
    z-index: 3;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}
.header-style-one .announcebar {
    padding: 10px 0;
    color: var(--white);
    text-transform: capitalize;
    border-top: 1px solid rgba(0,0,0,.15);
    border-bottom: 1px solid rgba(0,0,0,.15);
    position: relative; 
}
.header-style-one .announcebar .announce-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
} 
.header-style-one .announcebar #announceclose {
    position: absolute;
    right: 16px;
    top: 50%;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.header-style-one.head-sticky .announcebar {
    display: none;
}
body.product .header-style-one{
  background: var(--black);
}
/*****  annouse bar css  *****/
.announcebar .annoucebar-left a span{
    text-decoration: underline;
}
.announcebar .annoucebar-left a{
    font-weight: 500;
    letter-spacing: 0.050em;
}
.announcebar .announcebar-right a{
    text-decoration: underline;
}
.announcebar .annoucebar-left{
    flex: 1;
} 
.announcebar .announcebar-right{
    display: flex;
    justify-content: end;
    flex: 1;
} 
.site-header.head-sticky .main-navigationbar .menu-items-col { 
    padding: 15px 0px;
}
.site-header.head-sticky:before {
    content: '';
    background: linear-gradient(to left, var(--blue) 50%, var(--second-color));
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
}
/*****  Main navigation bar css  *****/
.header-style-one .main-navigationbar .logo-col {
    max-width: 140px;
    width: 100%;
}
.header-style-one .main-navigationbar .logo-col a {
    display: block;
}
.header-style-one .main-navigationbar .menu-items-col {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 0px;
    transition: all ease-in-out 0.4s;
    flex: 1;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}
.header-style-one .menu-right {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}
.head-sticky .main-navigationbar {
    background: rgba(0, 0, 0, 1);
}
.header-style-one .main-navigationbar .menu-items-col .main-nav {
    display: none;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li:not(:last-of-type) {
    padding-right: 30px;
}
.main-navigationbar .menu-items-col-right .menu-right{
    display: flex;
    justify-content: end;
    flex:1;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li>a {
    color: var(--white);
    text-transform: capitalize;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    padding: 0;
    position: relative;
    display: inline-flex;
    font-weight: 600;
    align-items: center;
    font-size: 15px;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>a:after {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    right: 0px;
    top: 7px;
    background: url(dropdown.png);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}
.header-style-one .main-navigationbar .menu-items-col .drop>a:after {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    right: -18px;
    top: 7px;
    background: url(dropdown.png);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item:hover>a:after,.header-style-one .main-navigationbar .menu-items-col .drop:hover>a:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li>a:before {
    content: '';
    position: absolute;
    height: 1px;
    width: 0;
    bottom: -3px;
    left: 0;
    right: 0;
    background: linear-gradient(250deg, var(--blue) 0%, var(--second-color) 100%);
    margin: 0 auto;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li>a:hover:before {
    width: 100%;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>a{
    padding-right: 20px;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>.category-btn:before {
    display: none;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>.category-btn svg {
    margin-left: 20px;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>.category-btn svg path {
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
/*****  Megamenu css  *****/
.header-style-one .main-navigationbar {
    position: relative;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}
.header-style-one .mobile-menu {
    display: inline-block;
    position: relative;
    z-index: 1;
    width: 22px;
    height: 22px;
    margin: 0 0 0 20px;
}
.header-style-one .mobile-menu .mobile-menu-button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    padding: 0;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: transparent;
    border: none;
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.header-style-one .mobile-menu .mobile-menu-button div {
    width: 100%;
    height: 2px;
    margin: 4px 0;
    backface-visibility: hidden;
    background: var(--white);
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown {
    position: absolute;
    top: 100%;
    background-color: var(--white);
    transform-origin: top;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    min-width: 220px;
    z-index: 2;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 20px 0;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}
.header-style-one .menu-dropdown ul>li:not(:last-of-type) {
    margin-bottom: 10px;
}
.header-style-one .megamenu-list>li span {
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--black);
}
.header-style-one .menu-dropdown ul>li a {
    border-bottom: 1px solid transparent;
    font-size: 14px;
    font-family: var(--first-font);
    color: var(--black);
}
.header-style-one .menu-dropdown .arrow-list>li a:hover,.second-menu-dropdown ul li a:hover {
    border-color: var(--black);
}
.header-style-one .menu-right li a {
    position: relative;
}
.header-style-one .menu-right .cart-header a {
    display: flex;
    gap: 10px;
    align-items: center;
}
.header-style-one .menu-right li a .icon-lable {
    margin-top: 7px;
}
.header-style-one .menu-right li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}
.header-style-one .menu-right li:not(:last-of-type) {
    margin-right: 20px;
}
.header-style-one .menu-right li a:not(.link-btn) svg {
    width: 23px;
    height: 23px;
    margin: 0 auto;
}
.header-style-one .menu-right li a.wishlist-btn {
    display: block;
}
.cart-header a .icon-label {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    text-align: right;
    letter-spacing: -0.03em;
    color: var(--white);
    display: grid;
}
.header-style-one .count {
    position: absolute;
    top: -9px;
    right: -11px;
    height: 17px;
    width: 17px;
    background: linear-gradient(250deg, var(--blue) 0%, var(--second-color) 100%);
    color: var(--white);
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.header-style-one .count-1{
    position: absolute;
    top: -3px;
    right: -11px;
    height: 17px;
    width: 17px;
    background: linear-gradient(250deg, var(--blue) 0%, var(--second-color) 100%);
    color: var(--white);
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
body:not(.index,.product) .header-style-one{
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,.15);
}
/*****  MOBILE MENU CSS  *****/
.mobile-menu-wrapper {
    position: fixed;
    z-index: 4;
    background: var(--white);
    top: 0;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translate(100%, 0px);
    -moz-transform: translate(100%, 0px);
    -ms-transform: translate(100%, 0px);
    -o-transform: translate(100%, 0px);
    transform: translate(100%, 0px);
    right: 0;
    display: block;
    width: 100%;
}
.mobile-menu-wrapper.active-menu {
    transform: translate(0%, 0px);
}
.mobile-menu-wrapper .menu-close-icon {
    text-align: right;
    padding: 15px 20px;
    background:var(--blue);
}
.mobile-menu-wrapper .mobile-menu-bar>ul {
    height: calc(100vh - 48px);
    overflow: auto;
    padding: 10px 20px;
    background: var(--white);
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a {
    font-size: 18px;
    color: var(--theme-color);
    letter-spacing: 1px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: space-between;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li {
    margin-top: 12px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a .close-menu-ioc {
    display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li.is-open>a.acnav-label .menu-open-arrow {
    display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li.is-open>a.acnav-label .close-menu-ioc {
    display: block;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a .close-menu-ioc {
    display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .acnav-list {
    margin: 12px 0;
    display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .menu-h-drop.is-open .acnav-label .close-menu-ioc {
    display: block;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .menu-h-drop.is-open .acnav-label .menu-open-arrow {
    display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile_menu_inner .menu-h-link ul li:not(:last-of-type) {
    margin-bottom: 8px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile_menu_inner .menu-h-link ul li a {
    font-size: 14px;
    line-height: 18px;
    text-transform: lowercase;
    font-family: var(--first-font);
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a svg {
    margin-left: auto;
    width: 14px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile_menu_inner .menu-h-link ul {
    margin-bottom: 12px;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children>ul {
    margin: 12px 0 0;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li:not(:last-of-type) {
    margin-bottom: 12px;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li>a {
    font-size: 14px;
    font-family: var(--first-font);
}
.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li>a.acnav-label {
    font-weight: 600;
}
.mobile-menu-wrapper .menu-close-icon svg path {
    fill: var(--white);
}
/* !!!!                    FOOTER CSS                  !!!! */
.site-footer {
    position: relative;
    z-index: 1;
    padding: 70px 0px 60px;
    background: rgba(0, 0, 0, 1);
    color: var(--white);
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
}
.footer-col {
    width: 100%;
    flex: 1;
    padding-left: 96px;
}
.footer-subscribe-col {
    max-width: 370px;
    flex: 0 0 370px;
    padding: 0;
}
.footer-subscribe-col .footer-widget h3 b{
  margin-right: 7px;
}
.footer-ring-1{
    position: absolute;
    z-index: -1;
    top: 0%;
    right: 0%;
}
.footer-subscribe-form .form-inputs {
    width: 100%;
    position: relative;
}
.footer-subscribe-form .btn {
    position: absolute;
    right: 0;
    border-radius: 0px 15px 0px 0px;
    color: var(--white);
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    font-size: 13px;
    top:0;
    height:100%;
    border: 0;
    padding: 14px 25px;
    -webkit-border-radius: 0px 15px 0px 0px;
    -moz-border-radius: 0px 15px 0px 0px;
    -ms-border-radius: 0px 15px 0px 0px;
    -o-border-radius: 0px 15px 0px 0px;
    margin: 0;
    outline: none;
}
.footer-ring-2{
    position: absolute;
    z-index: -1;
    left: 0%;
    bottom: 0%;
}
.footer-subscribe-form input {
    padding: 13px 110px 13px 20px;
    border: 1px solid var(--white);
    color: var(--theme-color);
}
.footer-subscribe-form .checkbox-custom label:before {
    border-color: var(--white);
}
.footer-widget h3{
    margin-bottom: 15px;
    max-width: 300px;
}
.footer-widget .footer-logo {
    margin: 0 0 20px;
}
.footer-widget h3 b{
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-widget h4 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--second-font);
    margin-bottom: 20px;
}
.footer-subscribe-form {
    margin-top: 24px;
  position:relative;
}
.footer-subscribe-form .checkbox-custom {
    margin-top: 20px;
}
.footer-bottom {
    padding-top: 40px;
}
.footer-link ul li:not(:last-of-type) {
    margin-bottom: 10px;
}
.footer-link .contactlink {
    font-size: 24px;
    margin-bottom: 24px;
}
.policy-links li:not(:last-of-type) {
    margin-right: 22px;
}
.social-icons li {
    background-color: var(--white);
    padding: 5px;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 28px;
    height: 28px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.social-icons li:not(:last-of-type) {
    margin-right: 10px;
}
.social-icons svg {
    width: 16px;
    height: 16px;
    display: block;
    margin: auto;
}
.social-icons svg path {
    fill: var(--black);
}
.social-icons li:hover{
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    transition: all .3s ease-in-out;
}
.social-icons li:hover svg path {
    fill: var(--white);
}
.footer-link ul li a:hover{
    color: var(--theme-color);
}
/*****  CART DRAWER CSS  *****/
.overlay.active,.cartOpen .overlay::after {
    content: " ";
    z-index: 3;
    background: rgba(255, 255, 255, 0.4);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
}
.cartDrawer {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 5;
    background: var(--white);
    width: 410px;
    height: 100%;
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}
.cartOpen .cartDrawer {
    opacity: 1;
    visibility: visible;
    display: flex;
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.cartDrawer .mini-cart-header {
    position: relative;
    text-align: center;
    padding: 17px 30px 16px 30px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:var(--blue);
    color: var(--white);
}
.cartDrawer .cart-tottl-itm {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
}
.cart-header .closecart{
    position: fixed !important;
    right: 424px;
    top: 20px;
    width: 20px;
    height: 20px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}
.cartOpen .cart-header .closecart{
  opacity: 1;
  visibility: visible;
} 
.cartDrawer .mini-cart-has-item {
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cartDrawer .mini-cart-body {
    overflow-y: auto;
    padding: 30px;
    flex: 1;
}
.cartDrawer .mini-cart-body::-webkit-scrollbar {
    width: 6px;
}
.cartDrawer .mini-cart-body::-webkit-scrollbar-track {
    background: var(--second-color);
}
.cartDrawer .mini-cart-body::-webkit-scrollbar-thumb {
    background-color: #183a40;
}
 .mini-cart-item {
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid rgb(76 62 62 / 15%);
    background: var(--white);
}
 .mini-cart-item:not(:last-of-type) {
    margin-bottom: 30px;
}
 .mini-cart-image {
    width: 80px;
}
 .mini-cart-image a {
    display: block;
    padding-top: 86%;
    position: relative;
}
 .mini-cart-image img {
    top: 0;
    width: 100%;
    object-fit: scale-down;
    position: absolute;
    left: 0;
    right: 0;
}
 .mini-cart-details {
    flex: 1;
    width: 100%;
    padding-left: 15px;
}
 .mini-cart-title {
    color:var(--black);
    margin-bottom: 8px;
        font-size: 16px;
    font-weight: 400;
    font-family: var(--first-font);
}
.link-btn svg {
    fill: var(--black);
    margin-left: 13px;
}
 .cart-variable {
    margin-bottom: 10px;
}
 .cart-variable p {
    margin: 0 0 5px;
    font-size: 12px;
    line-height: 14px;
    color: #4e4e4e;
}
.qty-spinner {
    border: 1px solid rgb(76 62 62 / 15%);
    display: flex;
    max-width: 100px;
    height: 30px;
    width: 100%;
}
.qty-spinner button {
    background: transparent;
    padding: 0;
    margin: 0;
    border: 0;
    flex: 1;
}
.qty-spinner button svg {
    margin: auto;
    height: 10px;
    width: 10px;
  pointer-events: none;
}
.qty-spinner button svg path {
    fill: var(--theme-color);
}
.qty-spinner input {
    border: 0;
    flex: 1;
    width: 29px;
    color: var(--theme-color);
    padding: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    margin: 0;
}
del {
    color: var(--theme-color);
    opacity: 0.6;
    text-decoration: line-through;
}
.price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.cartDrawer .mini-cart-details .price {
    justify-content: flex-start;
    font: var(--common-text);
}
.cartDrawer .pvarprice {
    margin-top: 12px;
}
.cartDrawer .price del {
    margin-left: 10px;
}
.cartDrawer .price{
    align-items: center;
    color: var(--black);
}
.cartDrawer .price .currency-type {
    font-weight: 500;
    font-size: 10px;
    margin-left: 3px;
    display: inline-block;
}
.cartDrawer .webi-mini-cart-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
}
.cartDrawer .mini-cart-footer-total-row {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    display: flex;
    align-items: center;
    color: var(--black);
    margin: 0 -10px 20px;
}
.mini-cart-footer-total-row div {
    padding: 0 10px;
}
.mini-cart-footer-total-row div.mini-total-price {
    font-size: 18px;
}
.webi-mini-cart-footer .checkout-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px; 
    font-size: 16px; 
    padding: 13px 20px;
    display: flex;
  border: 1px solid transparent;
}
.cartDrawer .webi-mini-cart-footer .checkout-btn:hover {
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    background: transparent;
}
.cartDrawer .webi-mini-cart-footer .checkout-btn:hover svg path{
    fill: var(--theme-color);
}
.header-style-one .menu-right .cartDrawer .webi-mini-cart-footer .link-btn {
    display: flex;
    justify-content: center;
    color: var(--black);
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.1em;
  gap:0;
}
.header-style-one .menu-right .cartDrawer .remove_item svg path {
    fill: var(--black);
}
.header-style-one .menu-right .cartDrawer .remove_item svg {
    height: 15px;
    width: 15px;
}
.cartDrawer .emptyCart {
    padding: 50px 0 0 0;
}
.qty-spinner input {
    border: none !important;
}
/*****  SEARCH POPUP CSS  *****/
.search-popup, .size-popup {
    position: fixed;
    background: rgba(24, 58, 64, 0.9);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 3;
    padding: 0 30px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.5s;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}
.search-popup.active, .size-popup.active {
    opacity: 1;
    visibility: visible;
}
.search-form-wrapper {
    max-width: 1000px;
    width: 30%;
}
.form-inputs {
    position: relative;
}
.announce-row .search-form-wrapper .form-control{
    border-color: var(--theme-color);
    padding: 13px 15px 13px  50px;
}
.announce-row .search-form-wrapper .form-inputs .search__button{
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  background: none;
  z-index: 1;
}
.search-form-wrapper form {
    width: 100%;
}
.search-popup .close-search {
    position: absolute;
    right: 50px;
    top: 50px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}
.search-popup .close-search svg {
    height: 100%;
    width: 100%;
}
.search-popup .search-form-wrapper .form-inputs {
    width: 100%;
    position: relative;
}
.search-popup .search-form-wrapper .btn {
    position: absolute;
    right: 5px;
    top: 50%;
    width: 45px;
    background-color: var(--theme-color);
    padding: 0;
    border-radius: 0%;
    border: 1px solid var(--theme-color);
    height: calc(100% - 10px);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-border-radius: 0%;
    -moz-border-radius: 0%;
    -ms-border-radius: 0%;
    -o-border-radius: 0%;
}
.search-popup .search-form-wrapper .btn svg {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    fill: var(--white);
}
.search-popup .custom-banner-image .search-form-wrapper input {
    padding: 12px 60px 12px 20px;
}
.search-popup ::placeholder {
    color: var(--white);
}
.search-popup .form-control{
    color: var(--white);
    padding: 12px 60px 12px 20px;
    border:1px solid white;
}
/********* MAIN HOME FIRST SECTION CSS ********/ 
.home-banner-section{
    background: rgba(0, 0, 0, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 210px 0px 60px 0px;
}
.design-circle-2,.design-circle-1,.design-circle-3,.design-circle-4,.half-bluthooth-left,.half-bluthooth-right,.main-content-games,.main-content-games-1,.round-img-big,.round-img-small,.full-bluthooth,.top-star{
    position: absolute;
    z-index: -1; 
}
.main-content-games{
    top: 62%;
    left: 90px;
}
.round-img-big{
    top: 34%;
    right: 50%;
}
.round-img-small{
    bottom: 25%;
    right: 46%;
}
.full-bluthooth{
    top: 50%;
    right: 21%;
}
.top-star{
    top: 27%;
    right: 20%;
}
.half-bluthooth-left{
    top: 0;
    left: 0%; 
    max-width: 500px;
}
.half-bluthooth-right{
    top: -8%;
    right: 17%; 
    max-width: 500px;
} 
.design-circle-2{ 
    top: 0%;
    right: 0; 
}
.design-circle-1{ 
    top: 0%; 
    left: 12%;
}
.home-banner-contain .section-title p{
    max-width: 475px;
}
.home-banner-section .home-banner-contain .banner-tagline{
    background-color: rgba(18, 16, 62, 1);
    padding: 10px 15px 10px 15px;
    color: var(--white);
    max-width: 400px;
    margin-bottom: 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.home-banner-contain .section-title{
    margin-bottom: 25px;
}
.btn-label{
    padding: 4px 10px;
    color: var(--white);
    margin-right: 10px;
    background: linear-gradient(90deg, var(--blue) 0%, rgba(0, 152, 255, 0) 100%);
    border-radius: 20px;
    font-size: 14px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.banner-tagline p{
    font-size: 14px;
}
.home-banner-contain .banner-tagline p a{
    color: #1C82F3;
}
.xl-text{
    font-size: 65px;
    font-weight: 600;
    Line-height:60.07px;
    color: var(--white);
    margin-bottom: 20px;
}
/********* BESTSELLER SECTION ********/
.bestseller-section {
    background: rgba(0, 0, 0, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.product-center-slider {
    padding-bottom: 30px;
}
.bestseller-section .swiper-slide.product-center-item {
    padding: 64px 10px !important;
}
.bestseller-section .product-card-inner {
    justify-content: center;
}
.product-card-inner .quickview-btn, .product-card-inner .pro-compare{
    display: none;
}
.product-card-image{
    position: relative;
    transition: all ease-in-out 0.6s;
    -webkit-transition: all ease-in-out 0.6s;
    padding: 10px 0 0;
    -moz-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
}    
.product-card-inner .card-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.product-card-inner .card-top .wishlist{
  margin-left:auto;
  padding: 3px 0;
}
.slide-label{
  position: absolute;
  top: 10px;
  padding: 3px 10px;
  color: var(--white);
  font-size: 14px;
  background: linear-gradient(90deg, var(--blue) 0%, rgba(0, 152, 255, 0) 100%);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.product-card-image .pro_btn a {
    padding: 0;
}
.pro_btn_wrapper svg path {
    fill: var(--white);
}
.pro_btn {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 5px 5px;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 400ms ease-in-out;
}
.pro_btn .pro_btn_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    border-radius: 0 10px;
    padding: 5px 15px;
    gap: 10px;
}
.pro_btn .pro_btn_wrapper > div {
  position: relative;
  padding-left: 10px;
}
.pro_btn .pro_btn_wrapper > div::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
}
.product-card-inner:hover .pro_btn {
  opacity: 1;
  visibility: visible;
}
.collection .product-card-inner:hover .pro_btn{
  opacity: 0;
    visibility: hidden;
}

.product-card-inner .flip-countdown.simple-countdown {
    opacity: 1;
    visibility: visible;
    transition: all 400ms ease-in-out;
}
.product-card-inner:hover .flip-countdown.simple-countdown {
    opacity: 0;
    visibility: hidden;
}
.product-card-inner .product-number{
    display: flex;
    flex-wrap: wrap;
    gap:15px;
}
.product-card-inner .product-number li {
    color: var(--theme-color);
}
.product-card-image a{
    position: relative;
    display: block;
    padding-top: 100%;
    transition: all ease-in-out 0.6s;
    -webkit-transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
}
.product-card-image a  img.hover-img {
    opacity: 0;
    visibility: hidden;
} 
.product-card-image a img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease-in-out 0.6s;
    -webkit-transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
}   
.product-card-image:hover img.default-img {
    opacity: 0;
    visibility: hidden;
} 
.product-card-image:hover img.hover-img {
    opacity: 1;
    visibility: visible; 
}  
.product-card-inner {  
    padding: 15px;
    position: relative;
    background: linear-gradient(148deg, rgba(1, 152, 255, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    width: 100%;
    border-radius: 0 12px;
}   
.product-main-section .product-thumb-item:before,.product-main-slider:after,.product-card-inner:before {
    content: '';
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    border-radius: 0 12px;
    border: 1px solid transparent;
    background: linear-gradient(to left, var(--blue) 50%, var(--second-color) ) border-box;
    -webkit-mask:linear-gradient(var(--white) 0 0) padding-box, linear-gradient(var(--white) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    top: 0;
    left: 0;
    right: 0;
}
.loading-overlay__spinner {
    display: none !important;
}
.product-card-inner h4{
    color: var(--white);
    margin-bottom: 10px;
}
.pro-labl{
    margin-bottom: 10px;
    font-size: 10px;
    color: var(--white);
    font-weight: 600;
}
.dark-contnt .pro-labl {
    color: var(--black);
}
.slick.nice-select .list {
    height: 67px;
    overflow: auto;
}
.product-card-inner .product-content-bottom{
    margin-top: 20px;
  gap: 15px;
}
ins {
    display: inline-flex;
    font-weight: 600;
}
.product-content-bottom .price {
  font-size: 18px;
    position: relative;
    color: var(--white);
    flex-shrink: 0;
    line-height: 1;
    flex-direction: column;
    align-items: flex-start;
}
.product-content-bottom .price ins.price-item--sale {
    margin: 8px 0 0px;
    font-size: 12px;
    opacity: 0.6;
    text-decoration: line-through;
}
.product-content-bottom .price .currency-type {
    font-size: 10px;
    display: inline-block;
}   
.product-center-slider .slick-list {
    padding: 55px 7% 0px !important;
  padding-bottom: 1px !important;
}
.product-center-slider .slick-list, .product-center-slider  .slick-track{
    display: flex;
}
.product-center-slider .slick-slide,.product-center-slider
  .slick-slide[aria-hidden="true"]:not(.slick-cloned)
  ~ .slick-cloned[aria-hidden="true"] {
  padding: 0 15px;
}
.product-center-slider .swiper-slide-active .product-card-inner, .product-center-slider  .slick-slide[aria-hidden="true"]:not([tabindex="-1"])  + .slick-cloned[aria-hidden="true"] .product-card-inner{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    filter: drop-shadow(0px 4px 56px rgba(82, 86, 219, 0.43));
    position: relative;
    z-index: 1;
  transform-origin: center;
    -webkit-filter: drop-shadow(0px 4px 56px rgba(82, 86, 219, 0.43));
}  
/********* CLIENT LOGO SECTION ********/
.client-logo-section{
    background: rgba(0, 0, 0, 1);
    position: relative;
}
.client-logo-section .container{
  position: relative;
}
.client-logo-item {
    display: flex !important;
    justify-content: center;
    padding: 0 20px;
}
.design-circle-3{
    top: -8%;
    left: 24%;
    z-index: -1;
}
/********* GAMING CATEGORIES SECTION ********/
.gaming-categories-section{
    background: linear-gradient(0deg,transparent 66%,rgba(0, 0, 0, 1) 15%);
    position: relative;
}
.gaming-categories-section .tabs-container {
    position: relative;
}
.gaming-categories-section .pro-labl{
    color: var(--black);
} 
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.cat-tab li a {
    padding: 10px 33px;
    font-size: 12px;
    display:inline-flex;
    width: 100%;
    justify-content: center;
    border: 10px solid;
    border: 1px solid var(--theme-color);
    font-weight: 500;
    color: var(--theme-color);
    letter-spacing: 1px;
    border-radius: 0px 20px 0px 20px;
    -webkit-border-radius: 0px 20px 0px 20px;
    -moz-border-radius: 0px 20px 0px 20px;
    -ms-border-radius: 0px 20px 0px 20px;
    -o-border-radius: 0px 20px 0px 20px;
}
.cat-tab li a img{
    margin-right: 10px;
}
.cat-tab li:not(.active) a img {
    filter: invert(0.5);
}
.cat-tab li.active a {
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    color: var(--white);
    border:1px solid transparent;
}
.cat-tab li.active a svg path{
    fill:var(--white);
}
.cat-tab li{
    margin-bottom: 20px;
}
.gaming-leftbar .more-categories,.gaming-leftbar .more-categories a{
    text-align: center;
    text-decoration: underline;
}
.gaming-leftbar .section-title{
    margin-bottom: 60px;
}
.product-card{
    padding: 0 10px;
   height: auto;
}
.product-list.slick-slider{
    margin: 0 -10px;
}
.product-list.shop-protab-slider.slick-slider {
    display: flex;
}
.shop-protab-slider .slick-list,.shop-protab-slider .slick-list .slick-track{
    display: flex;
}
.shop-protab-slider .product-content-bottom .price{
    color: var(--black);
}
.main-content-games-1{
    top: 26%;
    right: 1%;
    z-index: 1;
} 
/********* SUBSCRIBE SECTION ********/
.subscribe-section{
    position: relative;
    z-index: 1;
}
.subsc-label{
    background: linear-gradient(90deg, var(--blue) 0%,var(--second-color) 100%);
    opacity: 62%;
}
.subscribe-content .section-title h2{
    color: var(--black);
    max-width: 380px;
    margin:15px 0px;    
}
.section-title p{
    color:var(--theme-color);
}
.subscribe-section .search-form-wrapper{
    width:100%;
}
.subscribe-section input{
    padding: 13px 155px 13px 20px;
    border: 1px solid var(--black);
    color: var(--theme-color);
}
.subscribe-section .search-form-wrapper .btn {
    position: absolute;
    right: 0%;
    border-radius: 0px 15px 0px 0px;
    color: var(--white);
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    font-size: 13px;
    top: 0%;
    height: 100%;
    border: 0;
    padding: 14px 45px;
    -webkit-border-radius: 0px 15px 0px 0px;
    -moz-border-radius: 0px 15px 0px 0px;
    -ms-border-radius: 0px 15px 0px 0px;
    -o-border-radius: 0px 15px 0px 0px;
}
.subscribe-section .form-inputs{
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}
.subscribe-section .subscribe-part-img  img {
    margin-left: auto;
}
/********* GAMING PRODUCTS SECTION ********/
.full-width-section{
    background: rgba(0, 0, 0, 1);
    position: relative;
    z-index: 1;
}
.section-title-left h2{
    max-width: 320px;
}
.section-title-center p{
    max-width: 440px;
}
.gaming-products-1,.gaming-products-2,.design-circle-4,.design-circle-5{
    position: absolute;
    z-index: -1;
}
.gaming-products-1{
    top:-4%;
    left: 8%;
}
.gaming-products-2{
    top: -4%;
    right: 30%;
}
.design-circle-4{
    top: 0;
    right: 0;
}
.design-circle-5{
    top: 3%;
    right: 14%;
}
.left-column-img img {
    width: 100%;
}
.full-width-section .product-card-inner{
    border:0;
    padding: 15px 30px 15px 30px;
}
.full-width-section .product-card-inner h3 {
    color: var(--white);
    max-width: 210px;
    margin-bottom: 15px;
}
.product-card-inner .card-info p{
    margin: 15px 0px;
}
.right-column-img img {
    margin: auto;
}
.full-width-card {
    padding: 0 15px;
}
/********* FULL WIDTH SECOND SECTION ********/
.full-width-second-section .product-card-inner{
    border:0;
    padding: 15px 20px;
}
.full-width-second-section{
    padding: 60px 0px 40px 0px;
    position: relative;
}
.second-right-img img{
    margin: auto;
} 
.full-width-second-section .product-card-inner .slide-label{
    background: linear-gradient(90deg, var(--blue) 0%,var(--second-color) 100%);
}
.full-width-second-section .product-card-inner h3{
    color: var(--black);
    max-width: 210px;
    margin-bottom: 15px;
}
.full-width-second-section .pro-labl {
    color: var(--black);
}
.full-width-second-section .product-content-bottom .price{
    color: var(--black);
}
.second-left-img img{
    margin-left: auto;
    width: 100%;
}
.about-img{
    position: absolute;
    z-index: -1;
    bottom: 0%;
    right: 27%;
}
/********* ABOUT US SECTION ********/
.about-us-section{
    position: relative;
}
.about-img-1{
    position: absolute;
    z-index: -1;
    bottom: 8%;
    left: 4%;
}
.about-us-section .section-title h2{
    color: var(--black);
    margin-bottom: 10px;
}
.about-us-box{
    position: relative;
    z-index: 1;
    padding: 25px 15px; 
    border-radius: 0px 15px 0px 15px;
    -webkit-border-radius: 0px 15px 0px 15px;
    -moz-border-radius: 0px 15px 0px 15px;
    -ms-border-radius: 0px 15px 0px 15px;
    -o-border-radius: 0px 15px 0px 15px;
}
.about-us-box:before {
    border: 1px solid var(--second-color);
    background: linear-gradient(148deg, rgba(1, 152, 255, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0px 15px 0px 15px;
    -webkit-border-radius: 0px 15px 0px 15px;
    -moz-border-radius: 0px 15px 0px 15px;
    -ms-border-radius: 0px 15px 0px 15px;
    -o-border-radius: 0px 15px 0px 15px;
} 
.about-us-section .row [class*="col-"]:nth-child(2) .about-us-box:before {
    opacity: 0.6;
} 
.about-us-section .row [class*="col-"]:nth-child(3) .about-us-box:before {
    opacity: 0.4;
} 
.about-us-section .row [class*="col-"]:nth-child(4) .about-us-box:before {
    opacity: 0.2;
}
.about-us-box h3{
    background: -webkit-linear-gradient(93.25deg, var(--blue) 4.45%, var(--second-color) 93.88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.about-us-box h4{
    color: var(--black);
    margin-bottom: 10px;
}
.about-us-box p{
    max-width: 175px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}
/********* HOME BLOG SECTION ********/
.home-blog-section{
    background: rgba(0, 0, 0, 1);
    position: relative;
    padding-bottom: 60px;
}
.blog-ring {
    position: absolute;
    z-index: 1;
    top: -3%;
    right: 13%;
}
.home-blog-section .blog-card-inner{
    padding: 0%;
    border: none;
    position: relative;
    height: 100%;
    width: 100%;
    transition: all ease-in-out 0.5s !important;
}
.blog-itm-card .product-card-image a {
    padding-top: 54%;
}    
.blog-number{
  display: flex;
  gap:15px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.bestseller-section .section-title,.gaming-leftbar .section-title,.full-width-section .section-title,.home-blog-section .section-title{
    color: var(--white);
}
.blog-product-content .product-title{
    max-width: 213px;
    margin: 20px 0px 10px 0px;
    color: var(--white);
}
.home-blog-section .blog-itm-card {
    padding: 10px 10px 30px;
}
.blog-two-row-slider {
    margin: -10px;
}   
.blog-labl{
    background: linear-gradient(90deg, var(--blue) 0%,var(--second-color) 100%);
    padding: 2px 10px;
    color: var(--white);
    font-size: 14px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 15px;
}
.blog-card-image a img{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    object-fit: cover;
}
.blog-card-image{
    position: relative;
    transition: all ease-in-out 0.6s;
    -webkit-transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
}
.blog-itm-card .blog-card-image a {
    padding-top: 67%;
    overflow: hidden;
    display: block;
    position: relative;
    border-radius: 0 12px;
    border: 1px solid var(--blue);
}    
.date-labl{
    color: var(--white);
    font-size: 14px;
    position: absolute;
    top: 13px;
    right: 15px;
}
.blog-blutooth {
    position: absolute;
    bottom: -5%;
    left: 8%;
    width: 80px;
    z-index: 1;
}
.product-card .read-more-btn{
    margin-top: 15px;
}
/********* TESTIMONIALS SECTION ********/
.testimonials-section .section-title-left h2{
    color: var(--black);
}
.testimonials-section .testimonial-itm-inner {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    border: 1px solid var(--second-color);
    background: linear-gradient(148deg, rgba(1, 152, 255, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 0px 10px 0px 10px;
    color: var(--white);
    align-items: center;
    -webkit-border-radius: 0px 10px 0px 10px;
    -moz-border-radius: 0px 10px 0px 10px;
    -ms-border-radius: 0px 10px 0px 10px;
    -o-border-radius: 0px 10px 0px 10px;
}
.testimonials-section .testimonial-itm-inner .testimonial-itm-content {
    padding: 15px;
    max-width: calc(100% - 148px);
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--black);
}
.testimonials-section .testimonial-title {
    margin-bottom: 10px;
     overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.testimonials-section .testimonial-itm-inner .testimonial-itm-image {
    max-width: 148px;
    width: 100%;
    position: relative;
}
.testimonial-content-bottom{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.testi-pro-info{
    display: flex;
    align-items: center;
}
.pro-img{
    margin-right: 15px;
}
.testimonial-content-bottom .testi-pro-info span { 
    font-weight: 400;
    display: block;
    line-height: 1;
    font-size: 12px;
}
.testimonial-content-bottom .testi-star img{
    margin-right: 10px;
    max-width: 70px;
}
.testi-star .star-count{
    color: var(--black);
    font-size: 12px;
    display: block;
    line-height: 1;
}
.testimonials-section .testimonial-content-bottom span b {
    color:  var(--blue);
}
.testimonial-slider {
    margin: 0 -10px;
}
.testimonial-itm {
    padding: 5px 10px;
}
.testimonials-section .testimonial-itm-inner .testimonial-itm-content-top {
    flex: 1;
    width: 100%;
    margin-bottom: 15px;
}  
.testimonials-section .testimonial-itm-inner .testimonial-itm-content p, .about-us-box p {
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.dark-contnt .product-content-bottom .price,.dark-contnt .product-card-inner h4,.home-product-extra .section-title h2 {
    color: var(--black);
}
.dark-contnt  .heart svg path {
    fill: var(--black);
}
.product-extra-slider {
    margin: 0 -10px;
  display: flex;
}
.product-extra-slider .slick-track,.product-extra-slider .slick-list {
    display: flex;
}
/****************** PRODUCT PAGE CSS ******************/
.product-main-section{
    padding: 210px 0px 70px 0px;
    background: rgba(0, 0, 0, 1);
    position: relative;
}
.product-main-section  .design-circle-2,.product-main-section  .design-circle-1{
  z-index: 0;
  pointer-events: none;
}
.product-main-section .back-btn { 
    color: var(--white);
}
.product-main-section .back-btn span { 
    border: 1px solid var(--white); 
}   
.section-title-inner .back-btn span svg path {
    fill: var(--white);
}
.product-main-section .product-content-bottom {
    margin: 0 0 20px;
}
.product-main-section .product-form{
  display: flex;
    gap: 20px;
}
.product-main-section .section-title-inner{
    margin-bottom: 40px;
}
.product-left-inner .quantity-select {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 1;
  justify-content: end;
}
.product-left-inner .qty-spinner {
  border-color: var(--theme-color);
  border-radius: 0 10px 0 10px;
  -webkit-border-radius: 0px 10px 0px 10px;
  -moz-border-radius: 0px 10px 0px 10px;
  -ms-border-radius: 0px 10px 0px 10px;
  -o-border-radius: 0px 10px 0px 10px;
}
.product-main-section span.wishirmv.wishlist-btn {
    display: flex;
    gap: 10px;
    align-items: center;
}
.product-main-section .pro-top-row a {
    display: flex;
    align-items: center;
    gap: 10px;
    color:var(--white);
}
.pro-star-count{
    color: var(--white);
}
.product-main-section .pro-top-row{
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
} 
.pro-top-row .slide-label{
  background: linear-gradient(90deg, var(--blue) 0%,var(--second-color) 100%);
}
.product-main-section .review-stars {
    color: #fff;
    gap: 10px;
    margin: 0 0 20px;
}
.product-write-review {
    gap: 8px;
    align-items: center;
}
}
.pro-star img {
    margin-right: 15px;
}
.pro-star-count b{
    color: var(--blue);
}
.pro-number{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.product-left-inner .common-heading p{
    margin: 20px 0px;
}
.product-left-inner{
    max-width: 400px;
}
.product-left-inner .common-heading h2{
    color: var(--white);
    margin-bottom: 20px;
}
.product-content-center .product-select{
    margin-bottom: 20px;
}
.product-left-inner .price{
    font-size: 30px;
}
/* PRODUCT SLIDER SECTION */
.product-main-section .slider-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;
}
.product-main-section .product-thumb-slider {
    max-width: 60px;
    width: 100%;
} 
.product-main-section .product-main-slider {
    position: relative;
    max-width: calc(100% - 80px);
    width: 100%;
    margin-left: auto; 
    border-radius: 0 15px;
    z-index: 1;
    padding: 10px;
  order:2;
}
.product-main-section .product-thumb-item { 
    border-radius: 0 15px;
    padding: 6px;
    margin-bottom: 20px;
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    position: relative;
    z-index: 1;
} 
.product-thumb-item.slick-slide.slick-current.slick-active {
    background: var(--white); 
}
.product-main-section .product-thumb-item .thumb-img {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius:0 12px;
    -webkit-border-radius:0 12px;
    -moz-border-radius:0 12px;
    -ms-border-radius:0 12px;
    -o-border-radius:0 12px;
}
.product-main-section .product-item-img {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}
.product-main-section .open-lightbox {
    position: absolute;
    top: 50%;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
} 
.product-main-section .product-main-slider .img-prew-icon {
    width: 55px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: linear-gradient(93.25deg, #0098FF 4.45%, #7C34C8 93.88%);
    border-radius: 0px 10px;
} 
.product-main-section .product-item-img img,.product-main-section .product-thumb-item .thumb-img img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    border-radius: 0 12px;
}
.product-main-section .product-thumb-slider .slick-prev.slick-arrow img,.product-main-section .product-thumb-slider .slick-next.slick-arrow img{
    margin: 0 auto;
}
.product-main-section .product-thumb-slider .slick-arrow.slick-prev{
    top: calc(46% + 50px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background: url(pro-down.png);
    background-repeat: no-repeat;
    background-position: center center;
}
.product-main-section .product-thumb-slider .slick-arrow.slick-next{
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
   background: url(pro-up.png);
    background-repeat: no-repeat;
    background-position: center center;
}
.product-description-section h3 {
    margin-bottom: 30px;
    color: var(--black);
} 
.pro-descrip-left {
    max-width: 430px;
}
.pro-descrip-right ul li span {
    display: block;
}
.pro-tab-center {
    padding: 0 30px;
}
/************** video product page css *************/
deferred-media.deferred-media {
    position: relative;
    display: block;
}
.media>*:not(.zoom):not(.deferred-media__poster-button), .media model-viewer {
    display: block;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.deferred-media[loaded]>.deferred-media__poster {
    display: none !important;
}
.product__modal-opener:not(.product__modal-opener--image) {
    display: none;
}
.deferred-media__poster-button.motion-reduce {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
    z-index: 1;
    padding: 10px;
    background: linear-gradient(to left, var(--blue) 50%, var(--second-color) ) border-box;
    border-radius: 0px 10px;
}
.deferred-media__poster-button.motion-reduce svg {
    fill: var(--black);
}
.deferred-media:not([loaded]) template {
    z-index: -1;
}
/************** Common banner section css *************/
.common-banner-section {
    padding: 70px 0;
    background: var(--black);
    color: var(--white);
    background-position: 50% 50%;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
}  
.common-banner-content .back-btn {
    margin-bottom: 26px;
} 
.common-banner-content .section-title h2 span {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}
.common-banner-content .section-title {
    margin-bottom: 12px;
} 
.common-banner-content .back-btn {
    margin-bottom: 26px;
}
.back-btn span {
    width: 34px;
    height: 34px;
    display: flex;
    vertical-align: middle;
    border: 1px solid;
    border-radius: 100%;
    text-align: center;
    padding: 4px 0;
    margin-right: 10px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.back-btn span svg path{
    fill: var(--black);
}
.back-btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
} 
/*********** RPODUCT LISTING PAGE CSS  ***********/  
.product-heading-row .row {
    align-items: center; 
    padding: 50px 0 20px;
}
.product-filter-body {
    position: relative; 
    padding-bottom: 30px;
} 
.product-filter-column .product-filter-body:before {
    content: '';
    position: absolute;
    left: -50vw;
    width: 50vw;
    height: 100%; 
}  
.filter-select-box {
    min-width: 160px;
}
.filter-title .filter-ic{
    display: none;
}
.product-heading-row .sort-lbl {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}  
.product-heading-row .nice-select {
    border: 0;
    color: var(--black);
    width: 170px; 
    padding: 0 10px;
}
.product-heading-row .nice-select:after { 
    right: 3px;
}
.produdt-filter-cat li a {
    font-weight: 500;
}
.produdt-filter-cat li:not(:last-of-type) {
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
}
.produdt-filter-cat li:not(:last-of-type):after {
    content: '/';
    position: absolute;
    right: -1px;
}
.acnav-list {
    display: none;
    padding: 0 0 10px 0;
}
.product-cat-widget .acnav-list {
    padding: 0 0 10px 10px;
}
.product-widget .acnav-label {
    display: block;
    position: relative;
    font-weight: 600;
}
.product-widget>.pro-itm>.acnav-label {
    font-weight: 600;
    padding: 12px 0;
    text-transform: uppercase;
}
.product-widget .acnav-list li a {
    text-transform: capitalize;
}
.product-widget .acnav-list li:not(:last-of-type) {
    margin-bottom: 8px;
}
.pro-itm-inner>.filter-listing>ul>li>.acnav-list {
    padding: 10px 0 10px 10px;
}
.product-widget .acnav-label:before {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translate(0%, -50%);
    height: 2px;
    width: 10px;
    background: var(--black);
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
}
.product-widget .acnav-label:after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translate(0%, -50%);
    height: 10px;
    width: 2px;
    background: var(--black);
    transition: ease-in-out all 0.5s;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    -webkit-transition: ease-in-out all 0.5s;
    -moz-transition: ease-in-out all 0.5s;
    -ms-transition: ease-in-out all 0.5s;
    -o-transition: ease-in-out all 0.5s;
}
.product-widget .is-open>.acnav-label:after {
    opacity: 0;
} 
.product-widget:not(:last-of-type){
    border-bottom: 1px solid #E2E2E2;
}
.product-widget {  
    padding: 10px 0;
} 
.product-filter-right-column  .product-card { 
    margin-bottom: 30px;
}
.product-filter-right-column .product-card-inner .product-title{
      display: -webkit-box;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.text-checkbox .checkbox {
    margin: 0;
    float: left;
    padding-right: 9px;
    padding-bottom: 10px;
}
.text-checkbox .checkbox input[type=checkbox] {
    display: none;
}
.text-checkbox .checkbox input[type=checkbox]+.checkbox-label {
    content: "";
    display: inline-block;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    width: auto;
    position: relative;
    font-weight: 600;
    letter-spacing: 0px;
    top: 0;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
    font-size: 13px;
    border-radius: 47px;
    padding: 11px 19px;
    text-transform: lowercase;
    -webkit-border-radius: 47px;
    -moz-border-radius: 47px;
    -ms-border-radius: 47px;
    -o-border-radius: 47px;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
}
.text-checkbox .checkbox input[type=checkbox]:checked+.checkbox-label {
    background-color: var(--theme-color);
    color: var(--white);
} 
.delete-all {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    margin: 10px 0 0;
}
.delete-all svg {
    height: 12px;
    margin-right: 5px;
    width: 12px;
}
.delete-all svg  path{
    fill: var(--second-color);
}
.product-tag-widget ul li a {
    padding: 10px 12px;
    background: transparent;
    color: var(--theme-color);
    font-size: 12px;
    line-height: 1;
    border: 1px solid var(--theme-color);
}
.product-tag-widget ul li a:hover,.product-tag-widget ul li.active a {
    background: var(--theme-color);
    color: var(--white);
}
.product-tag-widget ul li:not(:last-of-type) {
    margin-right: 5px;
}
.product-tag-widget ul li {
    display: inline-block;
}
#range-slider {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 23px;
}
.ui-slider-horizontal .ui-slider-range {
    background-color: var(--second-color);
    height: 3px !important;
    top: -1px !important;
    border-radius: 0 !important;
}
.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-active,.ui-widget-content .ui-state-active,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus {
    background: var(--theme-color) !important;
    border: 1px solid var(--second-color) !important;
}
.ui-widget-content {
    background: #dddddd !important;
    border: none !important;
    border-radius: 0 !important;
    height: 1px !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}
.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active {
    font-weight: normal;
    height: 11px !important;
    width: 11px !important;
    top: -5px !important;
    margin-left: 0 !important;
    background: #dddddd; 
    border: 2px solid var(--theme-color) !important;
    border-radius: 10px;
    z-index: 1;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.colour-col:not(:last-of-type) {
    padding: 0 15px 0 0;
}
.price-select {
    margin-left: -5px;
    margin-right: -5px;
}
.select-col p {
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
}
.select-col {
    width: 100%;
    max-width: 50%;
    padding: 0 5px;
}
.sorting-select {
    min-width: 125px;
}
.sorting-select select {
    padding: 10px 15px 9px;
    color: var(--black);
}
.product-price-widget .acnav-list {
    padding: 0 20px 10px 0;
}
.colors-checkbox label {
    width: 100%;
}
.custom-checkbox {
    flex-shrink: 0;
}
.custom-checkbox,.colors-checkbox label {
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    position: relative;
    text-align: left;
}
.custom-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    position: absolute;
    opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    left: 0;
}
.custom-checkbox input[type="checkbox"]+.color,.custom-checkbox input[type="radio"]+.color {
    margin-right: 3px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    width: 0.9375rem;
    height: 0.9375rem;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.color,.custom-checkbox input[type="checkbox"]+span.color {
    display: inline-block;
    margin-right: 10px;
    border: 1px solid rgba(0, 0, 0, .05);
    cursor: pointer;
    background-size: contain;
    width: 1.25rem;
    height: 1.25rem;
    -moz-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    -o-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    -ms-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
}
.custom-checkbox input[type="checkbox"]:checked+span.color {
    border: 2px solid var(--theme-color);
}
.custom-checkbox input[type="checkbox"]:checked+span.color:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    width: 5px;
    height: 9px;
    border: solid var(--theme-color);
    border-width: 0px 1px 1px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.color-name {
    display: flex;
    flex: 1;
    justify-content: space-between;
    padding-right: 10px;
    font-size: 13px;
    font-weight: 500;
}
.product-widget .acnav-list .colors-checkbox {
    margin-top: 8px;
} 
.product-filter-right-column .row {
    margin: 0 -15px 0px;
}
.product-listing-section {
    color: var(--black);
}
.product-filter-right-column .theme-colored-card {
    padding: 0 10px;
    margin-bottom: 20px;
} 
.theme-colored-card .product-card-inner{
    color: var(--theme-color);
    background: rgba(106, 89, 61, 0.13);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
} 
.theme-colored-card .product-card-inner:hover {
    background: rgb(78 56 20 / 51%);
}
.theme-colored-card .link-btn:before{
    background-color: var(--theme-color);
}
.theme-colored-card .wish-btn svg path {
    fill: var(--theme-color);
}
.prod-listing-cat {
    color: var(--theme-color);
}
/************************  CART PAGE CSS **********************/
.cart-page-section {
    padding-top: 40px;
}
.cart-page-section .back-btn span svg path {
    fill: var(--second-color);
}
.cart-page-section .section-title {
    margin-bottom: 50px;
}
.cart-page-section .section-title h2 {
    margin-top: 20px;
}
.cart-page-section .section-title h2 span {
    font-size: 18px;
} 
.product-option {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-top: 10px;
}
.product-option dt {
    font-weight: 500;
}
.product-option dd {
    margin-left: 5px;
    font-weight: 400;
}
.remove-btn {
    display: inline-block;
    height: 18px;
    width: 18px;
    vertical-align: top;
    margin-left: 8px;
}
.remove-btn svg path {
    fill: red;
}
.pro-img-cart {
    max-width: 100px;
}
.cart-summery {
    border: 1px solid var(--border-color);
    padding: 20px;
}
.cart-summery ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.cart-summery ul li span:last-child {
    font-weight: 600;
}
.cart-summery .btn {
    padding: 15px 10px;
    display: block;
    width: 100%;
    margin-top: 20px;
    text-transform: capitalize;
}
/****  TABLE CSS ****/
table {
    border: 0;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: auto;
}
table tr {
    padding: 20px 0 0;
    border-bottom: 1px solid var(--border-color);
    display: block;
}
table tr:last-of-type {
    border-bottom: 0;
}
table tr th,table tr td {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    font-weight: 500;
}
table tr th {
    padding-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    text-transform: uppercase;
}
table tr th:first-child,table tr td:first-child {
    padding-left: 0;
}
table tr td:first-child a {
    vertical-align: middle;
}
table tr td {
    display: block;
    text-align: center;
    padding: 0 0 20px;
}
.cart-tble tr td{
    vertical-align: middle;
}
@media (min-width: 992px) {
    .cart-tble tr th:first-child,.cart-tble tr td:first-child {
        width: 90px;
    }
    .cart-tble tr th:nth-child(2),.cart-tble tr td:nth-child(2) {
        width: 233px;
    }
    .cart-tble tr th:nth-child(4),.cart-tble tr td:nth-child(4) {
        width: 116px;
        padding-right: 9px;
    }
}
@media (max-width: 767px) {
    table tr td::before {
        content: attr(data-label);
        display: block;
        text-align: center;
        padding-bottom: 10px;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 14px;
    }
    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
        display: none;
    }
    .product-option {
        justify-content: center;
    }
    table .qty-spinner {
        justify-content: center;
        margin: 0 auto;
    }
    .remove-btn {
        height: 14px;
        width: 14px;
    }
}
@media (min-width: 768px) {
    table tr:first-child {
        border-top: none;
    }
    table tr {
        padding: 0;
        display: table-row;
    }
    table tr td {
        padding: 20px 10px 20px;
        display: table-cell;
        text-align: left;
    }
    table tr th:last-child,table tr td:last-child {
        text-align: right;
        padding-right: 0;
    }
    table tr th:nth-child(5),table tr td:nth-child(5) {
        text-align: right;
    }
}
/****************** ABOUT PAGE CSS  ******************/
.row-reverse {
    flex-direction: row-reverse;
}
.about-our-shop-section .row {
    margin-top: 50px;
}
.abt-shp-column-right img {
    width: 100%;
} 
.aboutpage-btm-sec .about-us-boxs {
    padding: 25px 18px;
    border: 1px solid var(--blue);
    position: relative;
}
.aboutpage-btm-sec .section-title {
    max-width: 900px;
}
.aboutpage-btm-sec .section-title p {
    margin-top: 24px;  
}
.aboutpage-btm-sec .section-title { 
    margin: 0 auto 50px;
}  
.aboutpage-btm-sec .about-us-boxs img {
    position: absolute;
    top: 15px;
    right: 15px;
}  
.aboutpage-btm-sec .about-us-boxs h3 {
    margin-bottom: 15px;
}
/******************  CMS PAGES CSS *****************/
.cms-page p:not(:last-of-type) {
    margin-bottom: 25px;
}
.cms-page h3, .cms-page h4, .cms-page h5 {
    margin: 20px 0;
}
.cms-page p a {
    display: inline-block;
    font-weight: 600;
    text-decoration: underline;
}
.cms-page ul {
    margin: 20px;
}
.cms-page ul li {
    list-style: disc;
}
.cms-page ul li:not(:last-of-type) {
    margin-bottom: 9px;
}
/****************** CONTACT PAGE CSS ******************/
.contact-right-column {
    margin-top: -270px;
}
.contact-form {
    padding: 24px 20px;
    border: 2px solid var(--second-color); 
    background: var(--white);
    position: relative;
    z-index: 1; 
}
.submit-btn {
    width: 100%;
    padding: 14px 10px;
    text-transform: capitalize;
    align-items: center;
}
.contact-right-inner {
    position: relative;
    z-index: 1;
}
.contact-right-inner h2 {
    color:var(--white);
} 
.contact-left-inner ul li {
    margin-bottom: 30px;
}
.contact-left-inner ul li h4 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 14px;
}
.contact-left-inner ul li p {
    margin-bottom: 0;
    letter-spacing: 0;
    font-size: 20px;
    font-weight: 500;
    word-break: break-all;
}
.contact-left-inner ul li .address {
    font-size: 12px;
    line-height: 26px;
}
/****************** FAQS PAGE CSS ***************/
.faq-search-form {
    max-width: 400px;
    margin: 25px 0;
}
.faq-page{
    padding-bottom: 40px;
}
.faqs-container.row {
    margin-bottom: 40px;
}
.set {
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.set .acnav-label {
    padding: 15px 35px 15px 15px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}
.set .acnav-list {
    padding: 15px;
    border-top: 1px solid var(--border-color);
}
.set .acnav-list p {
    font-size: 14px;
}
.faq-search-form .input-wrapper input {
    border-color: var(--white);
    color: var(--theme-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.faq-search-form .input-wrapper input::placeholder{
    color: var(--theme-color);
}
.faq-search-form .input-wrapper {
    position: relative;
}
.faq-search-form .input-wrapper .btn-subscibe {
    background-color: var(--black);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2px;
    font-family: var(--first-font);
    font-weight: 600;
    height: 45px;
    width: 45px;
    background: var(--second-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.faq-search-form .input-wrapper .btn-subscibe svg, .faq-search-form .input-wrapper .btn-subscibe svg path {
    fill: var(--white);
}
/*******************  BLOG PAGE CSS *****************/
.blog-page-banner {
    color: var(--white);
}
.blog-page-banner .section-title {
    margin-bottom: 30px;
    color: var(--white);
}
.blog-grid-section .section-title .subtitle {
    font-weight: 500;
    letter-spacing: 0;
    font-size: 14px;
    margin-bottom: 15px;
}
.blog-cat {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.blog-cat li:not(:last-of-type) {
    margin-right: 10px;
}
.blog-cat li   {
    padding: 10px 20px;
    color: var(--white);
    background: transparent;
    border-radius: 50px;
    font-size: 13px;
    line-height: 1;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.blog-cat li.active {
    background: var(--second-color);
    color: var(--white);
}
.blog-grid .blog-widget-inner {
    border-color: var(--second-color);
}
.blog-grid .blog-caption {
    border-top: 1px solid var(--second-color);
}
.blog-grid .blog-btn {
    background: var(--second-color);
}
.blog-grid .blog-btn svg {
    fill: var(--white);
}
.blog-grid .blog-widget {
    margin-bottom: 30px;
}
.blog-head-row {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}
.blog-col-left ul li a {
    padding: 10px 15px;
    font-size: 14px;
    display: block;
    position: relative;
    opacity: 0.5;
    font-weight: 600;
}
.blog-col-left ul li a:before {
    content: '';
    height: 2px;
    width: 100%;
    bottom: -1px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}
.blog-col-left ul li a:hover:before,.blog-col-left ul li.active a:before {
    opacity: 1;
}
.blog-col-left ul li a:hover,.blog-col-left ul li.active a {
    opacity: 1;
}
.blog-col-right .select-lbl {
    display: block;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
}
.blog-col-left {
    flex: 1;
}
.blog-col-right .nice-select {
    flex: 1;
    border: none;
    padding: 10px 20px 10px 15px;
    font-size: 12px;
}
.blog-col-right .nice-select:after {
    right: 0;
}
.blog-grid-section .section-title h2 b {
    font-style: normal;
}  
.blog-page-banner .common-banner-content p {
    margin-bottom: 30px;
}
.articlerightbar .blog-itm-card,.blog-grid-row .blog-card-inner {
    color: var(--black);
}
.articlerightbar .blog-card-inner  .product-title, .blog-grid-row .blog-card-inner  .product-title {
    color: var(--black);
}
.blog-grid-row .blog-itm-card {
    margin-bottom: 30px;
}
.articlerightbar  .blog-card-inner .read-more-btn ,.blog-grid-row .blog-card-inner .read-more-btn {
    margin-top: 20px;
}
.articlerightbar .blog-card-inner p,.blog-grid-row .blog-card-inner p{
    color: var(--theme-color);
}
/*************  ARTICLE PAGE CSS **************/
.article-banner .common-banner-content .back-btn {
    margin: 0 auto 26px auto;
    justify-content: center;
    display: flex;
    max-width: fit-content;
}
.common-banner-content .back-btn span svg path {
    fill: var(--white);
}
.article-banner .blog-cat {
    margin: 40px 0;
}
.post-lbl {
    margin-left: 50px;
}
.article-section .abt-user-img {
    border-color: var(--second-color);
}
.article-section .section-title h2 {
    max-width: 550px;
    margin: 30px 0 0;
    margin: 30px 0 0;
    text-transform: unset;
}
.aticleleftbar h5 {
    margin:0 0 20px 0;
    font-weight: normal;
    line-height: 1.5;
    text-transform: unset;
}
.related-blogs {
    background: transparent;
    color: var(--second-color);
}
.related-blogs .section-title{
    color: var(--second-color);
    border-top: 1px solid var(--border-color);
}
.aticleleftbar p {
    margin-bottom: 25px;
}
.aticleleftbar img {
    margin-bottom: 15px;
}
.art-auther {
    margin-bottom: 50px;
    font-size: 14px;
}
.quote-box {
    position: relative;
    padding: 40px 0 40px 60px;
}
.quote-box h3 {
    font-weight: 500;
    text-transform: unset;
    font-size: 18px;
    line-height: 1.3;
}
.quote-box svg {
    position: absolute;
    left: 0;
}
.quote-box svg path {
    fill: var(--second-color);
}
.article-socials li a {
    height: 28px;
    width: 28px;
    background: var(--second-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.article-socials li a svg { 
    height: 12px;
    width: 12px;
}
.article-socials li a svg path{
    fill: var(--white);
}
.article-socials li:not(:last-of-type) {
    margin-right: 10px;
}
.article-socials li span {
    display: inline-block;
    font-size: 18px;
    margin-right: 10px;
}
.blog-media {
    position: relative;
}
.about-pro h6 span {
    display: block;
    font-style: italic;
    font-weight: 400;
}  
.about-pro h6 {
    margin-right: 20px; 
    font-weight: 700;
}
.abt-user-img {
    border: 1px solid var(--white);
    border-radius: 72.2951px;
    width: 60px;
    height: 60px;
    padding: 5px;
    margin-right: 15px;
    -webkit-border-radius: 72.2951px;
    -moz-border-radius: 72.2951px;
    -ms-border-radius: 72.2951px;
    -o-border-radius: 72.2951px;
}
.abt-user-img img { 
    width: 100%;
    height: 100%;
}
.about-user h6 span {
    display: inline-block;
    font-weight: 700;
}
.about-user h6 {
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
}
.aticleleftbar img,.aticleleftbar a.blog-post__full-image {
    width: 100%;
}
.articlerightbar .blog-itm{ 
    padding: 0;
}
.articlerightbar .blog-itm-card:not(:last-of-type) {
    margin-bottom: 30px;
}
.related-blogs-section .blog-grid-row{
    margin: 0 -10px;
}
.related-blogs-section .blog-grid-row .blog-itm-card {
    margin-bottom: 0;
    padding: 0 10px;
}
/*****************  REGISTER PAGE CSS ***************/
.back-toshop {
    margin-bottom: 20px;
}
.register-page .back-toshop {
    margin-bottom:15px;
}
.form-wrapper h4 {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 15px;
}
.form-wrapper .form-heading h4 {
    margin-bottom: 0;
}
.form-wrapper h4 b {
    font-family: var(--first-font);
    font-style: normal;
    font-weight: 600;
}
.form-wrapper form {
    border: 1px solid var(--border-color);
}
.form-container {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
.form-footer {
    padding-top: 30px;
}
.form-container:last-child {
    border-bottom: 0;
}
.register-page .section-title {
    margin-bottom: 50px;
}
/****************  LOGIN PAGE CSS ***************/
.login-form .submit-btn {
    max-width: 170px;
    margin: 0 0 0 15px; 
}
.login-form .form-footer {
    padding: 0;
}
.forgot-pass {
    color: red;
    text-decoration: underline;
    font-size: 14px;
}
.login-form p {
    margin-bottom: 15px;
} 
.reg-lbl {
    font-size: 14px;
    margin-right: 10px;
}
.login-form .form-heading h4 {
    margin-bottom: 0;
    font-weight: 600;
}
/**************** MY ACCOUNT PAGE CSS ******************/
.my-acc-rightbar h2 {
    font:var(--h3);
}
.my-account-page .btn-secondary svg path { 
    fill: var(--second-color);
}
.my-account-page .btn-secondary:hover svg path { 
    fill: var(--white);
}
.my-acc-leftbar {
    border: 1px solid var(--border-color);
}
.my-acc-leftbar li:not(:last-of-type) {
    border-bottom: 1px solid var(--border-color);
}
.account-list li a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
    opacity: 0.5;
}
.account-list li a svg {
    flex-shrink: 0;
    margin-right: 10px;
}
.account-list li a span {
    flex: 1;
}
.account-list li a span b {
    display: block;
}
.my-acc-leftbar li a:hover,.my-acc-leftbar li.active a {
    opacity: 1;
}
.my-acc-leftbar li a svg path {
    fill: var(--theme-color);
}
.my-acc-leftbar h4 {
    padding: 15px 15px 5px;
}
.my-acc-head {
    margin-bottom: 50px;
}
.my-acc-rightbar .account-list li {
    display: flex;
    margin-bottom: 20px;
}
.my-acc-rightbar .account-list li a {
    border: 1px solid var(--theme-color);
    width: 100%;
}
.my-acc-rightbar .account-list li.active a svg path,.my-acc-rightbar .account-list li a:hover svg path {
    fill: var(--white);
}
.my-acc-rightbar .account-list li.active a,.my-acc-rightbar .account-list li a:hover {
    opacity: 1;
    color: var(--white);
    background: var(--theme-color);
}
.account-list li.logout-link a svg path {
    fill: red;
}
.account-list li.logout-link a {
    opacity: 1;
    color: red;
}
.my-acc-right-content {
    padding-bottom: 50px;
}
#scroll {
    position: sticky;
    top: 100px;
    left: 0;
    z-index: 2;
}
.acc-back-btn-wrp button svg {
    width: 16px;
    fill: var(--white);
}
.acc-back-btn-wrp .back-btn-acc svg {
    margin-left: 0;
}
.acc-back-btn-wrp button {
    text-transform: capitalize;
    font-size: 14px;
}
.back-btn-acc {
    background: transparent;
    margin-right: 12px;
}
.back-btn-acc svg {
    transform: scale(-1);
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
    margin: 0 10px 0 0;
}
/*****************  CHECKOUT PAGE CSS ***************/
.cart__checkout-button {
   margin-bottom: 10px; 
}
.set .acnav-label:after {
    content: '';
    position: absolute;
    height: 12px;
    width: 12px;
    background-image: url(dropdown.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 50% 50%;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}
.set.is-open .acnav-label::after {
    transform: translateY(-50%) rotate(180deg);
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
}
.btn-flex {
    margin-top: 20px;
}
.btn-flex a:not(:last-of-type) {
    margin-right: 14px;
}
/*===========================SHF-CSS=======================*/
.input-wrapper {
  position: relative;
}
button {
  border: none;
  box-shadow: none;
  cursor: pointer;
}
.no-js:not(html) {
  display: none !important;
}
.search-form-wrapper form {
  position: relative;
}
.search-popup .close-search {
  background: none;
  border: none;
  padding: 0;
}
#predictive-search-results ins {
  font-size: 15px;
}
.addresses h4 {
    margin: 0 0 20px;
}
.add-default .acc-details {
    margin: 0 0 20px;
}
.addresses select {
  background: url(dropdown.png) no-repeat;
  background-size: 14px;
  background-position: calc(100% - 15px) 50%;
  appearance: none;
}
.main-btn {
  display: flex;
  width: 100%;
  column-gap: 20px;
  flex-wrap: wrap;
}
.product-page-first-section .variant-webi .size-select {
  border: none;
}
.product-page-first-section .variant-webi .size-select span {
  margin: 0 10px 0 0;
}
.product-form__input input {
  display: none;
}
.variant-webi {
    margin: 0 0 20px;
    gap: 10px;
    align-items: center;
}
.variant-webi .pro-labl {
    margin: 0;
}
.variant-webi .size-select {
    border: none;
}
.variant-webi label.color-swatch {
    border: 1px solid #aaa;
    color: #aaa;
  cursor: pointer;
}
.product-content-center input[type=radio]:checked+label{
  border-color:#fff;
  color:#fff;
}
label.color-swatch {
  border: 1px solid #788c6d;
  padding: 5px;
  margin: 0 5px 0px 0;
  display: inline-block;
  font-size: 13px;
}
.pdp-right-column-inner .review-wrap {
  justify-content: space-between;
}
.pdp-right-column-inner .product-write-review {
  column-gap: 10px;
}
.cart-button span {
  display: none;
}
.grecaptcha-badge {
  z-index: 2;
}
.shopify-challenge__container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.add-default .acc-back-btn-wrp.mainbtn .continue-btn {
  margin-right: 10px;
}
.edit-spacer {
  margin: 30px 0 0;
}
.product-widget.disclosure-has-popup[open] .acnav-label:after {
  opacity: 0;
}
/*========== SHF compare page ============*/
.compare-val-prod .price {
    flex-direction: row;
    gap: 10px;
  margin: 0 0 15px;
}
.compare-prod-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--blue);
    padding: 5px 10px;
    border-radius: 0 8px;
    color: var(--white);
}
.pro-compare-scroll {
    padding: 0 0 15px;
}
.pro_btn_wrapper .pro-compare.active svg path {
    fill: #ff0000;
}
/* ========SHF stickyaddtocart CSS===== */
.products_add-cart-sticky{
  display: none;
  z-index: 9;
  position: -webkit-sticky;
  position: fixed;
  bottom: 0;
  background-color: #f2e6d5;
  font-size: 20px;
  width: 100%;
  max-height: 76px;
  padding: 10px 50px;
}
.products_add-cart-sticky.show-btn{
  display: block;
}
.products_add-cart-sticky .sticky-image{
  height: 60px;
}
.products_add-cart-sticky .sticky-pro-inn {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
/* ========SHF quickview CSS===== */
.quickview-popup{
  display: none;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 1100px;
  max-height: calc(100% - 60px);
  width: 95%;
  margin: 0 auto;
  text-align: center;
  padding: 0px 30px;
  border: 1px solid var(--second-color);
  background-color: var(--black);
  z-index: 5;
  -webkit-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  overflow: auto;
  border-radius: 0 20px;
}
.quick-product.product-main-section .product-thumb-slider .slick-arrow.slick-next {
  top:83%;
}
.quick-product.product-main-section .product-thumb-slider .slick-arrow.slick-prev{
      top: calc(80% + 50px);
}
.quick-product.product-main-section .product-thumb-slider .slick-list{
  height:300px !important;
}
.quick-product.product-main-section{
  padding: 70px 0px 70px 0px;
}
.quick-product .product-left-inner .common-heading h2{
  font-size:34px;
  text-align:start;
}
.quick-product .product-left-inner .common-heading p{
  text-align:start;
}
.quick-product .product-left-inner .pro-labl{
  text-align:start;
}
.quickview-close{
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 3px;
    right: 12px;
    z-index: 5;
}
.img-prew-icon{
  display:none !important;
}
/***** SHF LANGUAGE CSS *****/
.lang-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  position:relative;
  margin-right: 20px;
  margin-left: 5px;
}
.lang-dropdown svg {
    width: 23px;
    height: 23px;
}
.home-layout-one .lang-dropdown svg path {
    fill: var(--black);
}
.lang-dropdown .nice-select {
  border: 0;
  font-family: var(--first-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 0;
  background: none;
}
.header-style-one .menu-right .disclosure__list-wrapper {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 140px;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  margin: 22px 0 0;
  opacity: 1;
  pointer-events: auto;
  background-color: var(--white);
  transition: all .4s ease-in-out 0s;
  -o-transition: all .4s ease-in-out 0s;
  -webkit-transition: all .4s ease-in-out 0s;
  -moz-transition: all .4s ease-in-out 0s;
  -ms-transition: all .4s ease-in-out 0s;
  transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -o-transform: scaleY(1);
  padding: 15px;
}
.header-style-one .menu-right .disclosure__list-wrapper.hide{
    transform: scaleY(0);
    -ms-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -moz-transform: scaleY(0);
    -o-transform: scaleY(0);
}
.header-style-one .menu-right .disclosure__list-wrapper .disclosure__item {
    margin: 0;
}
.header-style-one .menu-right .disclosure__list-wrapper .disclosure__item a{
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 0 0 10px;
  color: var(--theme-color) !important;
  width: 100%;
}
.header-style-one .menu-right .disclosure__list-wrapper .disclosure__item:last-child a{
  padding: 0px;
}
.header-style-one .menu-right .disclosure__list-wrapper .disclosure__item a.disclosure__link--active{
  font-weight: bold;
}
/*------------------- SHF countdown ---------------------------*/
.flip-countdown.simple-countdown {
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 5px 5px;
    justify-content: center;
    border-radius: 0px 10px 0px 10px;
    gap: 10px;
}
.flip-countdown.simple-countdown svg {
    width: 18px;
    height: 18px;
}
.countdown-container.flip-countdown.countdown-block span {
    margin: 0 5px 0 0;
    color: var(--white);
}
.countdown-container.flip-countdown.countdown-block span.dots {
    margin: 0;
}
.pdp-timer .flip-countdown.simple-countdown {
  position: static;
  margin: 12px 0 0;
  display: inline-flex;
  width: 350px;
}
/***** SHF - SIZE POPUP *****/
.size-popup{
    background: rgba(223, 218, 205, 0.90);
    display: table;
}
.size-close-btn{
    text-align: end;
}
.size-close-btn svg{
    margin-left: 0px;
    margin-right: 5px;
}
.size-popup table tr td{
    padding: 10px;
}
.size-table-wrapper{
    margin-top: 200px;
}
.size-popup .size-form{
    background-color: var(--white);
    padding: 20PX;
    max-height: 80vh;
    height: 100%;
    overflow: auto;
    border-radius: 10PX;
    -webkit-border-radius: 10PX;
    -moz-border-radius: 10PX;
    -ms-border-radius: 10PX;
    -o-border-radius: 10PX;
}
.size-popup .size-form H4{
  text-align:center;
    margin-bottom: 20px;
}
.size-popup .btn-white{
    border-radius: 10px;
    margin-bottom: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.size-btn{
  gap: 10px;
}
.see-size .size-btn svg {
    width: 16px;
    height: 16px;
}
.see-size .size-btn svg path {
    fill: var(--theme-color);
}
/*------------------- SHF msg ---------------------------*/
.newsletter-form__message {
  position: absolute;
  top: 100%;
  bottom: auto;
  left: 0;
  right: 0;
  display: flex;
  column-gap: 10px;
  margin: 10px 0 0;
  font: var(--common-text);
}
.newsletter-form__message--success {
  color: #0a942a;
  border-color: #0a942a;
}
.newsletter-form__message--error {
  color: #dc0000;
}
.form-error .form__message,
.form-error .errors {
  display: flex;
  column-gap: 10px;
  color: #ff0000;
  align-items: center;
  margin: 0 0 10px;
}
.form-message-success {
  display: flex;
  column-gap: 10px;
  margin: 0 0 10px;
  color: #428445;
  outline: none;
}
/*------------------- SHF dropdown ---------------------------*/
.profile-header {
  position: relative;
}
.profile-header .menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin: 25px 0 0;
  background-color: var(--white) !important;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-box-shadow: 0px 10px 40px rgb(0 0 0 / 5%);
  box-shadow: 0 10px 40px #0000000d;
  opacity: 0;
  visibility: hidden;
  min-width: 150px;
  z-index: 2;
  padding: 15px;
  border-top: 1px solid var(--border-color);
  -o-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}
li.profile-header:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.profile-header .menu-dropdown li {
  padding: 0 !important;
  max-width: 100%;
  margin: 0 0 5px !important;
  justify-content: left;
}
.profile-header .menu-dropdown li:last-child {
  margin: 0 !important;
}
/****** SHF CART DRAWER CSS ********/
.header-style-one .menu-right .cartDrawer {
  padding: 0px;
}
.mini-cart-footer .js-contents {
  display: none;
}
.cart-page-section .cart__warnings.is-empty,
.cartDrawer .cart__warnings,
.cartDrawer .cart__empty-text,
.cartDrawer.is-empty .cart__contents,
.cartDrawer.is-empty .cart__footer,
.cartDrawer cart-items.is-empty .title-wrapper-with-link,
#main-cart-footer.is-empty {
  display: none;
}
.cartDrawer.is-empty .cart__empty-text,
.cartDrawer.is-empty .cart__warnings {
  display: block;
  color: var(--black);
  margin: 15px 0 0;
}
.cartDrawer.is-empty .cart__warnings {
  margin: 20% 0 0;
  text-align: center;
}
.cartDrawer.is-empty .cart__warnings svg {
  margin: auto;
}
.subscribe-overlay {
  transition: all ease-in-out 0.4s;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 1;
}
.subscribe-overlay.open {
  opacity: 1;
  visibility: visible;
}
.header-style-one .menu-right .cartDrawer svg#icon-cart-emty,
.header-style-one .cartDrawer svg#icon-cart-emty {
  width: 55px;
  height: auto;
  fill: currentColor;
  margin: 0 auto 30px auto;
}
.header-style-one .menu-right li a.mini-cart-title {
  display: block;
  text-align: left;
}
.header-style-one .menu-right li a.closecart svg path {
  fill: var(--white) !important;
}
.cartOpen header:after,.active-menu header:after,.popup-toggle header:after,.open header:after,.mobile-open header:after,.quick-open header:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.4);
}
.mobile-menu-bar .fea-coll-img a img {
  transform: rotateZ(20deg);
  -webkit-transform: rotateZ(20deg);
  -moz-transform: rotateZ(20deg);
  -ms-transform: rotateZ(20deg);
  -o-transform: rotateZ(20deg);
}
.mobile-menu-wrapper .mobile-menu-bar > ul > li:not(.has-children) a svg,
.product-card .product__media-item:not(:first-child) {
  display: none;
}
.wishlist-action a {
  display: inline-block;
}
.wishremove.loadtowish .loadtowish {
  display: block;
}
.wishremove.wishactive .addtowish,
.wishremove .loadtowish,
.wishremove .wishirmv,
a.go-to-wishlist,
.wishremove.loadtowish .addtowish,
.wishremove.wishadding .wishirmv,
.wishremove.wishadding + a.go-to-wishlist {
  display: none;
}
.wishremove.wishactive .wishirmv,
.wishremove.wishactive + a.go-to-wishlist {
  display: block;
}
.wishremove.wishactive.wishadding .wishirmv,
.wishremove.wishactive.wishadding + a.go-to-wishlist {
  display: block;
}
.wishremove.loadtowish.wishadding .wishirmv,
.wishremove.loadtowish.wishadding + a.go-to-wishlist {
  display: none;
}
.product-card .wishlist.wishremove:not(.wishactive) + a,
.product-left-inner .wishbtn.wishremove:not(.wishactive) + a {
  display: none;
}
.product-left-inner .wishlist-btn {
    display: flex;
    gap: 10px;
}
.product-card .wishlist.wishremove.wishactive,
.product-left-inner .wishbtn.wishremove.wishactive {
  display: none;
}
.product-card .wishlist-wrapper .wishlist {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--third-color);
}
.product-card .wishlist .wishirmv svg path{
  fill: #ff0000 !important;
}
.size-variant-swatch,
.color-variant-swatch {
  border: none;
}
/*============SHF order =============*/
.order h2 {
    margin: 0 0 30px;
}
.order .add-details h4 ,.order .order-detail h4 {
  margin: 0 0 20px;
    background: linear-gradient(75deg,var(--blue) 0%,var(--second-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.order-detail {
    margin: 0 0 30px;
}
.order-detail > p {
    margin: 0 0 25px;
    font-weight: 600;
    font-size: 18px;
}
/*============SHF blog comment =============*/
.article-comment {
  border: 1px solid var(--border-color);
  padding: 15px;
  margin: 30px 0 0;
  border-radius: 0 20px 0 20px;
  -moz-border-radius: 0 20px 0 20px;
  -ms-border-radius: 0 20px 0 20px;
  -o-border-radius: 0 20px 0 20px;
}
#comments .errors {
  border: 1px solid #ff0000;
  padding: 15px;
  margin: 30px 0 0;
  border-radius: 0 20px 0 20px;
  -moz-border-radius: 0 20px 0 20px;
  -ms-border-radius: 0 20px 0 20px;
  -o-border-radius: 0 20px 0 20px;
}
#comments .errors li {
  color: #ff0000;
  margin: 0 0 5px;
}
#comments .errors li:last-child {
  margin: 0;
}
.article-comment h3 {
  margin: 0 0 20px;
}
.article-comment .grid-item p.desc {
    margin: 0 0 15px;
}
.article-comment .grid-item {
  margin: 0 0 15px;
}
.article-comment .grid-item input {
  padding: 12px 15px;
}
.article-comment .grid-item .btn {
  width: 100%;
}
.blog-grid-section .card-inner {
  border: 1px solid var(--border-color);
  margin: 0 0 30px;
  padding: 15px;
}
.blog-grid-section .card-inner > a {
  margin: 0 0 15px;
}
.product-sec .addtowish.wishlist-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-grid-section .card-inner h5,.blog-grid-section .card-inner .time,.blog-grid-section .card-inner p {
  margin: 0 0 12px;
  display: block;
}
/*=================SHF filter =============*/
.active-facets__button-inner,.active-facets__button-remove {
  font-size: 13px;
  line-height: 1;
  padding: 12px 20px;
  max-width: inherit;
}
/*=================SHF address page =============*/
#recover,#recover + .recover-password,#recover:target ~ .back-toshop,#recover:target ~ .section-title,#recover:target ~ .form-wrapper {
  display: none;
}
#recover:target + .recover-password,
#recover:target {
  display: block;
}
.acc-order-history {
  margin: 0 0 20px;
  text-align: center;
}
.acc-order-history h4,.account-details h4 {
  margin: 0 0 10px;
  background: linear-gradient(75deg,var(--blue) 0%,var(--second-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.acc-order-button {
  gap: 10px;
  margin: 20px 0 0;
}
.addresses [aria-expanded="false"] ~ div[id] {
  display: none;
}
.addresses [aria-expanded="true"] ~ div[id] {
  display: block;
  margin: 30px 0 0;
}
.rtn-to-acc {
  margin-bottom: 25px;
  text-align: center;
  width: 100%;
}
.newadd {
  text-align: center;
  margin: 0 0 40px;
}
.newadd .common-btn2 {
  display: inline-block;
}
.add-default {
  margin: 30px 0 0;
  padding: 20px;
  border: 1px solid var(--border-color);
}
.add-default .btn {
  padding: 10px 30px;
  margin: 0 10px 0 0;
}
.add-default .acc-back-btn-wrp .btn{
  margin:0;
}
.back-btn-acc svg {
  transform: scale(-1);
  -webkit-transform: scale(-1);
  -moz-transform: scale(-1);
  -ms-transform: scale(-1);
  -o-transform: scale(-1);
  margin: 0 6px 0 0;
}
.acc-back-btn-wrp button {
  text-transform: capitalize;
  font-size: 14px;
}
.back-btn-acc {
  background: transparent;
  /*   margin-right: 12px; */
}
.acc-back-btn-wrp button svg {
  width: 16px;
  margin-left: 6px;
}
.acc-back-btn-wrp .back-btn-acc svg {
  margin-left: 0;
}
.acc-back-btn-wrp button {
  text-transform: capitalize;
  font-size: 14px;
}
/*==================== SHF Cart Page ====================*/
.cart-item__error {
  display: flex;
  align-items: flex-start;
}
.cart-item__price-wrapper {
    display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
.remove-btn a {
  display: block;
}
.remove-btn a svg {
  height: 100%;
  width: 100%;
}
.cart-page-section .cart__warnings {
  text-align: center;
  border: 1px solid var(--border-color);
  padding: 30px 15px;
}
.cart-page-section .cart__warnings .section-title {
  margin: 0;
}
.cart-page-section .cart__warnings .common-btn2 {
  display: inline-block;
}
.cart-page-section .cart__warnings .section-title {
  margin: 0;
}
.cart-item__error-text:empty + svg {
  display: none;
}
cart-note.cart__note.field {
  margin: 0 0 30px;
  display: block;
}
cart-note.cart__note.field label {
  margin: 0 0 15px;
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
}
.cart__footer .cart__note #Cart-note {
  min-height: 100px;
  padding: 10px;
}
.cart__footer-wrapper .cart__blocks {
  border: 1px solid var(--border-color);
  padding: 30px 15px;
  text-align: center;
  border-radius: 0px 20px 0px 20px;
  -webkit-border-radius: 0px 20px 0px 20px;
    -moz-border-radius: 0px 20px 0px 20px;
    -ms-border-radius: 0px 20px 0px 20px;
    -o-border-radius: 0px 20px 0px 20px;
}
.cart__blocks .totals__subtotal {
  margin: 0 0 15px;
  line-height: 1;
  color: var(--theme-color);
}
.cart__footer ins {
  font-size: 20px;
}
.cart__blocks .totals__subtotal-value {
font: var(--h5);
    margin: 0 0 20px;
    background: linear-gradient(75deg, var(--blue) 0%, var(--second-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
small.tax-note.caption-large.rte {
  margin: 0 0 10px;
  display: block;
  font-size: 14px;
}
.facets__item {
  display: flex;
  flex: 1;
  justify-content: space-between;
  padding-right: 10px;
  font-size: 14px;
  font-weight: 500;
}
.product-widget .acnav-list .facets__item {
  margin-top: 8px;
}
.prorow-lbl-qntty {
  display: flex;
  align-items: center;
  margin: 0 0 30px;
}
.prorow-lbl-qntty .qty-spinner {
  margin: 0 0 0 10px;
  background: var(--black);
  border-color: #788c6d;
  box-shadow: none;
}
/*======================= SHF collection-list =====================*/
.card-wrapper {
  text-align: center;
  margin: 0 0 30px;
}
.card-wrapper .card-content {
    margin: 10px 0 0;
    display: block;
}
.card-wrapper .card-content .card-heading {
    margin: 0 0 10px;
}
/*======================= SHF buy-now-btn =====================*/
.buy-now-btn {
  margin: 20px 0 0;
}
button.shopify-payment-button__more-options.shopify-payment-button__button--hidden {
  display: none;
}
.shopify-challenge__button.btn {
  margin-top: 50px;
}
.shopify-challenge__container #g-recaptcha {
  margin-top: 20px;
}
.shopify-payment-button__button--unbranded {
  text-align: center;
  color: var(--white) !important;
  background: linear-gradient(75deg,var(--blue) 0%,var(--second-color) 100%) !important;
  padding: 9px 40px;
  outline: none;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  transition: all ease-in-out .3s;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  justify-content: center;
  appearance: none;
  border-radius: 0 20px;
  -webkit-border-radius: 0px 10px 0px 10px;
  -moz-border-radius: 0px 10px 0px 10px;
  -ms-border-radius: 0px 10px 0px 10px;
  -o-border-radius: 0px 10px 0px 10px;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -ms-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
}
.shopify-payment-button__button--unbranded:hover {
  background: transparent !important;
    color: var(--theme-color) !important;
    border: 1px solid var(--theme-color) !important;
}
.shopify-payment-button__button[disabled]{
  display: none;
}
/*======================= SHF product review =====================*/
.product-review {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  background: #ffffff;
  z-index: 5;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  max-height: calc(100vh - 200px);
  overflow: auto;
}
.product-review.open-model {
  opacity: 1;
  visibility: visible;
}
.product-review .spr-container {
  padding: 0;
  border: none;
}
.product-review .spr-form {
  display: none;
  border-color: #ccc;
  padding: 15px 0 0;
}
.spr-form-input-textarea {
  resize: vertical;
  font: var(--common-text);
}
.product-review .spr-summary-caption {
  float: left;
}
.product-review .review-close-icon {
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  position: absolute;
  right: 15px;
  top: 15px;
  justify-content: center;
  background: var(--second-color);
  z-index: 1;
  padding: 5px;
  cursor: pointer;
}
.product-review fieldset.spr-form-contact {
  margin: 15px 0 0;
}
.review-stars .product-write-review svg {
  margin: 0;
  width:12px;
  height: 12px;
}
.product-review .spr-form-label {
  font-size: 15px;
  line-height: 20px;
  float: left;
  width: 100%;
  text-align: left;
  margin: 0 0 10px;
}
.product-review
  input.spr-button.spr-button-primary.button.button-primary.btn.btn-primary {
  color: var(--white);
  background-color: var(--second-color);
  border: none;
  box-shadow: none;
  width: auto;
}
.product-detail-left .review-wrap {
  display: flex;
  align-items: center;
}
.product-detail-left .review-wrap .spr-badge {
  margin: 0 10px 0 0;
  border-right: 1px solid #ccc;
  padding: 0 10px 0 0;
}
.spr-form-message-success {
  width: auto;
  color: #0a942a;
  background-color: #ecfef0;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #0a942a;
  margin: 15px 0 0;
}
.product-detail-left .review-wrap .spr-badge-starrating .spr-icon {
  font-size: 80%;
  margin: 0 5px 0 0;
}
.product-detail-left .review-wrap .spr-badge-starrating .spr-icon-star-empty {
  color: #444;
}
.product-detail-left .review-wrap .product-write-review {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
/* new add css  */
.spr-summary-actions-newreview {
  text-decoration: underline !important;
}
.spr-form-message-success {
    padding: 0;
    margin: 10px 0 0;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 20px;
}
.product-form__error-message-wrapper{
  display: flex;
  color: #E90022;
  position: absolute;
  z-index: 1;
  background: yellow;
  padding: 10px;
  font-size: 12px;
  line-height: 1;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
}
/*=================shf - recommendations ================*/
.product-notification{
  background: linear-gradient(75deg, #0098ff4f 0%, #fff 100%);
  border: 1px solid var(--second-color);
  box-shadow: rgba(0, 0, 0, 0.09) 0px 0px 10px 0px;
  width: 350px;
  position: fixed;
  bottom: 10px;
  left: 30px;
  padding: 10px;
  border-radius: 0 10px 0 10px;
  z-index: 2;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  visibility: hidden;
  color: var(--black);
}
.product-notification.active {
  bottom: 30px;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}
.product-notification .product-suggest{
  display: flex;
  align-items: center;
  gap: 25px;
}
.product-notification .closeNotify {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}
.product-notification .closeNotify svg {
    width: 16px;
    height: 16px;
}
.product-suggest .product-image img{
  border-radius: 5px;
}
.product-notification .product-suggest .product-label {
    margin: 0 0 5px;
}
.product-notification .product-suggest .product-name {
    font: var(--h6);
    margin: 0 0 15px;
}
/* notify me */
.out-of-stock-form #notify-me-wrapper {
    display: none;
}
.cart-form {
    display: flex;
    gap: 15px;
}
/*--------------shf recently view product css--------------------*/
#recently-viewed-products {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
#recently-viewed-products .product {
  width: 25%;
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}
#recently-viewed-products .product .product-top-content a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
#recently-viewed-products .product .product-top-content, #recently-viewed-products .product .price{
  color: var(--black)
}
#recently-viewed-products .product .price{
  font-size: 16px;
}
.view-product-sec h2 {
    text-align: center;
    margin: 0 0 25px;
    color: var(--black);
}
/*===================== SHF search page ======================*/
input#Search-In-Template {
    padding: 15px 50px 15px 15px;
}
.template-search__search .search__button {
  position: absolute;
  top: 5px;
  left: auto;
  right: 5px;
  bottom: 5px;
  padding: 0 10px;
  -webkit-border-radius: 0px 15px 0px 15px;
  -moz-border-radius: 0px 15px 0px 15px;
  -ms-border-radius: 0px 15px 0px 15px;
  -o-border-radius: 0px 15px 0px 15px;
}
.template-search__search input{
    border: 1px solid var(--theme-color);
}
.template-search__search .search__button svg {
    margin: 0;
    width: 20px;
    height: 20px;
      fill: none;
}
.template-search p.search-msg {
  padding: 20px 0 30px;
  font-size: 20px;
  line-height: 1;
}
.template-search__search .field {
  position: relative;
}
.template-search__results .grid__item {
  margin: 0 0 30px;
}
.template-search__results .product-card .product-card-inner {
  border: 1px solid var(--border-color);
}
.template-search__results .product-card .link-btn {
  display: none;
}
/*=========== SHF wishlist page ===============*/
.wishpg .wishdesc h6 {
  margin: 0 0 20px;
}
.wishdesc {
  margin: 20px 0 0;
}
.product-card-inner .wishdesc h4 {
    margin-bottom: 20px;
}
.innerwish .wishremove.wishactive .addtowish {
  display: block;
  position: absolute;
  top: 0;
  bottom: auto;
  left: auto;
  right: 0;
}
.innerwish .wishremove.wishactive .addtowish svg {
  width: 20px;
  height: 20px; 
}
.innerwish .wishremove.wishactive .addtowish svg path{
   fill: #ff0000;
}
.loginwish .list-unstyled {
  border: 1px solid var(--border-color);
  padding: 30px;
  display: inline-flex;
  flex-direction: column;
}
.loginwish li:first-child {
  margin: 0 0 20px;
}
.loginwish h3 {
  margin: 0 0 15px;
}
.main-wishlist {
  row-gap: 30px;
}
.wishpg .innerwish .wishremove.wishactive .addtowish {
  top: 15px;
  right: 15px;
}
.wish-btn-wrp {
  column-gap: 10px;
}
#customer_login_link,
#customer_register_link {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  color: var(--white);
  background: transparent;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  transition: all ease-in-out 0.4s;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  text-transform: uppercase;
}
#customer_login_link:hover,
#customer_register_link:hover {
  background: var(--theme-color);
  color: var(--white);
}
.card__media {
  position: relative;
}
.product-card-image .hover-img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
}
.product-card-image:hover .hover-img {
  opacity: 1;
  visibility: visible;
}
.product-type {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 10px;
}
.acc-order-button .btn svg {
  margin: 0 8px 0;
}
table.order-history {
    margin: 30px 0 0;
}
.contact-right-inner .form__message {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.contact-left-inner a {
    font-size: 15px;
    font-weight: 400;
}
.contact-left-inner ul li h4 {
    margin-bottom: 5px;
}
.contact-left-inner ul li {
    margin-bottom: 18px;
}
.review-close-icon svg line {
    stroke: var(--white);
}
.testimonial-slider  .slick-list, 
.testimonial-slider .slick-track {
    display: flex;
}
.testimonial-slider  .slick-slide {
    display: flex;
    flex-direction: column;
}
.testimonials .review-slider {
    display: flex;
}
.search .template-search {
    min-height: 50vh;
}
.tabs-container .swiper-arrow , .blog-two-row-slider .slick-arrow, .product-extra-slider .slick-arrow, .testimonial-slider .slick-arrow  {
    opacity: 0;
    transition: all 400ms ease-in-out 0s;
    visibility: hidden;
}
.tabs-container:hover .swiper-arrow, .blog-two-row-slider:hover .slick-arrow, .product-extra-slider:hover .slick-arrow, .testimonial-slider:hover .slick-arrow{
    opacity: 1;
    visibility: visible;
}
.add-cart-btn {
  padding: 7px 20px;
}
/*================= responsive css=================*/
@media (min-width: 768px) {
  .header-style-one .main-navigationbar .menu-items-col .main-nav{
    display: flex;
    align-items: center;
    flex: 1;
  }
  .header-style-one .mobile-menu {
    display: none;
  }
  .desk-only {
      display: block !important;
  }
  .mobile-only {
      display: none !important;
  }
} 
@media screen and (max-width:1400px){ 
  .header-style-one .menu-right li {
    margin-right: 10px;
  }
  .half-bluthooth-right {
    max-width: 319px; 
  }
  .xl-text {
    font-size: 50px;
    Line-height: 60px;
  }     
  .main-content-games-1 {
    display: none;
  }
  .about-img-1 {
   display: none;
  }
  .about-img {
    right: 18%;
  }
  .blog-blutooth {
    max-width: 70px; 
  }
  .design-circle-1 { 
    max-width: 400px; 
  }
}  
@media screen and (max-width:1200px){
  .header-style-one .announcebar-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
  } 
  .cat-tab li a {
    padding: 10px 15px;
  }
  .product-card-inner .product-number {
    gap: 6px;
  }     
  .footer-col:not(:first-of-type) {
    padding-left: 28px;
  }
  .gaming-leftbar .section-title{
    margin-bottom: 40px;
  }
  .design-circle-4 {
    top: -43%; 
  }
  .design-circle-5 {
    max-width: 600px;
  }
  .section-title-center p {
    max-width: 395px;
  }
  .about-us-section {
    padding-bottom: 40px;
  } 
  .half-bluthooth-right { 
    right: 0;
  }
  /*product page*/
  .product-main-section .product-thumb-slider .slick-arrow.slick-next {
    top: 66%;
  }
  .product-main-section .product-thumb-slider .slick-arrow.slick-prev {
    top: calc(60% + 50px);
  }
  .product-description-section span {
    font-size: 13px;
  } 
  .design-circle-1 { 
      left: 0;
  } 
    .cart__checkout-button{
    padding: 10px 20px;
  }
  .acc-order-button .btn {
    padding: 10px 20px;
  }
  .about-us-section .col-xl-3.col-md-3.col-sm-6.col-12 {
    display: flex;
    margin-bottom: 25px;
  } 
  .about-us-box {
      display: flex;
      flex-direction: column;
      width: 100%;
  }
  .about-us-box .h3 {
      flex: 1;
  }
}
@media screen and (max-width:991px){
  :root { 
    --h1: normal 600 32px/1 var(--first-font);
    --h2: normal 600 28px/1 var(--first-font);
    --h3: normal 600 26px/1 var(--first-font);
    --h4: normal 600 22px/1 var(--first-font);
    --h5: normal 600 20px/1 var(--first-font);
    --h6: normal 600 18px/1 var(--first-font);
  }
  .bestseller-section .swiper-slide.product-center-item {
    padding: 34px 10px!important;
  } 
  cart-note.cart__note.field{
    margin: 30px 0;
  }
  .logo-col.mobile-only {
    display: block !important;
  }
  .logo-col{
    display: none !important;
  }
  .header-style-one .main-navigationbar .menu-items-col .main-nav>li:not(:last-of-type) {
    padding-right: 13px;
  } 
  .header-style-one .main-navigationbar .menu-items-col .drop > a:after {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    right: -15px;
    top: 5px;
  }  
  .header-style-one .main-navigationbar .menu-items-col .main-nav>li {
    padding: 15px 0;
  }
  .header-style-one .menu-right li a .icon-lable {
    margin-top: 6px;
    font-size: 11px;
  }
  .header-style-one .menu-right li:not(:last-of-type) {
    margin-right: 15px;
  }
  .header-style-one .menu-right li a:not(.link-btn) svg {
    width: 18px;
    height: 18px;  
  }
  .header-style-one .menu-right li.cart-header a svg { 
    height: 20px;
    width: 20px;
  } 
  .header-style-one .main-navigationbar .menu-items-col {
    padding: 15px 0px;
  }  
  .announcebar .search-form-wrapper input {
    padding: 10px 20px 10px 50px;
  }
  .header-style-one .announcebar {
    padding: 9px 0;
  }
  .header-style-one .count {
    top: -5px;
    right: -9px;
    height: 13px;
    width: 13px;
  }    
  .header-style-one .count-1 {
    top: 2px;
    right: -8px;
    height: 13px;
    width: 13px;
  }  
  .site-header.head-sticky .main-navigationbar .menu-items-col {
    padding: 5px 0px;
  } 
  .footer-subscribe-col {
    max-width: 260px;
    flex: 0 0 260px;
  }
  .social-icons li:not(:last-of-type) {
    margin-right: 6px;
  }
  .footer-subscribe-form input {
    padding: 13px 94px 13px 20px;
    font-size: 12px;
  }
  .footer-subscribe-form .btn {
    padding: 14px 15px;
  }
  .footer-widget h3 {
    max-width: 227px;
  }
  /********* BLOG PAGE CSS start  **********/ 
  .article-comment h3 {
    font-size: 20px;
  }
  .blog-widget-inner { 
    padding: 25px 15px;
  }
  .blog-widget-inner.big-blog-widget {
    padding: 35px 15px 25px;
  }
  .blog-widget-inner p {
    margin: 12px 0;
  }
  .blog-grid-section .blog-cat li {
    padding: 10px 10px;
    font-size: 10px;
  }
  .blog-grid-row .blog-content-top h4 {
    font-weight: 600; 
  }
  /********** CART PAGE CSS starts **********/
  .cart-summery { 
    margin-top: 30px;
  }
  .cart-summery .btn { 
    max-width: 300px;
    margin-left: auto;
  } 
  /********** CART PAGE CSS end **********/
  .submit-btn { 
    max-width: 200px;
    margin: 20px 0 0;
  }
  .article-banner .blog-cat {
    margin: 20px 0;
  } 
  .art-auther {
    margin-bottom: 15px;
  }
  .quote-box { 
    padding: 15px 0 25px 60px;
  }
  .quote-box h3 {  
    font-size: 15px;
  }
  .latest-article-slider-section .section-title { 
    padding-top: 40px;
    margin-bottom: 26px;
  }
  .my-acc-right-content .qty-spinner input,
  .my-acc-right-content table tr th,
  .my-acc-right-content table tr td { 
    font-size: 12px;
  }
  .order-history-tbl tr td {
    padding: 15px 10px 15px;
  }
  .order-confirm-details .link {
    font-size: 13px;
  }
  .order-confirm-details { 
    padding: 20px 12px;
  }
  .acc-back-btn-wrp button { 
    padding: 10px 20px;
  } 
  .ttl-pric {
    font-size: 16px; 
  } 
  /**** HOME PAGE CSS START ****/
  .half-bluthooth-right {
    max-width: 275px;  
  }
  .half-bluthooth-left {
    max-width: 110px;
  }
  .xl-text {
    font-size: 40px;
    Line-height: 52.07px;
    max-width: 339px;
  }
  .round-img-small {
    display: none;
  }
  .full-bluthooth { 
    max-width: 86px;
    top: 31%;
  } 
  .add-cart-btn {
    padding: 6px 16px;
  }  
  .product-center-slider .swiper-slide-active .product-card-inner, .product-center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] .product-card-inner {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -ms-transform: scale(1.0);
    -o-transform: scale(1.0);
  }  
  .slick-dots {
    padding-top: 30px;
  }
  .product-center-slider .slick-list {
    padding: 10px 7% 0px !important;
  }
  .subscribe-section .search-form-wrapper .btn {
    padding: 14px 20px;
  }
  .site-header.head-sticky:before {
    bottom: 19px;
    left: 0;
  }  
  .common-arrows .slick-arrow {
    width: 27px;
    height: 27px;
  }  
  .common-arrows .slide-arrow svg {
    height: 10px;
    width: 12px;
  }
  .section-title-center {
    display: none;
  } 
  .right-column-img {
    display: none;
  }
  .second-left-img {
    display: none;
  }
  .full-width-row{
    flex-direction: row-reverse;
  }
  .section-title-left h2,
  .subscribe-content .section-title h2,
  .bestseller-section .section-title h2,
  .footer-widget h3,
  .blog-product-content .product-title,
  .home-blog-section .section-title-left h2 {
    max-width: 100%;
  } 
  .full-width-second-section .product-card-inner {
    padding:   15px;
  }
  .gaming-categories-section {
    background:transparent;
    padding-top: 70px;
  }
  .gaming-leftbar .section-title h2{
    color: var(--black);
  }
  .gaming-categories-section .product-card-inner h4{
    color: var(--black);
  } 
  .subscribe-section input {
    padding: 13px 100px 13px 20px;
  }  
  .full-width-section .product-card-inner {
    padding:  15px;
  }
  .about-us-section .row {
    margin: 0 -8px;
  }
  .about-us-section .row [class*="col-"] {
      padding: 0 8px;
  }
  .blog-blutooth {
    max-width: 44px;
  }  
  .product-main-section .product-item-img {
    padding-top: 130%;
  }  
  .full-container {
    padding: 0 15px;
  }
  .pro-tab-center {
    padding: 0 15px 0 0;
  }
  /**** product page  ****/ 
  .product-main-section .product-item-img {
    padding-top: 130%;
  }
  .shopify-payment-button__button--unbranded{
    padding: 8px 20px;
  }
  .pro-descrip-right .information{
    margin-bottom: 15px;
  }
  .pro-tab-left {
    display: none;
  }
  .product-main-section .product-thumb-slider .slick-arrow.slick-next {
    top: 75%;
  }
  .product-main-section .product-thumb-slider .slick-arrow.slick-prev {
    top: calc(70% + 50px);
  }
 
  .product-card-inner .product-number li {
    font-size: 12px;
    line-height: 1;
  }
  .testi-pro-info { 
    width: 100%;
    margin-bottom: 10px;
  }
    .main-detail {
    margin: 0 0 30px;
  }
  .product-content-bottom ins {
    display: block;
  }
  .dark-contnt .product-content-bottom .price {
    margin-bottom: 5px;
  }
  #recently-viewed-products .product{
    width: 33.33%;
    margin: 0 0 20px;
  }
  .quick-product.product-main-section .product-thumb-slider .slick-list{
    height:220px !important;
  }
  .pdp-timer .flip-countdown.simple-countdown{
    width:100%;
  }
  .quick-product.product-main-section .product-thumb-slider .slick-arrow.slick-prev {
    top: calc(70% + 50px);
  }
  .quick-product.product-main-section .product-thumb-slider .slick-arrow.slick-next {
    top: 78%;
  }
  .quickview-popup {
    overflow:scroll;
    padding:0;
  }
  .quick-product .product-left-inner .common-heading h2{
    font-size:24px;
  }
}  
@media screen and (max-width:768px) {
  .product-content-bottom .price ins.price-item--sale {
     margin: 8px 0 5px;
  } 
}
@media screen and (max-width:767px){  
  .cart-tble tr td:first-child a{
    display: flex;
    justify-content: center;
  }
  .bestseller-section .swiper-slide.product-center-item {
    padding: 0px 10px!important;
    height: auto;
  } 
  body.account .customer.account {
    text-align: center;
  }
  body.account .acc-order-button{
    justify-content: center;
  }
  .subscribe-popup {
    padding: 40px 30px;
  }
  .small-hide, .medium-hide {
    display: none !important;
  }
  .subscribe-popup h2 {
    font-size: 20px;
  }
  .design-circle-1{
    display: none;
  }
  .acc-order-history h4 {
    text-align: center !important;
}
  table.order-history {
    margin: 0 0;
}
  .profile-header .menu-dropdown {
    margin: 20px 0 0;
  }
  .header-style-one .announcebar{
    display: none;
  }
  .header-style-one .menu-right li:not(:last-of-type) {
    margin-right: 10px;
  }
  .header-style-one .menu-right li.cart-header {
    padding: 0;
    background: transparent; 
    margin-left: 17px;
  } 
  .header-style-one .menu-right li.search-header a {
    display: block;
}
  .header-style-one .mobile-menu {
    margin: 0 0 0 10px;
  }  
  .header-style-one .main-navigationbar .logo-col {
    max-width: 100px;
    width: 100%;
  }
  .cart-header a .icon-label {
    display: none!important;
  }  
  .header-style-one .menu-right li:not(:last-of-type)  {
    margin-right: 0px;
    margin-left: 10px;
  }
  .header-style-one .count-1 {
    top: -4px;
  }  
  .header-style-one .main-navigationbar::before{
    content: '';
    background: linear-gradient(to left, #0098FF 50%, #7C34C8);
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  /** MINI CART **/
  .cartDrawer {
    width: 100%;
  }
  .cartDrawer .mini-cart-body {
    padding: 15px;
  }
  .cartDrawer .mini-cart-header {
    padding: 16px 20px 16px 50px;
  }
  .webi-mini-cart-footer .checkout-btn {
    max-width: 100%;
    padding: 12px 11px;
  }
  .webi-mini-cart-footer {
    padding: 15px;
  }
  .mini-cart-item:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .mini-cart-footer-total-row {
    font-size: 18px;
    line-height: 18px;
    margin: 0 -10px 12px;
  }
  .cart-header .closecart{
    left: 15px;
    right: auto;
    top: 15px;
  }
  .cart-header .closecart svg path {
    fill: var(--white);
  }
  .search-popup { 
    padding: 0 15px;
  }
  .search-popup .close-search { 
    right: 15px;
    top: 15px; 
    width: 22px;
    height: 22px;
  }  
  .policy-links {
    justify-content: flex-start;
    margin-top: 16px;
  }
  .footer-col:not(:last-of-type){
    padding:0;
  }
  .footer-subscribe-col,
  .footer-col { 
    flex: 0 0 100%; 
    padding:0;
    max-width:100%;
    margin-bottom: 30px;
  }
  .site-footer {
    padding: 40px 0px 40px;
  }  
  .site-header.head-sticky .main-navigationbar .menu-items-col {
    padding: 15px 0px;
  } 
  .footer-col:not(:first-of-type) {
    padding: 0;
  } 
  .footer-bottom {
    padding-top: 0;
  } 
  .emaillink.contactlink {
    margin: 0;
  }
  .slick-arrow {
    width: 36px;
    height: 36px;
  }   
  .slick-slider .slick-arrow {
    opacity: 1;
  }   
  .padding-bottom,body.product .home-product-extra{
    padding-bottom: 40px;
  }
  .padding-top {
      padding-top: 40px;
  }
  /********* BLOG PAGE CSS start  **********/ 
  .blog-widget { 
    flex: 0 0 100%;
  }
  .blog-widget-inner { 
    margin-bottom: 15px;
  }
  /********* BLOG PAGE CSS end  **********/ 
  .mobile-facets{
    position: fixed;
    top: 0;
    background: var(--white);
    left: 0;
    max-width: 315px;
    height: 100%;
    z-index: 4;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
    -webkit-transform: translate(-100%, 0px);
    -moz-transform: translate(100%, 0px);
    -ms-transform: translate(100%, 0px);
    -o-transform: translate(100%, 0px);
    transform: translate(-100%, 0px);
  }
  .product-filter-body {
    padding: 40px 15px;
    overflow: auto;
    height: 100%;
    background: var(--white);
  } 
  .close-filter {
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0px;
    right: auto;
    left: 0px;
    z-index: 101;
    width: 30px;
    height: 30px;
    padding: 7px;
    opacity: 0;
    transition: opacity .4s ease;
    background: var(--theme-color);
    pointer-events: none;
  }
  .mobile-open .close-filter {
    opacity: 1;
    pointer-events: visible;
   }
  .close-filter svg {
    height: 100%;
    width: 100%;
  }
  .close-filter svg path {
    fill: var(--white);
  }
  .mobile-open .mobile-facets{
    -moz-transform: translate(0);
    -o-transform: translate(0);
    -ms-transform: translate(0);
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  .product-heading-right-column { 
    border-left: 0;
  }
  .produdt-filter-cat {
    display: none;
  }
  .product-heading-row .row {   
    padding: 30px 15px;
  } 
  .product-sorting-row {
    justify-content: flex-end;
  }
  .product-filter-right-column {
    border-left: 0; 
  } 
  .icon-filter {
    max-width: 32px;
    margin: 0 auto;
  }
  .mobile-facets__open {
    max-width: 40px;
    border: 1px solid var(--second-color);
    padding: 2px;
    display: block;
  }  
  .filter-title h4{
    display: none;
  }
  .abt-shp-column-right,.about-our-shop-section .row {
    margin-top: 30px;
  }
  .contact-right-column {
    margin-top: 0;
  }
  .contact-right-inner h2 {
    color: var(--second-color);
  }
  .blog-col-right .nice-select {
    flex: 0 0 120px;
  }
  .blog-col-right {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  } 
  .blog-col-left ul {
    flex-direction: column;
    align-items: center;
  } 
  .blog-head-row{
    border: 0;
  } 
  .articlerightbar {
    padding-top: 40px;
  } 
  .aticleleftbar h5 {
    margin: 0 0 20px 0;
    line-height: 1.3;
  }
  .articlerightbar .blog-grid .blog-widget:last-of-type {
    margin-bottom: 0;
  }
  .latest-article-slider-section .section-title {
    padding-top: 40px; 
  }
  .post-lbl {
    margin: 0 0 0 10px; 
    font-size: 15px;
  }
  .about-user h6 {
    font-size: 15px;
  }
  .article-section .abt-user-img { 
    margin-right: 5px;
  }
  .aticleleftbar p {
    margin-bottom: 15px;
  }
  .quote-box svg { 
    height: 20px;
    width: 20px;
  }
  .quote-box {
    padding: 15px 0 25px 35px;
  }
  .register-page .section-title {
    margin-bottom: 30px;
  } 
  .our-blog-section .section-title,
  .my-acc-head {
    margin-bottom:26px;
  }
  .my-acc-rightbar {
    margin-top: 40px;
  }
  #scroll {
    background: var(--white); 
    top: 53px;
    padding: 0;
  }
  #account-nav {
    display: flex;
    justify-content: space-between;
  } 
  #account-nav li a svg path {
      fill: var(--white);
  } 
  #account-nav li a   svg { 
    margin-right: 0;
    height: 15px;
    width: 15px; 
  }
  #account-nav li a span { 
    display: none;
  }
  #account-nav li {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .my-acc-leftbar li:not(:last-of-type) {
    border-bottom: 0;
  }
  .my-acc-leftbar h4 {
    padding: 15px 15px;
    color: var(--white);
    background: var(--theme-color);
  }
  .my-acc-leftbar { 
    border: 0 !important;
  }
  #account-nav li a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px; 
    width: 100%;
    height: 40px;
    justify-content: center;
    background: var(--theme-color);
  }
  .order-history-tbl tr th:nth-child(5), .order-history-tbl tr td:nth-child(5) {
    text-align: center;
  } 
  .my-acc-right-content {
    padding-bottom: 30px;
  }
  .my-acc-right-content .qty-spinner input, .my-acc-right-content table tr th, .my-acc-right-content table tr td {
    font-size: 14px;
  }
  .checkbox-custom label{
    font-size: 13px; 
  }
  .set {    
    margin-bottom: 12px;
  }
  .form-container{
    padding: 20px 15px;
  }  
  .offset-container { 
    padding: 0 15px;
  }
  /** CART PAGE CSS start**/ 
  .cart-tble {
    border: 1px solid var(--border-color);
  }
  .cart-page-section .section-title{
    margin-bottom: 30px;
  }
  table .pro-img-cart img {
    max-width: 50px;
  }
  /****  COMMON BANNER SECTION CSS ****/
  .common-banner-section {
    padding: 40px 0;
  }
  .common-banner-content .back-btn {
    margin-bottom: 15px;
  }
  .common-banner-content .section-title h2 span { 
    font-size: 12px;
  }  
  /*** FAQ PAGE CSS ****/ 
  .faq-page {
    padding-bottom: 0;
  }
  /*** ABOUT PAGE CSS ****/
  .aboutpage-btm-sec .about-us-boxs {
    margin-bottom: 20px;
  } 
  .checkbox-custom label { 
    font-size: 12px;
  }
  /**** HOME PAGE CSS STARTS ****/ 
  .home-banner-content-inner .btn-secondary {
    margin-top: 15px;
  } 
  .home-banner-content {
    padding: 50px 15px;
  } 
  .home-banner-section {
    padding: 130px 0px 70px 0px;
  }
  .round-img-big {
    top: 48%;
  }
  .full-bluthooth {
    display: none;
  }
  .round-img-big {
    display: none;
  }
  .product-content-bottom .price {
    font-size: 20px;
  }  
  .gaming-leftbar .section-title {
    margin-bottom: 30px;
  }
  .gaming-leftbar .section-title h2 {
    max-width: 100%;
    text-align: center;
  } 
  .cat-tab li {
    text-align: center;
  }
  .gaming-leftbar{
    margin-bottom: 30px;
  }  
  .gaming-categories-section .product-card-inner h4{
    max-width: 100%;
  } 
  .fifth-sec{
    flex-direction: column-reverse;
  }
  .subscribe-part-img{
    margin-bottom: 30px;
  } 
  .gaming-products-1 {
    top: -4%;
    left: 8%;
    max-width: 43px;
  }
  .gaming-products-2 {
    top: -4%;
    max-width: 34px;
  }
  .header-style-one .main-navigationbar{
    background: rgba(0, 0, 0, 1);
  }
  .product-center-slider .slick-slide, .product-center-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] {
    padding: 0 10px;
  }
  .gaming-categories-section {
    padding-top: 40px;
  }
  .full-width-second-section {
    padding: 40px 0px 40px 0px;
  }
  .about-us-section {
    padding-bottom: 10px;
  }
  .home-blog-section {
    padding-bottom: 35px;
  }
  .home-banner-contain .section-title p {
    color: var(--white);
  }
  /**** product page ****/
  .product-main-section {
    padding: 100px 0px 40px 0px;
  }  
  .product-main-section .product-item-img {
    padding-top: 100%;
  }
  .product-left-inner {
    margin-top: 40px;
    max-width: 100%;
  }
  .product-main-section .product-thumb-slider {
    margin-top: 20%;
  }
  .product-main-section .section-title-inner {
    margin-bottom: 25px;
  }
  .product-description-section h3 {
    margin-bottom: 20px;
  }
  .pro-descrip-left {
    text-align: center;
    margin: 0 auto 30px;
  }
  .product-tab li {
    max-width: 100%;
  }
  .pro-tab-center {
    margin-bottom: 15px;
    padding: 0 10px;
  }
  .product-content-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  } 
  .product-content-center.variant-webi{
    justify-content: left;
  }
  .product-content-center .product-select{
    width: calc(50% - 15px);
  } 
  .product-main-section .row [class*="col-"]:nth-child(1) {
      order: 2;
  }
  .product-main-section  .row [class*="col-"]:nth-child(2) {
      order: 1;
  }
  .product-tab-img img {
    margin: 0 auto;
  }
  .pro-descrip-right {
    text-align: center;
  }
  .pro-descrip-right ul.row {
    max-width: 300px;
    margin: 0 auto;
  } 
  img.design-circle-4{
    display: none;
  } 
  .cat-tab li a {
    width:100%;
    max-width: 300px;
  } 
  .order h2 {
    margin: 0 0 10px;
  }
  .order-detail {
    text-align: center;
  }
  .blog-blutooth {
    bottom: -2%;
    top: auto;
    left: auto;
    right: 5%;
  }
  .full-width-section .full-width-card {
    padding: 0;
  }
  #recently-viewed-products .product{
    width: 50%;
  }
  .lang-dropdown {
    margin-right: 0px;
    margin-left: 10px;
  }
  .lang-dropdown svg {
    width: 18px;
    height: 18px;
  }
   .quick-product.product-main-section .product-thumb-slider .slick-list {
    height: 40px !important;
  }
  .product-main-section .product-thumb-slider {
    max-width: 100%;
    max-height:100px;
  }
  .product-main-section .product-thumb-item{
    width:33% !important;
  }
  .product-main-section .product-main-slider{
    max-width:100%;
  }
  .product-main-section .product-thumb-slider {
   display:none;
  }
.pro_btn{
  position: static;
  opacity:1;
  visibility:visible;
}
  .product-card-inner .product-content-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .collection .product-card-inner .pro_btn{
    display: none;
  }
}
@media screen and (max-width: 575px){ 
  .about-user {
    flex-direction: column;
    gap: 10px;
    align-items: baseline;
  }
h4.product-title a {
   display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    line-height: 1.2em !important;
    height: 3.6em !important;  /* This forces space for 3 lines */
}

  .subscribe-popup h2 {
    margin-bottom: 18px;
  }
  .subscribe-popup p {
    font-size: 13px;
  }
  .subscribe-popup input[type=email] {
    padding: 13px 40px 13px 15px;
  }
  .subscribe-popup {
    padding: 30px 20px;
  }
  .subscribe-popup .form-row .btn-svg {
    right: 10px;
    height: 18px;
    width: 18px;
  }
  .subscribe-popup .close-sub-btn {
    top: 10px;
    right: 8px;
  }
  .footer-col {
    flex: 0 0 100%;
  }
  .section-title.d-flex {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  } 
  .bestseller-section .section-title .btn-transparent{
    margin-top: 20px;
  }
  .section-title {
    margin-bottom: 25px;
  }
  .section-title-left {
    width: 100%;
    margin-bottom: 20px;
  }  
  .blog-cat li:not(:last-of-type) {
      margin-right: 0;
  }
  .blog-cat li a {
    padding: 10px 11px; 
    font-size: 10px; 
  }
  .reg-lbl { 
    width: 100%;
    margin: 0 0 10px;
    text-align: center;
  }
  .login-form .submit-btn {
    max-width: 170px;
    margin: 15px 0 0 0;
  }
  .mobile-direction-column{
    flex-direction: column;
  }
  .subtitle {  
    font-size: 14px;
  }
  .two-coll-media .tool-content {
    display: none;
  } 
  .product-content-bottom .price {
   font-size: 18px;
    display: block;
    width: 100%;
  } 
  /********* BLOG PAGE CSS start  **********/ 
  .blog-cat li {
    padding: 10px 8px; 
    font-size: 10px; 
  }
  .blog-widget-inner h3 {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 0 0 15px;
    padding: 0;
  }
  .blog-widget-inner p {
    margin: 12px 0 15px;
  }
  .blog-grid-section .blog-cat li {
    padding: 10px 5px; 
  }
  .blog-cat { 
    margin-bottom: 14px;
  }
  .blog-page-banner .common-banner-content p,
  .blog-page-banner .section-title {
    margin-bottom: 26px;
  }
  .aboutpage-btm-sec .section-title {
    margin: 0 auto 35px;
  }
  /********* BLOG PAGE CSS end  **********/
  .input-wrapper input { 
    padding: 14.5px 100px 14.5px 15px; 
    font-size: 12px;
  } 
  .input-wrapper .btn-subscibe { 
    width: 95px;
    font-size: 12px;
  }
  .articlerightbar .blog-cat li{
    padding: 10px 5px;
  }   
  .price-btn ins { 
    font-size: 12px; 
  }
  .produdt-filter-cat {
    display: none;
  }
  /**** HOME PAGE CSS STARTS ****/
  .half-bluthooth-right {
    max-width: 210px; 
    opacity: .8;
  }
  .main-content-games { 
    display: none;
  }
  .half-bluthooth-left {
    max-width: 85px;
    opacity: .8;
  }
  .home-banner-section .home-banner-contain .banner-tagline {
    padding: 10px 10px 10px 10px;
    margin-bottom: 20px;
  }  
  .btn-label {
    font-size: 12px;
  }  
  .banner-tagline p {
    font-size: 12px;
  }
  .btn-primary {
    padding: 10px 14px;
    font-size: 12px; 
    margin-right: 25px;
  }
  .add-cart-btn {
    padding: 8px 31px;
    margin-right: 0px;
  } 
  .btn-transparent{
    padding: 10px 14px;
    font-size: 12px; 
    margin-right: 15px;
  } 
  .design-circle-3 {
    top: -30%;
    left: 0; 
  } 
  .full-width-section .section-title-left h2 {
    max-width: 100%;
  }
  .left-column-img img {
    width: 100%;
    margin-bottom: 30px;
  }

  .full-width-section {
    padding: 40px 0px;
  }
  .full-width-section .product-card-inner {
    border: 0;
    padding:  15px;
  }
  .gaming-products-2 {
    top: -2%;
  }
  .gaming-products-1 {
    top: -2%;
  }
  .about-img {
    right: 49%;
    max-width: 40px;
  }
  .full-width-second-section {
    padding: 40px 0px;
    position: relative;
  }
  .testimonials-section .testimonial-itm-inner .testimonial-itm-content {
      max-width: 100%
  }
  .testimonials-section .testimonial-itm-inner {
    display: block;
    padding: 15px;
  }
  .testimonials-section .testimonial-itm-inner .testimonial-itm-image {
    margin: 0 auto;
  } 
  .xl-text {
    font-size: 36px;
    Line-height: 45.07px;
    max-width: 339px;
    margin-bottom: 20px;
  }
  .gaming-categories-section {
    padding-top: 35px;
  }
  .full-width-section {
    padding: 35px 0px;
  }
  .full-width-second-section {
    padding: 35px 0px;
  }
  .about-us-section {
    padding-bottom: 5px;
  }
  .site-footer {
    padding: 35px 0px 35px;
  }
  .home-banner-section {
    padding: 110px 0px 50px 0px;
  }
  .full-width-second-section .second-right-img {
    margin-bottom: 20px;
  }
  .blog-ring {
    position: absolute;
    z-index: 1;
    max-width: 40px;
  }  
  .about-us-box p {    
    font-size: 13px;
  } 
  .bestseller-section { 
    padding-top: 40px;
  }
  .client-logo-section { 
    padding-top: 40px;
    border-top: 1px solid var(--blue);
  }
  /*product page*/
  .product-main-section .slider-wrapper {
    flex-direction: column-reverse;
  }
  .product-main-section .product-thumb-slider {
    display: none;
  }
  .product-main-section .product-thumb-item {
    margin-right: 10px;
  }
  .product-main-section .slick-initialized .slick-slide {
    padding: 0;
  }
  .product-main-section .product-main-slider {
    padding-left: 0;
    max-width: 100%;
  }
  .product-main-section .product-thumb-slider .slick-arrow.slick-prev{
    display: none;
  }
  .product-main-section .product-thumb-slider .slick-arrow.slick-next {
    display: none!important;
  }
  .product-content-center li {
    width: 100%;
  } 
  .add-details div {
    text-align: center;
  }
  .add-details div:last-child {
    margin: 20px 0 0;
  }
  .back-btn-acc {
    margin-right: 5px;
  }
  .add-default .btn {
    padding: 10px 15px;
    margin: 0 8px 0 0;
  }
  .acc-back-btn-wrp button {
    padding: 10px 15px;
  }
  .product-left-inner .quantity-select {
     justify-content: flex-start;
  }
  .list-unstyled .predictive-search__list-item {
    width: 50% !important;
  }
  #recently-viewed-products .product{
    width: 100%;
  }
  .quick-product.product-main-section {
    padding: 50px 0px 50px 0px;
  }
}
@media screen and (max-width: 425px){
  .wish-btn-wrp {
    flex-direction: row;
    row-gap: 10px;
  }
}
@media screen and (max-width: 370px){  
  .post-lbl {
    margin: 10px 0 0; 
    width: 100%;
  }
  .checkout-page .forgot-pass { 
    font-size: 11px;
  }
  .form-control, input:not([type="submit"]), input:not([type="checkbox"]), input:not([type="radio"]), select, textarea { 
    padding: 12px 15px; 
    font-size: 12px;
  }
  .btn-flex a {
    padding: 10px 12px!important;
    min-width: 113px;
  }
  .center-descrp {
    display: none;
  }
  /**** HOME PAGE CSS STARTS ****/
  .xl-text {
    font-size: 32px;
    Line-height: 37.07px;
  }
  .btn-label {
    font-size: 11px;
    margin-right: 5px;
    padding: 4px 8px;
  }
  .banner-tagline p {
    font-size: 10px;
  }
  .btn-primary{
    padding: 8px 13px;
    margin-right: 17px;
  }
  .add-cart-btn {
    padding: 8px 31px;
    margin-right: 0px;
  }
  .btn-transparent{
    padding: 8px 13px;
    margin-right: 0px;
  }
  .full-bluthooth { 
    display: none;
  }
  .home-blog-section .section-title-left h2,
  .bestseller-section .section-title h2 {
    max-width: 100%;
  }
  .search-form-wrapper form {
    width: 100%;
  } 
  .half-bluthooth-right {
    right:0;
  }  
  .gaming-leftbar .section-title h2 {
    text-align:start;
  }
  .pro-img {
    margin-right: 10px;
  }
  .testimonial-content-bottom .testi-star img {
    margin-right: 10px;
    max-width: 60px;
  } 
 .home-banner-contain .btn-flex {
   gap:10px;
 }
}

.essential_annoucement_bar_wrapper > button > svg {
    max-width:unset!important;
}

@media screen and (max-width: 450px) {
    .smile-panel-frame-container .smile-panel-frame {
	top: 10% !important;
    }
    #SmileUIPanelContainer .panel-body {
	overflow: scroll;
    }
}

.essential_annoucement_bar_wrapper {
  z-index:4!important;
}