.header-bottom.sticky{
    position: fixed;
    top:0;
    width: 100%;
    background: #fff;
    z-index: 2;
}
.admin-bar .header-bottom.sticky{
    top:32px;
}
.wp-caption {

    color: inherit;
}
#secondary.sticky{
    padding-top: 50px;
}
.wp-caption-text {
    color: inherit;
}
/* Стили для оверлея модального окна */
.modal {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Затемнение фона */
}

/* Стили для содержимого модального окна */
.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: absolute; /* Используем absolute для центрирования */
    left: 50%; /* Сдвигаем влево на 50% */
    top: 50%; /* Сдвигаем вверх на 50% */
    transform: translate(-50%, -50%); /* Центрируем по вертикали и горизонтали */
    text-align: center;
    border-radius: 7px;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #000;
}

.modal-content-form{
    font-size: 1.4em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.modal-content-form input[type="tel"] {
    text-align: center; /* Центрируем текст внутри поля ввода */
    padding: 10px; /* Добавляем отступы для удобства */
    border: 1px solid #ccc; /* Граница */
    border-radius: 5px; /* Закругленные углы */
}
.modal-content-form>p{
    margin-bottom: 1rem;
}
#submitButton{
    margin-top: 1rem;
    cursor: pointer !important;
}
.site-logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.site-description{
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-size: 2rem;
    font-weight: 400;
}
@media (min-width: 1051px) {
    #site-navigation ul.header-menu-sub li a {
        line-height: 20px;
        padding-top: 20px;
    }

    #site-navigation ul.header-menu-d li a {
        line-height: 20px;
        padding-top: 10px;
        padding-bottom: 20px;
    }

    #site-navigation ul.header-menu-d li a:after {
        top: 12px;
    }
}
@media (max-width: 1050px) {
    #site-navigation>ul.header-menu-sub>li:last-child>a{
        border-bottom: 1px solid #2d2d2d;
    }
    #site-navigation>ul>li>noindex>a{
        border-bottom: 1px solid #2d2d2d;
    }
    #site-navigation>ul>li:last-child>noindex>a{
        border-bottom: none;
    }
}
.is-sticky #site-navigation ul li a {
    line-height: 35px !important;
}
.is-sticky #site-navigation ul li a:after{
    line-height: 9px !important;
}
.editor-entry i.fa{
    font-style: normal;
}