/** Shopify CDN: Minification failed

Line 408:3 Unexpected ")"

**/
.rc-container-wrapper {
    display: none !important;
  }
  
  .custom-product-options {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    margin: 60px 0 40px;
  }
  
  @media screen and (max-width: 990px) {
    .custom-product-options {
      /* gap: 15px; */
      margin: 35px 0 50px;
    }
  }
  
  .custom-product-options__item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 0;
    border: 1px solid rgba(51, 51, 51, 0.1);
   border-top: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    cursor: pointer;
  }
  
  
  @media screen and (max-width: 990px) {
    .custom-product-options__item {
      padding: 12px 16px;
      flex-direction: column;
      align-items: stretch;
    }
  }
  
  .custom-product-options__item.active {
    
  }
  
  input[type="radio"].custom-product-options__input {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    position: relative;
    box-shadow: unset !important;
    border-radius: 50%;
    margin: 0;
    transition: 0.3s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  input[type="radio"].custom-product-options__input::after{
    width: 8px;
    height: 8px;
    background: #FF5101;
    inset-inline-start: unset;
    inset-block-start: unset;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    position: absolute;
    transform: scale(0);
  }
  input[type="radio"].custom-product-options__input:checked{
    border: 1px solid #FF5101;
    background-color: transparent;
  }
  input[type="radio"]:checked.custom-product-options__input:after,
  .custom-product-options__item.active input.custom-product-options__input:after {
    transform: scale(1);
    border: 1px solid #FF5101;
  }
  
  @media screen and (max-width: 990px) {
    input[type="radio"].custom-product-options__input {
      width: 14px;
      height: 14px;
      /* box-shadow: 0px 0px 0px 4px #fff, 0px 0px 0px 5px #525252;
      top: 9px; */
    }
  }
  
  .custom-product-options__title-container {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    
  }
  
  .custom-product-options__title-container-flex {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  
  @media screen and (max-width: 990px) {
    .custom-product-options__title-container {
      /* left: -25px; */
      /* align-items: start; */
    }
  
    .custom-product-options__title-container-flex {
      flex-direction: column;
      align-items: start;
    }
  }
  
  .custom-product-options__title {
    color: var(--black-brand-100, #000);

    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1; /* 152.941% */
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    row-gap: 4px;
    flex-wrap: wrap;
  }
  
  .custom-product-options__item.active .custom-product-options__title,
  .custom-product-options__item.active .custom-product-options__text {
    color: #000;
  }
  
  .custom-product-options__discount-badge {
    padding: 4px 5px;
    width: fit-content;
    border-radius: 4px;
    background: #FFB999;
    color: #000;
    font-family: 'PP Neue Montreal Mono';
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 12.1px */
    text-transform: uppercase;  
  }

  .custom-product-options__text p{
    color: #000;
    opacity: .6;
    
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 13.2px */
  }
  
  .custom-product-options__text {
    margin: 11px 0 0;
    padding-left: 26px;
    font-size: 12px;
    max-width: calc(100% - 55px);
  }
  
  .custom-product-options__text > * {
    color: #333;
    font-family: 'PP Neue Montreal';
    font-size: 12px;
    font-style: bold;
    font-weight: 400;
    line-height: 18px; /* 150% */
    margin: 0 0 8px;
  }
  
  .custom-product-options__item.active .custom-product-options__text > * {
    color: #555;
  }
  
  .custom-product-options__text > *:last-child {
    margin: 0;
  }
  
  .custom-product-options__price-qty-container {
    display: flex;
    align-items: center;
    gap: 25px;
    align-self: start;
    flex-direction: column;
    position: relative;
  }

  .daily-price{
    margin: 24px 0 0;
    color: #555;
    white-space: nowrap;
    font-size: 12px;
    font-style: normal;
    position: absolute;
    font-weight: 400;
    line-height: 120%;
    text-align: right;
    right: 0;
  }
  
  @media screen and (max-width: 990px) {
    .custom-product-options__price-qty-container {
      width: 100%;
      justify-content: space-between;
    }
  }
  
  .custom-product-options__qty {
    padding: 8px 14px;
    border-radius: 60px;
    border: 1px solid var(--black-brand-100, #333);
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 3;
  }
  
  .custom-product-options__item.active .custom-product-options__qty {
    border-color: #fff;
  }
  
  .custom-product-options__qty-button {
    outline: none;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    cursor: pointer;
    padding: 0;
  }
  
  .custom-product-options__qty-button svg {
    width: 100%;
    height: 100%;
  }
  
  .custom-product-options__item.active
    .custom-product-options__qty-button
    svg
    path {
    stroke: #fff;
  }
  
  .custom-product-options__qty-input {
    appearance: none;
    pointer-events: none;
    cursor: default;
    border: none;
    box-shadow: none;
    outline: transparent;
    flex: 1;
    max-width: 50px;
    max-height: 16px;
    color: var(--black-brand-100, #333);
    text-align: center;
  
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    background: transparent;
  }
  
  .custom-product-options__item.active .custom-product-options__qty-input {
    color: #fff;
  }
  
  .custom-product-options__qty-input::-webkit-outer-spin-button,
  .custom-product-options__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .custom-product-options__qty-input[type="number"] {
    -moz-appearance: textfield;
  }
  
  .custom-product-options__price {
    display: flex;
    align-items: center;
    /* flex-direction: column; */
    gap: 12px;
  }
  
  @media screen and (max-width: 990px) {
    .custom-product-options__price {
      flex-direction: row;
      gap: 10px;
    }
  }
  
  .custom-product-options__price-origin {
    color: var(--black-brand-100, #555);
 
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
  }
  
  .custom-product-options__item.active .custom-product-options__price-origin {
    color: #000;
  }
  .custom-product-options__item.active{
    background-color: #FFF1EB;
    border: 1px solid #FF5101;
    border-color: #FF5101 !important;
  }


  
  .custom-product-options__price-compare {
    color: #555;
    
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 14px */
    text-decoration-line: line-through;
  }
  
  
  
  .custom-product-options__submit-btn {
    order: -1;
    width: 100%;
    border-radius: 4px;
    background: #FF5101;
    margin-top: 8px;
    padding: 18px;
    height: 52px;
    color: #fff;
    text-align: center;
    
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    
    cursor: pointer;
 
    transition: 0.3s all;
  }
  
  .custom-product-options__submit-btn:hover {
    background: #000;
    color: #fff;
  }

  .custom-product-options__submit-btn-price .custom-product-options__price-compare{
    font-size: 12px;
    color: #fff !important;
    font-weight: 500;
    opacity: .6;
  }
  .custom-product-options__submit-btn-price .custom-product-options__price-origin{
    font-size: 16px;
    color: #fff !important;
    font-weight: 500;
  }
  
  
  @media screen and (max-width: 990px) {
    .custom-product-options__submit-btn {
      font-size: 16px;
      height: 52px;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 8px 0 0;
    }
    .custom_content_text_price{
      column-gap: 8px;
    }
  }
  

 .custom-product-options__item-3{
  border-top: 1px solid transparent;

 }

 .custom-product-options__text:has(p:empty){
  display: none;
 }

  .custom-product-options__text:has(.has-val){
    display: block !important;
  })
.custom-product-options__item[data-order="2"]{
    border-top: 1px solid rgba(51,51,51,.1);
    border-radius: 8px 8px 0 0;
}
.custom-options-labels:has(.custom-product-options__item[data-order="1"]) .custom-product-options__item[data-order="2"]{
    border-top: 1px solid transparent;
    border-radius: 0;
}
 @media(max-width:768px){
  .custom-product-options__text{
    padding-left: 21px;
  }
 }