@charset "utf-8";
/* CSS Document */

/* --------------------------------------------- CF7 Forms --- */
#custom-form h3 {
    padding-top: 30px;
}
/*--------------------------------------- Layout ---*/
.wpcf7-form .col-1,
.wpcf7-form .col-2 {
    width: 100%;
}
@media only screen and (min-width: 768px) { 
    .wpcf7-form .col-2 {
        width: calc((100% - 20px) / 2);
    }
}
.wpcf7-form .col-1.line {
    border-top: 1px solid #ccc;
    margin-top: 45px;
}
.wpcf7-form .flex {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
/*------------------------------------- General ---*/
.wpcf7 {
    width: 100%;
}
.wpcf7-form textarea, 
.wpcf7-form input,
.wpcf7-form button, 
.wpcf7-select {
    -webkit-appearance: none;
       -moz-appearance: none;
			appearance: none;
    -webkit-border-radius: none;
            border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
    background-color: #fff;
    background-image: none;
    outline: none;
    
    border: 1px solid #ccc;
    padding: 8px 30px;
    color: #000;
    height: 50px;
    font-size: 1.8rem;
}
.wpcf7-form textarea, 
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=url],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=date],
.wpcf7-form input[type=file] {
    width: 100%;
}
.wpcf7-form textarea::placeholder, 
.wpcf7-form input::placeholder {
    font-size: 1.8rem;
    line-height: 2;
    color: #000;
}
.wpcf7-form input[type=date] {
    padding: 7px 15px;
    height: 42px;
}
/* Chrome, Safari, Edge, Opera */
.wpcf7-form input::-webkit-outer-spin-button,
.wpcf7-form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
.wpcf7-form input[type=number] {
    text-align: center;
    padding: 8px 15px;
    margin-right: 15px;
}
.wpcf7-form .asterisk {
    color: #FF0000;
    padding-left: 2px;
}
.wpcf7-form label {
    display: block;
    width: 100%;
    padding-bottom: 8px;
    padding-top: 15px;
    color: #000;
}
.wpcf7-list-item label {
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 400;
}
#custom-form .wpcf7-textarea {
    min-height: 190px;
}
#custom-form.job-form .wpcf7-textarea {
    min-height: 160px;
}
/*---------------------------------------- Wrapper ---*/
.wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
#custom-form.job-form .wpcf7-form-control-wrap.message {
    display: block;
    margin-bottom: 10px;
}
.number .wpcf7-form-control-wrap  {
    display: inline-block;
}
.wpcf7-form-control-wrap[data-name="acceptance"] {
    margin-bottom: 0;
}
/*-------------------------------------- Checkbox ---*/
.wpcf7-form .checkbox .wpcf7-form-control-wrap {
    display: flex;
    min-height: 70px;
    flex-direction: column;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
    display: inline-block;
    margin: 0;
    padding: 6px 20px 6px 0;
}
.wpcf7-form input[type=checkbox] {
    visibility: hidden;
    display: none;
}
.wpcf7-form input[type=checkbox] + span {
    display: block;
    cursor: pointer;
    padding-left: 45px;
    height: 30px;
}
.wpcf7-form input[type=checkbox] + span::before {
    display: block;
    position: absolute;
    content: '';
    height: 30px;
    width: 30px;
    top: 0;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
}
.wpcf7-form input[type=checkbox] + span::after {
    display: block;
    position: absolute;
    content: '';
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 179.3 179.3' style='enable-background:new 0 0 179.3 179.3;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .cbx%7Bfill:none;stroke:%237e7d79;stroke-width:22;stroke-linecap:round;%7D%0A%3C/style%3E%3Cline class='cbx' x1='160.8' y1='160.8' x2='18.5' y2='18.5'/%3E%3Cline class='cbx' x1='18.5' y1='160.8' x2='160.8' y2='18.5'/%3E%3C/svg%3E");
    background-repeat:  no-repeat;
    height: 18px;
    width: 18px;
    top: 6px;
    left: 6px;
    visibility: hidden;
}
.wpcf7-form input[type=checkbox]:checked + span::after {
   visibility: visible;
}
.wpcf7-form .dsgvo-acceptance input[type=checkbox] + span::before {
    border: 3px solid #80d6e0;
}
/* Borlabs Cookie Banner */
input[type=checkbox] + span._brlbs-checkbox-indicator::before { 
    background: transparent;
    border: 0 none;
}
/*------------------------------------------ Radio ---*/
.wpcf7-form .wpcf7-radio .wpcf7-list-item {
    display: inline-block;
    margin: 0;
    padding-right: 20px;
}
.wpcf7-form .wpcf7-radio {
    display: block;
}
.wpcf7-form input[type=radio] {
    visibility: hidden;
    display: none;
}
.wpcf7-form input[type=radio] + span {
    display: block;
    padding-left: 45px;
    cursor: pointer;
    height: 30px;
}
.wpcf7-form input[type=radio] + span::before {
    display: block;
    position: absolute;
    content: '';
    height: 30px;
    width: 30px;
    top: 0;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 50%;
}
.wpcf7-form input[type=radio] + span::after {
    display: block;
    position: absolute;
    content: '';
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 179.3 179.3' style='enable-background:new 0 0 179.3 179.3;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .rab%7Bfill:%237e7d79;stroke:none;stroke-width:22;stroke-linecap:round;%7D%0A%3C/style%3E%3Ccircle class='rab' cx='89.6' cy='89.6' r='63'/%3E%3C/svg%3E");
    background-repeat:  no-repeat;
    height: 18px;
    width: 18px;
    top: 6px;
    left: 6px;
    visibility: hidden;
}
.wpcf7-form input[type=radio]:checked + span::after {
   visibility: visible;
}
/*--------------------------------------- Dropdown ---*/
.wpcf7-form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
}
.wpcf7-form select::-ms-expand {
  display: none;
}
.wpcf7-form select:focus::-ms-value {
  background-color: transparent;
}
.wpcf7-form .wpcf7-select,
.wpcf7-form .wpcf7-select select,
.wpcf7-form .wpcf7-select select option {
    width: 100%;
    cursor: pointer;
}
.s-hidden {
    visibility:hidden;
    padding: 0;
    border: 0 none;
    margin: 0;
    font-size: 0;
    line-height: 0;
}
.select {
    width: 100%;
    cursor: pointer;
    border: 1px solid #ccc;
    height: 50px;
    line-height: 1.3;
}
.text-color-light .select {
    border: 0 none;
}
.styledSelect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 30px;
    background-color: #fff;
    line-height: 1.5;
    font-size: 1.8rem;
    color: #000;
    text-align: left;
}
.styledSelect:after {
    content: "";
    position: absolute;
    pointer-events: none;
    right: 20px;
    top: 15px;
    transform: rotate(45deg);
    border-right: solid 1px #000000;
    border-bottom: solid 1px #000000;
    width: 12px;
    height: 12px;
}
.styledSelect.active {
    color: #000;
}
.dropdown ul.options li:first-of-type {
    display: none;
}
.dropdown ul.options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 10px 0;
    text-align: left;
    list-style: none;
    outline: 1px solid #ccc;
    background-color: #fff;
    -webkit-box-shadow:0 6px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow:0 6px 10px rgba(0, 0, 0, 0.2);
    box-shadow:0 6px 10px rgba(0, 0, 0, 0.2);
    line-height: 2;
    font-size: 2rem;
    color: #000;
}
.dropdown ul.options li {
    margin: 0;
    padding: 3px 30px;
    color: #000;
}
.dropdown ul.options li::before {
    display: none;
}
.dropdown ul.options li:hover {
    background-color: var(--clr-main);
    color: #fff;    
}
/*------------------------------------- File upload ---*/
.file-cv-upload .wpcf7-form-control-wrap {
    margin-bottom: 0;
}
.file-cv-upload input[type=file] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    padding: 0 !important;
    border: none;
}
.file-cv-upload #sb_uploadLabelCV {
    display: block;
    padding: 0 30px;
    background: white;
    color: #000;
    font-size: 2rem;
    line-height: 3.5;
    text-align: left;
    width: 100%;
    height: 70px;
    cursor: pointer;
}
.file-cv-upload::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 30px;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 702 702' style='enable-background:new 0 0 702 702;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:none;stroke:%23000000;stroke-width:45;stroke-linecap:round;stroke-miterlimit:10;%7D%0A%3C/style%3E%3Cpath class='st0' d='M339.1,96.7L107.8,348c-58.5,63.6-54.4,162.6,9.2,221.1s162.6,54.4,221.1-9.2l266.5-289.5 c40-43.5,37.2-111.2-6.3-151.2c-43.5-40-111.2-37.2-151.2,6.3L198.2,395.9c-21.5,23.4-20,59.7,3.4,81.2s59.7,20,81.2-3.4 l210.3-228.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}
/*--------------------------------------- Acceptance ---*/
.wpcf7-form .policy .wrap {
    border: 1px solid #ccc;
    padding: 15px 15px 5px 15px;
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
    display: inline-block;
    margin: 0;
    padding-bottom: 5px;
    padding-right: 20px;
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
	display: inline-block;
    padding-left: 45px;
    cursor: pointer;
	padding-top: 2px;
}
.wpcf7-form .acceptance a {
    text-decoration: underline;
}
/*-------------------------------------------- Quiz ---*/
.wpcf7-form .quiz {
    margin-bottom: 10px;
}
.wpcf7-form .security-quiz {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #ccc;
    padding: 5px 15px;
}
.wpcf7-form .send {
    justify-content: center;
    margin-top: 30px;
}
.button-send {
    width: 50%;
    max-width: 160px;
}
.wpcf7-form .security-quiz > label {
    padding: 0;
    max-width: 110px;
}
.wpcf7-form .wpcf7-quiz-label,
.wpcf7-form input.wpcf7-quiz {
    font-size: 1.8rem;
}
.wpcf7-form input.wpcf7-quiz {
    width: 40px;
    text-align: center;
    padding: 0;
}
.wpcf7-form .security-quiz .wpcf7-not-valid-tip {
    padding-top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .wpcf7-form .col-2.send {
        width: 100%;
    }
}
/*----------------------------------- Validation ---*/
.wpcf7-form .wpcf7-not-valid-tip {
    display: block;
    color: #ffb900;
    padding-top: 5px;
    text-align: left;
}
div.wpcf7-validation-errors, 
div.wpcf7-acceptance-missing {
    border: 2px solid #f70000;
}
div.wpcf7-response-output {
     border: 2px solid var(--clr-main);
}
.text-color-light div.wpcf7-response-output
.text-color-light div.wpcf7-validation-errors, 
.text-color-light div.wpcf7-acceptance-missing {
    color: #fff;
}
div.wpcf7-response-output {
    width: 100%;
    text-align: center;
    padding: 5px 20px!important;
    margin: 20px 0!important;
}
.text-color-light div.wpcf7-response-output {
    color: #fff;
}
div.wpcf7 .ajax-loader {
    display: none;
}
/*-------------------------------------- Submit ---*/
input.wpcf7-submit {
    width: 100%;
    height: 42px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-size: 1.8rem;
    border: 0 none;
}
.wpcf7-spinner {
    display: none;
}