.tab-wrapper {
    position: relative;
    background: #fff;
    padding: 16px 10px 10px 10px;
}

.agenda-location {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 9;
    position: relative;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden
}

.agenda-location li.loc {
    width: calc(100% / 9);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DADADA;
    border: 1px solid #fff;
    cursor: pointer;
    min-width: 165px;
}

.agenda-location li.loc span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.agenda-location li.loc:hover,
.agenda-location li.loc.active {
    background: #FF505C;
    color: #fff;
}

.agenda-location li.loc span > label {
    cursor: pointer;
}

.agenda-location::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

.tab-buttons > div {
    padding: 5px;
    transition: opacity 0.3s, visibility 0.3s;
    position: absolute;
    bottom: 10px;
    z-index: 99;
    height: 48px;
    background: #4d4d4d;
    top: 31px;
}

.tab-buttons > .left-button {
    visibility: hidden;
    opacity: 0;
    left: 0;
}

.tab-buttons > .right-button {
    right: 0;
}

.tab-buttons button{
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    color: #d2d2d7;
    font-size: 40px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}
