.venue-logo_div {
    width: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    background: #2b2b2b;
}

.venue-logo_img {
    margin: 10px 0;
}

.venue-header_menu {
    width: 100%;
    position: absolute;
    top: 85px;
    display: flex;
    justify-content: center;
    background: #f0e9d5;
}

a.venue-header_item {
    color: #000;
    padding: 0px 10px;
    border-right: 1px solid #ccc;
    margin: 5px 0;
}
a.venue-header_item:last-child, a.venue-header_item:nth-last-child(1) {
    border-right: none;
}

a.venue-header_item.active {
    font-weight: 900;
}

@media only screen and (min-width: 768px) {
    a.venue-header_item.mobile-next_arrow {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .venue-logo_div {
        justify-content: center;
    }

    .venue-header_menu {
        justify-content: start;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
    }
    a.venue-header_item.mobile-next_arrow {
        position: sticky;
        right: 0;
        background: #f0e9d5;
    }
    .bookbutton {
        justify-content: end;
        padding: 2%;
        display: block;
        
    }

}