.full-menu {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 101;
    display: none;
}

.full-menu.is-open {
    display: block;
} 

.full-menu__container.animated.fadeInLeft {
    animation-duration: .3s;
}

.full-menu__close.popup__close {

    left: 264px;
    z-index: 1;
    top: 1rem;
    -webkit-transition: ease all .24s;
    -o-transition: ease all .24s;
    transition: ease all .24s;
    cursor: pointer;
} 

.full-menu__container {   
    z-index: 2;
    position: absolute;
    width: 256px;
    background-color: #fff;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    padding: 16px;
    -webkit-animation-duration: .24s!important;
    animation-duration: .24s!important;
    -webkit-overflow-scrolling: touch;
    border-radius: 0 12px 12px 0;
}

.full-menu__item {
    color: var(--color__dark);
    border-bottom: 1px solid var(--color__border);
} 

.full-menu__item:last-child {
    border-bottom: none;
}

.full-menu__link {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
}

.full-menu__name {
    color: var(--color__dark);
    font-size: 18px !important;
    line-height: 28px !important;
    font-weight: 600 !important;
}
