._contact .container {
    display: flex;
    flex-direction: column;
    justify-content: stretch;

    @media (min-width: 1024px) {
        flex-direction: row;
    }
}


._contact .left {
    display: flex;
    flex-direction: column;
    justify-content: left;
    
    @media (min-width: 1024px) {
        width: 33%;
    }
}

._contact .title {
    font-size: 48px;
    @media (min-width: 1024px) {
        font-size: 64px;
    }
}

._contact .right {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 15px;

    @media (min-width: 1024px) {
        width: 66%;
        padding: 50px;
    }
}

._contact .row {
    display: flex;
    justify-content: right;
    margin-bottom: 25px;
    gap: 25px;
}

._contact .two-col-row {
    display: flex;
    flex-direction: column;

    @media (min-width: 1024px) {
        flex-direction: row;
        justify-content: space-between;
        gap: 25px;
    }
}

._contact .label-field {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

._contact .row:last-child {
    margin-bottom: 0px;
}

._contact .label {
    color: #000000;
    font-weight: 400;
    margin-bottom: 8px;
}

._contact .field {
    flex-grow: 1;
}

._contact .required-field {
    margin-left: 3px;
    color: #bd1b21;
}

._contact input[type=text],textarea {
    border-radius: 22px;
    border: none;
    padding: 16px;
}

._contact input::placeholder, textarea::placeholder {
    color: rgb(210 210 210);
    font-weight: 500;
}

._contact input:focus, textarea:focus {
    outline: none;
}

._contact input[type=text] {
    height: 44px;
}

._contact input[type=text]:last-child {
    margin-right: 0;
}

._contact textarea {
    height: 175px;
}

._contact input.error, textarea.error {
    border: 1px solid #bd1b21;
}

._contact .submit {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    justify-content: bottom;
    align-items: center;

    @media (min-width: 1024px) {
        flex-direction: row;
        justify-content: right;
    }
}
._contact .submit .btn {
    text-transform: uppercase;
    min-width: 150px;
}

._contact .submit .error-msg {
    color: #bd1b21;
    font-weight: 400;
    display: none;
}

._contact .submit .error-msg.show-error-msg {
    display: block;
}

#confirmation-modal .centered-text {
    text-align: center;
}

#confirmation-modal .modal-body-text, #error-modal .modal-body-text {
    font-size: 20px;
    font-weight: 500;
}

#confirmation-modal .close-button {
    text-transform: uppercase;
}

/* override default modal behavior for modal-md and modal-lg */
#confirmation-modal .modal-dialog {
    height: unset;
}

#confirmation-modal .modal-dialog {
    padding: 35px 20px;

    @media (min-width: 1024px) {
        padding: 45px;
    }
}
