/*@import 'https://fonts.googleapis.com/css?family=Fira+Sans:300,400';*/
/*@import 'https://fonts.googleapis.com/icon?family=Material+Icons';*/


        /* Кнопка открытия */


        /* Модальное окно */
        .bnst-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .bnst-modal-box {
            background: #fff;
            padding: 20px 20px 20px 20px;
            margin: 20px;
            border-radius: 12px;
            width: 90%;
            max-width: 420px;
            position: relative;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }

        .bnst-modal-close {
            position: absolute;
            top: 12px;
            right: 15px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            color: #333;
        }

        /* Контактная информация модальное окно */
        .bnst-contact-info { margin-top: 20px; }
        .bnst-contact-info p { font-weight: bold; margin-bottom: 5px; font-size: 16px; }
        .bnst-contact-info a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #222;
            font-size: 14px;
            margin-top: 6px;
            transition: color 0.3s;
        }
        .bnst-contact-info a:hover { color: #25d366; }

        .bnst-contact-info img {
            width: 22px;
            margin-right: 10px;
        }


        .bnst-mob-menu-icon{
            padding: 10px 10px 10px 10px;
            border: none;
            width: 30px;
        }
        .bnst-mob-menu-icon-h{
            width: 20px;
            padding: 10px 10px 10px 10px;
            border: none;
        }

         /* Скрытие модального окна */
         .bnst-hidden {
            display: none;
        }

        .bnst-modal-info-office{
          font-size: 14px;
          margin: 10px 0 10px 0;

        }
        .bnst-modal-info-office-map{
            margin: 5px 0;
            font-size: 15px;
            color: black;
        }
        .bnst-modal-info-office-map img{
            width: 22px;
        }

.bnst-modal-info-office-map a{
    color: #0b73bd;
    font-weight: bold;
}
.bnst-modal-info-office-map a img{
  margin-right: 5px;
}

/* Контактная информация модальное окно */

.mcm-wrapper {
    display: none;
    position: relative;
}

/* Бургер */
.mcm-burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 10px;
}
.mcm-burger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
}

/* Оверлей */
.mcm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 999;
}
.mcm-overlay-show {
    display: block;
}

/* Меню */
.mcm-menu {
    position: fixed;
    top: 0;
    left: -90%;
    width: 90%;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mcm-menu-open {
    left: 0;
}

.mcm-menu-title{
    color: #333333;
    font-size: 20px;
}

.mcm-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.mcm-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Список категорий */
.mcm-category-list,
.mcm-submenu {
    list-style: none;
    margin: 0;
    padding: 10px;
}
.mcm-item {
    padding: 8px 0;
}
.mcm-link {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

/* Кнопка стрелки */
.mcm-subtoggle {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-color: #bbbbbb;
    border-radius: 5px;
    padding: 0;
    margin-left: 10px;
}
.mcm-subicon {
    display: inline-block;
    transition: transform 0.22s ease;
}

/* Анимация открытия */
.mcm-submenu {
    display: none;
    overflow: hidden;
    height: 0;
    padding-left: 12px;
    margin: 0;
    transition: height 0.22s ease;
}

.mcm-item.mcm-sub-open > .mcm-subtoggle .mcm-subicon {
    transform: rotate(90deg);
}

.mcm-sub-icon-img{
    width: 18px;
}


@media (max-width: 700px) {
    .mcm-wrapper {
        display: block;
    }
}



