/* alerts */
.alert {
    margin: 20px 0;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.5;
}
.alert-success {
    color: #78c350;
    background-color: #ebf6e5;
}
.alert-success a {
    color: #5fa739 !important;
}
.alert-info {
    color: #45bbe0;
    background-color: #e3f5fa;
}
.alert-info a {
    color: #23a6cf !important;
}
.alert-warning {
    color: #ff9800;
    background-color: #fff0d9;
}
.alert-warning a {
    color: #cc7a00 !important;
}
.alert-danger {
    color: #f7531f;
    background-color: #fee5dd;
}
.alert-danger a {
    color: #db3b08 !important;
}

/* forms */
.special-field {
    display: none !important;
    visibility: hidden !important;
}

.field:not(.error-field) .error,
.field:not(.error-field) .error-text {
    display: none;
}

.ajax-form .btn-waiting,
.ajax-form .btn-waiting:hover,
.ajax-form .btn-waiting:active,
.ajax-custom-form .btn-waiting,
.ajax-custom-form .btn-waiting:hover,
.ajax-custom-form .btn-waiting:active {
    background-image: linear-gradient(-45deg, rgba(192, 192, 192, 0.2) 25%, transparent 25%, transparent 50%, rgba(192, 192, 192, 0.2) 50%, rgba(192, 192, 192, 0.2) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    -webkit-animation: button-waiting 1s linear infinite;
    animation: button-waiting 1s linear infinite;
}
@-webkit-keyframes button-waiting {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 20px 0;
    }
}
@keyframes button-waiting {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 20px 0;
    }
}

/* fix front-end bugs */

ymaps a {
    border-bottom: 0;
}

.contacts-page .item .address{
    font-size: 0.8888888888888889em;
}


