/* Contact module styles (present in some interior pages) */
#contact-module .contact-row {
    display: flex;
    justify-content: space-between;
}
#contact-module .contact-row p {
    width: 49%;
}
#contact-module label {
    font-family: 'Avant Garde Regular';
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}
#contact-module .contact-required-character {
    color: #FF0000;
}
#contact-module .contact-submit-button {
    background-color: rgba(238, 77, 155, 1);
    border-radius: 50px;
    border: none;
    color: #FFF;
    font-family: 'Avant Garde Bold';
    font-size: 16px;
    line-height: 19.07px;
    text-align: center;
    cursor: pointer;
    padding: 18px 19px;
    float: right;
}
#contact-module .contact-submit-button:hover {
    background-color: #b20056;
}
#contact-module .contact-form-field {
    border-radius: 100px;
    background-color: transparent;
    min-height: 50px;
    width: 100%;
    font-family: 'Avant Garde Bold';
    font-size: 16px;
    line-height: 19.07px;
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 6px;
}
#contact-module:not(.contact-module-dark) .contact-form-field {
    color: #FFF;
    border: 2px solid rgba(255, 255, 255, 1);
}
#contact-module:not(.contact-module-dark) label,
#contact-module:not(.contact-module-dark) .contact-form-field::placeholder {
    color: #FFF;
}
#contact-module.contact-module-dark .contact-form-field {
    color: #000;
    border: 2px solid #000;
}
#contact-module.contact-module-dark label,
#contact-module.contact-module-dark .contact-form-field::placeholder {
    color: #000;
}
#contact-module textarea.contact-form-field {
    resize: none;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
}
.wpcf7-not-valid-tip {
    padding-top: 6px;
    color: #000 !important;
    font-weight: 600;
}
.wpcf7-spinner {
    display: block;
}
.wpcf7-response-output {
    background-color: rgba(238, 77, 155, 1);
    border: none !important;
    color: #FFF;
    font-family: 'Avant Garde Regular';
    font-size: 20px;
    font-weight: 400;
    background-repeat: no-repeat;
    background-position: 98%;
    background-size: 30px;
    height: 60px;
    display: flex;
    align-items: center;
    margin-top: 60px !important;
    padding-right: 20% !important;
}
.wpcf7-response-output.submit {
    background-image: url('/wp-content/uploads/2024/11/contact-sent-message.webp');
}
.wpcf7-response-output.error {
    background-image: url('/wp-content/uploads/2024/11/contact-error-message.webp');
}
@media (max-width: 768px) {
    #contact-module .contact-row {
        flex-direction: column;
        padding-bottom: 20px;
    }
    #contact-module .contact-row p {
        width: 100%;
    }
    .wpcf7-response-output {
        font-size: 18px;
        height: 100px;
    }
    #contact-module textarea.contact-form-field {
        border-radius: 30px;
        padding-top: 10px;
        padding-bottom: 10px;
        min-height: 100px;
    }
}