.js quick-view-drawer {
  display: block;
}

.quick-view__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  top: 1.5rem;
  right: 1.5rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  cursor: pointer;
  color: rgb(var(--color-foreground));
  transform: scale(0);
  transition: transform var(--duration-default) ease;
}

.quick-view__summary::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgb(var(--color-background));
  box-shadow: 0 0 4rem rgba(var(--color-foreground), 0.2);
}

.quick-view__summary .icon {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.8rem;
  height: 1.8rem;
}

@media screen and (hover: hover) {
  .card-wrapper:hover .quick-view__summary {
    transform: scale(1);
    transition-delay: var(--duration-short);
  }
}

@media screen and (min-width: 750px) {
  .quick-view__summary {
    width: 4.4rem;
    height: 4.4rem;
  }

  .quick-view__summary:hover::after {
    animation: beat 0.6s infinite ease;
  }
  
  @keyframes beat {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
  }
}

.quick-view--open,
.quick-view--opening,
.quick-view--closing {
  overflow: hidden;
}

.quick-view--open .shopify-section-header.shopify-section-header-sticky,
.quick-view--opening .shopify-section-header.shopify-section-header-sticky,
.quick-view--closing:not(.mini-cart--opening) .shopify-section-header.shopify-section-header-sticky {
  z-index: 16;
}

.quick-view--open #main-facet-filters.shopify-section-filters-sticky,
.quick-view--opening #main-facet-filters.shopify-section-filters-sticky,
.quick-view--closing:not(.mini-cart--opening) #main-facet-filters.shopify-section-filters-sticky {
  z-index: 15;
}

.quick-view--open .transition-content,
.quick-view--opening .transition-content,
.quick-view--closing .transition-content,
.quick-view--open .header-wrapper,
.quick-view--opening .header-wrapper,
.quick-view--closing .header-wrapper,
.quick-view--open .announcement-bar,
.quick-view--opening .announcement-bar,
.quick-view--closing .announcement-bar {
  padding-inline-end: var(--scrollbar-width);
}

.quick-view--open .transition-body::after,
.quick-view--opening .transition-body::after {
  opacity: 1;
  pointer-events: visible;
}

.quick-view--open .quick-view,
.quick-view--opening .quick-view {
  visibility: visible;
}

.quick-view--open announcement-bar[data-compact=false].marquee .announcement-slider {
  animation-play-state: paused;
}

.quick-view--closing[data-animate-image] use-animate {
  transition: none;
}

.quick-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  /* pointer-events: none; */
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.quick-view__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 50%;
  top: 12px;
  right: 12px;
  color: rgb(var(--color-foreground));
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  z-index: 3;
  animation: fade-in var(--duration-long) ease;
}

@media screen and (min-width: 750px) {
  .quick-view {
    align-items: center;
  }

  .quick-view__close {
    position: absolute;
    top: 20px;
    right: 20px;
    margin-top: 0;
    margin-right: 0;
  }
}

.quick-view__close .icon {
  pointer-events: none;
  position: relative;
  width: 2rem;
  height: 2rem;
  transition: transform var(--duration-default) ease;
  will-change: transform;
  transform: scale(1) rotate(45deg);
}

@media screen and (hover: hover) {
  .quick-view__close:hover .icon {
    transform: scale(0.8) rotate(135deg);
  }
}

.quick-view__left,
.quick-view__right {
  flex: 0 0 100%;
  position: relative;
}

@media screen and (min-width: 750px) {
  .quick-view__left,
  .quick-view__right {
    flex: 0 0 50%;
  }
}

/* .quick-view__content {
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  position: relative;
  pointer-events: visible;
  flex: 1 1 auto;
  height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

@media screen and (min-width: 750px) { */
  .quick-view__content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: flex;
    overflow: auto;
    height:99vh;
    /* max-height: 79rem; */
    margin: 0 5rem;
    max-width: 998px;
    padding: 40px 40px 60px;
    background: #fff;
    position: relative;
    width: 100%;
    align-items: flex-start;
  }
/* } */

.quick-view__content:empty {
  display: block;
}

.quick-view__content::before,
.quick-view__content::after {
  content: '';
  position: absolute;
  z-index: 3;
  bottom: 0;
  height: 0%;
  width: 100%;
  left: 0;
  background-color: rgb(var(--color-background));
}

@media screen and (min-width: 750px) {
  .quick-view__content::before,
  .quick-view__content::after {
    width: 50%;
  }

  .quick-view__content::after {
    left: auto;
    right: 0;
    background-color: rgb(var(--color-background-dark));
  }

  details[open].menu-opening > .quick-view .quick-view__content::after {
    transition-delay: 0.1s;
  }
}

details[open] > .quick-view .quick-view__content::before,
details[open] > .quick-view .quick-view__content::after {
  transition: height var(--duration-long) ease;
  will-change: transform;
}

details[open].menu-opening > .quick-view .quick-view__content::before,
details[open].menu-opening > .quick-view .quick-view__content::after {
  height: 100%;
}

.quick-view__content.hide-cover::before,
.quick-view__content.hide-cover::after {
  top: 0;
  bottom: auto;
  height: 0 !important;
}

/* .quick-view__content .quick-view__left {
  background-color: rgb(var(--color-background-dark));
} */

.quick-view__content .quick-view__right {
  /* overflow: hidden; */
  background-color: rgb(var(--color-background));
}

.quick-view .slider {
  position: relative;
  flex-wrap: inherit;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quick-view .slider .slider__slide {
  width: 100%;
  max-width: 100%;
  padding-bottom: 0;
}

@media screen and (min-width: 750px) {
  .quick-view .product__media-wrapper,
  .quick-view .slider-mobile-gutter,
  .quick-view product-gallery,
  .quick-view use-animate,
  .quick-view .product__media-list,
  .quick-view .product__media-item,
  .quick-view .product__modal-opener,
  .quick-view .product__media,
  .quick-view .deferred-media,
  .quick-view .product__media-item > .media-wrapper {
    height: 100%;
  }
}

.quick-view .product__media-wrapper .slider-buttons {
  display: flex;
}

.quick-view .product__modal-opener {
  display: block;
  overflow: hidden;
}

@media screen and (max-width: 749px) {
  .quick-view .product__modal-opener--video,
  .quick-view .product__modal-opener--external_video {
    display: none;
  }

  .quick-view .product__modal-opener--video + .media-wrapper {
    width: 100%;
  }

  .quick-view .product__media-list .deferred-media {
    display: block;
  }

  .quick-view .deferred-media__poster-button {
    width: 4.4rem;
    height: 4.4rem;
  }

  .quick-view .product__media-slider--adapt .product__media-list {
    height: 0;
    padding-bottom: var(--force-image-ratio-percent);
  }

  .quick-view .product__media-wrapper .slider-mobile--overlay .slider-button {
    width: 3.6rem;
    height: 3.6rem;
  }
}

@media screen and (min-width: 750px) {
  .quick-view .product__media,
  .quick-view .deferred-media {
    padding: 0 !important;
  }
}

@media screen and (min-width: 750px) {
  .quick-view .product__info-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20rem;
    z-index: 3;
    pointer-events: none;
    background-image: linear-gradient(to bottom, rgba(var(--color-background), 0) 0, rgb(var(--color-background)) 90%);
    transition: opacity var(--duration-long) ease;
  }

  .quick-view .product__info-wrapper:hover::after {
    opacity: 0;
  }
}

.quick-view .product__media-wrapper .slider-mobile-gutter {
  background-color: rgb(var(--color-background));
}

.quick-view .product__info-container {
  padding: 2rem 1.5rem 3rem;
}

@media screen and (min-width: 750px) {
  .quick-view .product__info-container {
    padding: 3rem 4.5rem;
    /* max-height:95vh;
    overflow-x: hidden; */
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
  }

  .quick-view .product__info-container::-webkit-scrollbar {
    appearance: none;
    width: 1rem;
    background-clip: padding-box;
    border: 0.3rem solid transparent;
    border-radius: 1.6rem;
    background-color: rgba(var(--color-border), 0.3);
  }
  
  .quick-view .product__info-container::-webkit-scrollbar-thumb {
    border: 0.3rem solid transparent;
    background-clip: padding-box;
    border-radius: 1.6rem;
    background-color: rgb(var(--color-border));
  }
}

@media screen and (min-width: 1200px) {
  .quick-view .product__info-container {
    padding: 4rem 6.5rem;
  }
}

.quick-view .product__media-wrapper product-gallery {
  margin-bottom: 0;
}

.quick-view .product__xr-button {
  display: none;
}

[data-animate-image] .quick-view use-animate[data-animate^=fade] {
  opacity: 1;
  transform: none;
}

.quick-view .product__modal-opener::not(.product__modal-opener--image) {
  display: none;
}

.quick-view--open.mini-cart--open .quick-view {
  display: none;
}

/* HS-CRO-April-01 CRO Audit */
.quick-view--open #ProductGridContainer .product-grid .grid__item{
  z-index: unset;
}
.quick-view--open #ProductGridContainer .product__media-list.slider .grid__item{
  width: 100%;
  padding: 0;
}

#ProductGridContainer .collection .product-grid quick-view-drawer .quick-view__summary{
  top: 320px;
  width: auto;
  height: auto;
  right: 15px;
}
#ProductGridContainer .collection .product-grid quick-view-drawer .quick-view__summary:after{
  content: unset;
}
#ProductGridContainer .collection .product-grid quick-view-drawer .quick-view__summary > span{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  font: 700 12px/1 var(--font-body-family);
  letter-spacing: 0.6px;
  background-color: #fff;
  column-gap: 3px;
}
#ProductGridContainer .collection .product-grid quick-view-drawer .quick-view__summary > span > span{
  display: flex;
}
#ProductGridContainer .collection .product-grid quick-view-drawer .quick-view__summary .icon{
  position: static;
  transform: unset;
  width:9px;
  height:auto;
}


.quick-view{
  .product__media-wrapper{
    .slider-mobile-gutter {
    padding-top: 0;
    }
    .main-image-wrapper{
      height: 450px;
    }
    .slider-buttons{
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      z-index: 2;
    }
    .thumbnail-slider{
      margin-top: 9px;
      .thumbnail-list{
        gap: 8px;
        .thumbnail-list__item{
          width: 48px;
          height: 48px;
        }
      }
    }
    .product__media-list.slider{
      button.deferred-media__poster{
        z-index: 3;
      }
       li.product__media-item:not(.product__media-item--full){
        pointer-events: none;
      }
      li.product__media-item{
        max-width: 100%;
      }
    }
  } 
  .product__info-wrapper{
    .product__info-container{
      padding-top: 0;
      padding-right: 0;
      padding-left: 40px;
    }
      div:has(.price){
         .price__badge-sold-out{
            display: none;
          }
        .price * {
            font: 600 18px / 1 var(--font-body-family);
            color: #444;
        }
      } 
    .product__title{
      position: relative;
      display: block;
      margin-bottom: 22px;
      .price-outer-wrap{
        margin: 14px 0 0;
      }
      .price{
            padding-bottom: 6px;
      }
      .product__heading{
        font: 700 32px / 1 var(--font-body-family);
        letter-spacing: 0;
        color: #444;
      }
      .rating {
          position: absolute;
          right: 0;
          bottom: 0;
          display: flex;
          font-size: 12px;
          font-weight: 600;
          gap: 8px;
          width: auto;
        .rating-star{
            width: auto;
        }
      }
      .card_product_short_content {
          padding-bottom: 0 !Important;
      }
    }
    .product__description{
      margin: 0;
       p {
        font: 700 14px / 1.5 var(--font-body-family);
        padding-bottom: 16px;
      }
       ul {
          padding: 0 0 40px;
          list-style: none;
         li{
            font: 400 14px / 1.5 var(--font-body-family);
            position: relative;
            padding: 0 0 18px 18px;
           &:last-child{
             padding-bottom: 0;
           }
           &:before {
                content: "";
                width: 10px;
                height: 10px;
                position: absolute;
                left: 0;
                top: 7px;
                background-size: 10px;
                background-repeat: no-repeat;
                background-image: url(/cdn/shop/files/Vector.svg?v=1751356636);
            }
         }
        }
    }
    .shopify-payment-button{
          margin-bottom: -48px;
    }
    .guarantee__icon_top:not(.shipping-wrap) {
        background-color: #dedcec;
        display: flex;
        padding: 14px;
        justify-content: center;
        gap: 9px;
        margin-bottom: 20px;
      margin-top: 0;
    }
    .guarantee-content {
        padding-top: 4px;
        h4 {
          font: 600 16px / 1 var(--font-body-family);
          letter-spacing: 0;
          padding-bottom: 5px;
          margin: 0;
          color: #444;
      }
       p {
          font: 400 13px / 1 var(--font-body-family);
          letter-spacing: 0;
         margin: 0;
         a {
            color: #d03e63;
        }
      }
    }
    .guarantee__icon_top.shipping-wrap {
        display: flex;
        gap: 7px;
        width: 215px;
        /* margin-top: -32px; */
        .guarantee-content {
            padding-top: 0px;
             color: #444;
            line-height: 1.3;
        }
    }
    .product-variant-wrapper{
    border: 1px solid #44444466;
    padding-top: 28px;
    border-bottom: 0;
    background-color: #FCF9F6;
    }
    variant-radios {
        background-color: #fcf9f6;
        padding: 0px 20px 34px;
      .variant-input-wrapper{
        .form__label{
          margin-bottom: 9px;
          font: 700 16px / 1 var(--font-body-family);
          text-transform: capitalize;
        }
         .variantInput {
            max-width: 180px;
            width: 100%;
            text-align: center;
           [type=radio]:checked+label:before, [type=radio]:not(:checked)+label:before {
                content: "";
                position: absolute;
                left: 22px;
                top: 12px;
                width: 14px;
                height: 14px;
                border: 1px solid #5A54A4;
                background: #fff;
                transform: none;
                opacity: 1;
                border-radius: 100%;
            }
           [type=radio]:checked+label:after,[type=radio]:not(:checked)+label:after {
                content: "";
                width: 6px;
                height: 6px;
                background: #5a54a4;
                position: absolute;
                top: 16px;
                left: 26px;
                border-radius: 100%;
                -webkit-transition: all .2s ease;
                transition: all .2s ease;
                z-index: 1;
                opacity: 0;
            }
           [type=radio]:checked+label:after {
                opacity: 1;
                -webkit-transform: scale(1);
                transform: scale(1);
            }
           .variant-label {
              box-shadow: none !important;
              background: #fff;
              border: 1.5px solid #5A54A4;
              color: #5a54a4;
              font-size: 15px;
              font-weight: 600;
              display: block;
              line-height: 1;
              padding: 11px 14px 11px 44px;
              text-align:left;
          }
        }
      } 
    }
    .product-form{
      margin: 0;
    }
    .sealsubs-target-element.sealsubs-full>.sealsubs-target-element .sealsubs-container>div:first-child {
        background-color: #fcf9f6;
        padding: 0 20px;
        border: 1px solid #44444466;
        border-top: 0;
        border-bottom: 0;
    }
    .sls-purchase-options-label {
        font: 700 16px / 1 var(--font-body-family);
        color: #444;
    }
    .sealsubs-target-element.sealsubs-full>.sealsubs-target-element .sealsubs-container>.sls-purchase-options-container {
        padding: 0 20px 26px;
        background-color: #fcf9f6;
        border: 1px solid #44444466;
        border-top: 0;
    }
    .sealsubs-target-element{
      .sls-selling-plan-group-name {
        font-size: 15px;
        span {
            vertical-align: middle;
            margin-left: 0;
            font-size: 8px;
            font-weight: 700;
            line-height: 1;
            padding: 5px 4px;
            transform: none;
          &:before{
            display: none;
          }
        }
      }
      .conversion-bear-money {
          color: #444;
          font-weight: 600;
          font-size: 15px;
      }
    } 
    .sls-more-info-container {
        padding: 20px 0 0;
       .sls-more-info-text {
            gap: 6px;
            padding-bottom: 28px;
         .sls-sub-icon {
              width: 20px;
          }
          span.sls-subscription-details-label a {
            font: 600 12px / 1 var(--font-body-family);
        }
        }
    }
       .sls-option-container{
            padding: 20px 0 20px !important;
           &.thirdoption{
          border: 0 !important;
        }
      }
     .product-form__buttons,.product-form__buttons-third-orange,.product-form__buttons-third-citrus,.product-form__buttons-third{
         .covered__btn_third_wishlist{
      display: flex;
      gap:10px;
      width: calc(100% - 120px);
      .product-form__submit{
         width: calc(100% - 55px);
      }
      .swym-wishlist-button-bar{
        width: 50px;
      }
      .swym-btn-container{
        .swym-button{
            border: 1px solid #444444;
            padding: 11px 12px;
            height: 48px;
            &:after{
              font-size:21px;
            }
        }
      }
    }
    .product-form__quantity{
      width: auto;
      .quantity{
        border: 1px solid #444444;
        .quantity__button{
          background: none;
          height: 46px;
           color: #444;
          &:hover{
            color: #444;
          }
          &:after{
            display: none;
          }
        }
        .quantity__input{
          font-size: 16px;
          font-weight: 600;
        }
      }
    }
    .swym-button-bar{
     margin: 0;
      width: 49px;
      .swym-button{
        border: 1px solid #444444;
        padding: 10px 12px;
        height: 48px;    
        line-height: 44px;
      }
    }
    .swym-btn-container .swym-button:after{
      font-size: 16px;
    }
    .product-form__submit{
      background: #5A54A4;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      border: 0;
      letter-spacing: normal;
      gap: 10px;
      padding: 14px 10px;
      min-width: auto;
      max-width: 220px;
    }
    .shopify-payment-button__button {
      border: 1px solid #000000;
      background: #fff;
      color: #000;
      font-size: 16px;
      height: auto;
      letter-spacing: normal;
      font-weight: 700;
      padding: 13px 15px;
    }
    more-payment-options-link{
      display: block;
      text-align: right;
      margin-top: 16px;
       &[disabled]{
        #more-payment-options-link{
          cursor: default;
        }
      }
      #more-payment-options-link{
        font-size: 13px;
        font-weight: 600;
        text-align: right;
        width: auto;
      }
    }
  }
    .share-wrap-j {
      margin-top: -9px;
      margin-bottom: 40px;
       .field {
          justify-content: end;
         .field__label {
            font-size: 13px;
            font-weight: 600;
            line-height: 1;
            margin-right: 12px;
        }
         ul{
           gap: 15px;
           .list-social__item a {
              width: auto;
              height: auto;
           }
         }
      }
    }
    .product-link__button{
      border: 0;
      margin: 0;
    }
    .view-btn .summary__title {
      padding: 0;
      display: block;
      .accordion__title{
        border: 1px solid #D03E63;
        font-size: 12px;
        color: #D03E63;
        text-align: center;
        padding: 15px;
        display: block;
        font-weight: 700;
      }
    }
  }
}
quick-view-drawer .swym-btn-container[data-position=default] .swym-add-to-wishlist.swym-icon .swym-tooltip span.swym-tooltip-text {
    left: auto;
    right: 0;
    top: -12px;
}
quick-view-drawer .list-social__item .list-social__link:hover{
  &::after{
    transform: scale(1.4);
  }
}
quick-view-drawer .selling-plan-group-options-name-select,
quick-view-drawer .sls-active .sls-one-time-description-content{
  font-style: italic;
  font-size: 12px;
  margin-top: 0;
}
@media(min-width:768px) and (max-width:991px){
  .quick-view .product__info-wrapper .share-wrap-j {
    margin-top: 0;
  }
  .quick-view .product__info-wrapper .guarantee__icon_top.shipping-wrap{
    margin-top: 0;
    width: 100%;
  }
  .quick-view .product__info-wrapper .product__title .rating {
    position: unset;
    margin-top: 10px;
  }
}
@media(min-width:768px){
  .quick-view{
  .product__media-wrapper{
    position: sticky;
    top: 0;
  }
  }
}
@media(max-width:767px){
  .quick-view__content{
    padding:14px 12px 80px;
    flex-direction: column;
    margin: 0 7px;
    overflow: auto;
    .product__info-wrapper.grid__item .product__title{
      .rating{
        position: unset;
        margin-top: 14px;
        max-width: 100%;
        flex-direction: row;
      }
      .product__heading{
        font-size: 24px;
      }
      .price-outer-wrap {
          margin: 12px 0 0;
      }
      div:has(.price) .price *{
        font-size: 16px !important;
      }
    } 
    .quick-view__left, .quick-view__right {
    flex: 0 0 auto;
    }
    .product__media-wrapper {
      .main-image-wrapper {
        height: auto;
      }
      .thumbnail-slider {
          margin-top: 10px;
      }
    }
    .product__info-wrapper{
      margin-top: 24px;
       .product__info-container{
         padding-left: 0;
         padding-bottom: 0;
       }
      .product__description ul{
        padding-bottom: 28px;
        li {
          padding: 0 0 14px 18px;
        }
      } 
      .shopify-payment-button{
        margin-bottom: 0;
      }
      .guarantee__icon_top:not(.shipping-wrap){
        margin-top: 0;
        justify-content: start;
        padding: 14px 13px 17px;
        .guarantee-content{
          h4{
            font-size: 15px;
            padding-bottom: 6px;
          }
          p{
            font-size: 14px;
          }
        }
      }
      variant-radios{
          /* margin-top: 28px; */
        padding-bottom: 29px;
        .variant-input-wrapper .form__label{
          font-size: 14px;
        }
      }
      .sls-purchase-options-label{
        font-size: 14px;
      }
      .sls-option-container{
        padding: 16px 0 18px !important;
        &.thirdoption{
          border: 0 !important;
        }
      }
      .sls-more-info-container {
          padding: 16px 0 0;
         .sls-more-info-text {
            padding-bottom: 24px;
        }
      }
      .sealsubs-container{
        margin-bottom: 0;
      }
      .sealsubs-target-element{
        .conversion-bear-money ,.sls-selling-plan-group-name {
          font-size: 13px;
        }
      }
      div:has(.price) .price *{
        font-size: 16px !important;
      }
      .product-form__buttons,.product-form__buttons-third-orange,.product-form__buttons-third-citrus,.product-form__buttons-third{
        grid-column-gap: 8px;
         .product-form__quantity .quantity .quantity__button {
          height: 44px;
        }
         .product-form__submit {
          font-size: 14px;
           height: 46px;
            max-width: 100%;
          width: calc(100% - 180px);
         }
        .swym-button-bar{
          .swym-button{
            height: 46px;
          }
        }
          .covered__btn_third_wishlist {
             .swym-btn-container {
                .swym-button {
                  height: 46px;
                }
            }
        }
      }
      .share-wrap-j {
          margin-top: 18px;
          margin-bottom: 28px;
        .field {
            justify-content: start;
        }
      }
      .product-link__button a{
        padding: 0;
      }
    }
  }
}

@media(max-width:420px){
  .quick-view .product__info-wrapper .guarantee__icon_top.shipping-wrap{
    margin-top: 0;
    width: 100%;
  }
  .quick-view__content {
    .product__info-wrapper {
        .product-form__buttons,.product-form__buttons-third-orange, .product-form__buttons-third-citrus, .product-form__buttons-third {
            .product-form__submit {
              font-size: 12px;
            }
        }
      variant-radios {
        .variant-input-wrapper {
          margin:0;
          .variantInput{
            max-width: 100%;
            width: 50%;
            [type="radio"]:checked + label:before, [type="radio"]:not(:checked) + label:before {
              left: 24px;
            }
            [type="radio"]:checked + label:after, [type="radio"]:not(:checked) + label:after{
              left: 28px;
            }
            .variant-label{
                height: 40px;
                font-size: 11px;
                line-height: 1.4;
            }
          }
        }
      }
    }
  }
}

.quick-view .price {
    margin: 0;
    padding-bottom: 6px;
    font: 600 16px / 1 var(--font-body-family);
}