/* Add custom CSS styles below */ 
@keyframes intro {
    0% {
        width: 100%;
        opacity: 1;
    }
    75% {
        width: 100%;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes intro_logo {
    0% {
        width: 100%;
        opacity: 0;
        transform: scale(0.85) cubic-bezier(0.25, 1, 0.5, 1);
    }
    25% {
        opacity: 1;
        transform: scale(1);
    }
    75% {
        opacity: 1;
        transform: scale(1.03);
    }
    100% {
        width: 100%;
        opacity: 0;
        transform: scale(1.08) cubic-bezier(0.25, 1, 0.5, 1);
        visibility: hidden;
    }
}
.scroll-animate {
  opacity: 0 !important;
  transform: translateY(40px) !important;
  transition: opacity 0.7s ease, transform 0.7s ease !important;
}

.scroll-animate.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.s-product-options-donation-options-item input:checked + label,
.s-product-options-donation-options-item input:checked + label span,
.s-product-options-donation-options-item input:checked + label i {
    background-color: var(--color-text-store) !important;
    border-color: var(--color-primary) !important;
    color: #fff !important;
    font-weight: 600;
}


.s-product-options-donation-input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-text-store);
    border-radius: .375rem;
    overflow: hidden;
    margin-top: .75rem;
}

.s-product-options-donation-input-group .s-form-control {
    flex: 1;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: .625rem .75rem;
    background: transparent;
}