.tn-elem__10121080611746609822991 {
    position: fixed;
    top: 0;
    left: -100%; /* Скрыт за левой границей */
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease; /* Плавная анимация слева */
    z-index: 1000;
    overflow-y: auto;
    display: none;
}
.tn-elem__10121080611746609822991.active {
    left: 0; /* Появляется слева */
}
.sidebar-content {
    padding: 20px;
}
.sidebar-content a, .sidebar-content button {
    display: block;
    text-decoration: none;
}
@media (max-width: 980px) {
    .tn-elem__10121080611746609822991 {
        display: block;
        width: 100%;
    }
}

.fixed-button {
   position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1001;
    background-color: black;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat';
    display: none;
}
@media (max-width: 980px) {
    .fixed-button {
        display: block;
    }
}

.underline {
    padding: 7px 0;
    border-bottom: 1px solid black;
    color: black;
    font-family: 'Montserrat';
    font-size: 21px;
    font-weight: 600;
    
}

.inside-svg {
    padding: 32px 0 22px 0;
}
body.no-scroll {
    overflow: hidden; /* Блокирует скролл страницы */
}