.mobile-nav__icon {
    display: none;
    position: fixed;
    cursor: pointer;
    top: 10px;
    right: 15px;
    z-index: 9999;
    width: 30px;
    height: 30px;
    background-image: url("/assets/img/burger-icon.svg");
    background-size: contain;
    transition: all .5s ease-in-out;

    @media screen and (max-width: 768px) {
        display: block;
    }
}

.mobile-nav__icon_white {
    filter: invert();
}

.mobile-nav__icon_close {
    filter: invert();
    background-image: url("/assets/img/x-icon.svg");
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease-in-out;

    @media screen and (min-width: 991px) {
        display: none;
    }

    .mobile-nav__list {
        list-style-type: none;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .mobile-nav__link {
        color: #fff;
        font-size: 24px;
        text-decoration: none;
        line-height: 28px;
        padding: 10px 0;

        &:hover {
            color: #c84848;
        }
    }
}

.mobile-nav_shown{
    pointer-events: all;
    opacity: 1;
}