/**
 * This file is licensed under the YourCompanyName Commercial License Agreement.
 * Unauthorized use, modification, or distribution is strictly prohibited.
 *
 * @author HQS Development OÜ <info@hqscustom.com>
 * @copyright 2024 HQS Development OÜ
 * @license Proprietary - All rights reserved.
 */

 .g-newsletter-recaptcha-hidden {
    display: none;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
   -moz-transition: opacity 1.5s ease-in-out;
   -webkit-transition: opacity 1.5s ease-in-out;
 }

 .g-newsletter-recaptcha-error {
     display: block;
    margin: 0;
     padding-top: 6px;
     padding-bottom: 6px;
    color: #ff0000 !important;
    font-weight: bold;
    text-align: left;
 }

.g-newsletter-recaptcha-error.d-none {
    display: none;
}

.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

.visible {
    opacity: 1;
    max-height: 100px;
}
