/*Main Styles */
* {
    box-sizing: border-box;
}

a {
    transition: 300ms;
   text-decoration: none;
   color: blue;
}

a:hover {
    transition: 300ms;
    color: lightblue;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    min-height: 100%;
    height: 100%;
    margin:0;
    padding:0;
    display: flex;
    flex-direction: column;
}

/*General Styles*/
h1 {
    font-family: avenir, Helvetica, sans-serif;
    text-align: center;
    font-size: 3.1vw;
    font-weight: 900;
}

h2{
    font-family: avenir, Helvetica, sans-serif;
    text-align: center;
    font-size: 2.5vw;
    font-weight: 600;
}


h3 {
    font-family: Helvetica, sans-serif;
    text-align: center;
    font-size: 2vw;
    font-weight: 700;
}

h4 { /*News Title*/
    font-family: avenir, Helvetica, sans-serif;
    text-align: center;
    font-size: 2vw;
    font-weight: 500;
}

p {
    font-family: avenir, Helvetica, sans-serif;
    text-align: center;
    font-size: 2.1vw;
}

#checkForSiteManagement_DIV a {
    text-decoration: none;
    color: #031D44;
    opacity: 0.75;
    transition: 300ms;
    text-align: left;
}


#checkForSiteManagement_DIV a:hover {
    opacity: 1;
}

#welcomText {
    margin: 4vw;
}

details {
    display: inline;
    font-family: Helvetica, sans-serif;
    text-align: left;
    font-size: 1.5vw;
    padding: 5px 0 0 10px;
}

form {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 3%;
}

input {
    display: block;
    padding-top: 10px;
}

select {
    width: 100%;
    height: 
    padding: 16px 20px;
    border: none;
    border-radius: 4px;
    background-color: lightgrey;
    margin: 10px auto;
    font-size: 1.6vw;
    font-weight: 200;
}

#submit_DIV{
    padding-top: 10px;
}

input[type=button], input[type=submit], input[type=reset] {
    background-color: blue;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    margin: 0 auto;
    cursor: pointer;
    font-size: 2.1vw;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
    background-color: lightblue;
}

input[type=text], input[type=password], textarea, input[type=email], input[type=tel] {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 4px;
    background-color: lightgrey;
    margin: 10px auto;
    font-size: 1.6vw;
    font-weight: 200;
}

input[type=file] {
    width: auto;
    padding: 16px 20px;
    border: none;
    border-radius: 4px;
    background-color: lightblue;
    margin: 10px auto;
    font-size: 1.6vw;
    font-weight: 200;
}

#updateText_textarea {
    
}

/* Tip: use width: 100% for full-width buttons */

/*Div around the navbar*/
#navbar {
    padding-left: 5%;
    padding-right: 5%;
    height: auto;
    width: 100%;
    z-index: 1;
    background-color: white;
    border-bottom: 1px black solid;
}

/*Div around the navbar*/
#navbar {
    padding-left: 5%;
    padding-right: 5%;
    height: auto;
    width: 100%;
    z-index: 1;
    background-color: white;
    border-bottom: 1px black solid;
}

#navbar ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: baseline;
    list-style: none;
    width: auto;
}

#navbar ul li, i {
    font-weight: bold;
    font-size: 1.2vw;
    text-transform: uppercase;
    text-decoration: none;
    color: #031D44;
    padding-bottom: 3%;
    margin: 0 auto;
    display: inline-block;
}

#navbar ul a, i {
    transition: 300ms;
    text-decoration: none;
    color: #031D44;
    opacity: 0.75;

}

#navbar ul a:hover {
    opacity: 1;
}

#news_DIV {
    overflow: hidden;
    width: 100%; /* Full width */
    margin: 0 auto;
}

#news_DIV ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: 100%;
    margin: 0 auto;
}

#news_DIV ul li {
    font-weight: bold;
    font-size: 1.2vw;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    padding-bottom: 3%;
    margin: 0 auto;
    display: inline-block;
    width: 100%; /* Full width */
}

#news_DIV ul {
    transition: 300ms;
    text-decoration: none;
    color: black;
    opacity: 0.75;

}

#news_DIV ul a:hover {
    opacity: 1;
}

#news_DIV p {
    font-weight: 100;
    font-size: 1.6vw;
}

/*Dropdown*/

.dropbtn, i {
    font-weight: bold;
    font-size: 1.2vw;
    text-transform: uppercase;
    text-decoration: none;
    color: #031D44;
    padding-bottom: 3%;
    margin: 0 auto;
    display: inline-block;
}

.dropbtn i {
    margin: 10px;
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 4px 4px 4px 4px;
    z-index: 1;
    font-weight: bold;
    font-size: 1.2vw;
    text-transform: uppercase;
    text-decoration: none;
    color: #031D44;
    padding-bottom: 3%;
    margin: -5px auto;
    opacity: 0;
    width: auto;
}

.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
    z-index: 1;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 4px;

}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    z-index: 1;
}

.dropdown:hover .dropbtn {z-index: 1;}

/* content */
#content {
    width: 100%;
    background-color: #fff;
}

#main_content {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 22vh;
    flex: 1 0 auto;
}



/* Flex Container*/
 
#flexContainer_row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    align-items: baseline;
    width: 100%;
    margin: 0 auto;
    align-items: center;

}

.flex-column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    align-items: baseline;
    width: 100%;
    margin: 0 auto;
}

/*HOME */
.homeIMG_DIV {
    padding: 10px;
    display: block;
    margin: 0 auto;
}

.imgs_index {
    width: 120%;
    height: auto;
    padding: 10px;
}

#flexContainer_row a {
    text-decoration: none;
    color: #000;
    margin: 0 auto;

}

#flexContainer_row a:hover {
    color: grey;
}


#main_Sponsores {
    background-color: #f1f1f1;
    text-align: center;
    clear: both;
    height: 22vh;
    flex-shrink: 0;
}

@media only screen and (max-width: 1024px) {
    #main_Sponsores {
        display: none;
    }
}

@media only screen and (min-width: 1024px) {
    #main_Sponsores_Link {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {
    #main_Sponsores_Link {
        display: block;
    }
}

/*NEWS*/
#flex_news {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    align-items: baseline;
    margin: 0 auto;
    padding-bottom: 20px;
}

#news {
    width: 80%;
    height: auto;
    margin: 0 auto;
}

#news p,h2,h3 {
    display: block;
    text-align: left;
    padding: 5px 10px 5px 10px;
}

.news_Textbox {
    width: 100%
    height: auto;
}

/*Team Photos*/

#teamPhoto {
    display: block;
    width: 90%;
    height: auto;
    margin: 2% auto;
    
}

#textTeamIMG {
    margin: 0 auto;
    width: 90%;
    text-align: center;
}

#textTeamIMG a {
    margin: 0 auto;
    width: 90%;
    text-align: center;
}

#backButton {
    width: 20%;
    height: 10%;
    padding-bottom: 20px;
    background-color: white;
    margin: 0 auto;
    
}



#backButton a p {
    display: block;
    font-weight: 900;
    font-size: 2.4vw;
    text-align: center;
    margin: auto 0;
    opacity: 0.75;
    transition: 300ms;
}

#backButton a {
    text-decoration: none;
    color: black;
}

#backButton a p:hover {
    opacity: 1;
}

/* Practice Plan */
#practicePlan {
    padding: 10px;
}

/*Account Settings*/


.account_settingsGroup a {
    text-decoration: none;
    color: black;
    opacity: 0.75;
    transition: 300ms;

}

.account_settingsGroup a:hover {
    opacity: 1;
}

.text-aligneCenter {
    text-align: center;
}

.account_settingsGroup i {
    padding-left: 2%;
    margin-top: 3%;
    font-size: 2.1vw;
    
}

.account_settingsGroup p,i {
    display: inline;
    padding-top: 0;
    margin: 0;
}

.account_settingsGroup details summary::-webkit-details-marker {
    display: none;
}

.account_settingsGroup details summary {
    /*background-image: url("../img/settings.svg");*/
    background-repeat: no-repeat;
    content: " ";
    
}

/*Change Team Pics*/

#oldTeamPic {
    width: 100%;
    height: auto;
    padding: 2% 0 2% 0 ;
}

.objects_UpdateTeamPic {
    margin: 0 auto;
    width: 50%;
    height: auto;
}

#selectFile_UpatePic {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: auto;
}


#selectFile_UpatePic input {
    display: block;
    margin: 0 auto;
    font-family: avenir, Helvetica, sans-serif;
    text-align: center;
    font-size: 2.1vw;
}

.manageSponsoresImg_DIV img{
    opacity: 1;
}

.iTextAligneCenter  {
    text-align: center;
}

.logo_allSponsores {
    width: 15%;
    height: auto;
    margin: 0.5vh;
    opacity: 1;
}

.logo_mainSponsores {
    height: 40%;
    width: 10%;
    margin: 0.5vh;
    opacity: 1;
}

.logo_secundarySponsores {
    height: 20%;
    width: auto;
    margin: 0.5vh;
    opacity: 0.7;
}

.logo_mainSponsores_smart {
    height: auto;
    width: 40%;
    margin: 0.5vh;
    opacity: 1;
    display: block;
    margin: 0 auto;
    padding: 4vw;
}

.logo_secundarySponsores_smart {
    height: auto;
    width: 20%;
    margin: 0.5vh;
    opacity: 0.7;
    display: block;
    margin: 0 auto;
    padding: 2vw;

}

#ImpressumInfos {
    display: inline-block;
    font-size: 1.6vh;
    padding: 0;
    color: #000;
    text-align: left;
}

.iframeMAP {
    display: block;
    margin: 0 auto;
    padding-bottom: 2%;
    padding-top: 2%;
}

#ImpressumInfos a {
    text-decoration: underline;
    color: black;
}

.warning {
    display: block;
    width: 100%;
    height: auto;
    background-color: red;
    color: white;
    font-size: 1.6vw;
    font-family: "Avenir", Helvetica;
    padding: 10px;
    border-radius: 25px;
    margin: 1.6vw auto;
}

#news_DIV ul {
    opacity: 1;
}

.newsPic {
    display: block;
    opacity: 1;
    margin: 0 auto;
    width: 28vw;
    height: auto;
    border-radius: 25px;
}
