.account__left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    max-height: calc(var(--vh, 1vh) * 100);
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(20, 20, 20, .4);
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
    overflow: auto;
    z-index: 5
}
.account__left.active {
    opacity: 1;
    visibility: visible
}
.account__left-content {
    padding: 70px var(--section-px) 80px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    width: 100%;
    min-height: 100%;
    background: #fff
}
.account__left-close {
    position: absolute;
    top: 55px;
    right: 20px;
    width: 18px;
    height: 18px
}
.account__left-close-icon {
    width: 100%;
    height: 100%
}
.account__left-user {
    display: flex;
    align-items: center;
    cursor: pointer
}
.account__left-user-icon {
    margin: 0 10px 0 0;
    flex-shrink: 0;
    width: 17px;
    height: 17px
}
.account__left-user-login {
    color: var(--yellow-color)
}
.account__left-menu {
    --link-margin-bottom: 25px;
    margin: 30px 0 calc(-1 * var(--link-margin-bottom));
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    font: 700 16px/1.3 var(--heading-font);
    text-transform: uppercase
}
.account__left-menu-link {
    margin: 0 0 var(--link-margin-bottom);
    color: #ccc
}
.account__left-menu-link--is-current {
    color: var(--dark-color)
}
.account__left-logout {
    margin: 45px 0 0;
    border-bottom: 1px solid;
    text-transform: uppercase;
    font-weight: 500
}
.account__left-contacts {
    margin: 45px 0 0;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    text-transform: uppercase;
    color: grey;
    font-size: 14px
}
.account__left-contacts-title {
    margin: 0 0 15px;
    font-weight: 500;
    color: var(--dark-color)
}
.account__left-contacts-tel {
    margin: 0 0 5px
}
.account__left-contacts-telegram {
    margin: 10px 0 5px
}