@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
h1 {
  font-size:22px;
}
ol, ul {
/*	list-style: none; */
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

b, strong {
    font-weight: bold;
}



/* box-sizing reset from https://css-tricks.com */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}


/* HR-aktiv Styles */
html, body {
    height: 100%;
}

body {
    min-height: 100%;
    font-family: Verdana, Arial, sans-serif;
    line-height: 24px;
}

body.has-active-menu {
  overflow: hidden;
}

.o-wrapper {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.o-wrapper.has-push-left {
    -webkit-transform: translateX(250px);
            transform: translateX(250px);
}

.c-mask {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  height: 0;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
  transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
}

.c-mask.is-active {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#menu-button {
    display: none;
    font-size: 35px;
}

#smart-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    padding-top: 30px;
    background-color: white;
    /*overflow-y: scroll;*/
    z-index: 200;
    -webkit-transform: translateX(-250px);
            transform: translateX(-250px);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

#smart-menu.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
}



.startbutton {
    display: block;
	width:150px;
	height:30px;
    margin: 0;
    padding-top:3px;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
}

.startbutton:hover {
}

#footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    align-items: flex-end;
    padding: 63px 0;
}

.horizontal.list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 623px;
    font-size: 13px;
}

.copyright {
    font-size: 10px;
}

/* Form - Styles */
/*********************************************************************************/
.field {
    margin: 10px 0;
}

.field label,
.field input:not([type=checkbox]) {
    display: block;
    width: 100%;
}

.inline.field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.inline.field label {
    min-width: 20px;
    max-width: 200px;
    padding-right: 5px;
}

.field label {
    font-size: 16px;
}


.field input {
    height: 36px;
    padding: 0 10px;
    border: solid thin #BBBBBB;
}

.field select {
    height: 36px;
    padding: 0 10px;
    border: solid thin #BBBBBB;
}

.f9px {
	font-size: 9px;
	line-height: 12px;
}

.culture-check {
    z-index: 10;
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    background-color: #fbf6f2;
    border-radius: 1.875rem;
    flex-flow: column;
    padding: 2.5rem;
    display: flex;
    position: relative;
}

/* Smartphone */
@media only screen and (max-width: 480px) {
    #main-menu {
        display: none;
    }

    #menu-button {
        display: block;
    }

    #smart-menu {
        display: block;
    }
    
    .menu .vertical.divider {
        display: none;
    }

    .menu a {
        display: block;
        padding: 15px 20px;
    }

	.inline.field {
        display: block;
    }
	
}
@media print {
    #main-menu {display:none;}
    #mitarbeiter-img {display:none;}
    #mainfooter {display:none;}
    #printbutton {display:none;}
	.content {padding-left:20px;}
}