div.cc-main-product {
  @media screen and (min-width: 990px) {
    .product--large:not(.product--no-media) .product__media-wrapper {
      max-width: 45% !important;
    }
  }
  
  @media screen and (min-width: 990px) {
    .product--large:not(.product--no-media) .product__info-wrapper {
      padding: 0 0 0 4rem;
      max-width: 55% !important;
    }
  }
    
  h1 {
    font-size: 28px;
  }

  h4 {
    font-size: 20px;
    margin-top: 20px;
  }
}

div.cc-main-product #product-bundles .product_variants {
  h4 {
    font-weight: bold;
  }
  
  ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 0;
    
    li {
      box-sizing: border-box;
      width: calc(50% - 10px);
      margin-bottom: 15px; 
      margin-right: 10px;
      
      a {
        display: block;
        border: 2px solid #1d4a49;
        border-radius: 28px;
        width: 100%;
        font-size: 0.88em;
        color: white;
        background: rgb(5, 139, 140);
        text-align: center;
        font-weight: bold;
        text-decoration: none;
        line-height: 1.2em;
        padding: 9px 0 10px;

        &:hover {
          text-decoration: none;
        }
      }

      &.active {
        a {
          background: rgb(5, 180, 140);
        }
      }
    }
  }
}

div.cc-main-product #product-bundles .product_bundles .single_bundle {
  h4 {
    font-weight: bold;
  }

  div.options { 
    border: 2px solid rgba(42, 43, 42, .2);
    border-radius: 5px;

    div.option {
      width: 100%;
      padding: 10px;
      border-bottom: 2px solid rgba(42, 43, 42, .2);

      &.disabled {
        opacity: 0.5;
      }

      &:last-child {
        border-bottom: none;
      }

      div {
        display: inline-block;
        vertical-align: middle;
      }
      
      div.option_image {
        margin-right: 10px;
        
        img {
          width: 50px;
        }
      }

      div.option_title {
        width: calc(100% - 297px);
      }

      div.option_price {
        text-align: center;
        width: 75px;
      }

      div.option_quantity {
        text-align: center;
        width: 150px;

        .wrapper {
          border: 2px solid rgba(42, 43, 42, .2);
          padding: 5px 10px;
        }
        
        button {
          vertical-align: middle;
          height: 24px;
          width: 21px;
          border: none;
          background: white;
          font-weight: bold;
          font-size: 18px;
          line-height: 18px;
          cursor: pointer;
        }

        input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
          -webkit-appearance: none;
          margin: 0;
        }
        
        input[type="number"] {
          -moz-appearance: textfield;
        }

        input {
          border: none;
          text-align: center;
          outline: none;
          -moz-appearance: textfield;
        }
      
        input:focus {
          outline: none;
          border: none;
          box-shadow: none;
        }
      }
    }
  }
}

div.cc-main-product #product-bundles .product_total {
  text-align: right;
  font-size: 1.6em;
  font-weight: bold;
 /* margin-top: 20px;*/
}

div.cc-main-product #product-bundles .product_legal {
  font-size: 13px;
  text-align: right;
  
  a {
    color: rgb(42, 43, 42);
  }
}

div.cc-main-product #product-bundles .product_actions {
  margin-top: 20px;
  
  a { 
    width: 100%;
    display: block;
    border: 2px solid rgb(42, 43, 42);;
    text-align: center;
    padding: 10px;
    color: rgb(42, 43, 42);;
    text-decoration: none;
    font-weight: bold;

    &:hover {
      text-decoration: none;
      background: #f0f0f0;
    }
  }
}




@media (max-width:768px) {
    #product-bundles .option_quantity {
        width: unset!important;
      }
    #product-bundles .option_title {
        width: auto!important;
      }
      
      #product-bundles .option_quantity .wrapper {
        width: 95px;
        display: flex!important;
      }
      
        #product-bundles .option_price {
        padding: 5px;
        word-wrap: normal;
      }
       #product-bundles .option_image img {
        min-width: 38px;
      }
  }

  .price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .price-container {
    bottom: 2rem;
    background: white;
    z-index: 30;
    border: 2px solid #d0d0d0;
    padding: 2rem;
    border-radius: 5px;
    position: sticky;
                
  }