.menu-ctn{
    position: fixed;
    width: 320px;
    right: 0;
    height: 100%;
    margin: auto;
    bottom: 0;
    background-color: white;
    padding: 40px;
    z-index: 1000;
    color: #333;
    transition: .3s;
    transform: translateX(100%);
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100%;
}

.menu-ctn.show{
    transform: none;
    box-shadow: 0 0 100px rgba(0, 0, 0, .08);
}

.menu-ctn a{
    display: block;
}

.menu-ctn a:hover{
    color: #39a9ad;
}

.menu-ctn .current>a{
    color: #39a9ad;
}

.menu-ctn>ul{
    margin-top: 40px;
}

.btn-close{
    width: 20px;
    height: 20px;
    position: absolute;
    right: 40px;
    top: 40px;
    cursor: pointer;
}

.btn-close::before, .btn-close::after{
    content: "";
    position: absolute;
    top: -4px;
    left: calc(50% - 1px);
    width: 2px;
    height: 28px;
    background-color: #333;
}

.btn-close::before{
    transform: rotate(-45deg);
}

.btn-close::after{
    transform: rotate(45deg);
}

li.menu-level-2{
    border-top: 1px solid #e6e6e6;
}

li.menu-level-2:last-child{
    border-bottom: 1px solid #e6e6e6;
}

li.menu-level-2>a{
    line-height: 60px;
    font-weight: bold;
    padding-left: 10px;
    font-size: 18px;
    background: url("/themes/basicpt/skin/images/icon_menu_right.png") right center no-repeat;
}

li.menu-level-2.expanded>a{
    color: #39a9ad;
    background: url("/themes/basicpt/skin/images/icon_menu_down.png") right center no-repeat;
}

ul.menu-level-2{
    display: none;
}

li.menu-level-2.expanded ul.menu-level-2{
    display: block;
}

li.menu-level-3{
    border-top: 1px solid #e6e6e6;
    padding-top: 12px;
    padding-bottom: 12px;
}

li.menu-level-3:last-child{
    border-bottom: 1px solid #e6e6e6;
}

li.menu-level-3>a{
    line-height: 34px;
    font-weight: normal;
    padding-left: 10px;
}

li.menu-level-4>a{
    line-height: 34px;
    padding-left: 10px;
}

.side-menu-toggler{
    cursor: pointer;
}

@media (max-width: 640px) {
    .menu-ctn{
        padding: 30px;
    }
}

<!--ºÄÊ±1753096891.2314Ãë-->