/* Colors */
:root {
    --nero: #333333;
    --primaryColor: #677078;
    --textLinkColor: #6CA5DA;
    --textLinkHoverColor: #247DCE;
    --footerLinkColor: #333333;
    --ash: #EFF1F3;
    --white: #FFFFFF;
    --errorRed: #DF021B;
}

* {
    box-sizing: border-box;
}

/**
 * Overwrite semantic css html height.
 * Important: DO NOT REMOVE THIS, IS USED FOR iFrameResizer.
 */
html {
    height: inherit;
    box-sizing: border-box;
    scroll-behavior: smooth;
    background-color: var(--white);
    max-width: 100%;
    font-size: 16px;
    line-height: 1.15;
    text-size-adjust: 100%;
}

/* General */
body {
    max-width: 100%;
    min-width: 1px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.875rem;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    text-size-adjust: 100%;
    margin: 0;
    color: var(--nero);
    background-color: var(--ash);
}

#hero {
    position: relative;
    width: 100%;
    justify-content: center;
}

#hero picture {
    display: flex;
    max-width: 1400px;
    box-shadow: 0 2px 8px 0 rgba(51,51,51,.3);
}

#hero figure {
    margin: 0 auto;
    z-index: 20;
}

#hero:before {
    content: "";
    width: 100%;
    height: 129px;
    position: absolute;
    top: 0;
    background-color: var(--white);
    z-index: 10;
}

#hero img {
    width: 100%;
}

main {
    width: 100%;
    position: relative;
    max-width: 1184px;
    margin: 0 auto;
    padding: 3rem 1.5rem 14rem;
    box-sizing: border-box;
}

main > svg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.contentContainer {
    display: flex;
}

.tighterWidth {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.responseContainer {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 20;
    position: relative;
}

.responseContainer .button {
    margin-top: 1.5rem;
}

button, input, optgroup, select, textarea {
    font-family: 'Montserrat', Arial, sans-serif;
}

textarea, .ui.form textarea:not([rows]) {
    resize: none !important;
    height: 8.875rem;
    min-height: 8.875rem;
}

.textareaContainer {
    border-radius: 0;
    overflow: hidden;
}

.flex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
}

h1, h1:first-child, h1:last-child {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.75rem;
    line-height: 2.275rem;
    font-weight: 700;
    color: var(--nero);
    letter-spacing: -0.5px;
    margin: 2rem 0 1.5rem;
    display: block;
}

h2, h2:first-child, h2:last-child, #insel-main label.h2-style {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.625rem;
    font-weight: 700;
    color: var(--nero);
    margin: 1.5rem 0 1.625rem;
    display: block;
}

#insel-main label.h2-style:after,
.ui.form:not(.inverted) .field > label:not(.button),
.ui.form:not(.inverted) .field > label:not(.floating-label):after {
    color: var(--nero);
}

a, a:visited {
    color: var(--textLinkColor);
    text-decoration: none;
    transition: background-color 0.25s ease-out 0s,
    color 0.25s ease-out 0s;
}

a:hover {
    color: var(--textLinkHoverColor);
}

#insel-main .button, #insel-main .button:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primaryColor);
    padding: 1rem 2.25rem;
    border-radius: 0 !important;
    line-height: 1rem;
    color: var(--white);
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease-out 0s,
    color 0.25s ease-out 0s;
    cursor: pointer;
    border: none;
    box-shadow: none !important;
}

#insel-main .button:hover {
    color: var(--white);
}

#insel-main .button.primary {
    background-color: var(--primaryColor);
    color: var(--white);
    min-width: 306px;
    line-height: 1.25rem;
}

#insel-main .button.primary:hover {
    background-color: var(--primaryColor);
    color: var(--white);
}

#insel-main input.button::placeholder {
    color: var(--white);
}

#insel-main input.button:hover::placeholder {
    color: var(--white);
}

#insel-main .button:disabled, #insel-main .button:disabled:hover {
    background-color: var(--primaryColor);
    color: var(--white);
    opacity: 0.5;
    cursor: not-allowed;
}

a:focus-visible, input.button:focus-visible {
    outline: 2px solid var(--textLinkHoverColor);
    transition: none;
    outline-offset: 0;
}

#documents input:focus, #documents a:focus {
    outline: 1px solid var(--primaryColor);
    transition: none;
    outline-offset: 0;
}

hr {
    border-top: 1px solid var(--ash);
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    margin: 1rem 0;
}

/* Header */
header {
    position: relative;
    width: 100%;
    z-index: 30;
    background-color: var(--white);
}

header .contentContainer {
    width: 100%;
    max-width: 1184px;
    margin: 0 auto;
    padding: 1.5rem;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    height: 172px;
}

header .headerButtons {
    flex-direction: row;
    gap: 0.75rem;
}

#logo img {
    display: block;
    width: 100%;
    max-width: 246px;
    overflow: visible;
}

/* Introduction */
#insel-main .introduction {
    flex-direction: column;
}

#insel-main .applyAs {
    font-size: 1.5rem;
    line-height: 1.9rem;
    font-weight: 700;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: unset !important;
    width: 100%;
    min-height: 990px;
}

fieldset {
    padding: 0;
    border: 0;
    display: contents;
}

.ui.form .field {
    margin-bottom: 1.25rem;
    position: relative;
}

.ui.form .field p {
    margin-bottom: 1rem;
}

main .floating-label {
    position: absolute;
    top: 1rem;
    left: 0.75rem;
    pointer-events: none;
    transition: transform 0.2s ease-out, top 0.2s ease-out;
    transform-origin: 0 0;
    padding: 0 0.5rem;
    color: var(--nero) !important;
    font-weight: 400 !important;
    font-size: 1rem !important;
    line-height: 1rem !important;
    margin: 0 !important;
}


.field input:not(:placeholder-shown) + .floating-label,
.field input:focus + .floating-label,
.items-selected + .floating-label,
.items-selected:focus + .floating-label,
.ui-multiselect.ui-state-active + .floating-label,
.ui-multiselect.ui-state-active:focus + .floating-label {
    transform: translateY(-34%) scale(0.7);
    top: 0;
    left: 1rem;
    background-color: var(--white);
    padding: 0 0.5rem;
}

.items-selected + .floating-label,
.items-selected:focus + .floating-label {
    transition: none;
}

.ui.selection.dropdown, .ui.selection.dropdown:hover, .ui.form input:not([type]), .ui.form input[type=date], .ui.form input[type=datetime-local], .ui.form input[type=email], .ui.form input[type=file], .ui.form input[type=number], .ui.form input[type=password], .ui.form input[type=search], .ui.form input[type=tel], .ui.form input[type=text], .ui.form input[type=time], .ui.form input[type=url], .ui.form textarea, .ui.form input:not([type]):focus, .ui.form input[type=date]:focus, .ui.form input[type=datetime-local]:focus, .ui.form input[type=email]:focus, .ui.form input[type=file]:focus, .ui.form input[type=number]:focus, .ui.form input[type=password]:focus, .ui.form input[type=search]:focus, .ui.form input[type=tel]:focus, .ui.form input[type=text]:focus, .ui.form input[type=time]:focus, .ui.form input[type=url]:focus {
    font-family: 'Montserrat', Arial, sans-serif !important;
    border: 1px solid var(--white);
    border-radius: 0;
    padding: 0.8125rem 1.25rem;
    background-color: var(--white);
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 400;
    color: var(--nero);
    box-shadow: 0 3px 6px #00000029 !important;
}

.ui.dropdown .menu > .item:hover, .ui.dropdown .menu .selected.item, .ui.dropdown.selected {
    background: var(--white);
    color: var(--primaryColor);
}

.ui.form input:not([type]):focus, .ui.form input[type=date]:focus, .ui.form input[type=datetime-local]:focus, .ui.form input[type=email]:focus, .ui.form input[type=file]:focus, .ui.form input[type=number]:focus, .ui.form input[type=password]:focus, .ui.form input[type=search]:focus, .ui.form input[type=tel]:focus, .ui.form input[type=text]:focus, .ui.form input[type=time]:focus, .ui.form input[type=url]:focus {
    border: 1px solid var(--primaryColor);
}

#applicant_birthdate_visible {
    display:flex;
    display:-webkit-flex;
    flex: 1 0 0;
    -webkit-flex: 1 0 0;
    min-height: 35px;
}

.ui.form .field .ui.input, .ui.form .fields .field .ui.input, .ui.form .wide.field .ui.input {
    width:auto;
}

.ui.form .fields {
    flex-direction: column;
}

.ui.form .grouped.fields .field, .ui.form .grouped.inline.fields .field {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.ui.form .field > label {
    font-size: 1rem;
}

.ui.action.input:not([class*="left action"])>input:focus {
    border-right-color: #DDDDDD !important;
}

.ui.radio.checkbox {
    min-height: 20px;
}

.ui.checkbox .box, .ui.checkbox label,
.ui.checkbox label:hover, .ui.checkbox+label:hover {
    color: var(--nero);
}

.ui.radio.checkbox .box:before, .ui.radio.checkbox label:before {
    width:24px;
    height:24px;
    background-color: transparent;
    border: 1px solid var(--nero);
}

.ui.radio.checkbox input:checked~.box:before, .ui.radio.checkbox input:checked~label:before {
    background-color: transparent;
    border-color: var(--primaryColor);
}

.ui.checkbox input:focus ~ .box::before, .ui.checkbox input:focus ~ label::before,
.ui.checkbox input:checked:focus ~ .box::before, .ui.checkbox input:checked:focus ~ label::before, .ui.checkbox input:not([type="radio"]):indeterminate:focus ~ .box::before, .ui.checkbox input:not([type="radio"]):indeterminate:focus ~ label::before {
    border-color: var(--primaryColor);
}

.ui.checkbox input[type="checkbox"], .ui.checkbox input[type="radio"] {
    width: 1.5rem;
    height: 1.5rem;
}

.ui.radio.checkbox input:checked + label {
    color: var(--primaryColor);
}

.ui.radio.checkbox .box::after, .ui.radio.checkbox label::after,
.ui.radio.checkbox input:checked ~ .box::after, .ui.radio.checkbox input:checked ~ label::after,
.ui.radio.checkbox input:focus:checked ~ .box::after, .ui.radio.checkbox input:focus:checked ~ label::after {
    background-color: var(--primaryColor);
}

.ui.radio.checkbox .box:after, .ui.radio.checkbox label:after {
    width:16px;
    height:16px;
    top: 5px;
    left: 4px;
    transform: scale(1);
}

.ui.selection.dropdown, .ui.selection.dropdown:focus {
    font-family: 'Montserrat', Arial, sans-serif !important;
    min-height: 48px;
}

.ui.dropdown > .text {
    position: absolute;
    top: 1rem;
}

.ui.dropdown.active + .floating-label {
    z-index: 20;
}

.ui.form .field > .selection.dropdown > .dropdown.icon {
    float: none;
    right: 1.25rem;
    top: calc(50% - 7px);
}

.ui.default.dropdown:not(.button) > .text, .ui.dropdown:not(.button) > .default.text {
    color: var(--nero);
}

.field.error .dropdown:not(.button) > .text, .field.error .ui.dropdown:not(.button) > .default.text {
    color: var(--nero) !important;
}

.ui.selection.dropdown>.dropdown.icon {
    top: auto;
    right: 0;
}

.ui.dropdown>.dropdown.icon:before {
    display: block;
    content: "";
    width: 20px;
    height: 12px;
    background-image: url("../images/arrow-down.svg") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

.ui.selection.active.dropdown, .ui.selection.active.dropdown:hover {
    box-shadow: none;
}

.ui.selection.active.dropdown .menu, .ui.selection.active.dropdown:hover .menu {
    border-color: var(--primaryColor);
    border-radius: 0;
}

.ui.selection.active.dropdown.upward .menu, .ui.selection.active.dropdown.upward:hover .menu {
    border-color: var(--primaryColor);
    border-radius: 0;
}

.ui.dropdown.selection.upward.active {
    border-radius: 0 !important;
}

.ui.selection.dropdown .menu>.item {
    font-weight: 300;
    width:100%;
}

.ui.form textarea:not([rows]), .ui.form textarea:focus {
    font-family: 'Montserrat', Arial, sans-serif !important;
    border: 1px solid var(--nero);
    border-radius: 0;
    padding: 0.8125rem 1.25rem;
    background-color: transparent;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 400;
    color: var(--nero);
}

.ui.selection.dropdown:hover, .ui.selection.active.dropdown:hover {
    border-color: var(--ash);
}

.ui.form textarea:focus, .ui.selection.dropdown:focus, .ui.selection.active.dropdown {
    border: 1px solid var(--primaryColor) !important;
}

.ui.checkbox .box, .ui.checkbox label, .ui.radio.checkbox label {
    padding-left: 2.125rem;
    padding-top: 0.3rem;
}
.ui.checkbox .box:before, .ui.checkbox label:before {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0;
    background-color: transparent;
    border-color: var(--nero);
}

.ui.checkbox label:hover::before {
    border-color: var(--nero);
    background: transparent;
}

.ui.checkbox input:checked~.box:before, .ui.checkbox input:checked~label:before {
    border-color: #494B50;
}

.ui.form.error .error.message:not(:empty) {
    border-radius: 0;
    margin-top:30px;
}

.ui.checkbox .box:after, .ui.checkbox label:after {
    width:20px;
    height:20px;
}

.ui.checkbox.noRadio .box:after, .ui.checkbox.noRadio label:after {
    transition: all 0ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    line-height: 24px;
    color: var(--primaryColor);
    font-size: 18px;
    content: "" !important;
    background-image: url(../images/icon-check.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    border-radius: 0;
}

#documents .uploadInfoText {
    margin-bottom: 2rem;
}

#documents label {
    display: inline-block;
    font-size: 1.25rem;
    line-height: 1.625rem;
    margin-bottom: 0;
}

#documents .field .input {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 1.5rem;
    row-gap: 0.5rem;
}

#documents .field {
    margin-bottom: 0.875rem;
}

#documents .field:last-child {
    margin-bottom: 0;
}

#documents .fileUpload {
    padding-bottom: 0.5rem;
}

#documents .error .fileUpload {
    padding-bottom: 0;
}

#documents .fileUploaded {
    border-bottom: 1px solid var(--ash);
}

#documents .FileUploadInfo {
    font-size: 0.875rem;
    line-height: 1.4rem;
    color: var(--nero);
    display: block;
    margin-bottom: 0.75rem;
}

#documents .textUploadedContainer {
    word-break: break-all;
}

#documents .textUploadedContainer span {
    display: block;
    color: var(--nero);
}

#documents .filename {
    font-weight: 700;
}

/* DSGVO */
.dsgvo {
    display: flex !important;
    min-height: 1.5rem !important;
    align-items: center;
}

.dsgvo label {
    min-height: 1.5rem;
}

/* Asterix for required fields */
.ui.form .required.field > .checkbox::after, .ui.form .required.field > label::after, .ui.form .required.fields.grouped > label::after, .ui.form .required.fields:not(.grouped) > .field > .checkbox::after, .ui.form .required.fields:not(.grouped) > .field > label::after {
    color: var(--nero);
}

.ui.form .required.field > label:first-child::after,
.ui.form .required.field > h2 > label:first-child::after {
    position: absolute;
    margin: -.2em 0 0 .2em;
    content: '*';
    display: inline-block;
}

.ui.form .required.field > .checkbox.dsgvo::after {
    display: none;
}

/* Delete Icon */
#insel-main .button.round.delete {
    box-sizing: border-box;
    background-color: transparent;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-out 0s;
}

#insel-main .button.round.delete:hover {
    background-color: transparent;
}

#insel-main .button.round.delete:hover svg path {
    transition: all 0.25s ease-out 0s;
}

#insel-main .button.round.delete:hover svg path {
    stroke: var(--errorRed);
}

/* Validation */
.ui.pointing.label, .ui[class*="pointing above"].label {
    margin-top: 0.5rem;
}

.ui.form .field.error input:not([type]), .ui.form .field.error input[type="date"], .ui.form .field.error input[type="datetime-local"], .ui.form .field.error input[type="email"], .ui.form .field.error input[type="file"], .ui.form .field.error input[type="number"], .ui.form .field.error input[type="password"], .ui.form .field.error input[type="search"], .ui.form .field.error input[type="tel"], .ui.form .field.error input[type="text"], .ui.form .field.error input[type="time"], .ui.form .field.error input[type="url"], .ui.form .field.error select, .ui.form .field.error textarea, .ui.form .fields.error .field input:not([type]), .ui.form .fields.error .field input[type="date"], .ui.form .fields.error .field input[type="datetime-local"], .ui.form .fields.error .field input[type="email"], .ui.form .fields.error .field input[type="file"], .ui.form .fields.error .field input[type="number"], .ui.form .fields.error .field input[type="password"], .ui.form .fields.error .field input[type="search"], .ui.form .fields.error .field input[type="tel"], .ui.form .fields.error .field input[type="text"], .ui.form .fields.error .field input[type="time"], .ui.form .fields.error .field input[type="url"], .ui.form .fields.error .field select, .ui.form .fields.error .field textarea,
.ui.form .field.error input:not([type]):focus, .ui.form .field.error input[type="date"]:focus, .ui.form .field.error input[type="datetime-local"]:focus, .ui.form .field.error input[type="email"]:focus, .ui.form .field.error input[type="file"]:focus, .ui.form .field.error input[type="number"]:focus, .ui.form .field.error input[type="password"]:focus, .ui.form .field.error input[type="search"]:focus, .ui.form .field.error input[type="tel"]:focus, .ui.form .field.error input[type="text"]:focus, .ui.form .field.error input[type="time"]:focus, .ui.form .field.error input[type="url"]:focus, .ui.form .field.error select:focus, .ui.form .field.error textarea:focus,
.ui.form .field.error .ui.dropdown, .ui.form .fields.error .field .ui.dropdown, .ui.form .field.error .ui.dropdown:hover, .ui.form .fields.error .field .ui.dropdown:hover {
    border-color: var(--errorRed) !important;
    background: var(--white);
    color: var(--nero);
}

.ui.form .field.error .ui.dropdown, .ui.form .field.error .ui.dropdown .item, .ui.form .field.error .ui.dropdown .text, .ui.form .fields.error .field .ui.dropdown, .ui.form .fields.error .field .ui.dropdown .item {
    background: var(--white);
    color: var(--nero);
}

.ui.form .field.error .ui.dropdown .menu .item:hover, .ui.form .fields.error .field .ui.dropdown .menu .item:hover {
    background: var(--white);
    color: var(--primaryColor);
}

.field.error .ui.selection.active.dropdown .menu, .field.error .ui.selection.active.dropdown:hover .menu,
.field.error .ui.selection.active.dropdown.upward .menu, .field.error .ui.selection.active.dropdown.upward:hover .menu {
    border-color: var(--errorRed);
}

.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box, .ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box, .ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label {
    color: var(--nero);
}

.ui.form .field.error .checkbox:not(.toggle):not(.slider) label {
    color: var(--nero);
}

.ui.ui.form .field.error .input, .ui.ui.form .field.error .ui.label:not(.corner), .ui.ui.form .field.error label, .ui.ui.form .fields.error .field .input, .ui.ui.form .fields.error .field .ui.label:not(.corner), .ui.ui.form .fields.error .field label {
    color: var(--nero);
}

.field.error input.button {
    border: 1px solid var(--errorRed) !important;
    border-right-color: var(--errorRed) !important;
}

.ui.form .field .prompt.label {
    font-size: 11px;
    line-height: 11px;
    color: var(--errorRed) !important;
    font-weight: 400;
    border: 0 !important;
    padding: 0 1.25rem !important;
    background: transparent !important;
}

.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box::before, .ui.form .field.error .checkbox:not(.toggle):not(.slider) label::before, .ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box::before, .ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label::before {
    background: var(--white);
    border-color: var(--errorRed);
}

.field.error .checkbox + .prompt.label {
    padding-left: 2.125rem !important;
}

.file-error-message {
    color: var(--errorRed);
    font-size: 0.675rem;
    line-height: 1rem;
}

.ui.pointing.label::before, .ui[class*="pointing above"].label::before {
    display: none;
}

.ui.form .field input:not(:placeholder-shown):invalid {
    background: transparent;
    border-color: var(--ash);
    color: var(--nero);
}

.ui.form .field input:not(:placeholder-shown):invalid:focus {
    border-color: var(--primaryColor);
}

/* Loading */
body.loading {
    overflow: hidden;
}

.ui.loading.form::before {
    background: transparent;
    bottom: initial;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 0;
    position: fixed;
}

.ui.loading.form::after {
    position: fixed;
    background-image: url("../images/spinner-shield.svg") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    animation: rotateShield 2s infinite linear;
    box-shadow: none;
    border: none;
    border-radius: 0;
    width: 40px;
}

.ui.form.loading > div, .loading > header, .loading > section, .loading > footer, .loading #insel-main div:first-child {
    opacity: 0.05;
    pointer-events: none;
}

/* Salary field */
#caf_customer_defined_text_1 {
    height: auto;
    min-height: 80px;
}

/* Footer */
footer {
    background-color: var(--white);
}

footer .contentContainer {
    width: 100%;
    max-width: 1184px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    align-items: center;
    font-size: 1rem;
    line-height: 1.6rem;
}

footer .contentContainer div {
    flex-direction: row;
    justify-content: space-between;
}

footer .bottomContainer {
    gap: 1.875rem;
    width: 100%;
}

footer .footerLinks {
    gap: 1.5rem;
}

footer .footerLinks a {
    color: var(--footerLinkColor);
}

footer .footerLinks a:hover {
    color: var(--textLinkHoverColor);
}

footer .copyright {
    color: var(--nero);
}

/* Page Preloader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
}

#loader-wrapper .loader-section {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999998;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#loader {
    display: block;
    position: relative;
    z-index: 999999999999;
}

#loader svg {
    width: 340px;
    height: auto;
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.2s 1s ease-out;
    transition: all 0.2s 1s ease-out;
}

.loaded #loader-wrapper .loader-section {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #loader svg {
    visibility: hidden;
}

#preloaderLogo .svg-elem-1 {
    fill: transparent;
    -webkit-transition: fill 0.2s ease-in 0.05s;
    transition: fill 0.2s ease-in 0.05s;
}

#preloaderLogo .svg-elem-2 {
    fill: transparent;
    -webkit-transition: fill 0.2s ease-in 0.1s;
    transition: fill 0.2s ease-in 0.1s;
}

#preloaderLogo .svg-elem-3 {
    fill: transparent;
    -webkit-transition: fill 0.2s ease-in 0.2s;
    transition: fill 0.2s ease-in 0.2s;
}

#preloaderLogo .svg-elem-4 {
    fill: transparent;
    -webkit-transition: fill 0.2s ease-in 0.3s;
    transition: fill 0.2s ease-in 0.3s;
}

#preloaderLogo .svg-elem-5 {
    fill: transparent;
    -webkit-transition: fill 0.2s ease-in 0.4s;
    transition: fill 0.2s ease-in 0.4s;
}

#preloaderLogo .svg-elem-6 {
    fill: transparent;
    -webkit-transition: fill 0.2s ease-in 0.5s;
    transition: fill 0.2s ease-in 0.5s;
}

#preloaderLogo .svg-elem-7 {
    fill: transparent;
    -webkit-transition: fill 0.2s ease-in 0.6s;
    transition: fill 0.2s ease-in 0.6s;
}

#preloaderLogo .svg-elem-8 {
    fill: transparent;
    -webkit-transition: fill 0.2s ease-in 0.7s;
    transition: fill 0.2s ease-in 0.7s;
}

#preloaderLogo .svg-elem-9 {
    fill: transparent;
    -webkit-transition: fill 0.2s ease-in 0.8s;
    transition: fill 0.2s ease-in 0.8s;
}

#preloaderLogo .svg-elem-10 {
    fill: transparent;
    -webkit-transition: fill 0.2s ease-in 0.9s;
    transition: fill 0.2s ease-in 0.9s;
}

#preloaderLogo .svg-elem-11 {
    fill: transparent;
    -webkit-transition: fill 0.2s ease-in 1s;
    transition: fill 0.2s ease-in 1s;
}

#preloaderLogo .svg-elem-12 {
    fill: transparent;
    -webkit-transition: fill 0.2s ease-in 1.1s;
    transition: fill 0.2s ease-in 1.1s;
}

#preloaderLogo.active .svg-elem-1,
#preloaderLogo.active .svg-elem-2,
#preloaderLogo.active .svg-elem-3,
#preloaderLogo.active .svg-elem-4,
#preloaderLogo.active .svg-elem-5,
#preloaderLogo.active .svg-elem-6,
#preloaderLogo.active .svg-elem-7,
#preloaderLogo.active .svg-elem-8,
#preloaderLogo.active .svg-elem-9,
#preloaderLogo.active .svg-elem-10,
#preloaderLogo.active .svg-elem-11,
#preloaderLogo.active .svg-elem-12 {
    fill: rgb(103, 112, 120);
}

#shield {
    transform-style: preserve-3d;
    animation: rotateShield 2s infinite linear;
}

#shield svg {
    width: 80px;
    height: 80px;
}

/* STEPS */
#step2 label.h2-style {
    margin: 2.5rem 0 1rem;
}

#step2 .submitButtonContainer {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

@keyframes rotateShield {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

/* Responsive */
@media (max-width:1024px) {
    header .contentContainer {
        height: 115px;
    }
}

@media (min-width: 37.5em) {
    body {
        font-size: 1rem;
    }
    h1, h1:first-child, h1:last-child {
        font-size: 2rem;
        line-height: 2.4rem;
    }
    .button {
        font-size: 1rem;
    }
    .ui.checkbox .box, .ui.checkbox label {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 767px) {
    main {
        padding: 2rem 1.5rem 3.5rem
    }
    h1, h1:first-child, h1:last-child {
        font-size: 1.5rem;
        line-height: 1.95rem;
        margin-top: 0;
    }
    footer .footerLinks a, footer .copyright {
        font-size: 0.875rem;
        line-height: 1.6rem;
    }
    footer .bottomContainer {
        flex-direction: column !important;
    }
    footer .contentContainer div {
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 1184px) {
    .customColumn {
        display: grid;
        flex-direction: column;
        grid-template-columns: repeat(2, 1fr);
    }
    .block {
        grid-column: 1;
        margin-bottom: 1rem;
    }
    #documents.block {
        position: absolute;
        top: 0;
        right: 0;
        width: 42%;
    }
    body.loading #documents.block {
        z-index: -1;
    }
    .documentsBox {
        background: var(--white);
        padding: 30px;
        box-shadow: 0 3px 6px #00000029;
    }
}

@media (max-width: 1183px) {
    main, header .contentContainer, footer .contentContainer {
        max-width: 720px;
    }
    main {
        padding: 3rem 1.5rem 5rem;
    }
    .block {
        margin-bottom: 2rem;
    }
    #documents .fileUploaded {
        border-bottom: 1px solid #677078;
    }
}

@media (max-width: 360px) {
    #insel-main .button.primary {
        min-width: 100%;
    }
}