﻿/*------------------------------------Формы-----------------------------------*/
.f-js-form {
    display: flex;
    flex-direction: column;
    width: 277px;
}
.f-js-form input {
    margin-bottom: 10px;
}
.f-js-form button {
    margin-top: 12px;
    width: fit-content;
}
.preloader_custom {
    display: none;
    opacity: 0;
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: #0000003d;
    background-image: url('../../../forms/img/preloader.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}
.preloader_custom.active {
    display: block;
    opacity: 1;
    z-index: 999999;
}
.response_container.active {
    display: block;
    opacity: 1;
    z-index: 999999;
}
.response_container {
    display: none;
}
.response_container {
    /*padding: 80px;*/
    padding-top: 20px;
}
.response_container .response_title {
    font-weight: 500;
    font-size: 34px;
    line-height: 140%;
}
.response_container .response_text {
    font-size: 16px;
    line-height: 26px;
    margin-top: 15px;
    margin-bottom: 35px;
    display: block;
}
/*админка удаляет пустой div, не убирать*/
.preloader_custom span {
    display: none;
}
/*------------------------------------ФормыEND--------------------------------*/


.contact-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 5px;
}

.contact-icons a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .contact-icons  {
        justify-content: flex-start;
    }
}