#header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

#logo {
    display: flex;
    align-items: center;
    z-index: 1000;
}

#main-nav {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#main-nav ul {
    display: flex;
    text-transform: uppercase;
    font-weight: 300;
    height: 100%;
    font-size: 0.9em;
}

#main-nav ul li {
    margin-right: 30px;
    cursor: pointer;
    letter-spacing: 0.1em;
    font-size: 0.9em;
}

#main-nav ul li a {
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
}

.buy-tickets {
    white-space: nowrap;
}

.sticky {
    position: fixed !important;
    top: 0;
    z-index: 1000;
}


.sticky #logo img {
    width: 180px;
    transition: 1s ease;
}

.sticky #header-nav {
    transition: 1s ease;
}

.sticky .buy-tickets .btn {
    font-size: 0.8em;
    letter-spacing: 2px;
}

/*.highlight {
    position: relative;
}

.highlight:after {
    content: '';
    position: absolute;
    width: 100%;
    background: linear-gradient(to right, #8dc63f , #25aae1);
    height: 2px;
    bottom: 0;
    left: 0;
}*/

.scrollTop{
    width: 71px;
    height: 40px;
    display: block;
    background-color: rgb(197, 197, 197);
    position: fixed;
    bottom: 10%;
    right: -20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}

.scrollTop img {
    left: 9px;
    position: relative;
    top: 3px;
    width: 35px;
}

.mobile-overlay .scrollTop {
    display: none !important;
}


/* Responsive Headers */
.pull-out{
    flex: 1;
    display: none;
    bottom: 0;
    top: 0;
    position: absolute;
}

.close {
    flex: 1;
    display: none;
    bottom: 0;
    top: 0;
    position: absolute;
}

.visible {
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 80px;
    flex-basis: 35px;
    padding: 0;
    z-index: 1000;
    height: 70px;

}

.hide {
    display: none !important;
}

@media (max-width: 1080px) {

    #header {
        position: absolute;
        top: 0;
    }

    #logo {
        height: auto !important;
        padding: 10px 0px;
        width: 100%;
        justify-content: center;
    }

    #logo img {
        width: 80px !important;
    }

    .mobile-overlay {
        position: fixed !important;
        top: 0;
        background-color: rgba(80, 80, 80, 0.95);
        color: #FFF;
        z-index: 1000;
        width: 100%;
        height: 100vh;
        animation: slide 0.1s forwards;
        left: -1100px;
    }

    #header-nav {
        flex-direction: column;
        display: none;
    }

    .mobile-overlay #header-nav {
        display: flex;
        height: 100vh;
        justify-content: flex-start;
        align-items: flex-start;
        background-color: #000;
        width: 70%;
        position: relative;
        left: 0;
        margin: 0;
    }

    #main-nav {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        height: auto;
        margin-left: 14px;
    }

    #main-nav ul li {
        width: 100%;
        margin: 0;
        line-height: 30px;
    }

    /*#header.mobile-overlay {
        flex-flow: column;
        height: 100vh;
        position: fixed;
        z-index: 10000;
        max-width: 600px;
        animation: slide 0.1s forwards;
        left: -1100px;
        width: 70%;
    }*/

    @keyframes slide {
        100% { left: 0; }
    }

    .pull-out {
        display: flex;
        color: #fff;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        width: 85px;
        flex-basis: 35px;
        padding: 0;
        z-index: 1;
        height: 100px;
    }

    .pull-out i, .close i {
        font-size: 30px;
    }

    .buy-tickets {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .sticky .pull-out {
        color: #000;
        height: inherit;
        justify-content: center;
        width: 80px;
    }

    .sticky {
        position: fixed !important;
        top: 0;
        z-index: 1000;
        height: 60px;
        background-color: #eaeaea;
        box-shadow: 0px 2px 2px 0px rgba(177, 177, 177, 0.59);
    }


}