@font-face{
    font-family: 'Overpass';
    src: url('/fonts/Overpass-Regular.ttf') format('truetype');
}
@font-face{
    font-family: 'Overpass Light';
    src: url('/fonts/Overpass-Light.ttf') format('truetype');
}
@font-face{
    font-family: 'Overpass Black';
    src: url('/fonts/Overpass-Black.ttf') format('truetype');
}
body{
    width:100%;
    height:100%;
    background-color:#DCDCDC;
    font-family: 'Overpass';
}
select, option {
    font: -moz-pull-down-menu;
}
select option {
    font-weight:bold;
}
.font-op{
    font-family: 'Overpass';
}
.font-op-light{
    font-family: 'Overpass Light';
}
.font-op-black{
    font-family: 'Overpass Black';
}
.center-text{
    text-align: center;
}
.justify-text{
    text-align:justify;
}
.margin-0{margin: 0 !important;}
.margin-top-bottom-10{margin:10px 0 !important;}
.color-orange{color: #F49E00;}

.form__group{
  position: relative;
  margin: 1.4em 0;
}
.form__input{
    font-family:Overpass Light;
    font-size:14px;
    line-height:22px;
    letter-spacing:3px;
    height:57px;
    border-radius:8px;
    border: 1px solid #d2d8d8;
    appearance: none;
    padding: 12px 20px 12px 50px;
    width: 100%;
}
.form__link{
    font-family:Overpass Black;
    color:black;
    font-size:14px;
    line-height:20px;
}
/* Header inkl. Burger-Menü */
.main-header *, .main-header *::after, .main-header *::before {
    box-sizing: border-box;
}
.main-header{
    background-color:white;
    position: fixed;
    top:0;
    width:100%;
    min-width:266px;
    height:58px;
    z-index:100;
    box-shadow:0px 3px 5px 0px rgb(107 107 107 / 20%);
}
.main-header::after{
    /* clearfix */
    content:'';
    display:table;
    clear:both;
}
.main-header_container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: baseline;
}
.main-header_container img{
    /* display:block; */
    height:50px;
}
.main-nav{
    /* float:right; */
    /* margin: 11px 2% 0 0; */
    /* height:100%; */
}
.main-nav__list{
    position:absolute;
    transform:scale(0);
}
.main-nav__button{
    display: flex;
    background-color:#343534;
    border-radius:50%;
    width:57px;
    height:57px;
}
.main-nav__button:hover,.main-nav__button--active{
    background-color:#F49E00;
}
.main-nav__burger-menu,.main-nav__burger-bar{display:block;}
.main-header ul.main-nav__burger-menu{
	margin:0;
  	padding:0;
  	list-style:none;
  	overflow:hidden;
  	background-color:#343534;
}
.main-header ul.main-nav__burger-menu li a {
  	display:block;
  	padding:17px 0px 15px 2%;
  	text-decoration:none;
  	color: white;
  	width:100%;
  	border-bottom:1px solid #F5F5F5;
}
.main-header ul.main-nav__burger-menu li a > div{
  	width:30px;
  	display:inline-block;
}
.main-header ul.main-nav__burger-menu li a:hover{
  	background-color:#F2C13A;
  	color:white;
}
.main-header ul.main-nav__burger-menu{
  	clear:both;
  	max-height: 0;
  	transition: max-height .2s ease-out;
  	width:100%;
}
.main-header .menu-icon{
  	cursor:pointer;
  	display:inline-block;
  	float:right;
  	padding:25px 3% 0 0;
  	position:relative;
  	user-select:none;
}
.main-header .menu-icon .navicon {
  	background:#333;
  	display:block;
  	position:relative;
  	transition:background .2s ease-out;
  	border-radius:5px;
  	width:27px;
  	height:4px;
    position: relative;
    bottom: 19px;
}
.main-header .menu-icon .navicon:before,.main-header .menu-icon .navicon:after{
  	background:#333;
  	content:'';
  	display:block;
  	height:100%;
  	position:absolute;
  	transition:all .2s ease-out;
  	width:100%;
}
.main-header .menu-icon .navicon:before{top:9px;}
.main-header .menu-icon .navicon:after{top:-9px;}
.main-header .menu-btn{display:none;}
.main-header .menu-btn:checked ~ .main-nav__burger-menu{max-height:310px;}
.main-header .menu-btn:checked ~ .menu-icon .navicon{background:transparent;}
.main-header .menu-btn:checked ~ .menu-icon .navicon:before{transform:rotate(-45deg);}
.main-header .menu-btn:checked ~ .menu-icon .navicon:after{transform:rotate(45deg);}
.main-header .menu-btn:checked ~ .menu-icon .navicon:before,
.main-header .menu-btn:checked ~ .menu-icon .navicon:after{top:0;}
/* Menü-Icons */
#icon-start{
    background-image: url(/img/icon-start.svg);
    background-repeat: no-repeat;
}
#icon-support{
    background-image: url(/img/icon-support.svg);
    background-repeat: no-repeat;
}
#icon-wol{
    background-image: url(/img/icon-wol.svg);
    background-repeat: no-repeat;
}
#icon-daten-bearbeiten{
    background-image: url(/img/icon-daten-bearbeiten.svg);
    background-repeat: no-repeat;
}
#icon-administration{
    background-image: url(/img/icon-administration.svg);
    background-repeat: no-repeat;
}
#icon-logout{
    background-image: url(/img/icon-logout.svg);
    background-repeat: no-repeat;
}
.icon-menu{
    background-position: center;
}
.icon-burger{
    background-position: 10px center;
    background-size: 20px;
}
/* Anwendungs-Icons */
section#content *, section#content *::after, section#content *::before {
    box-sizing: border-box;
}
.section__wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding-top: 150px;
}
.section__app{
    width:220px;
    height:220px;
    border-radius: 50%;
    background-color:white;
    color:#343534;
    margin:5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.section__app-text{
    font-size:16px;
    line-height:20px;    
    text-align:center;
    padding-top:100px;
    max-width: 180px;
}
/* Persönliche Daten bearbeiten */
.btn{
    font-family:Overpass Black;
    font-size:14px;
    letter-spacing:3px;
    text-align: center;
    cursor: pointer;
    display: block;
}
.btn-neues-kennwort{
    line-height:57px;
    color: white;
    width: 320px;
    height: 57px;
    background-color:#343534;
    border-radius:8px;
    border: none;    
}
.btn-bearbeiten,.btn-abbrechen{
    line-height:22px;
    color: white;
    width: 140px;
    height: 31px;
    background-color:#343534;
    border-radius:6px;    
    border: none;
}
.btn-abbrechen{
    float: right;
}
.btn-speichern{
    line-height:22px;
    color: white;
    width: 140px;
    height: 31px;
    background-color:#F49E00;
    border-radius:6px;    
    border: none;
}
.btn-pw-vergessen{
    line-height:31px;
    color: #343534;
    width: 235px;
    height: 31px;
    background-color:#fff;
    border-radius:6px;
}
.text-btn-zurueck{
    font-family: 'Overpass Black';
    font-size: 14px;
    line-height:22px;
    color:#343534;
    padding-top:5px;
    letter-spacing:3.11px;
}
.text-bold-bearbeiten{
    font-family: 'Overpass Black';
    font-size: 14px;
    line-height:22px;
    color:#343534;
}
.form--daten-bearbeiten__input{
    font-family: 'Overpass Black';
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 3px;
    color: #343534;
    width: 320px;
    height: 57px;
    border-radius:8px;
    border: 1px solid #d2d8d8;
    padding: 16px 20px 16px 20px;
}
.form--daten-bearbeiten__narrow{
    width: 158px;
}
.small_space_left{
    margin-left: 4px;
}
.input_changed{
    border: 1px solid red;
}
.form--daten-bearbeiten__submit{
    font-family:Overpass Black;
    font-size:20px;
    line-height:60px;
    letter-spacing:4.04px;
    background-color:#F49E00;
    color: #FFF;
    border-radius:8px;
    width: 320px;
    height: 57px;
    cursor: pointer;
    border: none;
}
.form--daten-bearbeiten__headline{
    letter-spacing: 3.11px;
}
#icon-zurueck{
    background-image: url(/img/icon-zurueck.svg);
    background-repeat: no-repeat;
    margin-right: 12px; 
}
.input-login-bearbeiten{
    font-family: 'Overpass';
    width:100px;
    height:31px;
    border: 1px solid #d2d8d8;
    border-radius:6px;
    padding-left:10px;
}
/* Neuen Benutzer anlegen */
.div__headline--user-anwendung{
    font-size: 18px;
    letter-spacing: 3.11px;
    padding:20px 4px;
    display: none;
}
.bg-color-green{
    background-color: #7fd13b;
}
.bg-color-darkgreen{
    background-color: #3e6c19;
}
.bg-color-red{
    background-color: #a3171e;
}
.bg-color-white{
    background-color: white;
}
.color-darkgreen{
    color: #3e6c19;
}
.color-red{
    color: #a3171e;
}
.anwendung--selected{
    float:left;
    max-width:280px;
    min-width: 280px;
    margin-top:5px;
}
.div__user-anwendung--info{
    border: 1px solid #343534;
    padding:8px;
    margin: 0 5px 5px 5px;
    border-radius:6px;
}
/* Selectbox arrow */
label.selectbox-wrap {
    position: relative;
    display: block;
    width: 320px;
}
.selectbox-wrap select.dropdown{
    appearance: none;
}
label.selectbox-wrap:after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-size: 25px; 
    font-weight: 900;
    color: #F49E00;
    position: absolute; 
    right: 17px; 
    top: 17px;
    pointer-events: none;    
}
.fas{
    cursor: pointer;
}
@media only screen and (min-width:620px) {
    .main-header{
        height:80px;
    }
    .main-header_container {
        margin:9px 1% 0 1%;
    }
    .main-nav{
        width:auto;
        height:auto;
        background:none;
        cursor:auto;
    }
    .main-nav__list{
        position:static;
        width:auto;
        transform:translateY(0);
        line-height:80px;
    }
    .main-nav__list li{display:inline-block;}
    .main-nav__burger-menu,.main-nav__burger-bar{display:none;}
 	.main-header .menu-icon{display:none;}
}

@media (max-width: 1300px) {
  .kuechendienst-info {
    display: none;
  }
}