header {
    position: fixed;
    height: 6dvh;
    width: 100dvw;
    top: 0;
    left: 0;
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-nav-mobile {
    width: 100dvw;
    height: 94dvh;
    position: fixed;
    top: 6dvh;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #333333;
    z-index: 30;
    padding: 25% 0;
}

.mobile-nav-item {
    color: white;
    border-radius: 1000px;
    padding: 10px 20px;
    border: solid 1px #333333;
}

.mobile-nav-item.active {
    border-color: white;
}

.header-offset {
    height: 6dvh;
    width: 100dvw;
}

.event-logo {
    background-color: #ee0000;
    display: flex;
    align-items: center;
    padding: 5px;
    height: 100%;
    width: fit-content;
    cursor: pointer;
}

.event-logo img {
    object-fit: contain;
    height: 100%;
}
.logo-sept{
    margin: 10px;
}

.pulp-logo {
    margin: 0 15px;
}

.live-countdown {
    margin-right: 15px;
    height: 135%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-live {
    margin: 10px;
    text-align: center;
    color: #808080;
    font-weight: bold;
    border-right: solid 2px #808080;
    border-left: solid 2px #808080;
    padding: 0 5px;
}

.nl-text {
    font-size: 0.7rem;
    font-family: 'Helvetica Neue LT Std Cn', sans-serif;
}

.nl-cd {
    font-size: 0.8rem;
    color: #ee0000;
}

.current-live {
    margin: 10px;
    text-align: center;
    color: #808080;
    font-weight: bold;
    border-right: solid 2px #FFFFFF;
    border-left: solid 2px #FFFFFF;
    padding: 0 5px;
    height: 30%;
}

.current-live img {
    height: 100%;
    object-fit: contain;
}

nav {
    position: absolute;
    //top: 50%;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70dvw;
}

.nav-item {
    color: #808080;
    margin: 0 25px;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 1000px;
    border: solid 1px #333333;
    cursor: pointer;
}

.nav-item-highlight {
    color: #EE0000;
    border-color: #EE0000;
    border: solid 2px #EE0000;
    font-weight: bold;
}

.nav-item:hover {
    border-color: #808080;
}

.nav-item.active {
    border-color: #FFFFFF;
    color: #FFFFFF;
    //font-weight: bold;
}

.burger-menu {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 100%;
}

.burger-menu img {
    height: 100%;
    object-fit: contain;
}

.closeMobBtn {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.closeMobBtn svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

@media screen and (max-width: 1260px){
    nav {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .live-countdown {
        margin-right: 0;
    }
}