/* Стили для кнопки */
.sticky-btn-bottom {
    position: fixed;
    bottom: 20px;
    /*right: 20px;*/
    z-index: 1000;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%; /* Скругление для круглой кнопки */
    cursor: pointer;
    font-size: 16px;
}

.sticky-btn-bottom.scrolled {
    display: none;
}