:root {
    --rptu-blaugrau: #507289;
    --rptu-gruengrau: #77b6ba;

    --rptu-dunkelblau: #042c58;
    --rptu-hellblau: #6ab2e7;

    --rptu-dunkelgruen: #006b6b;
    --rptu-hellgruen: #26d07c;

    --rptu-violett: #4c3575;
    --rptu-pink: #d13896;

    --rptu-rot: #e31b4c;
    --rptu-orange: #ffa252;

    --rptu-schwarz: #000000;
    --rptu-weiss: #ffffff;
}

body {
    font-family: sans-serif;
}

.list {
    font-family: sans-serif;
    margin: 1rem 0 1rem !important;
    padding: 0.5rem;
}

.checkmark {
    margin: auto;

    display: none;
    transform: rotate(45deg);
    height: 24px;
    width: 12px;
    border-bottom: 7px solid var(--rptu-hellgruen);
    border-right: 7px solid var(--rptu-hellgruen);
}

.crossmark {
    width: 50%;

    height: 24px;
    display: none;
    position:relative;
}

.crossmark::after{
    position: absolute;
    content: '';
    width: 24px;
    height: 0;
    border: solid var(--rptu-orange);
    border-width: 0 0 7px 0;
    transform: rotate(45deg);
    top:12px;
    right:-12px;
}

.crossmark::before{
    position: absolute;
    content: '';
    width: 24px;
    height: 0;
    border: solid var(--rptu-orange);
    border-width: 0 0 7px 0;
    transform: rotate(-45deg);
    top:12px;
    right:-12px;
}

.highlighted-err {
    background-color: var(--rptu-rot);
    color: var(--rptu-weiss);
    border-radius: 0.5rem;
}

.highlighted-success {
    background-color: var(--rptu-dunkelgruen);
    color: var(--rptu-weiss);
    border-radius: 0.5rem;
}

.file-upload {
    width: 90%;
}

.file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: var(--rptu-hellgruen);
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid var(--rptu-dunkelgruen);
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.file-upload-btn:hover {
    background: var(--rptu-dunkelgruen);
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
}

.file-upload-content {
    display: none;
    text-align: center;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.image-upload-wrap {
    margin-top: 20px;
    border: 4px dashed var(--rptu-hellgruen);
    position: relative;
}

.image-dropping,
.image-upload-wrap:hover {
    background-color: var(--rptu-hellgruen);
    /*border: 4px dashed #ffffff;*/
}

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
}

.drag-text {
    text-align: center;
}

.drag-text h3 {
    font-weight: 100;
    text-transform: uppercase;
    color: var(--rptu-dunkelgruen);
    padding: 60px 0;
}

.file-upload-image {
    max-height: 200px;
    max-width: 200px;
    margin: auto;
    padding: 20px;
}

.remove-image {
    margin: 0;
    color: #fff;
    background: var(--rptu-rot);
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid var(--rptu-orange);
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.remove-image:hover {
    background: var(--rptu-orange);
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.remove-image:active {
    border: 0;
    transition: all .2s ease;
}