.mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;

    display: none;

    height: 70px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;

    background-color: white;
    box-shadow: 0 0 20px rgba(13, 28, 69, 0.15);
}

.mobile__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    max-width: 350px;
    margin: auto;
}

.mobile__item {
    display: block;
}

.mobile__item-icon {
    display: block;

    margin: 0 auto;

    fill: #007bfb;
}

.mobile__item_active .mobile__item-icon {
    fill: #aaaaaa;
}

.mobile__item-title {
    color: #007bfb;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

.mobile__item_active .mobile__item-title {
    color: #a7abb7;
}

.mobile__popup-background {
    background-color: rgba(0, 0, 0, 0.5);
}

.mobile__popup-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    width: 280px;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    padding: 55px 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;

    background-color: white;
    box-shadow: 0 5px 25px rgba(13, 28, 69, 0.25);
}

.mobile__logo {
    display: block;
}

.mobile__logo-image {
    display: block;
    opacity: 0.1;
}

.mobile__popup-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    margin: auto 0;
}

.mobile__popup-menu-item {
    display: block;

    color: #222d4c;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: color 0.25s;
}

.mobile__popup-menu-item:hover {
    color: #007bfb;
    transition: color 0.25s;
}

.mobile__popup-menu .mobile__popup-menu-item:not(:first-child) {
    margin-top: 30px;
}

.mobile__popup-menu-item_container {
    position: relative;
}

.mobile__popup-submenu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: none;

    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(13, 28, 69, 0.2);

    text-align: center;

    background-color: white;
}

@media (max-width: 768px) {
    .mobile {
        display: flex;
    }
}
