#loginmenu { display: none; }

html * {
    font-family: "Circular", "Helvetica Neue", Arial, Helvetica, sans-serif;
    color: rgba(23, 17, 36, 0.8);
  }
  
  body {
    background-color: #EEE8E5;
  }
  
  #mainbody{
    /*Size & Center*/
    background-color: white;
    height: 85vh;
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vh;
    border-style: groove;
    
    position: relative;
  }

  #background{
    position: absolute;
    width: 100%;
    height: 100%;
  }

  #map{
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
  }


  #overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;

    /*Flex Container*/
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  #mainbody_news{
    /*Flex Item*/
    order: 1;
    flex-grow: 1;
  }
  
  
  #mainbody_sidemenu{
    padding-bottom: 20px;
    
    /*Flex Item*/
    order: 2;

    /*Flex Container*/
    display: flex;
    flex-direction: column;
    width: 15rem;
    height: 100%;
  }


.menu{
    display: none;
    width: 100%;
    padding-bottom: 10px;
    pointer-events: all;
}


.menu.collapsed{
    padding-bottom: 0px;
}

div.collapsed > span {
    background-color: rgb(141, 138, 138);
    color: white;
    border-bottom-left-radius: 0px;
}

div.collapsed > div {
    display: none;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.menubutton{
    display: inline-block;
    background-color: rgb(118, 170, 136);
    color: rgb(29, 29, 29);
    width: 100%;
    padding-top: 7px;
    padding-bottom: 7px;
    text-align: left;
    padding-left: 20px;
    box-sizing: border-box;
    border-bottom-left-radius: 10px;
}


.menubody{
    width: 85%;
    margin-left: auto;
    background-color: rgb(238, 236, 236);
    padding: 10px;
    border-bottom-left-radius: 15px;
}

span.rememberme{
    display: block;
    margin-top:10px;
    font-size: 10px;
}

input.submit_button{
    display: block;
    margin-top: 10px;
    width: 100%;
    height: 30px;
}

.login_options{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.lightbutton {
    flex-grow: 1;
    margin: 10px;
    border: none;
    background-color: inherit;
    font-size: 10px;
    cursor: pointer;
    display: inline-block;
}

.lightbutton:hover {
    border-width: 2.5px;
    color: rgb(0, 140, 196);
    text-decoration:underline;
}

.lightbutton_framed {
  flex-grow: 1;
  margin: 10px;
  border: none;
  background-color: inherit;
  font-size: 10px;
  cursor: pointer;
  display: inline-block;
  background-color: rgb(233,233,237);
  font-weight: 700;
  font-size: 12px;

  border-color: #353535;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}

#register_form{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.form_text{
    font-size: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* Menu List */

.menubody_list {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.list_option {
  height: 25px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  column-gap: 10px;
  padding: 5px;
  border-radius: 5px;
}

.list_option:hover {
  background-color: rgb(217, 219, 221);
  cursor: pointer;
}

.list_option > svg {
  max-height: 80%;
  pointer-events: none;
}

.list_option > span {
  flex-grow: 1;
  pointer-events: none;
}


/* INPUT TEMPLATE */

.input_template {
  margin-bottom: 10px;
}

.input_template_input{
    position: relative;
    width: 100%;
}

.input_template_input > input{
    width: 100%;
    height: 32px;
    padding-left: 10px;
    box-sizing: border-box;
    font-size: 13px;
}

.input_template_input > span{
    position: absolute;
    left: 10px;
    top: 10px;
    transition: 0.2s ease all;
    font-size: 12px;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input_template_input > img{
    position: absolute;
    right: 10px;
    top: 5px;
    height: 20px;
    display: none;
}


.input_template_input > input:focus, .input_template_input > input:not(:placeholder-shown){
    padding-top: 12px;
}

.input_template_input > input:focus ~ span, .input_template_input > input:not(:placeholder-shown) ~ span{
  top: 3px;
  font-size: 10px;
  opacity: 1;
}

.input_template_input > input:focus ~ span, .input_template_input > input:not(:placeholder-shown) ~ img{
    display: block;
}

.input_template_errormsg{
    display: block;
    width: 100%;
    margin-top: 4px;
    padding-bottom: 4px;

    font-size: 12px;
    font-weight: 600;
    color: rgb(241, 48, 48);
    padding-left: 15px;
    display: none;
}

.input_template_dropdown {
  position: relative;
  width: 100%;
}

.input_template_dropdown > select {
  font-size: 13px;
  height: 32px;
  width: 100%;
  padding-top: 12px;
  padding-left: 10px;
}

.input_template_dropdown > span {
  position: absolute;
  font-size: 11px;
  margin-left: 5px;
}

.input_template_datetime {
  position: relative;
  width: 100%;
}

.input_template_datetime > input {
  font-size: 10px;
  height: 32px;
  width: 100%;
  padding-top: 12px;
  box-sizing: border-box;
}

.input_template_datetime > span {
  position: absolute;
  font-size: 11px;
  margin-left: 5px;
}