
/* source-sans-pro-200 - latin */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 200;
    src: url('/fonts/source-sans-pro-v21-latin-200.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('/fonts/source-sans-pro-v21-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/fonts/source-sans-pro-v21-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
         url('/fonts/source-sans-pro-v21-latin-200.woff') format('woff'), /* Modern Browsers */
         url('/fonts/source-sans-pro-v21-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/fonts/source-sans-pro-v21-latin-200.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  }
  /* source-sans-pro-300 - latin */
  @font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 300;
    src: url('/fonts/source-sans-pro-v21-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('/fonts/source-sans-pro-v21-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/fonts/source-sans-pro-v21-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
         url('/fonts/source-sans-pro-v21-latin-300.woff') format('woff'), /* Modern Browsers */
         url('/fonts/source-sans-pro-v21-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/fonts/source-sans-pro-v21-latin-300.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  }
  /* source-sans-pro-regular - latin */
  @font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/source-sans-pro-v21-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('/fonts/source-sans-pro-v21-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/fonts/source-sans-pro-v21-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('/fonts/source-sans-pro-v21-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('/fonts/source-sans-pro-v21-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/fonts/source-sans-pro-v21-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  }
  /* source-sans-pro-600 - latin */
  @font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    src: url('/fonts/source-sans-pro-v21-latin-600.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('/fonts/source-sans-pro-v21-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/fonts/source-sans-pro-v21-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
         url('/fonts/source-sans-pro-v21-latin-600.woff') format('woff'), /* Modern Browsers */
         url('/fonts/source-sans-pro-v21-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/fonts/source-sans-pro-v21-latin-600.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  }
  /* source-sans-pro-700 - latin */
  @font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/source-sans-pro-v21-latin-700.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('/fonts/source-sans-pro-v21-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/fonts/source-sans-pro-v21-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
         url('/fonts/source-sans-pro-v21-latin-700.woff') format('woff'), /* Modern Browsers */
         url('/fonts/source-sans-pro-v21-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/fonts/source-sans-pro-v21-latin-700.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  }
  /* source-sans-pro-900 - latin */
  @font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 900;
    src: url('/fonts/source-sans-pro-v21-latin-900.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('/fonts/source-sans-pro-v21-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/fonts/source-sans-pro-v21-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
         url('/fonts/source-sans-pro-v21-latin-900.woff') format('woff'), /* Modern Browsers */
         url('/fonts/source-sans-pro-v21-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/fonts/source-sans-pro-v21-latin-900.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  }


:root {

    --main-accent-color: #E53F43;
    --main-accent-background: #242424;
    --main-text-color: #242424;

}
html {
    height: auto;
}
body {
    height: auto;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    hyphens: auto;
}

ul {
    list-style: none; /* Remove default bullets */
  }
  
  .contentlist li::before {
    content: "\2022";
    color: var(--main-accent-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  
h1, h2, h3 {
    color: var(--main-accent-color);
}


#table__content {
    width: 90vw;
    height: auto;

}


a {
    color: var(--main-accent-color);
}

img {
    display: block;
    max-width: 100%;
}

header {
    width: 100%;
    height: minmax(10vh,120px);
    display: grid;
    place-items: center;
    border-bottom: 2px solid var(--main-accent-color);
}

main {
    min-height: 80vh;
    padding: 0 10px;
}


footer {
    margin-top: 1rem;
    max-height: 8vh;
    display: grid;
    place-items: center;
    background-color: white;
    color: black;
    border-top: 2px solid var(--main-accent-color);
}

footer ul {
    display: flex;
    gap: 2rem;
    list-style-type: none;
    padding: 0;
}


footer p {
    margin: 0;
    padding: 0;
    color: var(--main-accent-color);
}
footer a {
    color: var(--main-accent-color);
    text-decoration: none;
}



.job-intro__buttons {
    display: grid;
    gap: 1em;
    margin-bottom: 2rem;
}

.intro_button {
    width: 80%;
    margin: 0 auto;
    background-color: var(--main-accent-color);
    color: #fff;
    transition: 0.3s;
}

#bewerber__app {
    padding: 10px 20px;
}

.logo__area img {
    max-width: 180px;
    margin-bottom: 0.5rem;
}

section, main {
    max-width: 500px;
    margin: 0 auto;
}



.hidden__section {
    display: none;
    transition: all 0.3s;
}

.btn__container {
    
    width: 80%;
    margin: 10px auto;
    display: flex;
    justify-content: space-between;
}

.btn_next, .btn_back {
    border: none;
    color: white;
    background-color: var(--main-accent-color);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn_next {
    margin-left: auto;

}

.btn_next:disabled,
.btn_back:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

#slider__container {
    width: 65%;
    margin: 5px auto;
}

.comments {
    min-height: 1rem;
    /*  border: 1px solid firebrick; */
}


/* Contact Form*/

#contact__form {
    padding: 0 10px;
}

#customerAddress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    width: 80%;
    margin: 0 auto;
    border: 1px solid var(--main-accent-color);
    border-radius: 10px;
    padding: 5px 20px;

}

.submit_button__area {
    display: grid;
    place-items: center;
}
/* Buttons Answer*/

th {
    text-align: center;
    font-size: 0.8rem;
}

td {
    line-height: 2rem;
    text-align: center;
}

.td__left {
    text-align: left;
}

.progress__bar {
    text-transform: uppercase;
    font-weight: 500;
    color: var(--main-accent-color);
    font-size: 0.9rem;
}

.abstand {
    margin-top: 30px;
}


.answers_button__area
 {
    
    display: grid;
    gap: 1rem;
    /* grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%),1fr)); */
    margin: 0 auto;
    
    
}


.multi_select {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    width: 90%;
    margin: 0 auto;
}

.nav_button__area {
    
    
    width: 90%;
    margin: 1.5rem auto;

    display: flex;
    justify-content: space-around;
}

button {
    
    padding: 10px;
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
}
.btn_answer {
    margin: auto;
    width: 130px;
    height: 130px;
    background-color: var(--main-accent-color);

    color: #fff;
    transition: all 0.3s;
    
}




.btn_answer:hover,
.btn_answer:active,
.intro_button:hover,
.intro_button:active
 {
    background-color: #E1DEDD;
    color: black;
}

.error__message, .sub__decoration {
    position: relative;
    padding: 10px;
    border-radius: 10px;
    color: var(--main-accent-color);
    width: 80%;
    margin: 20px auto;
    background-color: #E1DEDD;
}

.error__message:before,
.sub__decoration:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    right: 28px;
    top: -17px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 17px solid #E1DEDD;
}



.sub__decoration {
    margin-top: 50px;

    background-color: #e1dedd;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.8rem;
}

.mini_button {

    background-color: white;
    color: black;
    flex-basis: 30%;
    flex-grow: 1;
    
}

.icon__holder {
   
    font-size: 2rem;
    line-height: 2rem;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}


/* error messages */

.error__hidden {
    display: none;
}

.sub__hidden {
    display: none;
}

@media(hover: hover) and (pointer: coarse) {
    .btn_answer {
        background-color: var(--main-accent-color);
        color: #fff;
    }
}

@media(max-width: 700px) {
    table {
        width: 100%;
    }

    h2 {
        font-size: 1.1rem;
    }
}

@media(min-width: 1024px) {

}
/*
Rot: #A90F09 Türkis: #B3CECF Grau: #E1DEDD Blau: #B7BFD4
*/

/* Formstuff*/

.btn_navigation p {
    color: #242424;
}

#phone__area {
    transition: all 0.3s;
    transform: scaleY(1);
}

.area__hidden {
    transform: scaleY(0);
    display: none;
}


input[type="text"],
input[type="email"] {
    width: 100%;
    line-height: 2rem;
    border-radius: 7px;
    border: 1px solid var(--main-accent-color);


}

input[type="text"]:focus, textarea:focus {
    outline: 3px solid var(--main-accent-color);
}

/*input[type="radio"] {
 
    font: inherit;
    color: #A90F09;
    width: 1.35em;
    height: 1.35em;
    border: 0.15em solid #A90F09;
    border-radius: 50%;
}

input[type='radio']:checked {
    background: green;
}*/

input[type="radio"] {
    display: none;
}

input[type="radio"]+*::before {
    content: "";
    display: inline-block;
    vertical-align: bottom;
    width: 1.35rem;
    height: 1.35rem;
    margin-right: 0.5rem;
    margin-top: 0.7rem;
    margin-bottom: 0.0rem;
    border-radius: 50%;
    border-style: solid;
    border-width: 0.1rem;
    border-color: var(--main-accent-color);
}


input[type="radio"]:checked+*::before {
    background: radial-gradient(var(--main-accent-color) 0%, var(--main-accent-color) 40%, transparent 50%, transparent);
    border-color: var(--main-accent-color);
    width: 1.5rem;
    height: 1.5rem;
}

input[type="radio"]:checked+* {
    color: var(--main-accent-color);
}

input[type="checkbox"] {
    accent-color: var(--main-accent-color);
}

textarea {
    width: 100%;
     border-radius: 7px;
     border: 1px solid var(--main-accent-color);
}


/* CHECKBOXES */



input[type="checkbox"].toggle {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    left: -9000px;
    top: -9000px;
}


input[type="checkbox"].toggle+label {
    display: flex;
    width: 130px;
    height: 130px;
    border-radius: 10px;
    color: black;
    background-color: #E1DEDD;

    align-items: center;
    justify-content: center;
}

input[type="checkbox"].toggle:checked+label {
    content: '';
    background-color: var(--main-accent-color);
    color: #E1DEDD;

}

input[type="checkbox"].toggle:checked+label > img {
 filter: brightness(0) invert(0.9);

}

.btn__disabled {
    opacity: 0.5;
    cursor: not-allowed;
}



.gfx_label {
    display: grid !important;
    place-items: center;
    place-content: center;
}

.gfx_label > img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(0.1);
}

.mini_button > img {
    width: 30px;
    height: 30px;
    margin: 1rem auto;

}

.q_input {
    width: 130px !important;
    margin: auto;
}

.subline {
   text-transform: none; 
}

.question__area {
    margin: 3rem 0;
}



/*ELEMENTS (WILL BE SEPARATED)*/

.intro_button {
    width: 100%;
    font-size: 1.05rem;
}

