@charset "utf-8";
/* CSS Document */

/* Form - Contact */
.contact-form .control-label {
    position: absolute;
    top: 5px;

    font-size: 20px;
    font-weight: 500;

    cursor: text;

    transition: 0.2s;
}
    .contact-form input:focus + .control-label {
        top: -20px;

        font-size: 16px;
        font-weight: normal;
        color: #1ea4e4;

        transition: 0.2s;
    }
    .contact-form textarea:focus + .control-label {
        top: -20px;

        font-size: 16px;
        font-weight: normal;
        color: #1ea4e4;

        transition: 0.2s;
    }
    .contact-form input:not(:placeholder-shown) + .control-label {
        top: -20px;

        font-size: 16px;
        font-weight: normal;
        color: #1ea4e4;
    }
    .contact-form textarea:not(:placeholder-shown) + .control-label {
        top: -20px;

        font-size: 16px;
        font-weight: normal;
        color: #1ea4e4;
    }

.contact-form .controls {
    position:relative;

    margin-bottom: 40px;
}

.contact-form .form-control {
    border: none;
}
.contact-form .form-control:focus {
    background: #fff;

    border: none;
    border-bottom: 2px dotted #324d66;
    border-radius: 0;

    box-shadow: none;
}
.contact-form .form-field {
    background: none;

    border: none;
    border-bottom: 2px dotted #324d66;
    border-radius: 0;

    font-size: 20px;

    padding: 10px 0;

    width: 100%;
}
.contact-form .form-text {
    background: none;

    border: none;
    border-bottom: 2px dotted #324d66;
    border-radius: 0;

    font-size: 20px;

    padding: 10px 0;

    width: 100%;
}
.contact-form .form-control:focus {
    background: none;

    box-shadow: none;
}
.contact-form button {
    border: none;
}

.contact-form .errorMsg {
    position: absolute;

    color: #b72961;
    text-align: right;
}

.contact-form .required {
    font-size: 24px;
    font-weight: 700;
    color: #b72961;

    position: absolute;
    right: 10px;
    top: 2px;
}

/* Form - Newsletter */

.newsletter-input {
    max-width: 300px;
    width: 100%;
}

.newsletter-button {
    border: none;
}

.newsletter-message {
    max-width: 300px;
    width: 100%;
    display: none;
    border-radius: 8px;
    padding: 10px;
}

/* Bootstrap - Overrides */
.form-control {
    border: none;
}
.form-control:focus {
    background: #ffffff;

    border: none;
    box-shadow: none;
}

::placeholder {
    color: #959595;
}

/* Form - Inputs */
.form-field {
    background: none;
    border: none;
    border-radius: 2px;

    font-weight: 500;
    color: #fff;

    padding: 26px 15px;
}
    .input-group-prepend {
        margin: 0;
    }
    .input-group-text {
        background: #C0E2F6;
        border: 0;
        border-radius: 0;

        font-weight: 700;
    }

/* Form - Select */
.form-select {
    background: none;
    border: none;
    border-bottom: 2px dotted #324d66 !important;

    font-size: 20px;
    font-weight: 500;
    color: #fff;

    padding: 0;
    margin-left: -4px;

    cursor: pointer;
}

/* Form - Text */
.form-text {
    background: #f6f6f4;
    border: none;
    border-radius: 2px;

    font-weight: 500;
    color: #fff;

    padding: 15px;

    height: 125px;
}
