body {
    font-family: 'Absolut';
    font-weight: normal;
    font-size: 16px;
    background-color: #000;
}

#wrapper {
    min-height: calc(100vh - 40px);
    color: #fff;
    margin-bottom: 40px;
}
a {
    color: #fff;
}

/*
    
*/
.font-pixel {
    font-family: 'An Tiiques'!important;
    font-weight: normal!important;
    letter-spacing: 2px;
}

/*
    header
*/
header {
    position: relative;
    z-index: 101;
}
#logo {
    height: 60px;
    background: transparent url('../img/logo.gif') no-repeat center;
    background-size: 75% auto;
}
#logo a {
    display: block;
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    #logo {
        height: 100px;
        border-bottom: none;
    }
}

/*
    menu button
*/
#menu {
    height: 60px;
    background: transparent url('../img/menu.svg') no-repeat center;
    background-size: auto 40%;
}
.menu #menu {
    background-image: url('../img/up.svg');
}

/*
    nav
*/
nav {
    font-weight: bold;
    font-size: 18px;

    border-top: 1px solid #fff;
    /*background-color: red;*/
    height: calc(100vh - 60px - 60px - 40px);
    position: absolute !important; z-index: 10;
    top: 120px; left: 0;
    display: none;

    position: relative;
}

.menu nav {
    display: flex!important;
}

nav .section {
    color: #fff!important;
    text-decoration: none;
    padding-bottom: 2px;
    line-height: 1em;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav a:hover,
nav a.active {
    color: #fff!important;
    text-decoration: none;
    border-bottom-color: #fff;
}

nav .section.wafi { background-color: #c0c0c0; }
nav .section.lineup { background-color: #6c76eb; }
nav .section.tickets { background-color: #f77388; }
nav .section.info { background-color: #00f11f; }
nav .section#spiritid { background: #c0c0c0; font-size: 14px; }
nav .section#spiritid .button {
    border: 1px solid #fff;
    padding: 0 8px;
    text-transform: uppercase;
    margin: 10px 5px;
    cursor: pointer;
    color: #fff!important;
    display: inline-block;
    text-align: center;
    line-height: 20px;
}
nav .section#spiritid [data-user] {
    text-align: center;
    display: block;
}
nav .section#spiritid img {
    height: 30px;
}

@media (min-width: 992px) {
    nav,
    .menu nav {
        position: static!important;
        transform: none;
        border-top: none;
        height: auto;
        transition: none;
    }
    nav .section {
        border-bottom: 2px solid transparent;
        margin: 5px 10px 0 10px;
        background-color: transparent!important;
        transition: border .3s;
    }
    nav .section#spiritid {
        position: absolute;
        top: 13px;
        right: 60px;
        height: 20px;
        border-bottom: none!important;
        margin: 0;
        padding: 0;
        font-size: 12px;
    }
    nav .section#spiritid .button {
        margin: 0 5px;
    }
    nav .section#spiritid [data-user] {
        display: inline-block;
    }
    nav .section#spiritid img {
        height: 20px;
    }
}

/*
    main
*/
main {
    position: relative;
    z-index: 100;
}
main::before {
    content: '';
    position: absolute;
    z-index: 100;
    overflow: hidden;
    width: 0;
    height: 0;
    opacity: 0;
    background-color: #000;
/*    transition: opacity .3s, width 0s, height 0s;
    transition-delay: 0s, .3s, .3s;*/
}
.menu main::before {
    width: 100%;
    height: 100%;
    opacity: .85;
    transition: opacity .3s;
    transition-delay: 0s;
}
@media (min-width: 992px) {
    main::before {
        display: none;
    }
}


/*
    button filter
*/
.filter .button {
    height: 60px;
    background: transparent url('../img/down.svg') no-repeat right 20px center;
    background-size: auto 20px;
    border-bottom: 1px solid #fff;
    padding: 0 20px;
    font-size: 20px;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
}
.filter .button.text-left {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 60px;
}
.filter.active .button {
    background-image: url('../img/up.svg');
}
.filter.active {
    border-bottom: 1px solid #fff;
}
@media (min-width: 992px) {
    .filter.active {
        border-bottom: none;
    }
    .filter.active .button,
    .filter .button {
        border-bottom: none;
        background: transparent;
    }
}

/*
    footer
*/
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
footer {
    position: fixed;
    z-index: 100;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
}
footer span {
    animation: marquee 5s linear 0s infinite;
    white-space: nowrap;
    padding-right: 5px;
}
footer:hover span {
    animation-play-state: paused;
}

/*
    bg
*/
#bg {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: calc(100% - 40px);
}

/*
    globo
*/
@media (min-width: 992px) {

    .bg-globo {
        background-image: url('../img/globo_rotate.gif');
        background-repeat: no-repeat;
        background-size: auto 200px;
        background-position: center top 50vh;
    }

    @media (max-height: 720px) {
        .bg-globo {
            background-position: center top 40vh;
            background-size: auto 150px;
        }
    }

}

/*
    legal
*/
#legal {
    font-size: 12px;
    line-height: 1.6em;
    width: 100%;
    border-top: 1px #fff solid;
}

@media (min-width: 992px) {
    #legal {
        position: absolute;
        left: 0; bottom: 0;
        width: 25%;
    }
}