/* Global layout */
body {
    background: #f9f9f9;
}
#header {
    position: fixed;
    box-sizing: border-box;
    background: rgba(255,255,255, 1);
    height: var(--header-height);
    top: 0;
    width: 100%;
    /*max-width: var(--max-width);*/
    padding: var(--default-gap);
    display: flex;
    align-items: center;
    /*column-gap: 30px;*/
    z-index: 100;
}
#container {
    margin: auto;
    /*max-width: var(--max-width);*/
    position: relative;
    background: white;
}
#content {
    padding-top: var(--header-height);
}
#content > section {
    padding-top: 30px;
}
#content > section > header {
    padding: 0 var(--default-gap);
}
#content > section > .content > aside {
}
#content > section > .content > .main > header {
}
#content > section > .content > .main > .body {
}
#content > section > .related {
    
}


/* Halo */
#halo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    display: none;
}
#halo img {
    width: 100%;
}
body.error #halo {
    display: none !important;
}


/* Header */
body.menu_expanded #header {
    background: white;
}
body.menu_expanded #header {
    border-bottom: 1px solid var(--grey1);
}
#logo {
    flex-grow: 2;
    padding-left: 17px;

}
.logo a {
    display: block;
    width: 200px;
    height: 20px;
    background: url('../img/logo.svg') no-repeat;
    background-size: 100%;
    font-size: 0;
}


/* Header buttons */
#header .buttons {
    display: flex;
    flex-shrink: 0;
}
#header .buttons > * {
    margin-left: 20px;
}
.btn {
    display: block;
    width: 20px;
    height: 20px;
    font-size: 0;
}
#header .buttons .btn.ticketing {
    background: url('../img/ticketing.svg') no-repeat center center;
    background-size: 100%;
}
#header .search_container {
    display: none;
}
#header .search_container .btn.search {
    background: url('../img/search.svg') no-repeat center center;
    background-size: 100%;
}
#header .search_container form {
    display: none;
    /*border-bottom: 1px solid black;*/
}
#header .search_container form input {
    width: 0;
    border-bottom: 1px solid black;
    height: 23px;
    /*width: 150px;*/
    margin-left: 10px;
    background: transparent;
    display: inline-block;
}
#header .search_container form button {
    display: none;
}
body.search_expanded #header {
    background: white !important;
}
body.search_expanded #header .search_container {
    display: flex;
}
body.search_expanded #header .search_container form  {
    display: block;
}
body.search_expanded #header .search_container form input {
    width: 150px;
    transition: 0.5s;
}

.btn.connection {
    background: url('../img/user.svg') no-repeat center center;
    background-size: 100%;
}
.langs {
    display: none;
    flex-direction: column;
    font-size: 10px;
    text-transform: uppercase;
}
.langs .selected {
    font-family: 'MediaSans-Bold';
}
#message {
    position: fixed;
    z-index: 10000;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--current-shape-color);
    width: 200px;
    padding: 10px;
    text-align: center;
    font-family: 'MediaSans-Bold';
    line-height: normal;
}
@media only screen and (min-width: 768px) {
    #halo {
        width: 60%;
    }
    #header .buttons > * {
        margin-left: 35px;
    }
    #header .langs {
        display: flex;
    }
    #header .search_container {
        display: inline-block;
    }
}
@media only screen and (min-width: 1024px) {
    #header .langs {
        font-size: 11px;
    }
    #header #logo {
        padding-left: 90px;
    }
   .logo a {
       width: 250px;
       height: 25px;
       background: url('../img/logo.svg') no-repeat;
       background-size: 100%;
    }
    #header .buttons .btn {
        width: 24px;
        height: 24px;
    }
    #content > section {
        padding-top: 60px;
    }
}

/* Menu */
#menu_button {
    flex-shrink: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: url('../img/menu.svg') no-repeat center center;
    background-size: 100%;
}
body.menu_expanded #menu_button {
    background: url('../img/close.svg') no-repeat center center;
    background-size: 100%;
}
#menu {
    position: fixed;
    box-sizing: border-box;
    z-index: 90;
    top: var(--header-height);
    /*max-width: var(--max-width);*/
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: white;
    transform: translateY(calc((100% + var(--header-height)) * -1));
    transition: 0.5s;
    overflow-y: auto;
}
body.menu_expanded #menu {
    transition: 0.5s;
    transform: translateX(0);
}
.menu {
    padding: var(--default-gap);
}
.menu > li {
    text-transform: uppercase;
    font-family: 'MediaSans-Light';
    font-size: 15px;
    margin-bottom: var(--default-spacing);
    padding-right: 30px;
    box-sizing: border-box;
}
.menu > li ul li {
    margin-bottom: 10px;
}
.menu > li > a {
    display: inline-block;
    font-family: 'MediaSans-Bold';
    font-size: 16px;
    margin-bottom: 10px;
}

/* Mobile search form */
#menu .search_form {
    padding: var(--default-gap);
    border-bottom: 1px solid var(--grey1);
}
#menu .search_form button {
    display: none;
}
#menu .search_form input[type=text] {
    background: url('../img/search.svg') no-repeat left center;
    background-size: 20px;
    padding-left: 35px;
    height: 30px;
    border-bottom: 0;
}

/* User */
.identity {
    font-size: 15px;
    line-height: 25px;
}
.logout {
    padding-left: 10px;
}

@media only screen and (min-width: 768px) {
    #menu {
        height: auto;
    }
    .menu {
        display: flex;
    }
    #menu .menu > li {
        width: 25%;
    }
    #menu .search_form {
        display: none;
    }
}
@media only screen and (min-width: 1024px) {
    #menu_button {
        width: 24px;
        height: 24px;
    }
    
}


/* Partners */
#partners {
    width: 100%;
    box-sizing: border-box;
    padding: var(--default-spacing) var(--default-gap);
    background: var(--current-shape-color);
}
#partners > ul > li {
    margin-bottom: 40px;
}
#partners > ul > li:last-child {
    margin: 0;
}
#partners > ul > li .category {
    font-size: 12px;
    font-family: 'MediaSans-Bold';
    text-transform: uppercase;
    margin-bottom: 10px;
}
#partners > ul > li > ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#partners > ul > li > ul li {
    margin-right: 30px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 1024px) {
    #partners > ul > li {
        margin-bottom: 0;
    }
    #partners > ul {
        display: flex;
        column-gap: 30px;
    }
    #partners > ul > li .category {
        font-size: 16px;
    }
}


/* Footer */
#footer {
    display: flex;
    font-size: 14px;
    font-family: 'MediaSans-Bold';
    text-transform: uppercase;
    padding: var(--default-gap);
}
#footer .logo,
#footer .menu {
    display: none;
}
#footer > nav {
    width: 50%;
}
#footer > nav li {
   margin-bottom: var(--default-spacing); 
}
#footer > nav li:last-child {
    font-size: 13px;
    font-family: 'MediaSans-Light';
}
#footer .networks {
    width: 50%;
}

/* Networks */
.networks .buttons {
    display: flex;
    margin-bottom: var(--default-spacing);
}
.networks .buttons .btn {
    width: 25px;
    height: 25px;
    display: inline-block;
    font-size: 0;
    margin-right: 15px;
}

@media only screen and (min-width: 1024px) {
    #footer > nav,
    #footer > .networks {
        width: 20%;
    }
    #footer > .menu {
        padding: 0;
        display: flex;
        width: 60%;
        padding-top: 70px;
    }
    #footer > .menu > li {
        width: 33.33%;
        font-size: 12px;
        box-sizing: border-box;
        padding-right: 20px;
    }
    #footer > .menu > li a {
        font-size: 14px;
    }
    #footer .logo {
        display: block;
        margin-bottom: 20px;
    }
    #footer .logo a {
        width: 230px;
        height: 50px;
    }
    .networks .buttons {
        margin-bottom: 45px;
    }
}
@media only screen and (min-width: 1280px) {
    #footer {
    }
    #footer > .menu > li {
        padding-right: 30px;
    }
    #footer .logo a {
        width: 230px;
        height: 50px;
    }
}





















