@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600'); /*Montserrat*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700'); /*Open Sans*/
@import url('/templates/getlab/fonts/font-awesome.css?v=1757050767');
@import url('/templates/getlab/css/bootstrap.css?v=1757050767');
@import url('/templates/getlab/css/endeltrap.css?v=1757050767');
@import url('/templates/getlab/css/sentax.css?v=1757050767');
@import url('/templates/getlab/css/bestrex.css?v=1757050767');
@import url('/templates/getlab/css/bootstray.css?v=1757050767');
.with_code table tr td {
    word-break: normal;
}
/* Основной стиль меню */
.mobile_mini_menu {
    border-radius: 15px;
    background: linear-gradient(45deg, #1f1f1f 30%, #161616 100%);
    max-width: 110%;
    overflow-x: auto;
    white-space: nowrap;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%) scale(0.8); /* Меньший масштаб */
    opacity: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease, box-shadow 0.6s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0px 19px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
}

/* Показ меню при активном состоянии */
.mobile_mini_menu.active {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
    animation: popIn 1s ease-out; /* Используем улучшенную анимацию */
}

/* Скрытие меню на ПК */
@media (min-width: 992px) {
    .mobile_mini_menu {
        display: none;
    }
}

/* Показ меню на устройствах с шириной до 991px */
@media (max-width: 991.99px) {
    .mobile_mini_menu {
        display: flex;
    }
}

/* Стиль для кнопок внутри меню */
.knopka_mini {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    width: 54px;
    height: 55px;
    display: flex;
    border-radius: 10%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px 3px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.knopka_mini:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5));
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.knopka_mini span {
    font-weight: 700;
    color: #f4f4f4;
    font-size: 9px;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.knopka_mini:hover span {
    color: #ffdf80;
}

.knopka_mini i {
    font-size: 20px;
    color: #f4f4f4;
    transition: color 0.3s ease, transform 0.3s ease;
}

.knopka_mini:hover i {
    color: #ffdf80;
    transform: scale(1.15);
}

/* Улучшенная анимация для появления */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5) rotate(-15deg); /* Начальное состояние с поворотом */
    }
    40% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.1) rotate(5deg); /* Увеличение и легкий поворот */
    }
    70% {
        opacity: 0.9;
        transform: translateX(-50%) scale(1.05) rotate(-3deg); /* Почти в нормальном положении */
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1) rotate(0); /* Финальное положение */
    }
}
