
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.error-message {
    color: red;
    font-weight: bold;
    text-align: center;
}


.ekformdiv .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px 0 32px 0;
    border-radius: 4px;
}

    .ekformdiv .info-box i {
        font-size: 32px;
        color: #e03a3c;
        border-radius: 50%;
        padding: 8px;
        border: 2px dotted #f8d4d5;
    }

    .ekformdiv .info-box h3 {
        font-size: 20px;
        color: #777777;
        font-weight: 700;
        margin: 10px 0;
    }

    .ekformdiv .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.ekformdiv .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    border-radius: 4px;
}

    .ekformdiv .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .ekformdiv .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .ekformdiv .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .ekformdiv .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .ekformdiv .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            animation: animate-loading 1s linear infinite;
        }

    .ekformdiv .php-email-form .form-group {
        margin-bottom: 25px;
    }

    .ekformdiv .php-email-form input,
    .ekformdiv .php-email-form textarea {
        box-shadow: none;
        font-size: 14px;
        border-radius: 4px;
    }

        .ekformdiv .php-email-form input:focus,
        .ekformdiv .php-email-form textarea:focus {
            border-color: #111111;
        }

    .ekformdiv .php-email-form input {
        padding: 10px 15px;
    }

    .ekformdiv .php-email-form textarea {
        padding: 12px 15px;
    }

    .ekformdiv .php-email-form button[type=submit] {
        background: #e03a3c;
        border: 0;
        padding: 10px 32px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
    }

        .ekformdiv .php-email-form button[type=submit]:hover {
            background: #e35052;
        }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
