content {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

#inner-content>hr {
    height: 2px;
    border-width: 0;
    color: black;
    background-color: black;
}

.construction {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: solid 3px #4e4e4e;
    color: var(--secondary-color);
    background-color: var(--acent-color);
}

.training {
    border: 1px solid rgb(46, 46, 46);
    padding: 24px;
    background-color: var(--acent-color);
    /* box-shadow: 1px 5px 10px rgb(66, 66, 66); */
}


/*Styles for main page*/
/*news*/

#news-list {
    min-height: 600px;
}

.news-item {
    list-style: none;
}

.news-container {
    display: flex;
    align-items: stretch;
    border: 1px solid rgb(46, 46, 46);
    padding: 3px;
    background-color: var(--acent-color);
    /* box-shadow: 1px 5px 10px rgb(66, 66, 66); */
}

.news-content{
    position: relative;
    text-decoration: none;
    color: #000;
    display: block;
    padding: 10px;
}

.news-link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.news-text-wrapper {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
}

.news-header {
    padding-bottom: 5px;
}

.news-cover {
    display: block;
    max-height: 20vh;
    /* border: 1px solid red; */
}
.news-date{
    font-style: italic;
}

/*infos*/
#info-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.info-box {
    margin: 5px;
    border: 1px solid rgb(46, 46, 46);
    flex-shrink: 1;
    width: 100%;
}

.info-background {
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.info-background > p,
.join-background > p{
    color: var(--text-color);
}

#members-bg {
    background-image: url("/images/logo/header-image.jpg");
}

#association-bg {
    background-image: url("/images/logo/history-image.jpg");
}

#repertoir-bg {
    background-image: url("/images/logo/logo.png");
}

.info-container {
    position: absolute;
    bottom: 5%;
}

.info-nav {
    overflow: hidden;
    display: block;
    width: 7em;
    background-color: var(--secondary-color);
}

.info-nav a {
    width: 100%;
    color: var(--text-color);
    padding: 14px 0px;
    text-decoration: none;
    font-size: 17px;
    display: flex;
    justify-content: center;
}

.info-nav a:hover {
    background-color: #ddd;
    color: black;
}

/*join*/

.join-box {
    margin: 5px;
    align-items: center;
    border: 1px solid rgb(46, 46, 46);
}

.join-info {
    width: 10em;
}

.join-background {
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 170px;
    position: relative;
}

#join-bg {
    background-image: url("/images/logo/join-image.jpg");
}

/*Styles for performances*/
#performances-upcoming{
    display: flex;
    justify-content: center;
}

#performances-upcoming>ul>span {
    display: flex;
    flex-direction: row;
    padding: 4px;
    padding-top: 0.5em;
}

#performances-upcoming>ul>span>p {
    padding-top: 3px;
    padding-left: 5em;
}

#performances-upcoming>ul>p {
    padding-top: 1em;
}

#performances-list {
    display: table;
}

#performances-list>span {
    display: table-cell;
    vertical-align: middle;
}


#performances-past>.past-component {
    display: flex;
    flex-direction: column
}

.past-component {
    padding-top: 1em;
    position: relative;
    display: flex;
    align-items: center;
}

.past-year {
    cursor: pointer;
    font-size: 17px;
    min-width: 80%;
    border: none;
    background-color: var(--acent-color);
}

.past-year .material-icons {
    position: relative;
    top: 5px;
    min-height: 40px;
    font-weight: bold;
}

.past-content {
    display: none;
    /* transition: all 10.5s ease-out; */
}

.show-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* transition: all 10.5s ease-in; */
}

.past-content>span {
    display: flex;
    flex-direction: row;
    padding: 3px;
}

.past-content>span>p {
    padding-left: 5em;
}

/*Modal*/

/* The Modal (background) */
.news-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-wrapper {
    background-color: #fefefe;
    margin: 5% auto;
    /* 5% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

.modal-content {
    display: flex;
    flex-direction: column;
    padding: 5px;
}

/* The Close Button */
#close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    border: none;
    background-color: inherit;
    cursor: pointer;
}

#close-btn:hover,
#close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.open-btn {
    border: none;
    background-color: inherit;
    padding-left: 2.5em;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}

.modal-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 0;
    max-width: 100%;
}

.modal-stamp {
    padding-top: 10px;
    text-align: right;
}

/*Styles for members*/

.members-wrapper,
.contact-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.member-component,
.contact-component {
    width: 160px;
    padding: 5px;
    margin: 5px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(46, 46, 46);
    background-color: var(--acent-color);
    border-radius: 5px;
}

.member-img,
.contact-img {
    padding: 2px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 6px 5px #ccc;
    -moz-box-shadow: 0px 6px 5px #ccc;
    -webkit-box-shadow: 0px 6px 5px #ccc;
    max-width: 125px;
    max-height: 125px;
}

.member-name,
.contact-name {
    padding-top: 5px;
}

.members>p {
    padding-left: 15px;
}

/*Styles for contact*/
.contact-mail {
    padding-left: 4px;
}

#contact-address {
    padding-left: 15px;
    padding-bottom: 10px;
}

#contact-address span>p {
    padding: 4px;
}

.member-contact>a,
.contact-tel>a {
    text-decoration: none;
    color: black;
}

#contact-mail {
    text-decoration: none;
    color: black;
}

#contact-input {
    display: none;
    flex-direction: column;
    align-items: center;
}

#contact-form {
    border: 1px solid blue;
    width: 95%;
}

#contact-buttons {
    display: flex;
    justify-content: space-around;
    background-color: blueviolet;
}

#contact-buttons>input {
    background-color: green;
}

#contact-fields {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.short-field {
    display: flex;
    flex-direction: column;
}

/*Styles for contact form*/
input[type=text],
input[type=email],
input[type=tel] {
    width: 50%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}

/* input[required]{
    background-image: radial-gradient(#F00 15%, transparent 16%), radial-gradient(#F00 15%, transparent 16%);
    background-size: 1em 1em;
    background-position: right top;
    background-repeat: no-repeat;
} */

input[required]+span::after {
    content: " *";
    color: #e32;
    position: absolute;
    margin: -50px -50px 0px 0px;
    font-size: xx-large;
    padding: 0 5px 0 0;
}

textarea {
    width: 100%;
    height: auto;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
}

input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

/*Styles for imprint*/

.imprint a {
    text-decoration: none;
    color: black;
}

.page-not-found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-not-found>div {
    max-width: max-content;
    margin-top: 1em;
}

/*Styles for press*/

#press-wrapper {
    padding-left: 15px;
}

.download-button,
.download-button a {
    width: 30px;
    height: 30px;
    text-align: center;
    text-decoration: none;
    color: black;
}
/* 
.download-button:hover,
.download-button a:hover,
.download-button-all {
    color: #04AA6D;
} */

th,
td {
    border-bottom: 1px solid #ddd;

}

#press-downloads>table>tr>td {
    display: block;
}

#press-all {
    padding-top: 15px;
}

#press-all>a {
    display: flex;
}

.download-button-all {
    width: 200px;
    height: 30px;
    text-align: center;
    text-decoration: none;
    color: black;
}

/* Styles for Repertoir */
#repertoir-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.genre {
    padding: 10px;
    text-align: center;
    background-color: var(--acent-color);
}

.genre ol {
    list-style: none;
}

.piece {
    display: flex;
    text-align: left;
}

.piece-title {
    padding-left: 15px;
}