/* Header Mobile */

/*.header__menu {*/
/*    display: none;*/
/*    background: #07231f;*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    z-index: 1000;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    padding: 3px 10px;*/
/*}*/

/*.header__buttons {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 7px;*/
/*}*/

/*.button {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    background: #145b3b;*/
/*    font-size: 13px;*/
/*    padding: 4px 7px;*/
/*    border-radius: 6px;*/
/*    color: #ffffff;*/
/*    font-weight: 700;*/
/*}*/

/*.button.button__reg {*/
/*    background: #9c0dc6;*/
/*}*/

.header__mobile {
    display: none;
    justify-content: space-between;
    padding: 5px 15px;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff;
    z-index: 10;
    align-items: center;
}

.header__mobile--left {
    display: flex;
    align-items: center;
}

.header__mobile--left .header__menu__item.current {
    border: 1px solid #f9b242;
}

.header__mobile__item {
    background: transparent;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    color: #012f3d !important;
    text-decoration: none;
}

.header__mobile__item svg {
    fill: #3e6f69;
    font-size: 18px;
    height: 1em;
    max-width: 100%;
    width: auto;
}

.header__mobile__item span {
    background: #e59029;
}

.header__mobile__item img {
    height: 20px;
}

.header__mobile__item--big {
    background: #e59029;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__mobile__item--big-title  {
    font-weight: 600;
    background: transparent !important;
}

.header__mobile__item--big img {
    filter: unset;
}

.application {
    position: fixed;
    bottom: 65px;
    background: #012f3d;
    left: 0;
    right: 0;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 4px 10px;
    z-index: 10;
}

.application__left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.application__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.application__name {
    font-weight: 600;
    color: #fff;
}

.application__rating {
    display: flex;
    gap: 5px;
}

.application__svg {
    fill: #fff;
    color: #fff;
}

.application__button {
    display: flex;
    align-items: center;
    color: #fff;
    background: transparent;
    border: none;
    gap: 7px;
}

.application__button svg {
    width: 16px;
}

.application .closer svg {
    width: 12px;
    fill: #8b8b8b;
}

.closer svg,
.closer path {
    pointer-events: none;
}

.closer {
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .header__mobile {
        display: flex;
    }

    .header__menu {
        display: flex;
        opacity: 0;
        transform: translateY(-100%);
        transition: .3s ease-in-out;
    }

    .header__menu.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .application {
        display: flex;
    }
}
