/*****MENU!!!!!*******************/

.triangle {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10000;
    margin: 0;
    padding: 0;
    padding-top: 30px;
    color: #ffffff;
    font-family: var(--secondary-font), sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    height: 100px;
    background-image: linear-gradient(to bottom, rgba(0, 159, 227, 1), rgba(0, 159, 227, 1), rgba(0, 159, 227, 0.8), rgba(0, 159, 227, 0));
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0;
    display: inline-block;
    float: left;
    /*background-color: var(--primary-color);*/
}

/* Styling the links */
nav a {
    display: block;
    padding: 14px 20px;
    color: #FFF;
    text-decoration: none;
}

nav a.home {
    padding: 0;
}


nav ul li ul li:hover {
    background-color: #00a2e8;
}

/* Background color change on Hover */
nav a:hover {
    background-color: #00a2e8;
    /*outline: 1px solid black;*/
}

nav a.home:hover {
    background-color: inherit;
}


/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 60px;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 190px;
    float: none;
    display: list-item;
    position: relative;
    background-color: #00B3FF;
}

nav ul ul li.lang {
    width: 70px;
}

nav ul ul li.lang span {
    display: block;
    text-decoration: none;
    padding: 14px 20px;
}

/* Second, Third and more Tiers
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 190px;
}

nav .menuDrop {
    cursor: default;
}


/* Change ' +' in order to change the Dropdown symbol */
/*li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }*/

nav #container {

    height: 100%;
    margin: 0 auto;
    max-width: 1170px;
}

#logo {
    display: block;
    padding: 0 30px;
    float: left;
    font-size: 20px;
    line-height: 30px;
}

#logo img {
    width: 90px;
}

#userAccount {
    text-align: center;
    float: right;
    height: 60px;
    align-content: center;
    font-size: 1.25rem;
    overflow: clip;
}


#logoutButton {
    background-color: #00B3FF;
    //width: 177px;
    border-radius: 0.5em;
    text-align: center;
    float: right;
    margin: 5px 10px 0 20px;
    overflow: clip;
}

#logoutButton img {
    margin-left: 0.3em;
    margin-top: 0.25rem;
    margin-bottom: -0.25rem;
    filter: invert(100%);
}

#logoutButton a {
    color: white;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 0px;
}

#logoutButton a:hover {
    background-color: var(--secondary-color-sat100);
    border-radius: 0.37em;
    color: black;
}

#getTickets:hover img {
    filter: invert(0%);
}


#getTickets {
    background-color: #00B3FF;
    //width: 177px;
    border-radius: 0.5em;
    text-align: center;
    float: right;
    margin: 5px 10px 0 0;
    overflow: clip;
}

#getTickets img {
    margin-left: 0.3em;
    margin-top: 0.25rem;
    margin-bottom: -0.25rem;
    filter: invert(100%);
}

#getTickets a {
    color: white;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 0px;
}

#getTickets a:hover {
    background-color: var(--secondary-color-sat100);
    border-radius: 0.37em;
    color: black;
}

#getTickets:hover img {
    filter: invert(0%);
}


#liveStream {
    border: 1px solid rgb(128, 128, 128);
    width: 120px;
    height: 40px;
    margin-top: 10px;
    margin-right: 20px;
    margin-left: 20px;
    display: inline-block;
    border-radius: 0.37em;
    text-align: center;
    vertical-align: middle;
}

#liveStream.live {
    border: 1px solid #F74B4B;
}


#liveStream.live .circle {
    color: #F87C7C;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        color: #F87C7C;
    }
    50% {
        color: #F81919;
    }
    100% {
        color: #F87C7C;
    }
}


#liveStream a {
    color: rgb(128, 128, 128);
    padding: 4px 0;
    font-size: 1em;
}

#liveStream.live a {
    color: white;
}

#liveStream a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.37em;
}

#liveStream.live a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

a.homeLink {
    display: none;
}


/* Media Queries
--------------------------------------------- */

@media all and (max-width: 900px) {

    #logo {
        display: none;
        /* padding: 0;
         width: 100%;
         text-align: center;
         float: none;
         height: 100%;*/
    }

    nav {
        margin: 0;
        padding-top: 0;
    }

    nav ul {
        float: left;
    }

    nav a {
        background-color: var(--primary-color);
    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a,
    .menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        background-color: var(--primary-color);
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
        text-decoration: none;
        border: none;
    }

    #getTickets {
        background-color: var(--secondary-color-dark);
        margin: 20px 15px 0 0;
        border-color: var(--secondary-color-dark);
    }

    #getTickets img {
        margin-left: 0.3em;
        margin-top: 0.25rem;
        margin-bottom: -0.25rem;
        filter: invert(100%);
    }

    #getTickets a {
        color: white;
        background-color:inherit;
        padding-top: 8px;
        padding-bottom: 8px;
        margin-top: 0px;
    }

    .toggle:hover {
        background-color: #00B3FF;
    }

    #getTickets a:hover {
        background-color: var(--secondary-color-sat100);
        border-color: var(--secondary-color-sat100);
        border-radius: 0.37em;
        color: black;
    }

    #getTickets:hover img {
        filter: invert(0%);
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
        display: block;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: #00B3FF;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }


    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: rgba(0, 179, 255, 0.5);
    }

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }

    /* Hide menus on hover */
    nav ul ul li:hover > ul,
    nav ul li:hover > ul {
        display: none;
    }

    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
    }

    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */

    }

    a.homeLink {
        display: block;
    }


}

@media all and (max-width: 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

}