/** Shopify CDN: Minification failed

Line 997:0 Unexpected "}"
Line 2678:10 Expected ":"
Line 2678:18 Unterminated string token

**/
:root {
  --timing-function-on: cubic-bezier(0.2, 0.7, 0.1, 1);
  --timing-function-off: cubic-bezier(0.1, 0.4, 0.5, 1);
  --dialog-width: min(100vw - var(--scrollbar-width, 0) - (var(--gutter-container) * 2), 400px);
}
.media--hover-effect {
  overflow: hidden;
  will-change: transform;
}
.media--hover-effect .media {
  will-change: transform;
  transform: scale(1) translateZ(0);
  transition: all ease 0.15s;
  z-index: 0;
}
.media--hover-effect:hover .media {
  transform: scale(1.1) translateZ(0);
}

/* Section header */
.is-header-sticky:after {
  content: "";
  display: block;
  width: 100%;
  height: var(--header-height);
}
.is-header-sticky sht-header {
  position: fixed;
  top: calc(-1 * var(--header-height));
  left: 0;
  width: 100%;
  /* transform: translateY(-100%); */
  transition: all ease 0.3s;
  margin: 0;
}
.is-header-show sht-header {
  top: 0;
  /* transform: translateY(0); */
}
.header-wrapper.animate {
  transition: transform 0.25s ease-out;
}
.header__menu.active {
  transform: translate3d(0, 0, 0);
}

details.is-open .menu-dropdown {
  visibility: visible;
  opacity: 1;
  transition: all 0.25s var(--timing-function-on);
}

details.is-open .menu-dropdown-lv2 .menu-dropdown {
  transition: all ease 0.15s 0.15s;
}

ul > .submenu__item {
  opacity: 0;
  transition: all ease 0.15s;
}

.is-open > ul > .submenu__item {
  opacity: 1;
  transition-delay: 0.15s;
}

.menu-drawer details.is-open .menu-dropdown-lv2 {
  transform: translateX(0);
  transition-duration: 0.15s;
}

.submenu-dropdown > .submenu__item {
  opacity: 0;
  transition: opacity ease 0.15s;
}
.is-open .submenu-dropdown > .submenu__item {
  opacity: 1;
  transition-delay: 0.15s;
}

#menuDrawer .menu__link-lv1 {
  opacity: 1;
  transition: all ease 0.15s;
  transform: translateX(0px);
}
.menu--is-open .drawer__localization {
  opacity: 0;
  transition: all ease 0.15s;
}
#menuDrawer .menu--is-open .menu__link-lv1 {
  opacity: 0;
  transition: all ease 0.15s;
  transform: translateX(-12px);
}

#menuDrawer .menu__link-lv1 > .icon-chevron-down {
  transform: rotate(-90deg);
}
#menuDrawer .menu-dropdown__grandchild {
  opacity: 0;
  transition: all 0.25s var(--timing-function-on);
}
#menuDrawer .is-open > .menu-dropdown__grandchild {
  opacity: 1;
  transition: all 0.25s var(--timing-function-off);
}
.section-header .search__result-empty {
  opacity: 0;
  transition: all ease 0.25s;
}
.section-header.header--predictive-search-open .search__result-empty {
  opacity: 1;
  transition: all ease 0.25s 0.25s;
}

.header--predictive-search-open .header__search {
  visibility: visible;
  opacity: 1;
  transition: all var(--timing-function-on) 0.25s;
}
.predictive-search-form {
  overflow: hidden;
  border-radius: var(--drawer-radius);
  background: var(--color-background);
  max-width: 900px;
  margin: 0 auto;
  height: 0;
  transition: height var(--timing-function-off) 0.25s 0.25s;
}

.header--predictive-search-open .predictive-search-form {
  height: 100%;
  transition: height var(--timing-function-on) 0.25s 0.25s;
}

.dialog__header.predictive-search-form-header {
  opacity: 0;
  transition: opacity var(--timing-function-off) 0.25s;
}

.header--predictive-search-open .predictive-search-form-header {
  opacity: 1;
  transition: opacity var(--timing-function-on) 0.25s 0.5s;
}

.btn-close-search {
  transform: rotate(45deg);
  transition: all 0.1s ease;
  opacity: 0;
}

.header--predictive-search-open .btn-close-search {
  opacity: 1;
  transform: rotate(0);
}
/* Drawer */
.sht-drawer {
  transition: all var(--timing-function-off) 0.25s 0.25s;
}

.sht-drawer.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.25s var(--timing-function-on);
}

.sht-drawer.active .drawer__wrapper {
  width: var(--dialog-width);
  transition: width 0.25s var(--timing-function-on) 0.25s;
}

.sht-drawer .drawer__header,
.sht-drawer .drawer__body,
.sht-drawer .drawer__footer {
  width: var(--dialog-width);
}
.sht-drawer .drawer--animate {
  opacity: 0;
  transition: opacity 0.1s ease;
}
.sht-drawer.active .drawer--animate {
  opacity: 1;
  transition: opacity 0.25s ease 0.5s;
}

.sht-drawer .drawer__btn-close {
  transform: rotate(45deg);
  transition: opacity 0.1s ease, transform 0.1s ease;
  opacity: 0;
}

.sht-drawer.active .drawer__btn-close {
  opacity: 1;
  transform: rotate(0);
}

.drawer__overlay {
  background: rgba(var(--color-drawer-mask), 0.5);
}
.sht-dialog .dialog__header,
.sht-dialog .dialog__body {
  width: var(--dialog-width);
}
.sht-dialog[hidden] .dialog--animate {
  opacity: 0;
  transition: opacity 0.1s ease;
}
.sht-dialog .dialog--animate {
  opacity: 1;
  transition: opacity 0.25s ease 0.5s;
}

.dialog__header {
  top: 0;
  padding: 1.2rem 1.2rem 1.2rem 2.4rem;
  z-index: 4;
  opacity: 1;
  background: var(--color-background);
}
.dialog__body {
  flex: 1;
  padding: 1.2rem 2.4rem;
  max-height: 100%;
  overflow-y: scroll;
  opacity: 1;
}
.dialog__footer {
  padding: 1.2rem 2.4rem;
  background: var(--color-background);
  opacity: 1;
}
.dialog__header .btn-close {
  opacity: 1;
  transform: rotate(0);
  transition: all 0.25s ease 0.5s;
}
.sht-dialog[hidden] .dialog__header .btn-close {
  transform: rotate(45deg);
  transition: opacity 0.1s ease, transform 0.1s ease;
  opacity: 0;
}

.dialog--full-width {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.dialog--full-width .dialog__body {
  width: 100%;
  padding: 0;
}
.product__media__dialog {
  padding: 0;
  max-width: 100%;
}
.cart-notification[hidden] .cart-notification-panel-container {
  opacity: 0;
  visibility: hidden;
  transition: all var(--timing-function-off) 0.25s 0.1s;
}
.cart-notification-panel-container {
  opacity: 1;
  visibility: visible;
  transition: all var(--timing-function-on) 0.25s 0.5s;
}
.cart-notification[hidden] .cart-notification-btn-close {
  opacity: 0;
  transform: rotate(45deg);
  transition: all var(--timing-function-off) 0.1s;
}
.cart-notification .cart-notification-btn-close {
  opacity: 1;
  transform: rotate(0);
  transition: all var(--timing-function-on) 0.1s;
}
.icon-chevron-down {
  transition: transform 0.15s ease;
}

button[aria-expanded="true"] .icon-chevron-down {
  transform: matrix(1, 0, 0, -1, 0, 0);
  transition: transform 0.15s ease;
}

/* Card product */

.card--2-images .card__media:hover .product__image-first .media {
  opacity: 0;
}
.card--2-images .card__media:hover .product__image-second .media {
  opacity: 1;
}

/* spiner animation */

.sht-spinner {
  animation: spinner 1s linear infinite;
}
@keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rte a:not(.btn):hover {
  text-decoration-thickness: 2px;
}
.slider-slide {
  transition: all 1s ease;
}
.slider-slide .slide-image {
  opacity: 0;
  transition: opacity .25s ease;
}
.slider-slide--active .slide-image {
  opacity: 1;
}


.product-slideshow-pagination {
  display: block;
  visibility: visible;
  opacity: 1;
}
.field__dropdown__link.link--active {
  color: var(--color-button-background);
}
summary:focus-visible,
button:focus-visible,
a:focus-visible,
.prd-swh-layout-item:focus-visible + label,
.input--variant:focus-visible + label,
.input__checkbox:focus-visible + .input__checkbox__icon,
.btn:focus-visible,
.focus-state:has(.card__media-link:focus-visible),
.focus-state:has(.collection-card__link:focus-visible),
.focus-state:focus-visible,
.field--focus:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--color-button-background) !important;
  filter: drop-shadow(0 0 4px rgba(var(--color-button-background), 0.6));
  outline: 0;
}
.btn-link:focus-visible,
.btn-primary:focus-visible {
  box-shadow: 0 0 0 3px var(--color-button-outline-background), 0 0 0 6px var(--color-button-background) !important;
}
.btn-outline:focus-visible {
  box-shadow: 0 0 0 3px var(--color-button-outline-background), 0 0 0 6px var(--color-button-background) !important;
}
.skip-to-content:focus {
  width: auto !important;
  height: auto !important;
  visibility: visible;
  opacity: 1;
  z-index: 999999;
  top: 10px;
  left: 10px;
  clip: auto !important;
  padding: 10px 20px !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  border-radius: 0;
}
.product-slideshow__thumb:has(button:focus-visible) {
  border: 1.5px solid rgba(var(--color-normal-text-rgb));
}
.tag:focus,
.tag:focus-visible,
.tag:hover {
  box-shadow: 0px 0px 0px 2px var(--color-border);
}
.tag:active {
  box-shadow: 0px 0px 0px 2px var(--color-normal-text);
}
.popup {
  width: 0;
  transition: width 0.25s var(--timing-function-on) 0.5s;
  overflow: hidden;
}
.popup.popup-show {
  width: var(--dialog-width);
  transition: width 0.25s var(--timing-function-on) 0.25s;
}
.popup-container {
  width: var(--dialog-width);
  opacity: 0;
  transition: opacity 0.1s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.popup.popup-show .popup-container {
  opacity: 1;
  transition: opacity 0.25s ease 0.5s;
}
.btn-close-popup {
  transform: rotate(45deg);
  transition: opacity 0.1s ease, transform 0.1s ease;
  opacity: 0;
}
.popup.popup-show .btn-close-popup {
  opacity: 1;
  transform: rotate(0);
  transition: all 0.25s ease 0.5s;
}
@media (min-width: 1025px) {
  .section-featured-product .carousel-pagination,
  .sht-carousel:hover .carousel-pagination {
    display: block;
    visibility: visible;
    opacity: 1;
  }
}
.info-tab__media-item{
  opacity: 0;
  transition: all ease .25s;
}
.info-tab__media--active {
  opacity: 1;
  visibility: visible;
}




/* NEW CUSTOM CSS */

.soothring-ring-box .s-header__content.s-header__banner {
    max-width: 100% !important;
    padding: 0;
}
.product .product__info h1.product__title.h3 {
    font-size: 28px;
    font-weight: 700;
}
.product .product__info {
    margin-bottom: 10px;
}
.card--standard .card__content span.price__sale span.price-item {
    font-size: 14px;
}
/* .product .w-100.fd-column button {
    background: rgb(75, 136, 147);
} */
.product .w-100.fd-column button {
    /* background: rgb(75, 136, 147); */
    /* border-color: #000000; */
      border-radius: 10px;
}
.product .product__info span.price__sale s.price-item {
    font-size: 20px;
    font-weight: 700;
    color: #809ffd;
}

/* .product .product__badge.d-flex {
    display: none;
} */
.product .w-100.fd-column button {
    border-radius: 10px;
}
.footer .footer_image a {
    pointer-events: none;
}

.product .review-item.review-item--top .review-item__image.media img {
    border-radius: 100px;
}
.product .s-header .s-header__content h2 {
    font-weight: 700;
}
.product .stars {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 20%;

    gap: 3px;
}
.product .star_rating {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
}
.product .star_rating .new_text {
    width: 80%;
   display:INLINE-BLOCK!IMPORTANT;
}
.product .stars svg {
    width: 20%;
}
.product .stars span.fa.fa-star {
    color: #003dff;
}
.product .main-product__info {
    width: 50%;
    max-width: 42%;
    padding-left: 5px;
}

.product .review-item__author-and-stars {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}
.product .review-item.review-item--top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
   gap: 10px;
   max-width: 90%;
  margin : 0 auto;
}
.product .review-item.review-item--top .review-item__right {
    width: 90%;
}
.product .review-item.review-item--top .review-item__image.media.media--transparent {
    width: 20%;
}
.product .review-item.review-item--top .review-item__image.media.media--transparent img {
    width: 100%;
    display: inline-block; 
}

.product .d-flex.fd-column.gap-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product .main-product.ctnr div#productInfo-template--17709786398877__main {
    width: 50%;
    max-width: 50%;
   padding: 0 0 0 50px;
}
.product .main-product.ctnr .main-product__media.maw-100.w-100.false {
    width: 50%;
}

.color-accent-2.content-for-grouping .page-width {
    max-width: 1350px;
    margin: 0 auto;
}
table.comparison-table tbody {
    border: 1px solid #dddddd;
}
.media--hover-effect:hover .media {
    transform: none;
}
.ctnr {
    max-width: 1400px;
    margin: 0 auto;
   padding: 36px 50px;
}
.s-container-radius {
    border-radius: 0px;
}
.s--margin.color-scheme-5 {
    /* max-width: 1300px; */
    margin: 0;
}

.product .js-marquee-item.d-flex.fw-nowrap {
    padding: 10px;
}
.product div#marquee-d791763a81f4 {
    padding: 0;
}
.product .s--margin.color-scheme-6 {
    margin: 0;
}
.product .review-items-container {
    flex: 1 0 auto;
    width: 100%;
}
.product .review-items-container slideshow-component.slider-mobile-gutter {
    width: 100%;
    display: inline-block;
}

h2#sectionHeading-1d96c03c6fcf {
    font-weight: 700;
}
.slideshow .slick-dotted.slick-slider .slick-prev {
  left: 229px;
    z-index: 999;
    top: 137px;
    width: 35px;
    height: 35px;
    border: 0px solid #ffffff;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    padding-top: 8px;
   
}
.slideshow button.slick-next.slick-arrow::before {
    content: url(https://cdn.shopify.com/s/files/1/0652/0183/2101/files/download_3.png?v=1714187932);
   transform: translateY(-50%)!important;
   position: unset!important;
background:transparent!important;
}
.slideshow .slick-dotted.slick-slider ul li button::before {
    font-size: 8px;
}
/* .slideshow button.slick-next.slick-arrow {
    right: 245px;
    top: 127px;
}
.slideshow button.slick-next.slick-arrow::before {
    content: url(https://cdn.shopify.com/s/files/1/0652/0183/2101/files/download_3.png?v=1714187932);
    position: absolute;
    z-index: 2;
    top: 0!important;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: 0px solid #ffffff;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    padding-top: 5px;
    transform: rotate(180deg);
}
 */
.slideshow .slick-next {
  right: 36%!important;
  top:unset!important;
    z-index: 999;
    bottom: -27px!important;
    width: 35px;
    height: 35px;
    border: 0px solid #ffffff;
    border-radius: 50%;
    background: transparent!important;
    cursor: pointer;
    padding-top: 5px;
    transform: rotate(180deg);
}
.slideshow button.slick-prev.slick-arrow::before {
    content: url(https://cdn.shopify.com/s/files/1/0652/0183/2101/files/download_3.png?v=1714187932);
    transform: translateY(-50%)!important;
    position: unset!important;
}
.slideshow .slick-prev {
    left: 37%!important;
    top: unset!important;
    bottom: -25px!important;
   z-index: 1;
}

.slideshow .slick-dotted.slick-slider ul.slick-dots li.slick-active {
    margin: 0;
}
.product .accordion__item.js-accordion-item span.m-zero {
    display: flex;
    align-items: center;
}
.product__block-collapsible_item+.product__block-collapsible_item {
    margin-top: -35px;
}

.product .s-container-radius.color-scheme-6.s-small-margin--outer {
    margin: 0;
}
.header-wrapper.section-header-last {
    margin: 0;
}
.product .product__info.product__block-price .card__content {
    padding: 10px 0px;
}
.product .accordion__item.js-accordion-item {
    margin-bottom: 0px!important;
}
.product .accordion__item.js-accordion-item span img {
    width: 100%;
    display: inline-block;
    max-width: 19px;
    border: 1px solid;
    margin-right: 10px;
}
.product__desc__accordion-button {
   padding: 0;
    align-items: center;
    border-top: 1px solid #dddddd;
    padding-top: 5px;
    padding-bottom: 0px;
}

.product .content-container.center h2.title.h1 {
    font-weight: 700;
    font-size: 39px;
    text-align: center;
}
.product .content-container.center p {
    text-align: center;
}
.footer__content__bottom.m-auto.d-flex.center-xs.fd-column.middle-xs.fd-row-lg.between-lg.mt-64.gap-32.c-gap-lg-48.r-gap-lg-4 {
    display: none;
}

/* .new_default_slider button.slick-prev.slick-arrow.slick-disabled {
    left: 80px;
    z-index: 999;
}

.new_default_slider.slick-dotted.slick-slider .slick-next {
    right: 238px;
    top: 280px;
} */

.footer .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero {
    display: flex;
    justify-content: space-between;
    flex-wrap: unset;
   width: 100%
}
.rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .footer_image {
    width: 33.33%;
}
.rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .clm {
    width: 33.33%;
}
.rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .footer-newsletter {
    width: 33.33%;
}
.footer .form__field.d-flex.fd-column.fd-row-sm.fd-column-lg.gap-12 {
    display: grid;
    text-align: center;
}
.footer .footer_image img {
    width: 100%;
    display: inline-block;
    max-width: 70%;
}
h2#sectionHeading-0bcb573ea1d4 {
    font-weight: 700;
}
h2#sectionHeading-42edf1df67df {
    font-size: 39px;
    font-weight: 700;
}


.custom_news_wrp button#subscribe {
    width: 50px;
    background: transparent;
    position: absolute;
    right: 0px;
    border: unset !important;
}
.custom_news_wrp .custom_news_inp {
    width: 100%;
    display: inline-block;
    float: left;
}
.custom_news_wrp {
    width: 100%;
    display: flex !important;
    align-items: center;
    position: relative;
}
.custom_news_wrp button#subscribe i.fa.fa-long-arrow-right {
    color: #ffffff;
    font-size: 21px;
}
.custom_news_wrp button#subscribe:hover{
  background:transparent;
}
.custom_news_wrp button#subscribe:hover::after{
  display:none!important;
}
.custom_news_wrp button#subscribe:hover{
  background:transparent;
}
.custom_news_wrp button#subscribe:focus{
  box-shadow:unset;
}
.page .s--margin.color-schema-1 {
    margin: 0;
    padding: 30px;
}
.slick-dotted.slick-slider ul.slick-dots {
    bottom: -16px;
}
table tr:nth-child(1) td:nth-child(2) {
    background: #4b8893;
}
table tr:nth-child(2) td:nth-child(2) {
    background: #4b8893;
}
table tr:nth-child(3) td:nth-child(2) {
    background: #4b8893;
}
table tr:nth-child(4) td:nth-child(2) {
    background: #4b8893;
}
section#shopify-section-template--14564721295432__e171e72f-b974-403f-b9e0-7f468ee0eee7 {
    padding: 0;
}
section#shopify-section-template--14564721295432__53654dea-f79c-4aa2-826f-0f0c2892ab56 {
    padding: 0;
}
section#shopify-section-template--14564721295432__e222915e-a40a-439d-9f08-c8d233707f2d {
    padding: 0;
}
.section.ctnr.footer__wrapper.pb-80 {
    padding: 50px 50px;
}
.section.ctnr.d-grid.gap-2x.hide-empty.wb-break-word {
    gap: 23px;
}
.new_single_image .page_wrapper div#swiper-wrapper-1017d609fe8c1a953 {
    width: 100%;
    justify-content: center !important;
}

.new_single_image .page_wrapper .swiper-container {

    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.new_single_image .swiper-wrapper{
align-items:center;

}
.product__media-wrapper--single-with-thumbnails{
overflow:hidden;
}
.cart .cart-amount.p-2x .mt-8.w-100 {
    display: none;
}

.custom_container{
   width:100%;
    display:block;
  max-width:1400px;
  padding: 50px 0px;
}

/* NEW CUSTOM CSS */

 .announcement_bar {
    padding: 8px 0;
}
.product .anmb-link-item p {
    font-size: 14px;
   letter-spacing: 1px;
}
.product .anmb-link-item {
    display: flex;
    flex-direction: unset;
    align-items: center;
    width: 100%;
    gap: 10px;
}
.product .anmb-link-item img.image {
    width: 100%;
    display: inline-block;
    max-width: 24px;
}
.product .js-wrap-image-lazy.d-block.o-hidden.w-100.h-100 {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.product .s--margin.color-scheme-4 {
    margin: 0;
}
.product tr th.comparison-table__logo {
    background: #809ffd;
  
}
table tr:nth-child(1) td:nth-child(2) {
    background: #809ffd;
}
table tr:nth-child(2) td:nth-child(2) {
    background: #809ffd;
}
table tr:nth-child(3) td:nth-child(2) {
    background: #809ffd;
}
table tr:nth-child(4) td:nth-child(2) {
    background: #809ffd;
}

.new_double_image a.new_button {
    background: #003DFF;
    border-color: #003DFF;
}
.template--23067281490225__image_collage_with_text_3UVPnt .s-header__sub {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
}
.custom_news_wrp button#subscribe {
    background: transparent !important;
}

.product .review-item__author-and-stars span.review-item__stars {
   color: #FFD700;
}
/* .product .main-product__info {
    width: 100%;
    max-width: 100%;
    padding-left: 0px;
}
 */
.product fieldset.form__fields.product-option {
    position: relative;
}
fieldset.form__fields.product-option ul li.custom_image_Colors {
    position: relative;
}
fieldset.form__fields.product-option ul li.custom_image_Colors:hover span.product-variant-label {
    display: inline-block !important;
    background: black;
    color: #ffffff;
    padding: 5px 6px;
    position: absolute;
    top: -42px;
    width: 140px;
    text-align: center;
    left: -30px;
  
}
.new_testimonial_section button.slick-next.slick-arrow::before {
  background: transparent;
}
/* .product .product-option__label {
    border-radius: 0px;
  
} */
.activedata .product .product-option__label{
border:2px solid#000000;
}

.new_testimonial_section button.slick-prev.slick-arrow::before {
    background: transparent;
        padding-top: 8px;
} 

div#shopify-section-template--23067281359153__contact_form_6G4TVe button {
    background: #003dff;
}
#shopify-section-template--23067281359153__main .s-content.m-auto.rte a {
    color: #003dff;
}
.product-option__value .input--variant:checked+.product-option__label, .product-option--unavailable .form__label {
    line-height: 2rem;
    padding: .8rem 1.6rem;
    border-radius: var(--button-corner-radius);
    color: var(--color-button-outline);
    background: var(--color-button-outline-background);
    box-shadow: 0 0 0 1px rgba(var(--color-button-outline-rgb), .12);
    transition: all .25s ease;
    border-radius: unset;
}
.product-option--unavailable .product-variant-label::before{
  content:unset;
}
.product-option__value:not(.product-option--unavailable) .input--variant:checked+.product-option__label {

    box-shadow: 0 0 0 1px rgba(var(--color-button-outline-rgb), .12);
}
div#inventoryTracking-template--23067281490225__main {
    display: none;
}
#shopify-section-template--23067281490225__image_collage_with_text_3UVPnt .s-header__desc.s-header__item, #shopify-section-template--23067281490225__image_collage_with_text_3UVPnt .s-header__buttons.s-header__item {
    margin-bottom: 20px;
}
/* .product-option__value.activedata {
    border: 1px solid #000000;
    border-radius: 2px;
} */
.page .header__logo.d-flex.middle-xs span.header__heading.m-zero.wb-break-word {
    display: none;
}
/* .product .anmb-link-item {
    padding: 16px 0px; */
}
.product .anmb-link-item p {
    font-size: 20px;
}
.product .stars span.fa.fa-star {
    color: #d2bef4;
}
/* .card--standard .card__content span.price__sale span.price-item {
    font-size: 20px;
    color: #d2bef4;
} */
.product .product__info span.price__sale s.price-item {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}
.product .product__info.product__block-description span.d-block {
    display: none;
}
/* .product .mb-32.hide-empty p {
    background: #d2bef4;
    padding: 5px 10px;
    border-radius: 10px;
} */
.product__info.product__block-description sht-read-more.d-block.mb-32 {
    margin-bottom: 0;
}
/* .product .w-100.fd-column button {
    border-color: #d2bef4;
    border-radius: 10px;
    background: #d2bef4;
} */
.product .product-slideshow__items .js-wrap-image-lazy img.js-image-lazy {
    border-radius: 30px;
}
.product .s--margin.color-schema-1 {
    margin: 0;
}
.product tr th.comparison-table__logo {
    background: #d2bef4;
}
table tr:nth-child(1) td:nth-child(2) {
    background: #d2bef4;
}
table tr:nth-child(2) td:nth-child(2) {
    background: #d2bef4;
}
table tr:nth-child(3) td:nth-child(2) {
    background: #d2bef4;
}
table tr:nth-child(4) td:nth-child(2) {
    background: #d2bef4;
}
/* table tr:nth-child(5) td:nth-child(2) {
    background: #d2bef4;
} */
.product .s--margin.color-scheme-6 div#marquee-dcd30ab84af2 {
    padding: 16px 0px;
       background: #d2bef4;
}
.product .js-marquee-item.d-flex.fw-nowrap {
    padding: 0px;
}
.product .js-marquee-item.d-flex.fw-nowrap .running-content-item p {
    font-size: 16px;
    color: #ffffff;
}

.rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .footer_image, .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .clm, .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .footer-newsletter {
    width: 33.33%;
    max-width: 33.33%;
}
.footer .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero p.footer__menu-heading {
    font-size: 23px;
    font-weight: 700;
}
.footer .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .clm.d-flex span.footer__menu-heading {
    font-size: 21px;
    font-weight: 700;
}
.footer .footer-newsletter span.menu__link {
    font-size: 21px;
    font-weight: 700;
}

dynamic-dates.shipping-checkpoints {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
/* .s-header__banner.s-header__content>:last-child {
    margin-bottom: 0;
    border: 1px solid;
    border-radius: 10px;
}
  .s-header__banner.s-header__content>:last-child {
    margin-bottom: 0;
    border: 1px solid;
    border-radius: 10px;
} */
.shipping-checkpoint .shipping-checkpoint__icon.color-inverse img {
    width: 100%;
    display: inline-block;
    max-width: 50%;
    border: 1px solid;
    padding: 10px;
    background: #000000;
    border-radius: 200px;
}

.product .s-header__content .s-header__buttons a.btn.btn--large {
    border: 1px solid;
   border-radius: 10px;
}

    .shipping-checkpoints__bar {
        height: .3rem;
        background: #000000;
        width: 100%;
    }
.shipping-checkpoints__bar {
    position: absolute;
    top: calc(var(--icon-size) / 2);
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% / var(--item-count)* var(--item-count-sub));
    height: .2rem;
    z-index: -1;
    display: block;
}
.shipping-checkpoints {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--item-count), 1fr);
    justify-items: center;
    align-items: flex-start;
    column-gap: 1rem;
    --icon-size: 4rem;
    z-index: 0;
}
.shipping-checkpoint {
    text-align: center;
}
.shipping-checkpoint__icon.color-inverse {
    text-align: center;
}
/* .product .gap-12.d-flex.w-100.fd-column {
    margin-bottom: 20px;
} */
.product dynamic-dates.shipping-checkpoints {
    margin-bottom: 30px;
}
.expandable-content .rte span {
    letter-spacing: 1px;
}
div#template--23073029914929__main {
    margin: 0;
}
.product .star_rating .new_text p {
    font-size: 18px;
}
div#shopify-section-sections--16886492856479__running_content_Kd9wFN div#marquee-be5483725bde {
    padding: 10px 0;
}
.product .stars span.fa.fa-star {
    color: #ffcc00;
}
.product .star_rating .new_text p {
    font-size: 14px;
    letter-spacing: 1px;
}
.product .product__info .expandable-content.p-relative .rte p {
    margin-bottom: 10px;
    padding: 0;
}
.product .product__info .expandable-content.p-relative .rte {
    margin: 10px 0;
}
/* .card--standard .card__content span.price__sale span.price-item {
    font-size: 20px;
    color: #000000;
} */
.product .product__info.product__block-price .card__content span.price span.price-item__regular s.price-item {
    font-size: 16px;
}

.product-option__value:not(.product-option--unavailable) .input--variant:checked+.product-option__label {
    box-shadow: none !important;
    color: #000000;
   border-radius: 100px;
}
.product-option__value .input--variant:checked+.product-option__label {
    box-shadow: none!important;
    color: #000000;
   border-radius: 100px;
}

.product-option__label {
    line-height: 2rem;
    color: #000 !important;
    padding: .8rem 1.6rem;
    background: var(--color-button-outline-background);
    box-shadow: 0 0 0 1px rgba(var(--color-button-outline-rgb), .12);
    transition: all .25s ease;
}

.product .product__info div#inventoryTracking-template--16886492725407__main {
    display: none;
}
div#variantPicker-template--16886492725407__main {
    margin-bottom: 20px;
}
.product .product-option__label {
    border: 1px solid;
   border-radius: 40px;
background-size: cover;
background-position: center;
width: 40px;
height: 40px;
background-repeat: no-repeat;

}

.product-option__value.activedata label.form__label{
border-radius: 40px;
border:2px solid#000000;
}
.product form .product-form__buttons button {
    border-radius: 10px;
}

div#shopify-section-template--16886492725407__main .btn-primary:hover {
    color: #000000 !important;
}
/* .product .mb-32.hide-empty p {
    background: #eeeeee;
    padding: 5px 10px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
} */
.comparison-table-container table.comparison-table td:nth-child(1) {
    background: #000000;
}
.product tr th.comparison-table__logo {
    color: #000000;
    background: #ffffff;
}
table tr:nth-child(1) td:nth-child(2) {
    background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}
table tr:nth-child(2) td:nth-child(2) {
    background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  
}
table tr:nth-child(3) td:nth-child(2) {
    background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}
table tr:nth-child(4) td:nth-child(2) {
    background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}
.comparison-table th {
    color: #000000;
}
/* .comparison-table-container table.comparison-table tbody {
    border: 0px;
} */
.comparison-table tbody td:not(.comparison-table__row-name) {
    padding: 1rem 2rem;
    border-bottom: 1px solid #eeeeee;
}
.product .content-container.center h2.title.h1 {
    color: #000000;
    text-align: center;
}
.product .content-container.center p {
    text-align: center;
    color: #000000;
}
div#shopify-section-template--16886492725407__running_content_e78wzM div#marquee-ec9f224b1450 {
    padding: 16px 0;
}
.template--16886492725407__image_collage_with_text_MTDPbT .s-header__content h2 {
    margin-bottom: 10px;
}
.template--16886492725407__image_collage_with_text_MTDPbT .s-header__content .s-header__desc {
    margin-bottom: 2rem;
}
.content-and-results .content-container.center {
    color: #000000;
    text-align: center;
}
.content-and-results .content-container.center h2.title.h2 {
    text-align: center;
    font-weight: 700;
}
.content-and-results .results__text p {
    color: #000000;
}
.color-background-1 .results__percentage:before {
    background: conic-gradient(from 0deg at 50% 50%, #000000 0%, #000000 var(--percentage), rgb(var(--color-background)) var(--percentage), rgb(var(--color-background)) 100%) !important;
    --color-base-accent-1: 113, 131, 85 !important;
    --color-background: 255, 255, 255;
}
.results__row .results__percentage p {
    color: #000000;
}
.results-container .results h3.title.h2 {
    font-size: 31px;
    color: #000000;
    font-weight: 700;
    margin: 0 0 15px;
}
.results-container .results .results__rows-container .results__row {
    border-top: 1px solid #dddddd;
    padding: 10px 0;
}
.results-container .results .results__rows-container .results__row:nth-child(3) {
    border-bottom: 1px solid #dddddd;
    padding: 10px 0;
}
.rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .footer_image, .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .clm, .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .footer-newsletter {
    width: 25%;
    max-width: 25%;
}
.footer .footer-description.mt-12.rte.hide-empty p {
    margin: 5px 0;
}
div#shopify-section-sections--16886492856479__running_content_Kd9wFN .s--margin.color-scheme-3 {
    margin: 0;
}
.comparison-table .comparison-table__row-name h3 {
    color: #ffffff!important;
}
.main-product .new_image_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}
.main-product .new_image_block img.main_image {
    width: 100%;
    display: inline-block;
    max-width: 100%;
}
div#shopify-section-template--16886492725407__running_content_kgwzpX div#marquee-c1273bbc5af4 {
    padding: 16px 0;
}
div#shopify-section-template--16886492725407__running_content_kgwzpX .s--margin.color-scheme-3.s-container-radius.o-hidden.running-content__wrapper.js-running-content.no-transparent {
    margin: 0;
}
/* .product .product-option__label:hover {
    background: #000000;
    color: #ffffff !important;
} */
.product-option__value .input--variant:checked+.product-option__label:hover {
    background: #000000;
    color: #ffffff;
}
footer .clm.d-flex.fd-column.gap-24.wb-break-word {
    gap: 0px;
}
.payment-badges-block ul.payment-badges {
    display: flex;
    margin-top: 10px;
    gap: 15px;
    width: 100%;
}
.payment-badges-block ul.payment-badges li.list-payment__item {
    list-style: none;
}
.payment-badges-block ul.payment-badges li.list-payment__item svg {
    border-radius: 0px;
}

.product .stars i.fa.fa-star-half {
    color: #fc0;
}
.product .w-100.fd-column button span.js-product-form-submit-btn-text {
    text-transform: uppercase;
}
.new_image_text h3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
   gap: 10px;
    margin-bottom: 10px;
}
.new_image_text h3 .icons-with-text__icon__icon img {
    width: 40px;
}
.new_image_text h3 span {
    font-size: 21px;
    font-weight: 700;
}
.new_image_text .s-header__desc {
    margin-bottom: 10px;
}
.header--horizontal-left {
        grid-template-areas: " header-nav logo icon-right"!important;
  grid-template-columns: 1fr auto 1fr;
        column-gap: 2rem;
    }

.page .running-content-item p {
    font-size: 16px;
}
div#shopify-section-sections--16886492856479__running_content_Kd9wFN .running-content-item p {
    font-size: 16px;
}
.revcontainer {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
   background: #fafafa;
}
.revcontainer .revtext {
    font-size: 12px;
}
.product-form__input label.form__label button.btn-plain {
    color: #000000;
  margin: 10px;
}
.product-form__input label {
    display: unset;
}
.dialog.disable-scrollbars {
    width: 100%;
    max-width: 50%;
}
.dialog__content.d-flex.fd-column.h-100 .dialog__header.d-flex {
    width: 100%;
    max-width: 100%;
}
.dialog__content.d-flex.fd-column.h-100 .dialog__body {
    width: 100%;
    max-width: 100%;
}
.template--16890702889119__image_collage_with_text_WtPyqz {
    width: 100%;
    margin: 0;
}
.template--16890702889119__image_collage_with_text_qQqmkE {
    width: 100%;
    margin: 0;
}
.template--16890702889119__image_collage_with_text_ht37LF {
    width: 100%;
    margin: 0;
}
.template--16890702889119__image_collage_with_text_79WGmy {
    width: 100%;
    margin: 0;
}
.template--16890702889119__image_collage_with_text_CT4HYV {
    width: 100%;
    margin: 0;
}
.template--16890702889119__image_collage_with_text_PcA6Em {
    width: 100%;
    margin: 0;
}
.template--16890702889119__image_collage_with_text_wYwATL {
    width: 100%;
    margin: 0;
}
.s-header__sub.s-header__item.hide-empty.d-block {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.product-swatches__item.Active-click span.product-swatches {
    border: 1px solid;
}

.product-slideshow-pagination button.carousel__btn svg {
    color: #000000;
}
.product-slideshow__pagination-btn svg {
    color: #000000;
}
.product-slideshow__pagination-btn svg {
    color: #000000;
}
.dialog.disable-scrollbars img {
    width: 100%;
    display: inline-block;
}
.product-form__input label.form__label {
    display: flex !important;
    justify-content: space-between;
}
select#Option-template--18317843759348__main-0 {
    border-radius: 10px;
}
.dialog__header.d-flex.between-xs.middle-xs.p-sticky.top-0.gap-1x {
    background: #ffffff;
}
.dialog__body.js-dialog-body.disable-scrollbars {
    background: #ffffff;
}
.s-container-radius {
    margin: 0;
}
.ks-table-wrapper table.ks-table tr.ks-table-row:nth-child(1) td {
    font-weight: 700;
}
.ks-table-wrapper table.ks-table tr.ks-table-row:nth-child(2) td.ks-table-cell.ks-table-header-cell {
    font-weight: 700;
}
.ks-table-wrapper table.ks-table tr.ks-table-row:nth-child(3) td.ks-table-cell.ks-table-header-cell {
    font-weight: 700;
}
.ks-table-wrapper table.ks-table tr.ks-table-row:nth-child(4) td.ks-table-cell.ks-table-header-cell {
    font-weight: 700;
}
.ks-table-wrapper table.ks-table tr.ks-table-row:nth-child(5) td.ks-table-cell.ks-table-header-cell {
    font-weight: 700;
}
button.btn {
    border-radius: 10px;
}

.header__logo a.header__logo-link {
   pointer-events: none;
}
.rw.between-xs.hide-empty.r-gap-32.gap-lg-zero img {
    pointer-events: none;
}

.product .accordion__item.js-accordion-item {
    margin-bottom: 40px !important;
}

.collection .collection-product-main .sht-card.product-card .card__media.product-card__media {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.collection .collection-product-main .sht-card.product-card {
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.collection .collection-product-main .sht-card.product-card .card__content h3.card__heading a {
  font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}
.collection .collection-product-main .sht-card.product-card .card__content.w-100 .btn-quick-view {
    text-decoration: none;
    border: 3px solid;
    padding: 10px 45px;
    width: 140px;
    border-radius: 10px;
}
.collection .collection-product-main .sht-card.product-card .card__content.w-100 .btn-quick-view:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transition: 0.3s;
  border: 2px solid #000000;
}
.shopify-policy__container {
    padding-top: 20px;
}
.retro-console-projector .s-header__content.s-header__banner {
    background: #ffffff;
    border-radius: 20px;
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.product .accordion__content p {
    margin-bottom: 10px;
}




















@media screen and (max-width: 1024px) {

.new_double_image .page_wrapper .content_block .new_image_data {

    max-width: 30%;

}
  .product .main-product.ctnr.p-relative {
    flex-direction: unset !important;
    justify-content: space-between;
}   
 .product .stars {
    width: 25%;
} 
.slideshow .slick-next {
    right: 27% !important;
}
  .slideshow .slick-prev {
    left: 29% !important;
  }
  .header__logo.d-flex.middle-xs {
    max-width: 100%;
    width: 100%;
    justify-content: center;
}
.collection-products .grid__item {
    width: 33%!important;
    max-width: 33%!important;
  margin: 0 auto;
}



  
}

@media screen and (max-width: 768px) {
.mobile-full-width {
    width: 100%;
}
  .retro-console-projector .s-header__content.s-header__banner {
    display: none;
}
 .product .s-header__content .s-header__buttons a.btn.btn--large {
    border: 1px solid;
    border-radius: 10px;
    width: 100%;
    margin: 0 auto;
   max-width: 130px;
}
   .template--18441484173556__image_collage_with_text_dY9EFq .s-header__buttons.s-header__item {
    width: 100%;
    max-width: 30%;
    margin: 0 auto;
}
  .template--18441484173556__image_collage_with_text_qQqmkE {
    width: 100%;
    margin: 0;
}
  .template--18441484173556__image_collage_with_text_ht37LF {
    width: 100%;
    margin: 0;
}
  .template--18441484173556__image_collage_with_text_dY9EFq {
    width: 100%;
    margin: 0;
    margin-top: 20px;
}
  
  .template--18317843759348__image_collage_with_text_WtPyqz {
    width: 100%;
    margin: 0;
}
  .template--18317843759348__image_collage_with_text_qQqmkE {
    width: 100%;
    margin: 0;
}
  .template--18317843759348__image_collage_with_text_79WGmy {
    width: 100%;
    margin: 0;
}
.new_faq_section .page_wrapper .new_box .new_text22 img {
        width: 10%;
        max-width: 18px;
        display: inline-block;
    }
  .new_faq_section .page_wrapper .new_box .new_text22 h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    width: 90%;
    color: #000000;
}
div#shopify-section-sections--23067281621297__announcement-bar .ctnr {
    padding: 5px 20px;
}
.product .anmb-link-item p {
    font-size: 14px;
    letter-spacing: 0;
}
.header__logo__img {
    max-width: 160px;
}
div#shopify-section-sections--23067281621297__header sht-header.section--rounded {
    margin: 0!important;
}

.product .d-flex.fd-column.gap-content .template--23067281490225__image_collage_with_text_MTDPbT {
    width: 100%;
    max-width: 100%;
}
  .product .d-flex.fd-column.gap-content .template--23067281490225__image_collage_with_text_rbGWVx {
    width: 100%;
    max-width: 100%;
}
  .product .d-flex.fd-column.gap-content .template--23067281490225__image_collage_with_text_3UVPnt {
    width: 100%;
    max-width: 100%;
}
  
.footer__content .footer_image {
    padding: 0 5px;
}
  .product .review-item.review-item--top .review-item__image.media.media--transparent img {
    width: 100%;
    display: inline-block; 
    
}
.template--16886492725407__image_collage_with_text_MTDPbT {
    width: 100%;
    margin: 0;
}
  .template--16886492725407__image_collage_with_text_rbGWVx {
    width: 100%;
    margin: 0;
}
  .template--16886492725407__image_collage_with_text_YKJVpk {
    width: 100%;
    margin: 0;
}
  .new_faq_section .ctnr {
    padding: 10px 10px;
}
  .footer .footer_image img {
    width: 100%;
    display: inline-block;
    max-width: 50%;
}
  .payment-badges-block ul.payment-badges {
    flex-wrap: wrap;
    width: 100%;
}
  .template--16886492725407__custom_image_with_text_AHjxhz {
    width: 100%;
    margin: 0;
}
  

  
.s-header__content.s-header__banner h2#sectionHeading-39708c92cbd0 {
    text-align: center;
    width: 100%;
}
  div#shopify-section-template--17709786398877__new_double_image_cngw3G .new_double_image .page_wrapper .content_block .new_image_data img.product_image {
    width: 100%;
    display: inline-block;
    max-width: 50%;
}
  div#shopify-section-template--17709786398877__image_collage_with_text_rbGWVx .rw.middle-xs {
    width: 100%;
}
.header__logo.d-flex.middle-xs {
    width: 100%;
    justify-content: center; 
  max-width: 100%;
}
  .product .main-product.ctnr .main-product__media.maw-100.w-100.false {
    width: 100%;
}
  .product .main-product.ctnr div#productInfo-template--17709786398877__main {
    width: 100%;
    max-width: 100%;
     padding: 0;
}
 .template--17709786398877__image_collage_with_text_MTDPbT {
    width: 100%;
} 
  .template--17709786398877__image_collage_with_text_rbGWVx {
    width: 100%;
}
  .template--17709786398877__image_collage_with_text_3UVPnt {
    width: 100%;
}
  .footer .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%
}
  .product .stars {
    width: 15%;
}
  .product .star_rating .new_text {
    width: 88%;
    display: INLINE-BLOCK !important;
}
  .product .content-container.center h2.title.h1 {
    font-weight: 700;
    font-size: 29px;
    text-align: center;
     color: #000000;
}
  .product .content-container.center p {
    text-align: center;
    color: #000000 !important;
    margin: 10px 0px;
}
  
  .product-slideshow-mobile-full-width {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
}
  
.new_single_image .page_wrapper .swiper-container {
    max-width: 95%;
   text-align:center;
   overflow: hidden;
}

.new_double_image .page_wrapper .content_block .new_image_data {
    max-width: 80%;
}
 .main-product .main-product__media {
    width: 100% !important;
    max-width: 100% !important;
}
  .product .main-product__info {
    width: 100%!important;
    max-width: 100%!important;
    padding-left: 10px;
}
      .product .main-product.ctnr.p-relative {
        flex-direction: column !important;
        justify-content: space-between;
    }
.product .d-flex.fd-column.gap-content {
    flex-wrap: wrap;
    width: 100%;
}
  .template--23073029914929__image_collage_with_text_MTDPbT {
    width: 100%;
    margin: 0;
}
  .template--23073029914929__image_collage_with_text_rbGWVx {
    width: 100%;
    margin: 0;
}
  .template--23073029914929__image_collage_with_text_nKLM9Q {
    width: 100%;
    margin: 0;
}
  .richtext_block .page_wrapper .new_head p.head2 {
    max-width: 100%;
}
.footer .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero {
    flex-wrap: wrap;
    width: 100%;
}
  .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .footer_image, .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .clm, .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .footer-newsletter {
    width: 100%;
    max-width: 100%;
}
    .section-header-last .s--margin, .section-header-last .s-small-margin--outer, .section-header-last .section-header:not(.section-header--transparent) {
        margin-bottom: 0px;
    }  
.shipping-checkpoints__bar {
    --item-count: 2.5!important;
}
  .content-and-results .content-container.center {
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}
  .dialog.disable-scrollbars {
    width: 100%;
    max-width: 100%;
}
.template--18441484173556__image_collage_with_text_WtPyqz {
    width: 100%;
    margin: 0;
}
  .template--18441484173556__image_collage_with_text_ht37LF .s-header__buttons.s-header__item {
    width: 100%;
    max-width: 140px;
        margin: 0 auto;
}
  .card--standard .card__content span.price__sale span.price-item {
    font-size: 14px;
  }
 .retro-console-projector .new_content {
    max-width: 80%;
    margin: 0 auto;
    padding: 30px;
}
  .retro-console-projector .new_content .heading p {
    font-size: 26px;
}
  .retro-console-projector .new_button a.new_buttonss {
    padding: 10px 20px;
    border-radius: 10px;
    background: #44c2fd;
    color: #ffffff;
    font-weight: 700;
}
  .retro-console-projector .new_button {
    margin-top: 20px;
}

}



@media screen and (max-width: 640px) {
 .product .stars {
    width: 20%;
}
  .video-result-section .result-video-container {
        gap: 0px;
    }
  .product .star_rating .new_text {
    width: 80%;
    display: INLINE-BLOCK !important;
}
  
  .product .stars {
    width: 25%;
}
  .product .star_rating .new_text {
    width: 75%;
    display: INLINE-BLOCK !important;
}
  .slideshow .slick-next {
        right: 186px;
        z-index: 999;
        top: 146px;
    }
      .slideshow .slick-prev {
        left: 195px;
        top: 161px;
    }
  
}



@media screen and (max-width: 540px) {
       .slideshow .slick-next {
        right: 146px;
        z-index: 999;
        top: 171px;
 
       }
      .slideshow .slick-prev {
        left: 145px;
        top: 187px;
    }

 .dialog.disable-scrollbars {
    width: 100%;
    max-width: 100%;
}
      :root {
        --gutter-base: 0.2rem!important;
    }
  .ks-table-wrapper table.ks-table tr td {
    font-size: 14px;
    padding: 9px 3px;
    text-align: center;
}
      .template--18441484173556__image_collage_with_text_dY9EFq .s-header__buttons.s-header__item {
        width: 100%;
        max-width: 140px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
 .new_announcement_bar .new_block {
    padding: 0 20px;
}
.new_announcement_bar .new_block img.image {
    width: 24px !important;
}
.new_announcement_bar .page_wrapper p.new_content2 {
        width: auto !important;
    font-size: 13px;
    letter-spacing: 0;
} 
.s-header__buttons {
    width: 100%;
    justify-content: center;
    margin: 0 auto;
}
  
  .ctnr {
    padding: 20px;
}
  .slideshow ul li {
    margin: 0;
}
  
  .rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .footer_image {
    width: 100%;
}
.rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .clm {
    width: 100%;
}
.rw.between-xs.hide-empty.r-gap-32.gap-lg-zero .footer-newsletter {
    width: 100%;
}
 .product-slideshow__slide {
    width: 100%;
    max-width: 100%;
     margin: 0;
} 
  .product-slideshow__thumbnail {
    width: 100%;
    max-width: 100%;
}
  .new_single_image .swiper-slide .product_image{
    max-width: 40%!important;
    margin: 0 auto!important;
  }

.new_double_image .page_wrapper .content_block .new_image_data {
        max-width: 100%;
    }
   
  .slideshow .slick-next {
    right: 32% !important;
}
  .slideshow .slick-prev {
    left: 34% !important;
}
  .section.ctnr.footer__wrapper.pb-80 {
    padding: 20px;
}
  .page .header__logo.d-flex.middle-xs a.header__logo-link img {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}
  .page .header__logo.d-flex.middle-xs a.header__logo-link {
    text-align: center;
}
  .richtext_block .page_wrapper .new_head h1.head {
    font-size: 29px;
}
  .product .s-header .s-header__content h2 {
    font-weight: 700;
    font-size: 22px; 
    text-align: center!important;
    width: 100%;
margin-top: 20px;
}
  .template--16886492725407__image_collage_with_text_MTDPbT .s-header__content .s-header__desc p {
    font-size: 15px;
    text-align: left;
}
      .collection-products .grid__item {
        width: 50% !important;
        max-width: 50% !important;
        margin: 0 auto;
    }
   .collection .collection-product-main .sht-card.product-card .card__content h3.card__heading a {
    font-size: 14px;
}
  .retro-console-projector .new_content {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px;
}
}

@media screen and (max-width: 430px) {
    
.new_double_image .page_wrapper .content_block .new_image_data {
    max-width: 100%;

}
div#shopify-section-template--17709786398877__new_double_image_cngw3G .new_double_image .page_wrapper .content_block .new_image_data img.product_image {
        max-width: 60%;
    }

}
@media screen and (max-width: 420px) {
 .new_announcement_bar .page_wrapper p.new_content2 {
    width: 50%;
}
.new_announcement_bar .new_block img.image {
    width: 50%;
}
div#shopify-section-template--23067281490225__announcement_bar2_9T8CRF img.image {
    width: 30%;
}
 div#shopify-section-template--23067281490225__announcement_bar2_9T8CRF p.new_content2 {
    width: 70%;
} 
 .new_testimonial_section button.slick-prev.slick-arrow::before {
    background: transparent;
        padding-top: 8px;
} 

}

@media screen and (max-width: 390px) {
    .slideshow .slick-next {
        right: 96px;
        z-index: 999;
        top: 195px;
 
    }
  .slideshow .slick-prev {
        left: 106px;
        top: 208px;
    }
   .collection-products .grid__item {
        width: 50% !important;
        max-width: 50% !important;
        margin: 0 auto;
    }
}

@media screen and (max-width: 360px) {
    .slideshow .slick-next {
        right: 86px;
        z-index: 999;
        top: 218px;
    }
      .slideshow .slick-prev {
        left: 95px;
        top: 233px;
    }
}

@media screen and (max-width: 340px) {

     .slideshow .slick-next {
        right: 58px;
        z-index: 999;
        top: 242px;
    }
      .slideshow .slick-prev {
        left: 68px;
        top: 256px;
    }
  
}
.nav__item--active, .nav__item:hover {
    color: rgb(18 0 0)!important;
}



.drawer__footer button.btn, .drawer__footer .btn.btn--large  {
    border: 1px solid #000000;
    border-radius: 90px;
}







/* new pro css */
.aromatherapy-bracelet.product .new_testimonial_section .page_wrapper{
padding-top:0;
}
.aromatherapy-bracelet.product .content-and-comparison-table .content-container .title,
.aromatherapy-bracelet.product .s-header__banner .s-header__title{
  font-size: 40px;
 font-weight:700;
}
.aromatherapy-bracelet.product .product-option__value .input--variant:checked+.product-option__label:hover{
  background: unset!important;
}

.aromatherapy-bracelet.product .product-form__input label span.mr-8{
font-weight:700;
}
.aromatherapy-bracelet.product sht-variant-selects .field__select select{
border-radius:10px!important;
}
.aromatherapy-bracelet.product li.custom_image_Type.activedata {
    border: 1px solid;
}


.aromatherapy-bracelet.product .s-header__content.s-header__banner {
    border: 1px solid #ffffff;
    color: #000000;
    max-width: 80%;
    margin: 0 auto;
    border-radius: 20px;
    padding: 20px 10px;
}
.aromatherapy-bracelet.product .content-and-comparison-table {
    text-align: center;
  padding: 0px 20px;
}
.aromatherapy-bracelet.product .product__info h1.product__title {
    font-size: 40px;
    font-weight: 700;
}
.aromatherapy-bracelet.product .product__info span.price-item.price-item--last.d-inline-block.fw-700 {
    font-size: 34px;
    font-weight: 700;
}
.aromatherapy-bracelet.product .s--margin.color-schema-1 .main.head h1.new_head {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}
.aromatherapy-bracelet.product .s--margin.color-schema-1 .main.head {
    text-align: center;
}
.aromatherapy-bracelet.product .s-header__desc p {
    letter-spacing: 1px;
    line-height: 30px;
}

.aromatherapy-bracelet.product .card__content {
    padding: 0;
}

.aromatherapy-bracelet.product .product-form__input label.form__label button.btn-plain{
  display:none;
}

/* //////////////////// */
.vastgod-crown-of-thorns-bracelet.product .new_testimonial_section .page_wrapper{
padding-top:0;
}
.vastgod-crown-of-thorns-bracelet.product .content-and-comparison-table .content-container .title,
.vastgod-crown-of-thorns-bracelet.product .s-header__banner .s-header__title{
  font-size: 40px;
 font-weight:700;
}
.vastgod-crown-of-thorns-bracelet.product .product-option__value .input--variant:checked+.product-option__label:hover{
  background: unset!important;
}

.vastgod-crown-of-thorns-bracelet.product .product-form__input label span.mr-8{
font-weight:700;
}
.vastgod-crown-of-thorns-bracelet.product sht-variant-selects .field__select select{
border-radius:10px!important;
}
.vastgod-crown-of-thorns-bracelet.product li.custom_image_Type.activedata {
    border: 1px solid;
}


.vastgod-crown-of-thorns-bracelet.product .s-header__content.s-header__banner {
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #000000;
    max-width: 80%;
    margin: 0 auto;
    border-radius: 20px;
    padding: 20px 10px;
}
.vastgod-crown-of-thorns-bracelet.product .content-and-comparison-table {
    text-align: center;
  padding: 0px 20px;
}
.vastgod-crown-of-thorns-bracelet.product .product__info h1.product__title {
    font-size: 40px;
    font-weight: 700;
}
.vastgod-crown-of-thorns-bracelet.product .product__info span.price-item.price-item--last.d-inline-block.fw-700 {
    font-size: 34px;
    font-weight: 700;
}
.vastgod-crown-of-thorns-bracelet.product .s--margin.color-schema-1 .main.head h1.new_head {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}
.vastgod-crown-of-thorns-bracelet.product .s--margin.color-schema-1 .main.head {
    text-align: center;
}
.vastgod-crown-of-thorns-bracelet.product .s-header__desc p {
    letter-spacing: 1px;
    line-height: 30px;
}

.vastgod-crown-of-thorns-bracelet.product .card__content {
    padding: 0;
}

.vastgod-crown-of-thorns-bracelet.product .product-form__input label.form__label button.btn-plain{
  display:none;
}
[data-ui-component="Image Banner Section"] .new_content{
display:none;
}
[data-ui-component="Image Banner Section"] .new_content{
display:none;
}
[data-ui-component="Image Banner Section"] .new_content{
text-align:center;
}
.product .s-header__content.s-header__banner {
 background: #ffffff;
    padding: 20px;
    max-width: 80%;
    margin: 0 auto;
    border-radius: 20px;
}
.product .product__info ul li {
    text-decoration: none;
    list-style: none;
margin-bottom: 10px;
}
.product .main.head h1.new_head {
   display:none;
}






@media screen and (max-width: 1024px) {
.aromatherapy-bracelet.product .content-and-comparison-table .content-container .title, .aromatherapy-bracelet.product .s-header__banner .s-header__title,
.aromatherapy-bracelet.product .product__info h1.product__title{
font-size:35px;
}
.aromatherapy-bracelet.product .s--margin.color-schema-1 .main.head h1.new_head
{
font-size:35px;
}
.aromatherapy-bracelet.product .content-and-comparison-table .content-container .title, .aromatherapy-bracelet.product .s-header__banner .s-header__title,
.aromatherapy-bracelet.product .product__info h1.product__title{
font-size:35px;
}
.aromatherapy-bracelet.product .content-and-comparison-table .content-container .title,
[data-ui-component="Image Banner Section"] .heading h2{
font-size:35px!important;
font-weight:700;
}


/* ////// */
.vastgod-crown-of-thorns-bracelet.product .content-and-comparison-table .content-container .title, .vastgod-crown-of-thorns-bracelet.product .s-header__banner .s-header__title,
.vastgod-crown-of-thorns-bracelet.product .product__info h1.product__title{
font-size:35px;
}
.vastgod-crown-of-thorns-bracelet.product .s--margin.color-schema-1 .main.head h1.new_head
{
font-size:35px;
}
.vastgod-crown-of-thorns-bracelet.product .content-and-comparison-table .content-container .title, .vastgod-crown-of-thorns-bracelet.product .s-header__banner .s-header__title,
.vastgod-crown-of-thorns-bracelet.product .product__info h1.product__title{
font-size:35px;
}
.vastgod-crown-of-thorns-bracelet.product .content-and-comparison-table .content-container .title,
[data-ui-component="Image Banner Section"] .heading h2{
font-size:35px!important;
font-weight:700;
}
  
}




@media screen and (max-width: 768px) {
.product .s-header__content.s-header__banner {
    display: none;
}
.product .new_content p.texttt {
    margin-bottom: 20px;
}
  .product .new_content {
    padding: 20px;
}
.product .new_content .new_button a.new_buttonss {
    border: 1px solid;
    padding: 7px 20px;
    border-radius: 10px;
    background: #44C2FD;
    color: #ffffff;
    font-weight: 700;
}
.product .new_content .heading p {
    font-size: 27px;
  display: none!important;
    margin-bottom: 20px;
    line-height: 30px;
    font-weight: 700;
}
  .product .main.head h1.new_head {
    text-align: center;
    font-size: 27px;
width: 100%;
    margin-bottom: 10px;
    font-weight: 700;
     display: inline-block;
margin-top: 20px;
}
[data-ui-component="Image Banner Section"] .new_content{
display:block;
}
.aromatherapy-bracelet.product .new_content p.texttt {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.aromatherapy-bracelet.product .new_content {
    display: inline-block !important;
  padding: 30px;
}
  .aromatherapy-bracelet.product .new_content h1.heading {
    text-align: center;
    font-size: 30px;
}
.aromatherapy-bracelet.product .new_button {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
  .aromatherapy-bracelet.product .new_button a.new_buttonss {
    padding:10px 15px;
    border-radius: 10px;
    background: #76c5ef;
    color: #ffffff;
    font-weight: 700;
}


.aromatherapy-bracelet.product .s--margin.color-schema-1 .main.head h1.new_head
{
font-size:27px;
}
.aromatherapy-bracelet.product .content-and-comparison-table .content-container .title, .aromatherapy-bracelet.product .s-header__banner .s-header__title,
.aromatherapy-bracelet.product .product__info h1.product__title{
font-size:27px;
}
.aromatherapy-bracelet.product .content-and-comparison-table .content-container .title,
[data-ui-component="Image Banner Section"] .heading h2{
font-size:27px!important;
font-weight:700;
}
  
  .aromatherapy-bracelet.product .s-header__content.s-header__banner {
    max-width: 100%;
    padding: 20px 10px;
     display: none;
}
  .aromatherapy-bracelet.product .s--margin.color-schema-1 .main.head h1.new_head {
    /* font-size: 19px; */
    margin-bottom: 30px;
    font-weight: 700;
    padding: 0px 20px;
}
  .aromatherapy-bracelet.product .content-and-comparison-table {
    text-align: center;
  padding: 20px 20px;
}

  .aromatherapy-bracelet.product .comparison-table-container {
    padding-bottom: 30px;
}
  .aromatherapy-bracelet.product .content-container.center {
    margin-bottom: 30px;
}

/* ////// */
.vastgod-crown-of-thorns-bracelet.product .new_content p.texttt {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.vastgod-crown-of-thorns-bracelet.product .new_content {
    display: inline-block !important;
  padding: 30px;
}
  .vastgod-crown-of-thorns-bracelet.product .new_content h1.heading {
    text-align: center;
    font-size: 30px;
}
.vastgod-crown-of-thorns-bracelet.product .new_button {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
  .vastgod-crown-of-thorns-bracelet.product .new_button a.new_buttonss {
    padding:10px 15px;
    border-radius: 10px;
    background: #76c5ef;
    color: #ffffff;
    font-weight: 700;
}


.vastgod-crown-of-thorns-bracelet.product .s--margin.color-schema-1 .main.head h1.new_head
{
font-size:27px;
}
.vastgod-crown-of-thorns-bracelet.product .content-and-comparison-table .content-container .title, .vastgod-crown-of-thorns-bracelet.product .s-header__banner .s-header__title,
.vastgod-crown-of-thorns-bracelet.product .product__info h1.product__title{
font-size:27px;
}
.vastgod-crown-of-thorns-bracelet.product .content-and-comparison-table .content-container .title,
[data-ui-component="Image Banner Section"] .heading h2{
font-size:27px!important;
font-weight:700;
}
  
  .vastgod-crown-of-thorns-bracelet.product .s-header__content.s-header__banner {
    max-width: 100%;
    padding: 20px 10px;
     display: none;
}
  .vastgod-crown-of-thorns-bracelet.product .s--margin.color-schema-1 .main.head h1.new_head {
    /* font-size: 19px; */
    margin-bottom: 30px;
    font-weight: 700;
    padding: 0px 20px;
}
  .vastgod-crown-of-thorns-bracelet.product .content-and-comparison-table {
    text-align: center;
  padding: 20px 20px;
}

  .vastgod-crown-of-thorns-bracelet.product .comparison-table-container {
    padding-bottom: 30px;
}
  .vastgod-crown-of-thorns-bracelet.product .content-container.center {
    margin-bottom: 30px;
}

   .vastgod-crown-of-thorns-bracelet .product .main-product__info {
    padding-left: 50px !important;
}
}

@media screen and (max-width: 480px) {
    .ctnr {
        padding: 20px;
    }


  div#productInfo-template--18711994728692__main {
    padding: 0px 13px;
}

.vastgod-crown-of-thorns-bracelet.product .content-and-comparison-table .content-container .title, .vastgod-crown-of-thorns-bracelet.product .s-header__banner .s-header__title, .vastgod-crown-of-thorns-bracelet.product .product__info h1.product__title {
        font-size: 25px;
    }

.vastgod-crown-of-thorns-bracelet.product .product__info span.price-item.price-item--last.d-inline-block.fw-700 {
    font-size: 28px;
    font-weight: 700;
}
.product-slideshow__thumbs.product__thumbnails--square.fill.h-100.top-xs.js-carousel-items.vertical-carousel.vertical-carousel__container.d-flex.middle-xs.p-relative.disable-scrollbars.fw-nowrap.scrollable.scrl-bhvr-auto.carousel_thumbnail_bottom {
    padding-left: 19px;
gap: 15px;
        margin-top: 16px;
}

.product .js-wrap-image-lazy.d-block.o-hidden.w-100.h-100 {
    max-width: 96%;
}


  
}




/* luminous-butterfly-collection */

.luminous-butterfly-collection .s-header__content.s-header__banner.d-flex.fd-column.middle-xs.ta-center.center-xs.middle-md.ta-center-md.center-md.wb-break-word {
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #000000;
    max-width: 80%;
    margin: 0 auto;
    border-radius: 20px;
    padding: 20px 10px;
}


@media screen and (max-width: 768px) {

.luminous-butterfly-collection .s-header__content.s-header__banner.d-flex.fd-column.middle-xs.ta-center.center-xs.middle-md.ta-center-md.center-md.wb-break-word {
    display: none;
}

.luminous-butterfly-collection .new_content {
    display: inline-block !important;
    padding: 30px;
}

.luminous-butterfly-collection a.new_buttonss {
    padding: 10px 15px;
    border-radius: 10px;
    background: #76c5ef;
    color: #ffffff;
    font-weight: 700;
}

.luminous-butterfly-collection .new_button {
    margin-top: 20px;
}

.luminous-butterfly-collection .heading h2 {
    margin-bottom: 12px;
}
  .product-slideshow__thumbnail.product-slideshow__thumbnail--vertical.d-flex-md.middle-xs.no-js-hidden.maw-100.o-scroll.disable-scrollbars.true {
    padding-left: 13px;
margin-bottom: 10px;
}
div#productInfo-template--18712382210292__main {
    padding: 0 13px;
}
}


.product .js-wrap-image-lazy.d-block.o-hidden.w-100.h-100 {
    width: 100%;
    max-width: 93%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


.mr-8 {
    margin-inline-end: 8px;
    font-weight: 800;
}


.card--standard .card__content span.price__sale span.price-item {
    font-size: 25px;
}
.product .product__info.product__block-price .card__content span.price span.price-item__regular s.price-item {
    font-size: 22px;
}


/* new CSSS */

.beaded-soothring .s-header__content.s-header__banner {
    background: #ffffff;
    padding: 0px !important;
    max-width: 100% !important;
    border-radius: 0px;
}
.gem-clover-soothring .s-header__content.s-header__banner {
    max-width: 100% !important;
    padding: 0;
    border-radius: 0px;
}
.product .product__form .product-form__buttons .gap-12 {
    gap: 20px;
margin-top": 20px;
}
.spaced-gem-soothring .s-header__content.s-header__banner {
    max-width: 100% !important;
    padding: 0;
display: inline-block !important;
}
.beaded-soothring-1 .s-header__content.s-header__banner {
    max-width: 100% !important;
    padding: 0;
display: inline-block !important;
}
.sun-soothring .s-header__content.s-header__banner {
    max-width: 100% !important;
    padding: 0;
    display: inline-block !important;
}

.product .field__text {
    border-radius: 10px !important;
}
.product .field_quantity {
    border-radius: 10px !important;
max-width: 150px;
}
.product__quantity label.field__label.visually-hidden {
    display: contents;
}
/* .product .product__quantity {
    display: contents;
} */



@media screen and (max-width: 768px) {
.beaded-soothring .s-header__content.s-header__banner {
    max-width: 100%;
margin-top: 20px;
    display: inline-block !important;
    padding: 0;
}
  .gem-clover-soothring .s-header__content.s-header__banner {
    display: inline-block !important;
    padding: 0;
}
  .soothring-ring-box .s-header__content.s-header__banner {
    display: inline-block !important;
    padding: 0;
}
.product__block-collapsible_item+.product__block-collapsible_item {
    margin-top: 0px!important;
}
.spaced-gem-soothring .s-header__content.s-header__banner .s-header__desc p {
    margin-bottom: 0px;
}
.product .accordion__item.js-accordion-item {
    margin-bottom: 0px !important;
}
  .color-inverse.content-for-grouping {
    padding-top: 20px;
}
  .product .new_content .new_button {
    margin-bottom: 20px;
}
}



