.button-accent_menu {
    cursor: pointer;
    position: relative;

}
.lk-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 363px;
    max-width: 100vw;
    z-index: 9999;
    padding-top: 8px;
    display: none;;
}
.lk-menu:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='8' viewBox='0 0 16 8' fill='none'%3E%3Cpath d='M8 0L16 8H0L8 0Z' fill='white'/%3E%3C/svg%3E");
    
}
.lk-menu__body {
    background: #FFF;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.lk-menu__list-item {
    border-bottom: 1px solid #F0F0F0;
    background: #FFF;
}
.lk-menu__list-item:last-child {
    border-bottom: none;
}
.lk-menu__list-link {
    color: #222;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; 
    display: block;
    position: relative;
    padding: 16px 20px;
    padding-right: 40px;
    transition: all 0.3s;
}
.lk-menu__list-link:hover {
    color: #FF6600;
}
.lk-menu__list-link:after {
    content: '';
    display: block;
    position: absolute;
    width: 21px;
    height: 21px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10' fill='none'%3E%3Cpath d='M0.600006 0.600006L4.60001 4.60001L0.600006 8.60001' stroke='%238E8E8E' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

}

@media (max-width: 750px) {
    .lk-menu {
        width: 250px;
    }
    .lk-menu__list-link {
        font-size: 12px;
        padding: 16px 10px;
        padding-right: 30px;
    }
    .lk-menu__list-link:after {
        right: 10px;;
    }
}