/* Main Menu */
.main-menu .menu-section {
    margin-bottom: 35px;
}

.main-menu .menu-section.fixes-section {
    margin-top: 7px;
}

.main-menu .menu-section:last-child {
    margin-bottom: 0;
}

.main-menu .fixes-section,
.main-menu .support-section,
.main-menu .tickets-section {
    margin-bottom: 30px !important;
}

.main-menu .menu-section-heading {
    display: flex;
}

.main-menu .support-section .menu-section-heading {
    align-items: center;
}

.main-menu .section-link {
    max-width: 160px;
    display: inline-block;
    line-height: 0;
}

.main-menu .support-section .section-link {
    line-height: 1.3;
}

.main-menu h6 {
    margin: 0 !important;
}

.main-menu .section-icon {
    width: 14px;
    height: 14px;
    margin-right: 10px;
}

.main-menu a {
    transition: .3s;
}

.main-menu a:hover {
    color: #7CD9FF !important;
}

.main-menu a.section-link {
    color: #fff;
}

.main-menu a.current-page {
    color: #7CD9FF !important;
}

.menu-section-items {
    display: flex;
    flex-direction: column;
    margin-top: 7px;
    margin-left: 26px;
}

.main-menu .menu-section-items a {
    font-size: 11px;
    padding: 3px 0;
}

.off-canvas-left.dark .mfp-content,
.off-canvas-right.dark .mfp-content {
    background-color: #102430 !important;
}



/* Header Auth Menu */
.header-login {
    position: relative;
    padding: 10px 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.header-login img {
    margin-right: 10px;
}

.header-login .welcome {
    display: flex;
    align-items: center;
}

.header-login .user-name {
    transition: .3s;
}

.header-login:hover>.welcome .user-name {
    color: #FFD668 !important;
}

.header-login a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.header-login a:hover {
    color: #FFD668 !important;
}

.header-login .menu {
    position: absolute;
    min-width: 125px;
    right: 0;
    top: 45px;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #162f3d;
    z-index: 10;
    text-align: right;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s .4s, opacity .4s ease;
}

.header-login:hover>.menu {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.header-login .menu a {
    font-size: 12px;
    transition: .3s;
    padding: 6px 0;
    display: block;
}

.header-login .menu a:hover {
    color: #FFD668 !important;
}