.left-bar {
    width: 60px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0%;
    bottom: 0%;
    z-index: 1000;
    pointer-events: none;
    /* Убираем кликабельность для всей панели */
}

.left-bar a {
    pointer-events: auto;
    /* Включаем кликабельность только для логотипа */
}
.left-bar__logo {
    width: 100%;
    margin-top: 88%;
    /* Отступ сверху, чтобы логотип не прилегал к верхнему краю */
    transform: rotate(-90deg);
}
.button-call {
    pointer-events: auto;
    background-color: #333;
    color: white;
    border: none;
    padding: 17% 35%;
    cursor: pointer;
    transform: rotate(-90deg);
    /* Поворот кнопки */
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: 'GraphikLCG-Medium', sans-serif;
    position: absolute;
    /* Абсолютное позиционирование относительно панели */
    bottom: 10%;
    /* Отступ от нижнего края панели */
    font-size: 11px;
    letter-spacing: 1px;
    font-family: 'GraphikLCG-Medium', sans-serif;
}

.callback-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Контейнер окна */
.callback-popup__content {
    background-color: #fff;
    padding: 20px;
    width: 35%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10001;
}
/* Кнопка для закрытия */
.callback-popup__close{
    top: 5%;
    margin-left: 90%;
    color: #fff;
    background-color: #333;

}

/* Стили для формы */
.callback-form {
    display: flex;
    flex-direction: column;
}

.callback-form label {
    margin-top: 5%;
    text-align: left;
}

.callback-form input,
.callback-form textarea {
    margin-top: 5px;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #333;
}

.callback-form textarea {
    resize: vertical;
}

.submit-button {
    margin-top: 15px;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #333;
}

@media (max-width: 1024px) {
    
    
    .callback-popup__content {
        width: 45%;
    }
}

@media (max-width: 800px) {
    


    
    .callback-popup__content {
        width: 55%;
    }
}
@media (max-width: 650px) {
    

    
    .callback-popup__content {
        width: 65%;
    }
    .callback-popup__content h3 {
        font-size: 16px;
    }
}

@media (max-width: 550px) {
    

    .callback-popup__content {
        width: 70%;
    }
    .callback-popup__content h3 {
        font-size: 15px;
    }

    
    .left-bar{

        width: 10%;
    }


}
@media (max-width: 450px) {
    

    
    .left-bar{
        width: 8%;
    }
    .callback-popup__content {
        width: 70%;
    }
    .callback-popup__content h3 {
        font-size: 15px;
    }
    
}
@media (max-width: 395px) {
    

    
    .left-bar{
        width: 8%;
    }
    .callback-popup__content {
        width: 70%;
    }
    .callback-popup__content h3 {
        font-size: 15px;
    }

}
@media (max-width: 355px) {
    

    .callback-popup__content {
        width: 70%;
    }
    .callback-popup__content h3 {
        font-size: 15px;
    }
    .left-bar{
        width: 8%;
    }

}

