/*--------------------------------------------------------------
# feedback
--------------------------------------------------------------*/
.g-bg-gray {
    background-color: rgba(147, 107, 232, 0.05);
}

.section-guestbook .lead {
    margin-bottom: 20px;
    font-size: 100%;
    font-weight: 300;
    line-height: 1.5;
}


.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

/*--------------------------------------------------------------
# bs5_full
--------------------------------------------------------------*/
.feedback .email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.feedback .email-form .error-message br + br {
    margin-top: 15px;
}

.feedback .email-form .sent-message {
    display: none;
    color: #fff;

    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.feedback .email-form .loading {
    display: none;
    background: transparent;
    text-align: center;
    padding: 15px;
}

.feedback .email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--primary-color);
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.feedback .email-form .form-group {
    margin-bottom: 15px;
}

.feedback .email-form input, .feedback .email-form textarea {
    box-shadow: none;
    font-size: 12px;
    border-radius: 0;
}

/* .feedback .email-form input:focus, .feedback .email-form textarea:focus {
    border-color: var(--primary-color);
} */

.feedback .email-form input {
    padding: 10px 15px;
}

.contact .email-form textarea {
    padding: 12px 15px;
}
.feedback .email-form .d-block{display: block;}
@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
