/*
Generated time: March 25, 2026 07:20
This file was created by the app developer. Feel free to contact the original developer with any questions. It was minified (compressed) by AVADA. AVADA do NOT own this script.
*/
.purchase {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.add-to-cart {
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--secondary);
    color: #fff;
    font-size: 16px;
    padding: 22px 32px;
    border-radius: 99px;
    font-weight: 560;
    letter-spacing: .05px
}

.add-to-cart:hover {
    background-color: #066a8b
}

.add-to-cart:active {
    background-color: #054155
}

.add-to-cart.is-disabled {
    background-color: #666;
    pointer-events: none;
    cursor: not-allowed
}

.max-qty-warning {
    border-radius: 10px;
    background-color: #f7e5e5;
    margin: 0 0 15px 0;
    padding: 20px;
    color: #922c2c;
    display: none
}

.max-qty-warning[aria-hidden=false] {
    display: block
}

.atc-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px
}

.atc-icon-cart {
    transition: transform .3s ease, opacity .3s ease;
    display: block
}

.atc-icon-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.5);
    opacity: 0;
    transition: transform .4s cubic-bezier(.175, .885, .32, 1.275), opacity .2s ease;
    pointer-events: none
}

.check-path {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: stroke-dashoffset .3s ease .15s
}

.add-to-cart.is-success .atc-icon-cart {
    transform: scale(0);
    opacity: 0
}

.add-to-cart.is-success .atc-icon-check {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
}

.add-to-cart.is-success .check-path {
    stroke-dashoffset: 0
}

.add-to-cart[aria-busy=true] {
    cursor: wait;
    opacity: .8
}

.repair-field-description {
    display: block;
    font-size: 15.5px;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px
}

textarea[name="properties[description]"] {
    border-radius: 10px;
    border: 1px solid #d7d7d7
}

@media (max-width:989px) {
    .add-to-cart {
        font-size: 16px;
        margin: 0 0 15px 0;
        padding: 24px 32px
    }

    .purchase {
        gap: 0
    }

    .atc-icon-cart,
    .atc-icon-check {
        transition: none
    }

    .add-to-cart.add-to-cart.is-success .check-path {
        animation: none;
        stroke-dashoffset: 0
    }
}