.umbraco-forms-form .umbraco-forms-field {
    margin-top: 1rem;
}

.gallery-item-hidden {
    display: none;
}

.gallery-item-fade-in {
    animation: galleryItemFadeIn 0.45s ease;
}

@keyframes galleryItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.umbraco-forms-hidden {
    display: none !important;
}

.field-validation-error {
    color: #dc3545 !important;
}