/*01_basics.css*/

/*Bezugsgröße für alle Schriftgrößen (rem)*/
html {
  font-size: 16px;
  hyphens: auto;

}

@media (min-width: 768px) and (max-width: 1199px){
	html{
		font-size:19px;
	}
}

/*Entwicklungsoption*/
* {outline: 0px solid red}

@media (min-width: 768px) and (max-width: 1199px){
	* {outline: 0px solid red}
}

/*Ausblenden von span*/
.vp_handy, .vp_desktop, .vp_tablet {
    display: none;
}

@media (min-width: 1200px){
    .vp_desktop {
		display: inline;
	}
}

@media (min-width: 769px) and (max-width: 1199px){
    .vp_tablet {
		display: inline;
	}
}

@media (max-width: 768px) {
    .vp_handy {
		display: inline;
	}
}

/*Definition von Viewports für JS*/
:root {
    --viewport: desktop;
}

@media (max-width: 1199px) {
    :root {
        --viewport: tablet;
    }
}

@media (max-width: 768px) {
    :root {
        --viewport: mobile;
    }
}

body {
  background-color: var(--01_body_bgColor);/*Body bekommt wg. der Ecken einen Hintergrund*/
  color:var(--01_basics_font_color);  
  font-family:var(--01_basics_font_family); 
  height: auto;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

@media (min-width: 769px) and (max-width: 1199px) {

	body {
		background-color:var(--06_layout_main_bg_color);
	}
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 2.2rem; }
h2 { 
	font-size: 15px;
	white-space: nowrap; 
}
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

div#viewport_div {
    display: block;
}

a:hover
{
  color:var(--01_basics_font_color_kontrast);
}

dl,dd{
	margin-left:0;
}

img{
	border-radius:8px;
	border:1px solid #bbb;	
}
	
input {
  padding-left: 7px;
}

button {
	background-color: #ddd;
	transition: background-color 0.2s ease;
	padding: 7px 20px;
	font-size:1.1rem;
	border:2px solid var(--04_header_banner_bgColor);
	border-radius:7px;
	color:var(--00_root_color_font);
}

button:hover{
	cursor:pointer;
	background-color: #bbb;
	
}

.error_email_link{
	color:var(--01_basics_font_color_kontrast);	
	font-style:italic;
	font-weight:bold;
}

/*Ermöglicht display=none als classList.add hinzuzufügen => dadurch wird ursprünglicher Zustand von display nicht gelöscht!!!*/
.hidden {
	display: none;
}

.readonly_cls{
    background-color: #f5f5f5;
    color: #555;
    border: 1px solid #ccc;
    cursor: default;
}

.readonly_cls:focus {
    outline: none;
}

textarea {
  padding-left: 7px;
  padding-right: 7px;
  padding-top: 4px;
}
