@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@200&display=swap');

* {
    font-family: var(--default-font-family);
    box-sizing: border-box;
}
:root{
    --default-font-family:  'Heebo', sans-serif;
    --default-background-color: #BEDAD9;
    --default-text-color1: #D4E7E6;
    --default-text-color2: #293131;
    --default-highlight-color:#5f8482;
    --default-hover-color:#435151;

    /* Margins */
    --default-margin-top: 20px;
    --default-margin-bottom: 20px;
    --default-padding: 20px;
}
.area-container{
    max-width: 600px; /* Limit the width for larger screens */
    margin: 0 10; /* Center align the container */
    padding: 20px;
    background-color: var(--default-background-color); /* White background for contrast */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
.area-list {
    list-style-type: none; /* Remove default list bullets */
}

.adress-container {
    max-width: 600px; /* Limit the width for larger screens */
    margin: 0 10; /* Center align the container */
    padding: 20px;
    background-color: var(--default-background-color); /* White background for contrast */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
.adress-list {
    list-style-type: none; /* Remove default list bullets */
}


/* Größerer Spinner */
.loader {
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-left-color: #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Dreh-Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Style the main container */
.difficulty-container {
    max-width: 600px; /* Limit the width for larger screens */
    margin: 10; /* Center align the container */
    padding: 20px;
    background-color: var(--default-background-color); /* White background for contrast */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
/* Style the difficulty list */
.difficulty-list {
    list-style-type: none; /* Remove default list bullets */
}

/* Style each difficulty item */
.difficulty-item {
    background-color: var(--default-highlight-color); /* Bootstrap primary color */
    color: var(--default-text-color1); /* White text */
    padding: 15px; /* Padding around text */
    margin: 10px 0; /* Space between items */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition for hover */
}

/* Change background color on hover */
.difficulty-item:hover {
    background-color: var(--default-hover-color); /* Darker shade on hover */
}

.horizontal_buttons{
        display: flex;
        justify-content: space-between;
        /* Abstand zwischen den Elementen */
        align-items: center;
        width: 100%;
        gap: 10px;
        /* Nimmt die gesamte Breite ein */
}
.horizontal_buttons>* {
    flex-grow: 1;
    /* Elemente teilen sich die Breite */
    
    /* Optional: Abstand zwischen den Elementen */
}

#flex-container_infokasten {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: row-wrap;
    justify-content: center;
  
 }

#infokasten {
    display: -webkit-flex; 
    display: -ms-flexbox; 
    display: flex;
    flex-direction: column;
  
    width: 23%;
    min-width: 250px;
    padding: 30px;
    margin: 20px;
    border: 0px solid white;
    background:  var(--default-background-color);
    box-sizing: border-box;
    transition: background-color 0.3s;
    text-align: justify;
  }

h1{
    text-align: center;
    color: var(--default-text-color2);
    padding-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    
}

div.kreis
{
	background-color:yellow; 
	width: 45px; 	
	height: 45px;	
	border-radius: 50%;  
	text-align: center;   
	border: 0px solid rgba(0,0,0,0.4);  
}
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
    width: -webkit-fill-available;
}

body {
    background-color: var(--default-text-color1);
    margin: auto;
    padding-bottom: 50px;
    padding-top: 50px;
}

#Chart_Full {
    margin: 15%;
    background-color: var(--default-background-color);
  }

.login_input {
    border-radius: 5px;
    border: 1px;
    width: 100%;
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    text-decoration: none;
    min-height: 50px;
}

.filter_input {
    border-radius: 5px;
    border: 1px;
    width: auto;
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    text-decoration: none;
    min-height: 50px;
    margin: 20px;
}

.avatar {
    height: 300px;
    width: 300px;
}

input {
    width: 100%;
    border: none;
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    text-decoration: none;
    min-height: 50px;
    padding: 10px;
}

select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin: 5px 0;
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    text-decoration: none;
}

.boulderjournal_logo {
    width: 30%;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

p {

    color: var(--default-text-color2);
}

ul {
    padding: 0;
    margin: 0;
}

.register_button {
    background-color: var(--default-highlight-color);
    opacity: 0.5;
}


.AddBoulderSummary{
    background-color: var(--default-background-color);
    border-radius: 5px;
    border: 1px;
    color: var(--default-text-color1);
    height: 40px;
    text-align:center;
    
    vertical-align: middle;
}
button {

    background-color: var(--default-highlight-color);
    border-radius: 5px;
    border: 1px;
    color: var(--default-text-color1);
    height: 40px;
    margin-top: var(--default-margin-top);
    margin-bottom: var(--default-margin-bottom);
    padding-left: 20px;
    padding-right: 20px;

}



button:hover {
    background-color: var(--default-hover-color);
    color: var(--default-text-color1);
}


.hidden {
    display: none;
}


.login {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    vertical-align: auto;
    justify-content: center;
    align-items: center;
}

#flex-container1 {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 5%;
    margin-bottom: 5%;
    text-decoration: none;
    
}

#flex-box {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 5%;
    margin-bottom: 5%;
    text-decoration: none;
    
}

.comment_send_button{
    margin-top: 0px;
}

.selected_boulder_comment_section {

    flex-direction: row;
    justify-content: center;
    margin-top: 5%;
    margin-bottom: 5%;
}

.selected_boulder_comment {
    flex-direction: row;
    justify-content: center;
    margin-left: 20%;
    text-align: right;
    background-color: white;
    padding: 20px;
    border-radius: 30px;
}

.selected_boulder_comment_others {
    flex-direction: row;
    justify-content: center;
    margin-right: 20%;
    background-color: white;
    padding: 20px;
    border-radius: 30px;
}

.selected_boulder_comment_image {
    width: 50px;
    height: 50px;
}

.selected_boulder_comment_input{
    width: 100%;
    border: none;
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    text-decoration: none;
    min-height: 50px;
    padding: 10px;
    border-radius: 5px;
    margin-top: var(--default-margin-top);
    margin-bottom: var(--default-margin-bottom);
}

#outerChartDiv {
    display: flex;
    justify-content: center;
}

#chart {
    width: 80%;
}

.box2 {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: 0px solid;
    /*background-color: #4d6665;*/
    box-sizing: border-box;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 15px;
    min-width: 30%;
    color: var(--default-text-color2);
}

.selected_boulder-box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 30%;
    border: 0px solid;
    box-sizing: border-box;
    justify-content: left;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 15px;
    min-width: 30%;
    color: var(--default-text-color2);
}


/*#region Feed/Home*/
.feed_image {
    float: left;
    text-align: start;
    width: 40%;
    min-width: 40%;
    border: 2px solid var(--default-text-color2);
    border-width: 0px;
    object-fit: contain;
    image-orientation: from-image;
    object-position: top left;
    border-radius: 5px;

}

.feed_row::after {
    content: "";
    clear: both;
    display: table;
}

.boulder_link {
    text-decoration: none;
    color: var(--default-text-color1)
}

.link {
    text-decoration: none;
 
}

/*#endregion Feed/Home*/



/*#region Header*/
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@200&display=swap');

h2 {
    vertical-align: center;
    text-align: center;
}

.menu_item {

    color: var(--default-text-color1);
    text-decoration: none;

}

.profile {
    text-align: center;
}

.profile_image {
    float: left;
    text-align: start;
    width: 40%;
    min-width: 40%;
    border: 2px solid var(--default-text-color2);
    border-width: 0px;
    object-fit: contain;
    image-orientation: from-image;
    object-position: top left;
}

.dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn { 
    border: none;
    outline: none;
    color: var(--default-text-color1);
    height: 100%;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: var(--default-background-color);
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--default-background-color);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }




.top-nav {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #00BAF0;
    background: linear-gradient(to left, var(--default-text-color2), var(--default-highlight-color));
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: var(--default-text-color1);
    padding: 1em;
    width: 100%;
    height: 50px;
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu>li {
    margin: 0 1rem;
    overflow: hidden;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
    background: var(--default-text-color2);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

/*#region Gym */
.Gym_Profile_Logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    max-width: 300px;
    max-height: 300px;
}

.Gym_Profile {  
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  

/*#endregion Gym */

@media (max-width: 700px) {

    .Gym_Profile {  
        
    margin-left: auto;
    margin-right: auto;
    width: 80%;
      }


    #flex-container_infokasten {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: row-wrap;
        justify-content: center;
      
     }
    
    #infokasten {
        display: -webkit-flex; 
        display: -ms-flexbox; 
        display: flex;
        flex-direction: column;
        width: 23%;
        min-width: 350px;
        padding: 30px;
        margin: 5px;
        border: 0px solid white;
        background:  var(--default-background-color);
        box-sizing: border-box;
        transition: background-color 0.3s;
        text-align: justify;
      }

      #Chart_Full {
        margin: 2%;
        
      }


    #flex-container1 {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 10%;
    }

    .selected_boulder_comment_section {
        flex-direction: row;
        justify-content: center;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .selected_boulder_comment_image {
        width: 50px;
        height: 50px;
    }


    .menu-button-container {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 0;
        margin-top: 50px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    #menu-toggle~.menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~.menu li {
        border: 1px solid var(--default-text-color2);
        height: 2.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu>li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: var(--default-text-color1);
        background-color: var(--default-text-color2);
    }

    ul {
        padding: 0;
        margin: 0;
    }

    .menu>li:not(:last-child) {
        border-bottom: 1px solid var(--default-text-color2);
    }

    .box2 {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        border: 0px solid;
        /*background-color: #4d6665;*/
        box-sizing: border-box;
        justify-content: center;
        width: auto;
        padding: 15px;
    }

    .selected_boulder-box {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        border: 0px solid;
        /*background-color: #4d6665;*/
        box-sizing: border-box;
        justify-content: left;
        width: auto;
        padding: 0;
    }

    .feed_image {
        float: left;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .profile_image {
        float: left;
        text-align: start;
        width: 40%;
        min-width: 40%;
        border: 2px solid var(--default-text-color2);
        border-width: 0px;
        object-fit: contain;
        image-orientation: from-image;
        object-position: top left;
    }

}

/*#endregion Header*/

/*#region Footer*/
.footer_menu {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    align-items: right;
    justify-content: space-between;
    background-color: #00BAF0;
    background: linear-gradient(to left, var(--default-text-color2), var(--default-highlight-color));
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: var(--default-text-color1);
    height: 50px;
}

.menu_footer {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 1em;
}

.menu_footer>li {
    overflow: hidden;
}

/*#endregion Footer*/