:root{
	--primary-color:        rgb(223, 37, 24);
    --white-color:          #ffffff;
    --dark-color:           #3c3c3b;
	--grey-color:      		#99a3a5;
}


.nature_form{
	border: 1px solid var(--primary-color);	
}

.nature_btn{
	background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--dark-color);
    border-radius: 5px;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    font-size: 15px;
    font-weight: 600;
}



.nav-link.active{
	color: var(--primary-color);
	border-bottom: 4px solid #000;
}

. {
		z-index: 1030;
	    position: relative;
	    padding: 15px 0;
	    position: fixed;
	    top: 0;
	    width: 100%;
	    left: 0;
	    padding-left: 240px;
	    background: #df2518;	
}

.nature_headline{
	color: var(--primary-color);
	font-weight: 800;
	text-decoration: underline 3px solid var(--dark-color);
	
}

.nature_checkbox{
	font-family: system-ui, sans-serif;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.1;
	display: grid;
	grid-template-columns: 1em auto;
	gap: 0.5em;
}

.nature_form-control {
    height: auto;
    min-height: 35px;
    border: 1px solid #a49f9f;
    padding: 0 10px;
    background-color: #fff;
    font-size: 13px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    display: block;
    width: 100%;
    line-height: 1.5;
    color: #495057;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.ueberschrift_input{
	font-weight: 600; 
	font-size: 18px;
}


.nature_scrollbar {
  --scrollbar-foreground: #999
  --scrollbar-background: #333
  /* Foreground, Background */
  scrollbar-color: var(--scrollbar-foreground) var(--scrollbar-background);
}
.nature_scrollbar::-webkit-scrollbar {
  width: 10px; /* Mostly for vertical scrollbars */
  height: 10px; /* Mostly for horizontal scrollbars */
}
.nature_scrollbar::-webkit-scrollbar-thumb { /* Foreground */
  background: var(--scrollbar-foreground);
}
.nature_scrollbar::-webkit-scrollbar-track { /* Background */
  background: var(--scrollbar-background);
}


.noshow{
      display: none;
}

 
   
 .errorreport_layer {
      width: 100vw;
      height: 100vh;
      background-color: #f7b0b0de;
      position: fixed;
      top: 0;
      z-index: 299;
  }
  
  .errorreport {
      width: 50%;
      min-width: 350px;
      height: 70vh;
      background-color: #e4e3e3;
      margin: auto;
      padding: 2%;
      position: fixed;
      top: 10%;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 300;
      overflow: auto;
  }