.hor-menu {
    display: inline-flex;
    position: relative;
    margin-left: 50px;
    margin-right: 0;
    width: 100%;
    justify-content: flex-end;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hor-menu__list {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    flex-direction: inherit;
    justify-content: inherit;
    align-content: inherit;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    flex-shrink: 1;
    height: 46px;
    width: auto;
    overflow-x: unset;
    overflow-y: unset;
}

.hor-menu__item {
    flex-shrink: 0;
    margin-left: 0px;
    margin-right: 0px;
    width: auto;
}

.hor-menu__link {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding: 15px 30px;
    display: block;
}

.hor-menu__item:hover .hor-menu__link,
.hor-menu__item.is-hover .hor-menu__link {
    color: var(--color-hover-text);
    text-decoration: none;
    text-shadow: none;
    background-color: var(--primary-color-base);
}

.hor-menu__sub_list > .hor-menu__sub_item:hover > .hor-menu__sub_link,
.hor-menu__sub_list > .hor-menu__sub_item.is-hover > .hor-menu__sub_link {
    background-color: var(--color-blue);
    color: #fff;
    text-shadow: none;
}

.hor-menu__sub_list {
    position: absolute;
    z-index: 10;
    list-style-type: none;
    background-color: var(--primary-color-base);
    width: 230px;
    padding: 7px 5px;
    margin: 10px 0px 0px;
    border-radius: 0px;
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background-size: auto;
    background-attachment: scroll;
}

.hor-menu__item > .hor-menu__sub_list {
    display: none;
}

.hor-menu__item.is-hover > .hor-menu__sub_list {
    display: block;
}

.hor-menu__sub_item {
    vertical-align: top;
}

.hor-menu__sub_list > .hor-menu__sub_item > .hor-menu__sub_link {
    color: rgba(var(--color-hover-text), 1);
    font-size: 14px;
    padding: 12px 10px;
    border-radius: 0px;
    text-align: left;
    font-weight: 500;
    text-shadow: none;
    text-transform: none;
    display: block;
}

.hor-menu__sub_list .hor-menu__sub_list {
    display: none;
    top: 0;
    left: 100%;
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 0px;
}

.hor-menu__sub_list .hor-menu__sub_item.is-hover .hor-menu__sub_list {
    display: block;
}

.side-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    pointer-events: none;
    display: none;
}

@media (max-width: 991px) {
    .side-panel {
        display: block;
    }
    .hor-menu {
        display: none;
    }
}

.side-panel__content {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 300px;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    transition: all 0.3s ease-in;
    transform: translateX(350px);
}

.side-panel__content.open {
    transform: translateX(0);
}

.admin-bar .side-panel, .admin-bar .side-panel__content {
    top: 46px;
}

.side-panel__button-close {
    position: absolute;
    z-index: 1;
    right: 100%;
    top: 0px;
    font-size: 0px;
    width: 50px;
    min-height: 0px;
    background-color: var(--color-blue);
    cursor: pointer;
    height: 50px;
    background-image: url(./img/close.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px auto;
    background-attachment: scroll;
}

.side-panel__content-inner {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    position: relative;
    z-index: 0;
}

.ver-menu {
    position: relative;
    width: auto;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
}

@media (max-width: 991px) {
    .ver-menu {
        margin-top: 0px;
    }
}

@media (max-width: 479px) {
    .ver-menu {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
    }
}

.ver-menu .ver-menu__list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.ver-menu .ver-menu__link {
    color: var(--color-hover-text);
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
    padding: 15px 30px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-decoration-line: none;
}

@media (max-width: 479px) {
    .ver-menu .ver-menu__link {
        padding-left: 25px;
        padding-right: 20px;
    }
}

.ver-menu .ver-menu__icon {
    background-color: rgb(247,247,247);
    width: 25px;
    height: 25px;
    margin-left: 15px;
    display: block;
    flex-shrink: 0;
    background-image: url(./img/down-arrow.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px auto;
    background-attachment: scroll;
}

@media (max-width: 991px) {
    .ver-menu .ver-menu__icon {
        background-size: 15px auto, 10px;
    }

}

.ver-menu .ver-menu__sub_list {
    display: none;
    z-index: 10;
    list-style-type: none;
    background-color: rgb(247, 247, 247);
    padding: 10px;
    margin: 0;
    width: 100%;
}



.ver-menu .ver-menu__sub_item {
    vertical-align: top;
}

.ver-menu .ver-menu__sub_list > .ver-menu__sub_item > .ver-menu__sub_link {
    padding: 15px 20px;
    font-size: 14px;
    color: var(--color-hover-text);
    font-weight: 500;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-decoration-line: none;
}

@media (max-width: 479px) {
    .ver-menu .ver-menu__sub_list .ver-menu__sub_list > .ver-menu__sub_item > .ver-menu__sub_link {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.ver-menu .ver-menu__sub_list .ver-menu__sub_list {
    background-color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.side-panel__button-open {
    cursor: pointer;
    -webkit-box-flex: 0;
    margin-left: auto;
    pointer-events: auto;
    background-image: url(./img/align-right.svg);
    background-color: var(--color-btn-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 36px auto, 20px auto;
    background-attachment: scroll;
    margin-top: 5px;
    margin-right: 5px;
    width: 55px;
    height: 55px
}