.hnav {
    position: relative;
    display: flex;
    align-items: center;
}
.hnav__wrapper.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}
.hnav__wrapper {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    width:100%;
    margin: 0 -12px;
    padding: 0 12px;
}

.hnav__wrapper::-webkit-scrollbar {
    display: none;
}

.hnav__list {
    display: flex;
    gap: 16px;
    align-items: center;
    white-space: nowrap;
}

.hnav__item {
    width: fit-content;
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #d9d9d9;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #000;
    transition: .3s ease;
}

.hnav__item:hover {
    border: 1px solid #000;
    color: #000;
}

.hnav__item.active {
    color: #fff;
    background: #0042be;
}
.hnav__item.active svg path{
    fill:white;
}
.hnav__item.active svg rect{
    stroke:white;
}

.hnav__arrow {
    width:44px;
    height:44px;
    background:rgba(246, 246, 246, 1);
    -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
    border:none;
    outline: none;
    border-radius:50%;
    position:absolute;
    z-index:2;
}

.hnav__arrow:hover:not(.disabled) {

}

.hnav__arrow.disabled {
    opacity: 0;
    pointer-events: none;
}

.hnav__arrow span {
    display: block;
    line-height: 1;
}
.hnav__arrow--left{
    left:0px;
    transform: translateX(-20px);
}
.hnav__arrow--left span{
    display:block;
    width:100%;
    height:100%;
    background:url("/assets/img/arrow-left.svg") center center no-repeat;
}
.hnav__arrow--right{
    right:0px;
    transform: translateX(20px);
}
.hnav__arrow--right span{
    display:block;
    width:100%;
    height:100%;
    background:url("/assets/img/arrow-right.svg") center center no-repeat;
}
@media (max-width: 568px) {
    .hnav__item {
        height: 44px;
    }
    .hnav__arrow{
        display:none;
    }
}
.events-list-slider a{
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.5);
    border: 1px solid #dad9d9;
    border-radius: 32px;
    padding: 0px 16px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s ease;
}
.events-list-slider a:hover{
    border: 1px solid #666;
    background: transparent;
    color: rgba(0, 0, 0, 0.5);
}
.events-list-slider a span {
    color: #000;
}