/* PC MENU */
header {
    width: 100%;
    background: #F2F2F7;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

nav {
    width: var(--max_width_pc);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    gap: 30px;

}

nav div.left {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

nav p {
    display: flex;
    align-items: center;
    color: #1C1C1E;
    margin-bottom: 0px;
}

div.menu_block {
    position: fixed;
    top: 60;
    left: 0;
    width: 100%;
    padding: 10px 30px;
    height: calc(100vh - 60px);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(242, 242, 247, 0.5);
}





/* MOBILE MENU */
.ios {
    margin-top: -10px;
    margin-left: -15px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0px;
    padding: 20px 15px 10px 15px;
    /* FOR PWA PASTE BOTTOM 16 px !!! */
    width: calc(100% - 30px);
    background: #f2f2f7;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    gap: 0px;
    z-index: 9999;
}

.ios img {
    max-width: 30px;
    height: 30px;
}

.ios .back {
    width: 80px;
}

.ios .back img {
    height: 25px;
}

.ios .back a {
    display: flex;
    align-items: center;
}

.ios .back p {
    font-size: 17px;
    margin: 0px 0px 0px 5px;

}

.ios .options {
    width: 80px;
    gap: 10px;
    flex-direction: row-reverse;

}

.ios .title p {
    font-size: 17px;
    text-align: center;
    line-height: 17px;
    margin: 0px;
    font-weight: bold;
    align-items: center;
    padding-top: 5px;
}

@media (min-width: 1151px) {
    .ios {
        display: none;
    }
}

@media (max-width: 1150px) {
    .hb {
        display: none;
    }
    
}




/* LOGINING */
div.fullbg {
    background: url("https://cbm.evrasia.spb.ru/img/rest_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 10vh;
    height: calc(80vh - 60px);
    padding-bottom: 10vh;
}

div.cloud {
    width: 100%;
    height: calc(80vh - 77px - 60px);
    overflow-y: scroll;
    max-width: calc(500px - 44px);
    margin: 0 auto;
    background: var(--color_bg);
    padding: 55px 44px 22px 44px;
    border-radius: 22px;
}
div.cloud .logo {
    width: 160px;
    margin-left: calc(50% - 80px);
    margin-bottom: 20px;
}
@media (max-width: 1150px) {
    div.fullbg {
        padding: 0px;;
        height: 30vh;
        position: fixed;
        width: 100vw;
        background: none;
    }

    div.cloud {
        width: calc(100% - 30px);
        max-width: 100%;
        padding: 30px 15px;
        margin-top: 4vh;
        margin-bottom: 50px;
        border-radius: 0px;
        background: rgba(242, 242, 247, 1);
        position: fixed;
        
    }
}

