/*--------------------------------------------------------------
# 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;
}
.section-title{font-size: 22px;
    font-weight: 700;text-align: center;margin-bottom:20px;}
/*--------------------------------------------------------------
# bs5_full
--------------------------------------------------------------*/
.feedback{width:100%;}
.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: #333;
    background: var(--primary-color);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}
.feedback .email-form .d-block{
    display: block;
}
.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: 25px;
}

.feedback .email-form input, .feedback .email-form textarea {
    box-shadow: none;
    font-size: 12px;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #b7b7b7;
}
.feedback .email-form textarea{border-radius: 4px;text-align: left;}
.feedback .email-form input:focus, .feedback .email-form textarea:focus {
    border-color: var(--primary-color);
}

.feedback .email-form input {
    padding: 10px 15px;
}
.w-btn-default{border-radius: 4px;width:100%;background-color: #283d52;font-size: 12px; color:#fff;padding:10px 0;border: none;
}
.contact .email-form textarea {
    padding: 12px 15px;
}

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

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