body.fixed {
    overflow: hidden;
}


/*--- header ---*/

header {
    position: sticky;
}

header,
header .appBannerBlock {
    width: 100%;
    border-bottom: 1px solid var(--gray6);
    background: var(--white);
    top: 0;
    z-index: 99;
    transition: all 0.3s;
}

header .appBannerBlock.hide {
    position: absolute;
    top: -53px;
}

header .appBannerBlock .wrap {
    height: 52px;
    padding: 4px 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .appBannerBlock .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

header .appBannerBlock .iconBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

header .appBannerBlock .iconBox .textBox .title {
    font: var(--title07);
}

header .appBannerBlock .iconBox .textBox .text {
    font: var(--content07);
}

header .headerBlock .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    position: relative;
}

header .ham {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    top: calc(50% - 10px);
    left: 24px;
}

header .hamBox {
    position: relative;
}

header .ham .hamLine {
    position: absolute;
    left: 2px;
    width: 16px;
    height: 2px;
    background-color: #EA6017;
    transition: all 0.3s;
}

header .ham .hamLine.hamLineTop {
    top: 4px;
}

header .ham .hamLine.hamLineMiddle {
    top: 10px;
}

header .ham .hamLine.hamLineBottom {
    top: 16px;
}

header .ham.active .hamLine.hamLineTop {
    transform: rotate(45deg);
    top: 8px;
}

header .ham.active .hamLine.hamLineMiddle {
    width: 0px;
}

header .ham.active .hamLine.hamLineBottom {
    transform: rotate(-45deg);
    top: 8px;
}

header .logo img {
    display: block;
    width: 124px;
}

header img.iconSearch {
    width: 20px;
    cursor: pointer;
    position: absolute;
    right: 24px;
    top: calc(50% - 10px);
}

header .quickLinkBlock {
    font: var(--content06);
}

header .accountBlock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    min-height: 36px;
    border-radius: 8px;
    overflow: hidden;
    padding: 12px 20px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

header .accountBlock.normal {
    background: url(/assets/images/account/img_thumb_normal.svg), linear-gradient(180deg, #F8F8F8 0%, #DADADA 100%);
    background-repeat: no-repeat;
    background-size: 100%, contain;
    background-position: right bottom, center;
    border: 1px solid var(--gray5);
    color: var(--gray1);
}

header .accountBlock.experience {
    background: url(/assets/images/account/img_thumb_experience.svg), #F2655C;
    background-repeat: no-repeat;
    background-size: 100%, contain;
    background-position: right bottom, center;
    color: var(--white);
}

header .accountBlock.expired {
    background: url(/assets/images/account/img_thumb_expired.svg), linear-gradient(180deg, #FFD6BB 0%, #CD9C72 100%);
    background-repeat: no-repeat;
    background-size: 100%, contain;
    background-position: right bottom, center;
    color: var(--white);
}

header .accountBlock.paying {
    background: url(/assets/images/account/img_thumb_paying.svg), linear-gradient(180deg, #D3BB97 0%, #BC9A73 100%);
    background-repeat: no-repeat;
    background-size: 100%, contain;
    background-position: right bottom, center;
    color: var(--white);
}

header .accountBlock.vip {
    background: url(/assets/images/account/img_thumb_vip.svg), #000000;
    background-repeat: no-repeat;
    background-size: 100%, contain;
    background-position: right bottom, center;
    color: var(--white);
}

header .accountBlock .logged a {
    display: flex;
    align-items: center;
    gap: 12px;
}

header .accountBlock .thumb {
    width: 36px;
    height: 36px;
    display: block;
    border-radius: 50%;
}

header .accountBlock.normal .thumb {
    border: 1px solid var(--gray1);
}

header .accountBlock.experience .thumb {
    border: 1px solid var(--white);
}

header .accountBlock.expired .thumb {
    border: 1px solid var(--gray2);
}

header .accountBlock.paying .thumb {
    border: 1px solid var(--gray2);
}

header .accountBlock.vip .thumb {
    border: 1px solid #EBBC52;
}

header .menuBlock {
    width: 100vw;
    min-height: 100vh;
    background: var(--white);
    position: absolute;
    top: 65px;
    left: -100vw;
    z-index: 99;
    transition: all 0.3s;
}

header .menuBlock.active {
    left: 0;
}

header nav {
    font: var(--content03);
}

header nav li a,
header nav li a:visited {
    color: var(--gray2);
    text-decoration: none;
}

header nav li li a,
header nav li li a:visited {
    color: var(--gray2);
}

header .menuBox {
    position: relative;
    padding: 16px 24px;
}

header nav ul li {
    margin-bottom: 20px;
}

header nav ul li.dropdown {
    position: relative;
}

header nav ul li.dropdown::after {
    content: "";
    background-color: var(--gray2);
    -webkit-mask-image: url(/assets/images/portal/header/icon_nav_arrow.svg);
    mask-image: url(/assets/images/portal/header/icon_nav_arrow.svg);
    transform: rotate(90deg);
    width: 8px;
    height: 8px;
    display: block;
    transition: transform .1s;
    position: absolute;
    top: calc(.5em - 4px);
    right: 0;
}

header nav ul li.dropdown.active::after {
    transform: rotate(180deg);
}

header nav ul li.dropdown.active ul {
    display: block;
}

header nav ul ul {
    display: none;
    margin-top: 8px;
    margin-left: 24px;
}

header nav ul ul li:not(:last-child) {
    margin-bottom: 16px;
}

header nav ul ul li a:active {
    color: var(--brandPink1);
}


/*--- Footer ---*/

footer {
    margin-top: 20px;
}

footer .wrap {
    border-top: 1px solid var(--gray7);
    padding: 24px 20px;
    box-sizing: border-box;
}

footer li a,
footer li a:visited {
    color: var(--gray1);
    text-decoration: none;
}

footer .logoBlock {
    color: var(--gray3);
    margin-bottom: 12px;
}

footer .logoBlock img.logo {
    width: 160px;
    display: block;
    margin-bottom: 12px;
}

footer .logoBlock .logoText {
    font: var(--content02);
}

footer .socialLinkBox {
    margin-top: 12px;
    margin-bottom: 24px;
}

footer .socialLinkBox ul {
    display: flex;
    gap: 12px;
}

footer .socialLinkBox img {
    width: 20px;
    display: block;
}

footer .navBlock .title {
    font: var(--title06);
    color: var(--gray3);
    margin-bottom: 8px;
}

footer .navBlock .linkBox {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

footer .navBlock .linkBox ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 0;
    height: calc((3em + 12px) + 24px);
    font: var(--content03);
}

footer .navBlock .linkBox ul li {
    width: 6em;
}

footer .navBlock .linkBox .aboutBox {
    width: calc(66.66vw - 24px);
}

footer .navBlock .linkBox .serviceBox {
    width: calc(33.33vw - 24px);
}

footer .navBlock .downloadBox {
    margin-bottom: 24px;
}

footer .navBlock .downloadBox ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .navBlock .downloadBox ul li {
    width: calc(33.33vw - 24px);
}

footer .navBlock .downloadBox img {
    width: 100%;
    display: block;
}

footer .copyrightBlock {
    color: var(--gray4);
    font: var(--content07);
}

footer .copyrightBlock .copyright {
    margin-top: 8px;
}

@media screen and (min-width: 1024px) {
    /*--- Header ---*/
    header .overlay {
        position: fixed;
        height: 100vh;
        width: 100vw;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 15;
        display: none;
    }
    header .appBannerBlock {
        display: none;
    }
    header .headerBlock .wrap {
        height: 72px;
        gap: 24px;
        justify-content: space-between;
    }
    header .logo img {
        width: 144px;
    }
    header .menuBlock {
        width: 100%;
        min-height: auto;
        position: static;
        background: transparent;
    }
    header .menuBox {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        padding: 0;
    }
    header nav ul {
        display: flex;
        align-items: center;
        gap: 36px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    header nav ul li {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 0;
    }
    header nav ul li a:not(header nav ul ul li a) {
        line-height: 72px !important;
    }
    header nav ul li.dropdown>a {
        padding-right: 16px;
    }
    header nav ul li.dropdown::after {
        display: block;
        position: static;
        margin-left: -8px;
        transform: none;
    }
    header nav ul li:hover>a,
    header nav ul li.dropdown:hover>a {
        color: var(--brandPink1);
        font: var(--content04);
    }
    header nav ul li.dropdown:hover::after {
        background-color: var(--brandPink1);
        transform: rotate(180deg);
    }
    header nav ul ul {
        display: none;
        position: absolute;
        top: 60px;
        left: -20px;
        width: max-content;
        z-index: 99;
        background-color: var(--white);
        background: var(--white);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        padding: 8px 0;
        margin: 0;
    }
    header nav ul li.dropdown:hover ul {
        display: block;
    }
    header nav ul ul li:not(:last-child) {
        margin-bottom: 0;
    }
    header nav ul ul li:hover {
        background: var(--gray7);
    }
    header nav ul ul li a {
        padding: 12px 60px 12px 20px;
        display: block;
        width: 100%;
    }
    header .quickLinkBlock {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    header .quickLinkBlock a,
    header .quickLinkBlock a:visited {
        color: var(--gray3);
    }
    header .quickLinkBlock a:hover {
        color: var(--brandPink1);
    }
    header img.iconSearch {
        position: static;
    }
    header .accountBlock {
        margin-bottom: 0;
        background: none !important;
        border: none !important;
        padding: 0;
        box-shadow: none;
    }
    header .accountBlock .logged a,
    header .accountBlock .logStetus a {
        display: flex;
        align-items: center;
    }
    header .accountBlock img.thumb {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }
    /*--- Footer ---*/
    footer .wrap {
        padding: 48px 20px;
        display: flex;
        justify-content: space-between;
        position: relative;
    }
    footer .logoBlock {
        margin-bottom: 0;
        position: relative;
        width: 364px;
    }
    footer .socialLinkBox {
        position: absolute;
        top: 0;
        right: 0;
        margin: 4px 0;
    }
    footer .navBlock {
        display: flex;
        width: calc(100% - 512px);
        justify-content: space-between;
    }
    footer .navBlock .title {
        margin-bottom: 12px;
    }
    footer .navBlock .linkBox {
        width: calc(100% - 136px);
        margin: 0;
    }
    footer .navBlock .linkBox ul {
        height: calc((3em + 24px) + 24px);
    }
    footer .navBlock .linkBox .aboutBox {
        width: 66.66%;
    }
    footer .navBlock .linkBox .serviceBox {
        width: 33.33%;
    }
    footer .navBlock .downloadBox {
        margin: 0;
    }
    footer .navBlock .downloadBox ul {
        flex-direction: column;
        gap: 12px;
    }
    footer .navBlock .downloadBox ul li {
        width: 136px;
    }
    footer .copyrightBlock {
        position: absolute;
        left: 16px;
        bottom: 48px;
        width: 364px;
    }
}