/** Shopify CDN: Minification failed

Line 420:9 Expected "}" to go with "{"

**/
.fontSectionTitle,
.title-card,
.card-subtitle,
.desplegableTitle{
    color: #444444!important;
}

main .shopify-section h1,
main .shopify-section h2,
main .shopify-section h3,
main .shopify-section h4,
main .shopify-section h5,
main .shopify-section h6,
main .shopify-section p,
main .shopify-section div,
main .shopify-section span{
    color: #444444;
}
.units-discount__item-value {
  color: #fff !important;
}
.units-discount__item-value--active {
  color: #FF4343;
}

.custom-builder-form__products-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 10px;
}

.custom-builder-form__product{
    border-radius: 10px;
    padding: 6px 4px 10px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    border: 2px solid #fff;
}

.custom-builder-form__product--active{
    border: 2px solid #444444;
}

.custom-builder-form__product-image{
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.custom-builder-form__product-title{
    font-size: 16px;
    font-weight: 600;
    color: #444444;
    line-height: 1;
    text-align: center;
}

.custom-builder-form__product-quantity{
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.custom-builder-form__product .minus,
.custom-builder-form__product .plus{
    width: 32px;
    height: 32px;
}

.custom-builder-form__product:not(.custom-builder-form__product--active) .minus{
    opacity: 0.3;
    pointer-events: none;
}

.clickable-units:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease;
    opacity: 0.9;
}

.clickable-units.active {
    border: 2px solid var(--template-color-3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.custom-builder-form{
    background: #E1EFDB;
    border-radius: 30px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
}


.custom-builder-form__product-quantity input{
    background: #F7F5EE;
    height: 30px;
    width: 100%;
    text-align: center;
    border-radius: 4px;
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 18px;
    color: #444444;
}
.units-container {
    padding: 6px;
    background-color: #FFF;
    border-radius: 10px;
    margin: 15px auto 10px;
}

.units-discount__wrapper{
    margin: 10px auto 10px;
}

.bottom-block__text{
    font-weight: 700;
    font-size: 20px;
    color: #444444;
    margin-bottom: 10px;
}

.custom-builder-form__accessories-wrapper{
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: stretch;
    gap: 15px;
    position: relative;
    margin: 10px auto;
    justify-content: left;
}

.custom-builder-form__accessories-wrapper input{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.custom-builder-form__accessory{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
    text-align: center;
    max-width: 110px;
    background: #FCFBF8;
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
}

.custom-builder-form__accessory-icon{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    display: none;
}

.custom-builder-form__accessories-wrapper input:checked + .custom-builder-form__accessory{
    border: 2px solid #444444;
}

.custom-builder-form__accessories-wrapper input:checked + .custom-builder-form__accessory .custom-builder-form__accessory-icon{
    display: block;
}

.custom-builder-form__accessory img{
    width: 100%;
    height: 100px;
    background: #fff;
    object-fit: contain;
    object-position: center;
    padding: 10px;
}

.custom-builder-form__accessory-title{
    padding: 0 20px;
    margin: 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #444444;
    line-height: 1;
    text-align: center;
}

.custom-builder-form__accesory-row{
    padding: 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    color: #444444;
    line-height: 1;
    text-align: center;
}

.custom-builder-form__accesory-row-item-discount{
    color: #fff!important;
    padding: 2px 5px;
    border-radius: 4px;
    background: #FF4343;
}

.custom-builder-form__summary-item-outer{
    padding: 10px 12px;
    background: #FFFFFF;
    border-radius: 10px;
    margin: 0px auto 10px;
}

.custom-builder-form__summary-item{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.custom-builder-form__summary-price{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.custom-builder-form__summary-price-discounted{
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
}

.custom-builder-form__summary-price-original{
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    color: #FF4343!important;
    text-decoration: line-through;
}

.custom-builder-form__summary-item + .custom-builder-form__summary-item:not(:empty){
    margin-top: 13px;
}

.custom-builder-form__summary-item-title{
    font-weight: 700;
    color: #444444;
    font-size: 16px;
    line-height: 1;
}

.custom-builder-form__summary-item-value{
    font-weight: 700;
    color: #7F7F7F;
    font-size: 12px;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .custom-builder-form__products-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
    .custom-builder-form__product-quantity {
    max-width: 90%;
}
}
@media (min-width: 990px) {
    .custom-builder-form__products-wrapper{
        grid-template-columns: repeat(4, 1fr);
    }
    .custom-builder-form__product-quantity {
    max-width: 90%;
}
}
.units-discount{
        margin: 10px auto 5px;
        text-align: center;
    }

    .units-discount__title{
        line-height: 1;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .units-discount__title *{
        font-family: "Inter" !important;
        font-weight: 700;
    }
    
    .units-discount__title strong{
        font-family: "Inter" !important;
    }

    .units-discount__wrapper{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 4px;
        text-align: center;
    }

    .units-discount__item{
        padding: 6px;
        border-radius: 5px;
        border: 1px solid #44444410;
        background: #FFF;
        display: flex;
        flex-direction: column;
        gap: 3px;
        flex-grow: 1;
    }

    .units-discount__item > *{
        max-width: 55px;
        margin: auto;
    }

    .units-discount__item > span:first-child{
        font-size: 25px;
        font-weight: 700;
        line-height: 1;
    }
    
    .units-discount__item > span:first-child + span{
        font-size: 10px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 5px;
    }

    .units-discount__item-value{
        font-size: 12px;
        font-weight: 700;
        background: #444444;
        color: #fff;
        padding: 0 4px;
        border-radius: 4px;
        width: 100%;
        text-align: center; 
        line-height: 19px;
    }

    .units-discount__item-dosage{
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        padding: 5px;
        border: 1px solid #E5E5E5;
        border-radius: 4px;
        color: #805841;
        width: 100%;
    }

    .units-discount__item-dosage small{
        font-size: 8px;
        font-weight: 700;
        line-height: 1;
    }

    .units-discount__item.active,
    .units-discount__item.active .units-discount__item-dosage{
        border-color: #FF4343;
    }

    .units-discount__item.active .units-discount__item-value{
        background: #FF4343;
    }

    @media (min-width: 768px) {
        .units-discount__title{
            font-size: 30px;
            margin: 20px auto 20px;
            font-weight: 700;
        }
        
        .units-discount__title *{
            font-size: 30px;
            font-family: "Inter" !important;
        }
        
        .units-discount__title strong{
            font-size: 30px;
            font-family: "Inter" !important;
        }
         .units-discount__wrapper {
        gap: 7px;
         }
    }

    @media (max-width: 769px){
        .custom-builder-form{
            background: #E1EFDB;
            border-radius: 20px;
            padding: 20px 5px;
            margin-top: 10px;
        }