.select_apo_main_wrapper{
    width: 100%;
    max-width: 600px;

    margin: 0 auto;
}

.select_apo_wrapper{
    display: flex;
    justify-content: center;
    
    align-items: center;
    flex-flow: row wrap;
    
    width: 100%;
        /* Container horizontal mittig platzieren */
    margin: auto;
}

.background_green{
    background-color: #42be42!important;
}

.button_main_wrapper{
    width: 100%;
    height: auto;
    
    margin-top: 40px;
}

.button_left_wrapper{
    float: left;
    width: 48%;
    
    margin-left: 4px;
}

.button_right_wrapper{
    float: right;
    width: 48%;
    
    margin-right: 4px;
}

.button_back{
    -webkit-border-radius: 4;
    -moz-border-radius: 4;
    
    margin: 0 auto;
    
    margin-top: 0px;
    margin-bottom: 0px;
    
    margin-top: 0px;
    margin-bottom: 0px;
    
    display: block;
    border-radius: 4px;
    
    color: green;
    text-align: center;
    
    text-decoration: none;
    padding: 15px 25px 15px 25px;
    
    font-size: 20px;
    cursor: pointer;
    
    border: 2px solid green;
    font-weight: 600;
    
    margin-bottom: 30px;
    margin-top: 0px;
    
    transition: 0.5s;
    
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.button_next{
    -webkit-border-radius: 4;
    -moz-border-radius: 4;
    
    margin: 0 auto;
    
    margin-top: 0px;
    margin-bottom: 0px;
    
    margin-top: 0px;
    margin-bottom: 0px;
    
    display: block;
    border-radius: 4px;
    
    color: white;
    text-align: center;
    
    text-decoration: none;
    padding: 15px 25px 15px 25px;
    
    font-size: 20px;
    cursor: pointer;
    
    border: 2px solid green;
    font-weight: 600;
    
    margin-bottom: 30px;
    margin-top: 0px;
    
    transition: 0.5s;
    background-color: green;
    
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.button_animation{
    animation: myAnim 2s ease 0s 5 normal forwards;
}

.button_next:hover{
    background-color: black;
    color: white;
    
    border: 2px solid black;
    transition: 1.0s; 
}

.button_back:hover{
    background-color: green;
    color: white;
     
    transition: 1.0s;
}

.progress_bar_wrapper{
    background-color: #f1f1f1 !important;
    width: 99%;
   
    overflow: hidden;
}

.progress_green{
    background-color: green;
    animation: progressBar 3s ease-in-out;
    
    animation-fill-mode:both;
    
    text-align: center;
    color: #f1f1f1;
    
    font-size: larger;
    padding: 1px;
}

@keyframes progressBar {
  0% { width: 0; }
  100% { width: 100%; }
}

.img-btn-description{
    padding-left: 4px;
    width: 97%;
    
    margin-bottom: 20px;
    margin-top: 10px;
    
    cursor: pointer;
}

.img-btn{
 
    border: 2px;
}

.img-btn img{
    height: auto;
    
   /* border-radius: 4px;    */
    width: 100%;
}

.img-btn > input{
    display:none
}

.img-btn > img{
    cursor:pointer;
   /* border:4px solid transparent;*/
}

.img-btn > input:checked + img-btn{
    border-color: green;
    background-color: gray;
   /* border-radius:4px;*/
}

/* Author Style */
.author{
    position:fixed;
    bottom:10px;
    
    right:10px;
    background: black;
    
    padding:3px;
    border-radius:4px;
}

.author p{
    text-align:center;
    padding:5px 10px;
    
    margin:0;
    color:black;
    
    border:2px solid lightgrey;
    border-radius:5px;
}
 
.author a{
    color:lightgrey;
}


#bg-container{
    height: 100%;
    width:100%;
  
    font-family: 'Titillium Web';
}

.inside{
	padding: 20px;
    /* border: thin solid gainsboro; */ 
}
 
h2{
    font-size: 30px;
    font-weight: 600;
    
    margin: 0;
    margin-bottom: 40px;
}
 
h3{
    font-size: 17px;
    margin: 0;
}

#bg-container{
    /* Text zentrieren */
    text-align:center;
     
    /* Inhalt vertikal mittig platzieren */
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
 
.inside{
    /* Container horizontal mittig platzieren */
    margin: auto;
}

.parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    
    grid-row-gap: 10px;
}

.div1 { 
    grid-area: 1 / 1 / 2 / 2; 
    border: thin solid gainsboro;
    
    margin: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.div2 {
    grid-area: 1 / 2 / 2 / 3; 
    border: thin solid gainsboro;
    
    margin: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.div3 { 
    grid-area: 2 / 1 / 3 / 2; 
    border: thin solid gainsboro;
    
    margin: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.div4 { 
    grid-area: 2 / 2 / 3 / 3; 
    border: thin solid gainsboro;
    
    margin: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@-webkit-keyframes pulse {
  0% {
    @include transform(scale(.9));
  }
  70% {
    @include transform(scale(1));
    box-shadow: 0 0 0 50px rgba(#5a99d4, 0);
  }
    100% {
    @include transform(scale(.9));
    box-shadow: 0 0 0 0 rgba(#5a99d4, 0);
  }
}   
/*
@keyframes myAnim {
	0%,
	100% {
		transform: rotate(0deg);
		transform-origin: 50% 100%;
	}

	10% {
		transform: rotate(2deg);
	}

	20%,
	40%,
	60% {
		transform: rotate(-4deg);
	}

	30%,
	50%,
	70% {
		transform: rotate(4deg);
	}

	80% {
		transform: rotate(-2deg);
	}

	90% {
		transform: rotate(2deg);
	}
}*/
/*
@keyframes myAnim {
	0% {
		transform: translate(0);
	}

	10% {
		transform: translate(-2px, -2px);
	}

	20% {
		transform: translate(2px, -2px);
	}

	30% {
		transform: translate(-2px, 2px);
	}

	40% {
		transform: translate(2px, 2px);
	}

	50% {
		transform: translate(-2px, -2px);
	}

	60% {
		transform: translate(2px, -2px);
	}

	70% {
		transform: translate(-2px, 2px);
	}

	80% {
		transform: translate(-2px, -2px);
	}

	90% {
		transform: translate(2px, -2px);
	}

	100% {
		transform: translate(0);
	}
}*/

@keyframes myAnim {
	0% {
		animation-timing-function: ease-out;
		transform: scale(1);
		transform-origin: center center;
	}

	10% {
		animation-timing-function: ease-in;
		transform: scale(0.91);
	}

	17% {
		animation-timing-function: ease-out;
		transform: scale(0.98);
	}

	33% {
		animation-timing-function: ease-in;
		transform: scale(0.87);
	}

	45% {
		animation-timing-function: ease-out;
		transform: scale(1);
	}
}


.job_advertisement_wrapper{
    width: 100%;
    max-width: 1000px;
    
    height: auto;
    
    display: block;
    margin: 0 auto;
    
    text-align: left;
    background-color: #F2F2F2;
    
    min-height: 400px;
}

.job_advertisement_wrapper_left{
    width: 100%;
    max-width: 500px;
    
    float: left;
    padding: 40px;
}

.job_advertisement_wrapper_left h2{
    font-weight: 600;
}

.job_advertisement_wrapper_left p{
    font-size: 18px;
}

.job_advertisement_wrapper img{
    float: right;
    width: 100%;
    
    max-width: 400px;
    height: auto;    
}

.job_benefits_link::before{
    display: block;
    content: "";
    
    height:120px;
    margin-top: -120px;
    
    visibility: hidden;   
}

.job_selection_wrapper{
    width: 100%;
    max-width: 1000px;
        
    display: block;
    margin: 0 auto;
    
    text-align: left;
    background-color: #F2F2F2;   
    
    margin-bottom: 20px;
    padding-bottom: 40px;
}

.job_selection_wrapper h2{
    padding-top: 40px;
    padding-bottom: 40px;
    
    padding-left: 40px;
    padding-right: 40px; 
    
    font-weight: 600;
}

.job_selection_title h2{
    max-width: 600px;
    margin: 0 auto;
    
    padding-left: 40px;
    padding-right: 40px;
}

.job_selection_content{
   
    padding-bottom: 20px;
   /* max-width: 600px;   */
    
    margin: 0 auto;
}

.job_selection_content p{
    padding: .5em;
}

.job_selection_content input{
    display: none;
}

.job_selection_content label{
    margin: 0;
    padding: 0;
    
    border: 0;
    outline: 0;
    
    font-size: 100%;
    vertical-align: baseline;
    
    background: transparent;
    display: unset;
    
    border-radius: 0px;
    display: block;    
    
	padding: 8px 22px;
   /* margin: 0 0 1px 0;*/
	
    cursor: pointer;
	color: #000;
    
	transition: ease .5s;
	position: relative;
    
    font-size: 24px;   
}

.job_accordion_wrapper{
    border: thin solid gainsboro;
	grid-column: 2 / 3;
	
    border-radius: 4px;
    transition: all .5s;
}

.job_accordion_title{
    position: relative;
	line-height: 300%;
	
    padding-left: 1em;   
    cursor: pointer;
    
    font-weight: bolder;
}

.job_accordion_title::marker,
.job_accordion_title::-webkit-details-marker {
	color: transparent;
    display: none; 
}

.job_accordion_title::after {
	position: absolute;
	top: 0;
	right: 1em;
	content: '\2713';
	font-size: 2em;
	font-weight: bold;
	color: green;
    transition: transform 200ms;
    display: none;
    top: 6px;
}

.job_accordion_button{    
    -webkit-border-radius: 4;
    -moz-border-radius: 4;
    
    max-width: 250px;
    margin: 0 auto;
    
    margin-top: 0px;
    margin-bottom: 0px;
    
    display: block;
    border-radius: 4px;
    
    color: green;
    text-align: center;
    
    text-decoration: none;
    padding: 15px 25px 15px 25px;
    
    font-size: 20px;
    cursor: pointer;
    
    border: 2px solid green;
    font-weight: 300;

    margin-bottom: 30px;
    
    margin-top: 0px;
    transition: 0.5s;
}

.job_accordion_button:hover{
    background-color: green;
    color: #fff;
} 

.job_selection_content input:checked ~ .job_accordion_title {
    background: #E8E8E8; 
}

.job_selection_content input:checked ~ .job_accordion_title::after {
    display: block;
    transition: transform 200ms;
}

@keyframes sweep {
  0%    {opacity: 0; margin-bottom: -20px}
  100%  {opacity: 1; margin-bottom: 0px}
}

.ankerPosition::before{
    display: block;
    content: "";
    
    height: 100px;
    margin-top: -100px;
    
    visibility: hidden;
}

.job_benefits_wrapper{
    width: 100%;
    max-width: 1000px;
        
    display: block;
    margin: 0 auto;
    
    text-align: left;
    background-color: #F2F2F2;
}

.job_benefits_wrapper h2{
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    
    font-weight: 600;
}

.job_benefits_first_text{
    padding-top: 10px;
    padding-left: 40px;
    padding-right: 40px;
}

.job_benefits_secont_text{
    padding-top: 10px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 10px    
}

.job_benefits_content{
    display: none;
}

#benefits:checked ~ .job_benefits_content{
    display: block;
}

#benefits:checked ~ label{
    display: none;
}

#benefits{
    display: none;
}

.form_style_one{
    width: 100%;
   /* max-width: 600px;*/
}

.fancy-input {
  margin: 1.5em 0 2em 0;
  position: relative;
}

.fancy-input label {
 /* position: absolute;
  background: #fff;
  padding: 0 .5em;
  font-size: .8em;
  top: -.6em;*/
  position: absolute;
 /* background: #fff; */
 /* padding: 0 .5em;*/
  font-size: 1.5em;
  top: -.9em;

  color: #666;
 /* left: .5em;*/
  transition: all .3s ease;
}

.fancy-input label.like-placeholder {
    color: #666;
    font-size: 1.5em;
    
    top: 1.2em;
    left: .5em;
}

.input_field_style_one{
    font-size: 2em;
    padding: 20px;
    
    width: 100%;
    padding: 12px 20px;
     
    margin: 8px 0;
    box-sizing: border-box;
    text-transform: capitalize;
}

.input_field_style_two{
    font-size: 2em;
    padding: 20px;
    
    width: 100%;
    padding: 12px 20px;
     
    margin: 8px 0;
    box-sizing: border-box;
}

.disabled_left_button_wrapper{
    display: none;
}

.max_size_button_wrapper{
    width: 100%;
}

.successfull_message{
    font-size: 26px;
    text-align: left;
    
    margin-bottom: 0px;
}

.spacer_max{
    margin-bottom: 40px;
} 

.job_education_label_title_mobile{
    display: none;
}

/*
.input_field_style_one input[type=text]:focus {
  border: 3px solid #555; 
}*/
 
@media only screen and (min-width : 150px) and (max-width : 380px){
    .job_selection_content label{
        padding: 0px;
        font-size: 18px;
    }
    
    h2{
        font-size: 24px;
    }
    
    .fancy-input label.like-placeholder{
        top: 0.7em;
    }
     
     .fancy-input label{
        font-size: 1.0em;
    }
    
    .line_height_small{
        line-height: 150%;
    }
    
    .line_height_middle{
        line-height: 200%;
    }
    
    .line_height_max{
        line-height: 300%;
    }
    
    .img-btn-description {
        font-size: 18px;
    }
    
    .button_next {
        padding: 15px 5px 15px 5px;
    }    
    
    .job_education_label_title{
        display: none;
    }
    
     .job_education_label_title_mobile{
         display: block;
    }
     
    .overview_caption {
        margin-top: 20px;
        font-size: 22px!important;   
        
        font-weight: normal;   
        text-align: center;
    }
     
    .closebtn {
        margin-right: -5px;
        padding-right: 0px!important;
        margin-top: -26px!important;  
    } 
}

@media only screen and (min-width : 150px) and (max-width : 370px){
    .line_height_small{
        line-height: 150%;
    }
    
    .line_height_middle{
        line-height: 200%;
    }
    
    .line_height_max{
        line-height: 200%;
    }  
}

@media only screen and (min-width : 150px) and (max-width : 568px){    
    .fancy-input label{
        font-size: 1.2em;
    }
    
    .input_field_style_one{
        font-size: 16px;
    }
    
    .input_field_style_two{
        font-size: 16px;
    }
    
    .job_accordion_title::after {
        display: none;
        content: '';
    }
    
    .job_selection_content input:checked ~ .job_accordion_title{
       /* background-color: green;*/
    }
}