.on_off_button{
	border: 1px solid var(--color_akzent);
	padding: 5px;
	width: 30px;
	text-align: center;
	float: left; 
}

.on_off_button_active{
	color: var(--color_akzent);
	border-color: var(--color_akzent);
}

.on_off_button_inactive{
	color: grey;
	border-color: grey;
}

.on_off_buttons{
	width: 100px;
	position: absolute;
	top: 30px;
	left: 30px;
}

.button{
	border: 1px solid var(--color_akzent);
	padding: 5px;
	margin-top: 5px;
	text-align: center;
	float: left;
	background-color: transparent;
	color: var(--color_akzent);
	font-family: 'Montserrat', sans-serif; 
}

.button:hover{
	border: 1px solid var(--color_font);
	color: var(--color_font);
}

/* Customize the label (the container) */
.checkbox_label {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-top: 4px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 125px;
}

/* Hide the browser's default checkbox */
.checkbox_label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: var(--color_background);
}

/* On mouse-over, add a grey background color */
.checkbox_label:hover input ~ .checkmark {
  background-color: var(--color_font);
}

/* When the checkbox is checked, add a blue background */
.checkbox_label input:checked ~ .checkmark {
  background-color: var(--color_akzent);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox_label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox_label .checkmark:after {
  left: 4px;
  top: 0px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.textinput{
	background-color: var(--color_kachel);
    color: var(--color_font);
	border: 0px black solid; 
	border-bottom: 1px var(--color_font) solid; 
	margin-bottom:3px;
}

.textinput:focus{
	outline: none;
}

.textinput::placeholder{
	color: var(--color_font);
}

/* The slider itself */
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 10px; /* Specified height */
    background: var(--color_font); /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */ 
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 10px; /* Set a specific slider handle width */
    height: 10px; /* Slider handle height */
    background: var(--color_akzent); /* Green background */
    cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
    width: 10px; /* Set a specific slider handle width */
    height: 10px; /* Slider handle height */
    background: var(--color_akzent); /* Green background */
    cursor: pointer; /* Cursor on hover */
}

.docu_icon{
	position: relative;
	top: 8px;
}

.select{
	border-color: var(--color_background);
	color: var(--color_font);
	background-color: var(--color_background);
	outline: none;
	height: 22px;
}