.ctl-menu-btn{
    height: 40px
}
 .ui-btn-icon.ui-btn-icon-close{
    background-color: transparent;
    border: none;
    display: none;
    color: #fff;
    width: 17px;
    height: 14px;
}
.ctl-menu-btn.open-menu .ui-btn-icon.ui-btn-icon-close{
    display: block;
}
.ctl-menu-btn.open-menu .ui-btn-icon.ui-btn-icon-gamburger{
    display: none;
}
.ctl-menu-wrp{
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 2;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    top: 160px;
}
.header-fixed.header-fixed_fixed .ctl-menu-wrp{
    top: 70px;
}
.ctl-menu-wrp.open-menu{
    visibility: visible;
    opacity: 1;
    z-index: 2;
}
.ctl-menu-content-wrp{
    background-color: #fff;
    display: flex;
    width: 100%;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.ctl-menu-content{
    display: flex;
    max-width: 1280px;
    width: 100%;
    z-index: 2;
    background-color: #fff;
}
.ctl-menu-content-l{
    width: 300px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #ECEDF0;
    padding-right: 7px;
    height: calc(80vh - 144px);
    padding-bottom: 10px;
}
.ctl-menu-content-l-items{
    height: calc(100vh - 164px);
    overflow-y: auto;
    padding-right: 8px;
}
.ctl-menu-content-l-items::-webkit-scrollbar,
.ctl-menu-content-r::-webkit-scrollbar{
    width: 6px;
}
.ctl-menu-content-l-items::-webkit-scrollbar-track {

}
.ctl-menu-content-l-items::-webkit-scrollbar-thumb,
.ctl-menu-content-r::-webkit-scrollbar-thumb{
    background-color: #ECEDF0;
    border-radius: 30px;
}
.ctl-menu-content-l-items::-webkit-scrollbar-thumb:hover,
.ctl-menu-content-r::-webkit-scrollbar-thumb:hover {
    background-color: #E4E4E4;
}
/* Change thumb color on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
.header-fixed.header-fixed_fixed .ctl-menu-content-l{
    height: calc(100vh - 70px);
}
.ctl-menu-root-item a{
    font-size: 15px;
    font-weight: 400;
    display: flex;
    padding: 8px 18px;
    align-items: center;
    transition: 0.3s;
    border-radius: 8px;
}
.ctl-menu-root-item a:hover,
.ctl-menu-root-item.hover a{
    background-color: #F4F4F4;
    color: inherit;
}
.ctl-menu-root-item a span{
    width: 100%;
    margin-left: 14px;
}
.ctl-menu-cols{
    display: flex;
    gap: 20px;
    padding-left: 40px;
}
.ctl-menu-col-row{
    margin-bottom: 30px;
}
.ctl-menu-col{
    width: 33.333%;
}
.ctl-menu-link-level-2{
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}
.ctl-menu-content-r{
    width: calc(100% - 300px);
    height: calc(80vh - 144px);
    overflow-y: auto;
    display: flex;
}
.ctl-menu-sub-child{
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ctl-menu-sub-child a{
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}
.ctl-menu-more-link{
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #2B81CE;
}
.ctl-menu-more-link.open svg{
    transform: rotate(180deg);
}
.ctl-menu-name{
    font-size: 24px;
    font-weight: 600;
    line-height: 109%;
    padding-left: 40px;
    margin-bottom: 25px;
}
html.no-scroll{
    overflow: hidden;
}
.no-scroll .header-fixed.header-fixed_fixed{
    padding-right: var(--with-scroll);
}
.ctl-menu-banner-top{
    width: 100%;
    padding: 0 40px;
    margin-bottom: 25px;
}
.ctl-menu-banner-top img{
    max-width: 100%;
    border-radius: 10px;
}
.ctl-menu-banners-r{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ctl-menu-banners-r img{
    max-width: 100%;
}
.ctl-menu-banners-r a{
    display: block;
    line-height: 1;
}
.ctl-menu-wrp-bg{
    position: absolute;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}