﻿.stage {
    display: none;
}

    .stage.active {
        display: block;
    }

.invisibility {
    visibility: hidden;
}

/* ======================== DROPZONE ======================= */
.Dropzone {
    border-radius: 10px;
    border: 2px dashed #008578;
    padding: 20px 20px 0 20px;
    cursor: pointer;
    color: #008578;
}

.Dropzone-image {
    display: block;
    pointer-events: none;
    margin: 0 auto;
}

.Dropzone-title {
    pointer-events: none;
    font-size: 20px;
    color: inherit;
    margin: 20px 0;
    text-align: center;
}

.FileUploadPreview {
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 10px;
    margin: 10px 0;
    padding: 5px;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #bababa;
}

.FileUploadPreview-title {
    text-align: left;
    font-weight: normal;
    flex: 1;
    padding: 0 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.FileUploadPreview-progress {
    height: 5px;
    background: #bababa;
    border-radius: 5px;
    flex: 1;
}

.FileUploadPreview-upload {
    display: block;
    height: 5px;
    background: var(--color_success);
}

.FileUploadPreview-cancel {
    margin-left: 15px;
}

.FileUploadPreview-size {
    display: block;
    color: #bababa;
    font-size: 12px;
}

.FileUploadPreview-edit {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #bababa;
}

.borderRight::after {
    border-right: 1px solid #333;
    margin-right: 20px;
    content: '';
    position: absolute;
    right: -11%;
    top: 0;
    height: 100%;
    width: 1px;
}

/* ======================== Style ======================= */

.StageButton-inner {
    display: flex;
    justify-content: space-between;
}

.StageButton {
    border-width: 0.5em;
    border-bottom-style: solid;
    border-left-style: hidden;
    /*border-left-color: #00000000;*/
    border-right-style: hidden;
    /*border-right-color: #00000000;*/
    border-top-style: solid;
    border-top-color: #00000000;
    border-top-width: 0.5em;
    text-decoration: underline;
    width: 100%
}

    .StageButton.active {
        border-bottom-style: solid;
        border-left-style: solid;
        border-right-style: solid;
        border-top-style: solid;
        text-decoration: none;
    }

.StageButtonAfter {
    /*position: relative;*/
}

    .StageButtonAfter::after,
    .StageButton.active::after {
        content: '';
        position: absolute;
        background: white;
        right: 1px;
        height: 2px;
        left: 1px;
        bottom: -1px;
        z-index: 10;
    }

.stage {
    position: relative;
    border-bottom: 1px solid #272727;
    padding: 20px 50px;
    min-height: 525px;
}

#stage2.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-group {
    display: inline-block;
    width: 50%;
    position: relative;
}

    .form-group label,
    .form-horizontal .control-label {
        top: 0;
        position: absolute;
        text-align: left;
        background: #ffffff !important;
        padding: 0px 10px;
        z-index: 10;
        width: auto;
        left: 25px;
        max-width: calc(100% - 50px);
        pointer-events: none;
        font-weight: 300;
    }
label {
    white-space: nowrap;
}
    .form-group-darker {
    display: inline-block;
    width: 50%;
    position: relative;
}

    .form-group-darker label,
    .form-horizontal .control-label-darker{
        top: 0;
        position: absolute;
        text-align: left;
        background: #ededed !important;
        padding: 0px 10px;
        z-index: 10;
        width: auto;
        left: 25px;
        max-width: calc(100% - 50px);
        pointer-events: none;
        font-weight: 300;
    }

select, .form-control, textarea {
    display: block;
    border: 1px solid #272727;
    border-radius: 5px;
    width: 100%;
    padding: 15px 20px;
    -webkit-appearance: none;
    font-size: 15px;
    max-width: none;
    height: 53px;
    margin-top: 15px;
    line-height: 20px !important;
    background-color: #00000000 !important;
}

.form-control-dark-bg {
    background-color: whitesmoke !important;
    display: block;
    border: 1px solid #272727;
    border-radius: 5px;
    width: 100%;
    padding: 15px 20px;
    -webkit-appearance: none;
    font-size: 15px;
    max-width: none;
    height: 53px;
    margin-top: 15px;
    line-height: 20px !important;
}

    select::after {
        content: '';
        position: absolute;
        right: 0;
        color: green;
        z-index: 1000;
        height: 5px;
        width: 5px;
        display: block;
        background: red;
    }

    select:focus,
    .form-control:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    }

.Dropzone {
    margin-top: 35px;
    height: 53px;
    width: 47%;
    border-radius: 3px;
    border: 1px solid #272727;
    color: #272727;
    position: relative;
}

.Dropzone-image {
    margin: 20px auto;
}

.Dropzone-title {
    position: absolute;
    top: 0;
    left: 10px;
    max-width: calc(100% - 25px);
    padding: 5px 10px;
    background: white;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    font-weight: bold;
    margin: 0;
    transform: translateY(-50%);
}

.Dropzone svg {
    fill: #272727;
}

.study,
.education {
    display: flex;
}

.Dropzone {
    margin: 15px;
}

.study .Dropzone, .education .Dropzone {
    margin: 15px 0;
}

.DeleteStudyButton,
.DeleteDropZoneButton,
.DeleteMultiDropZoneButton,
.DeleteEducationButton {
    margin: 15px 0 15px 15px;
    border: none;
    border-radius: 3px;
    color: white;
    background: #ff002a;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

    .DeleteStudyButton svg,
    .DeleteDropZoneButton svg,
    .DeleteMultiDropZoneButton svg,
    .DeleteEducationButton svg {
        fill: white;
        margin-right: 10px;
    }

.form-horizontal .form-group {
    margin-right: 0;
    margin-left: 0;
    /*width: 100%;*/
}

.study .form-group,
.education .form-group {
    width: 64.5%;
}

.Dropzone-image {
    display: none;
}

.Dropzone-title {
    position: absolute;
    top: 0%;
    left: 10px;
    margin: 0;
    width: auto;
    transform: translateY(-50%);
}

.FileUploadPreview {
    position: absolute;
    top: 0;
    left: 15px;
    border: none;
    padding-left: 0;
    margin-left: -5px;
    width: calc(100% - 15px);
}

.PageMultiFilesDropzone {
    width: 100%;
    min-height: 80px;
    padding-bottom: 20px;
    height: auto;
}

    .PageMultiFilesDropzone .FileUploadPreview {
        position: relative;
        top: 5px;
        margin: 0;
    }

    .PageMultiFilesDropzone .DropzoneImage {
        transform: translateY(25%);
    }

.AddStudyButton,
.AddMultiDropZoneButton,
.AddEducationButton {
    display: block;
    margin-left: 15px;
    border: none;
    font-weight: bold;
    text-align: center;
    background: rgba(39, 39, 39, 0.85);
    color: white;
    padding: 10px 20px;
    margin-bottom: 30px;
}

.StageSwitch-wrapper {
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.StageButton-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: -1px;
}

.StageSwitch-wrapper button {
    padding: 10px 20px;
    background: none;
    border: none;
    background: #FF002A;
    color: white;
    position: relative;
    outline: 0;
}

.InfoBox {
    position: absolute;
    width: 35%;
    right: 0;
    transform: translateX(100%);
    height: calc(100% + 2px);
    padding: 30px 20px;
    /*border: 1px solid #333;*/
    border-left: none;
    background-color: #EDEDED;
    top: -1px;
}

.multiDropZone {
    display: flex;
    justify-content: flex-start;
}

.Dropzone-title label {
    margin: 0;
}

.FileUploadWrapper {
    display: flex;
    flex-wrap: wrap;
}

.logo img,
.logo a img {
    height: auto;
    max-height: inherit;
    width: 100%;
}

.logo {
    display: flex;
    justify-content: space-between;
    max-height: 80px;
}

.logo-border-bottom {
    border-bottom: 4px solid #00538d;
}

.logo-segment-wrapper {
    max-height: inherit;
    max-width: 480px;
    display: inherit;
}

    .logo-segment-wrapper img {
        flex: 0 0 auto;
    }

    .logo-segment-wrapper a {
        width: 100%;
        z-index: -1;
    }

img.navbarright {
    z-index: -1;
    height: auto;
    width: 180px;
}

.logo-segment-nav {
    position: relative;
    max-height: inherit;
    display: inherit;
    min-width: 265px;
    align-items: center;
}

    .logo-segment-nav::after {
        content: '';
        width: 100%;
        position: absolute;
        bottom: 10px;
        right: 0%;
        background-image: url(https://karriere.niedersachsen.de/images/underline-utilities.svg);
        background-size: contain;
        height: 16px;
    }

    .logo-segment-nav li {
        list-style-type: none;
        padding: 10px;
    }

textarea {
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
    width: 100%;
    height: 100px;
}

.Error {
    color: red;
    Padding-left: 15px;
}

#ConfirmedError {
    Padding-left: 20px;
    padding-top: 44px;
}


.confimCheckbox {
    display: block;
    min-height: 92px;
}

.preview-element-fileTitle,
.preview-element-fileName {
    display: inline-block;
}

.preview-element-wrapper {
    display: block;
}

.pdftop {
    display: none;
}

.pdfbottom {
    display: none;
}

.required-after::after {
    content: '*';
}

.required-before::before {
    content: '*';
}

.preview-wrapper {
    display: flex;
    margin-bottom: 15px;
}

.preview-table {
    width: 50%;
    display: inline-block;
    padding: 0.25em;
}

.preview-file-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.preview-file {
    width: 100%;
}

.ConfirmImage {
    padding-left: 5px;
    width: 22px;
}

.checkbox input[type="checkbox"] {
    -moz-appearance: checkbox ;
    border: 3px solid #32b8b9 ;
    border-radius: 5px ;
    width: 1em ;
    height: 1em;
}

.DropzoneImage {
    position: absolute;
    max-width: 25px;
    right: 20px;
    transform: translateY(-25%);
    z-index: 1;
    pointer-events: none;
}

.TitlePrint {
    visibility: hidden;
    pointer-events: none;
    display: block !important;
    padding: 5px;
    top: 102px;
    position: absolute;
    margin-left: 366px;
    height: 56px;
    max-width: 100%;
    width: 337px;
    font-size: 18px;
    /*background: black !important;
    color: white !important;
    -webkit-print-color-adjust: exact !important;*/
}

/* ======================== Dropdown Arrow ======================= */

.arrow {
    top: 37px;
    right: 40px;
    position: absolute;
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    pointer-events: none;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.arrow-up {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
}


/* ======================== Verfied-Site ======================= */

.verified-Body {
    margin-top: 50px;
}

.container {
    width: 60%;
}


/* ======================== Global ======================= */

.full-Width {
    width: 100%;
}





.indent-table > tr > td {
    padding: 0.25em;
}

.label-bg-darker {
    background-color: #ededed !important;
}

checkbox {
    border: 3px solid #32b8b9 !important;
    border-radius: 5px !important;
    width: 1em !important;
    height: 1em !important;
}

input[type="checkbox"],
.check-box {
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    appearance: checkbox !important;
}