* {
    box-sizing: border-box;
}
body {
    margin:0;
    padding:0;
    box-sizing: border-box;
}
#wrapper {
    padding-bottom:0;
}
#logoTitle a {
    display: flex;
}
#bg-content {
    box-sizing: border-box;
    background-color: #F2F6F7;
}
#headerbild {
    display: flex;
}
.gridContainer {
    justify-content: flex-start;
}
input.btn-submit {
    background: #3f848c;
    color:white;
    border:0;
    font-weight: normal;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* Application Form */
form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
#application-form-wrapper,
#application-form-wrapper-sucess {
    box-sizing: border-box;
    margin: 10px;
    max-width: calc(100% - 20px);
    width: 100%;
}

#posting-title {
    font-family: 'OpenSans-SemiBold', Arial, sans-serif;
    margin: 20px 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25em;
}


#info {
    color: #666;
    font-size: 12px;
    width: 100%;
    display: inline-block;
    margin: 0 0 30px 0;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    font-size: 1em;
    width: 100%;
    background:white;
}

select::-ms-expand {
    display: none;
}

.lt-ie10 select {
    background-image: none;
}

input,
select,
textarea {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 17px;
    border: 1px solid #F2F6F7;
    padding: 5px 10px;
    box-sizing: border-box;
    width: 100%;
    cursor: pointer;
    height: 53px;
}
textarea {
    height: 140px;
    padding-top:10px;
}
select.dropdown-style {
    background: url("../images/dropdown.png") no-repeat scroll right 5% center / 30px 16px white;
}

input.btn-submit {
    border: none;
    width: auto;
}

input#zip {
    width: 100px;
    float: left;
    margin-right: 10px;
}

input#city {
    width: calc(100% - 110px);
}

input#notes {
    height: 70px;
}

input.attachments {
    padding: 0;
    border: none;
    font-size: 12px;
}

#copy-form label {
    font-weight: 400;
}

input#attachments {
    border: none;
}

input[type='checkbox']:checked,
input[type='checkbox']:not(:checked) {
    visibility: hidden;
    margin: 0;
}

input[type='checkbox'] + label,
.portal-search-checkbox input[type='checkbox'] + label {
    cursor: pointer;
}

input[type='checkbox']:checked + label::before,
input[type='checkbox']:not(:checked) + label::before {
    content: '\2714';
    color: #fff;
    padding: 0 6px 11px 6px;
    display: inline-block;
    width: 13px;
    height: 13px;
    border: 1px solid #F2F6F7;
    vertical-align: text-bottom;
    background:white;
    position: absolute;
    left:0px;
}

input[type='checkbox']:not(:checked) + label::before {
    content: '';
}

input[type='checkbox']:checked + label::before {
    box-shadow: inset;
    content: '\2714';
    color: #3b7c84;
}
#copy-form {
    position: relative;
}
.formFieldsFifty {
    display: flex;
    gap:20px;
    width: 100%;
    min-width: 100%;
}
.formFieldsFifty .group {
    width: 100%;
}
.checkboxes {
    display: flex;
    gap:20px;
    flex-wrap: wrap;
}
.checkbox {
    position:relative;
}
input[type='checkbox'] + label {
    padding-left:35px;
}
.span_1_of_4 {
    width: 25%;
}
.mailconfirmerror {
    color:red;
    margin-top: 0px;
    font-size: 14px;
    margin-bottom: 20px;
}
input[type='checkbox'] {
    height: auto;
}
select.dropdown-style option[value=""]  {
    color: #777;
}

.fileUpload {
    display: flex;
    background-color:white;
    align-items: center;
    padding-left: 20px;
    margin-bottom: 20px;
    height: 80px;
    cursor: pointer;
}
input[type=file] {
    margin-bottom: 0;
    height: auto;
    cursor: pointer;
}
input[type=file]::file-selector-button  {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 20px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
}
.uploadinfo {
    font-size:13px;
}
div#submitError {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: red;
}
.textInputLabel {
    margin-bottom:15px;
    display: block;
}
@media (max-width: 768px) {
    #bg-content {
        padding: 5px;
    }
    .formFieldsFifty {
        flex-direction: column;
    }
    .span_1_of_4 {
        width: 100%;
    }
}