*, *:after, *:before {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    color: #434345;
    line-height: 1.5;
    background-color: transparent;
}

form, .form {
    width: calc(100% - 30px);
    max-width: 800px;
    padding: 15px;
    overflow: hidden;
    margin: 0 auto;
}

header, nav {
    width: 100%;
    display: block;
}

header h1 {
    text-align: center;
}

nav {
    display: flex;
    flex-wrap: wrap;
}

h1 {
    font-size: 32px;
    font-weight: 500;
    padding: 38px 0 15px;
}

h2 {
    font-size: 25px;
    font-weight: 500;
    padding: 30px 0 15px;
}

main, footer {
    padding: 15px 10px;
}

section,.alert, .inputs {
    clear: both;
}

.nav-item {
    flex: 0 0 calc(100% / 3 - 20px);
    margin: 10px;
    line-height: 50px;
    padding: 10px 20px;
    display: flex;
    background-color: #FBFBFB;
    border-radius: 4px;
    border: 1px solid lightgray;
}

.nav-item svg {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
}

.nav-item h2 {
    padding: 0;
    flex: 0 0 calc(100% - 50px);
    text-align: center;
}



/*Alerts*/
.alert:not(:empty) {
    background-color: #D9F6DAFF;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
}

.alert-danger:not(:empty) {
    background-color: #EB4B4B;
    color: white;
}

.alert-success:not(:empty) {
    background-color: #61BC71;
    color: white;
}

.alert-fixed:not(:empty) {
    position: fixed;
    width: calc(100% - 40px);
    top: 10%;
    left: 50%;
    max-width: 720px;
    z-index: 100;
    transform: translate(-50%, 0);
    box-shadow: 0 0 9px 2px rgba(0, 0, 0, .12);
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.close svg {
    height: 20px;
}

.js-live-errormsg {
    left: 0;
    background-color: transparent;
    color: #EB4B4B;
    top: 40px;
}
.input-checkbox .js-live-errormsg {
    top: 0;
    left: 22px;
}

input:not([type='checkbox']).js-live-error, select.js-live-error, textarea.js-live-error {
    border-color: #EB4B4B;
}

.input-field {
    position: relative;
    margin: 12px 7.5px 0;
    padding-bottom: 25px;
    width: calc(100% - 15px);
}

label {
    line-height: 18px;
    margin: 0;
    padding: 0;

    &.input-checkbox {
        line-height: normal !important;
    }
}

input {
    border: 1px solid #D8D8D8;
    background-color: #fefefe;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    margin: 2px 0;
    padding: 6px 8px;
    height: 40px;
    outline: none;
    font-size: 18px;
    width: 100% !important;
}

select {
    border: 1px solid #D8D8D8;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    margin: 2px 0;
    padding: 6px 47px 6px 8px;
    font-size: 18px;
    height: 40px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background: url(https://www.sewobe.de/fileadmin/download/vArrow1.svg) no-repeat;
    background-position: calc(100% - 14px) center;
    background-color: #fefefe;
    background-repeat: no-repeat;
    width: 100% !important;
}

textarea {
    border: 1px solid #D8D8D8;
    background-color: #fefefe;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    margin: 2px 0;
    padding: 6px 8px;
    font-size: 18px;
    outline: none;
    width: 100% !important;
}

.input-field > input, .input-field > select, .input-field > textarea {
    position: relative;
    z-index: 10;
    background-color: transparent;
    margin-bottom: 0;
}

.input-field > input:active, .input-field > input:focus, .input-field > select:active, .input-field > select:focus, .input-field > textarea:active, .input-field > textarea:focus {
    border-width: 2px;
    padding: 5px 7px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.input-field > label {
    position: absolute;
    top: 0;
    left: 6px;
    line-height: 22px;
    padding: 0 4px;
    color: #989898;
    cursor: text;
    -webkit-transition: color .2s ease-out, -webkit-transform .2s ease-out;
    transition: transform .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    text-align: initial;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    z-index: 0;
}

.input-field input ~ label.filled,
.input-field input:active ~ label,
.input-field input:focus ~ label,
.input-field select ~ label.filled,
.input-field select:active ~ label,
.input-field select:focus ~ label,
.input-field textarea ~ label.filled,
.input-field textarea:active ~ label,
.input-field textarea:focus ~ label {
    -webkit-transform: translateY(-6px) scale(0.8);
    transform: translateY(-6px) scale(0.8);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    font-style: normal;
    z-index: 15;
    background-color: white;
    font-weight: 500;
}
input ~ .input-icon {
    position: absolute;
    font-size: 24px;
    right: 10px;
    z-index: 100;
    height: 24px;
    width: 24px;
    top: 10px;
    color: #989898;
    cursor: pointer;
}
.input-field > .input-icon {
    line-height: 37px;
}
input ~ .input-icon.fa-calendar-alt {
    z-index: 5;
}



.input-checkbox {
    display: block;
    position: relative;
    padding-left: 50px;

    padding-top: 3px;
    padding-right: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 15px;
}
input[type="checkbox"] {
    width: 18px !important;
    height: 18px;
}
.input-checkbox > input{
    display: block;
    float: left;
    width: 18px !important;
    height: 18px;
    min-height: unset;
    line-height: 15px;
    margin: 0 5px 0;
    left: 0;
    top: 3px;
    border: none;
    position: absolute;
    cursor: pointer;
}

.col-xs-1 {
    width: 8.33333%;
}

.col-xs-2 {
    width: 16.66667%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-4 {
    width: 33.33333%;
}

.col-xs-5 {
    width: 41.66667%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-7 {
    width: 58.33333%;
}

.col-xs-8 {
    width: 66.66667%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-10 {
    width: 83.33333%;
}

.col-xs-11 {
    width: 91.66667%;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-pull-1 {
    right: 8.33333%;
}

.col-xs-pull-2 {
    right: 16.66667%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-4 {
    right: 33.33333%;
}

.col-xs-pull-5 {
    right: 41.66667%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-7 {
    right: 58.33333%;
}

.col-xs-pull-8 {
    right: 66.66667%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-10 {
    right: 83.33333%;
}

.col-xs-pull-11 {
    right: 91.66667%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-push-1 {
    left: 8.33333%;
}

.col-xs-push-2 {
    left: 16.66667%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-4 {
    left: 33.33333%;
}

.col-xs-push-5 {
    left: 41.66667%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-7 {
    left: 58.33333%;
}

.col-xs-push-8 {
    left: 66.66667%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-10 {
    left: 83.33333%;
}

.col-xs-push-11 {
    left: 91.66667%;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

.col-xs-offset-1 {
    margin-left: 8.33333%;
}

.col-xs-offset-2 {
    margin-left: 16.66667%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-4 {
    margin-left: 33.33333%;
}

.col-xs-offset-5 {
    margin-left: 41.66667%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-7 {
    margin-left: 58.33333%;
}

.col-xs-offset-8 {
    margin-left: 66.66667%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-10 {
    margin-left: 83.33333%;
}

.col-xs-offset-11 {
    margin-left: 91.66667%;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }
    .col-sm-1 {
        width: 8.33333%;
    }
    .col-sm-2 {
        width: 16.66667%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-4 {
        width: 33.33333%;
    }
    .col-sm-5 {
        width: 41.66667%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-7 {
        width: 58.33333%;
    }
    .col-sm-8 {
        width: 66.66667%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-10 {
        width: 83.33333%;
    }
    .col-sm-11 {
        width: 91.66667%;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-pull-0 {
        right: auto;
    }
    .col-sm-pull-1 {
        right: 8.33333%;
    }
    .col-sm-pull-2 {
        right: 16.66667%;
    }
    .col-sm-pull-3 {
        right: 25%;
    }
    .col-sm-pull-4 {
        right: 33.33333%;
    }
    .col-sm-pull-5 {
        right: 41.66667%;
    }
    .col-sm-pull-6 {
        right: 50%;
    }
    .col-sm-pull-7 {
        right: 58.33333%;
    }
    .col-sm-pull-8 {
        right: 66.66667%;
    }
    .col-sm-pull-9 {
        right: 75%;
    }
    .col-sm-pull-10 {
        right: 83.33333%;
    }
    .col-sm-pull-11 {
        right: 91.66667%;
    }
    .col-sm-pull-12 {
        right: 100%;
    }
    .col-sm-push-0 {
        left: auto;
    }
    .col-sm-push-1 {
        left: 8.33333%;
    }
    .col-sm-push-2 {
        left: 16.66667%;
    }
    .col-sm-push-3 {
        left: 25%;
    }
    .col-sm-push-4 {
        left: 33.33333%;
    }
    .col-sm-push-5 {
        left: 41.66667%;
    }
    .col-sm-push-6 {
        left: 50%;
    }
    .col-sm-push-7 {
        left: 58.33333%;
    }
    .col-sm-push-8 {
        left: 66.66667%;
    }
    .col-sm-push-9 {
        left: 75%;
    }
    .col-sm-push-10 {
        left: 83.33333%;
    }
    .col-sm-push-11 {
        left: 91.66667%;
    }
    .col-sm-push-12 {
        left: 100%;
    }
    .col-sm-offset-0 {
        margin-left: 0%;
    }
    .col-sm-offset-1 {
        margin-left: 8.33333%;
    }
    .col-sm-offset-2 {
        margin-left: 16.66667%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66667%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-7 {
        margin-left: 58.33333%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66667%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66667%;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }
    .col-md-1 {
        width: 8.33333%;
    }
    .col-md-2 {
        width: 16.66667%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-4 {
        width: 33.33333%;
    }
    .col-md-5 {
        width: 41.66667%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-7 {
        width: 58.33333%;
    }
    .col-md-8 {
        width: 66.66667%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-10 {
        width: 83.33333%;
    }
    .col-md-11 {
        width: 91.66667%;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-pull-0 {
        right: auto;
    }
    .col-md-pull-1 {
        right: 8.33333%;
    }
    .col-md-pull-2 {
        right: 16.66667%;
    }
    .col-md-pull-3 {
        right: 25%;
    }
    .col-md-pull-4 {
        right: 33.33333%;
    }
    .col-md-pull-5 {
        right: 41.66667%;
    }
    .col-md-pull-6 {
        right: 50%;
    }
    .col-md-pull-7 {
        right: 58.33333%;
    }
    .col-md-pull-8 {
        right: 66.66667%;
    }
    .col-md-pull-9 {
        right: 75%;
    }
    .col-md-pull-10 {
        right: 83.33333%;
    }
    .col-md-pull-11 {
        right: 91.66667%;
    }
    .col-md-pull-12 {
        right: 100%;
    }
    .col-md-push-0 {
        left: auto;
    }
    .col-md-push-1 {
        left: 8.33333%;
    }
    .col-md-push-2 {
        left: 16.66667%;
    }
    .col-md-push-3 {
        left: 25%;
    }
    .col-md-push-4 {
        left: 33.33333%;
    }
    .col-md-push-5 {
        left: 41.66667%;
    }
    .col-md-push-6 {
        left: 50%;
    }
    .col-md-push-7 {
        left: 58.33333%;
    }
    .col-md-push-8 {
        left: 66.66667%;
    }
    .col-md-push-9 {
        left: 75%;
    }
    .col-md-push-10 {
        left: 83.33333%;
    }
    .col-md-push-11 {
        left: 91.66667%;
    }
    .col-md-push-12 {
        left: 100%;
    }
    .col-md-offset-0 {
        margin-left: 0%;
    }
    .col-md-offset-1 {
        margin-left: 8.33333%;
    }
    .col-md-offset-2 {
        margin-left: 16.66667%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-4 {
        margin-left: 33.33333%;
    }
    .col-md-offset-5 {
        margin-left: 41.66667%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-7 {
        margin-left: 58.33333%;
    }
    .col-md-offset-8 {
        margin-left: 66.66667%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-10 {
        margin-left: 83.33333%;
    }
    .col-md-offset-11 {
        margin-left: 91.66667%;
    }
    .col-md-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }
    .col-lg-1 {
        width: 8.33333%;
    }
    .col-lg-2 {
        width: 16.66667%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-4 {
        width: 33.33333%;
    }
    .col-lg-5 {
        width: 41.66667%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-7 {
        width: 58.33333%;
    }
    .col-lg-8 {
        width: 66.66667%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-10 {
        width: 83.33333%;
    }
    .col-lg-11 {
        width: 91.66667%;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-pull-0 {
        right: auto;
    }
    .col-lg-pull-1 {
        right: 8.33333%;
    }
    .col-lg-pull-2 {
        right: 16.66667%;
    }
    .col-lg-pull-3 {
        right: 25%;
    }
    .col-lg-pull-4 {
        right: 33.33333%;
    }
    .col-lg-pull-5 {
        right: 41.66667%;
    }
    .col-lg-pull-6 {
        right: 50%;
    }
    .col-lg-pull-7 {
        right: 58.33333%;
    }
    .col-lg-pull-8 {
        right: 66.66667%;
    }
    .col-lg-pull-9 {
        right: 75%;
    }
    .col-lg-pull-10 {
        right: 83.33333%;
    }
    .col-lg-pull-11 {
        right: 91.66667%;
    }
    .col-lg-pull-12 {
        right: 100%;
    }
    .col-lg-push-0 {
        left: auto;
    }
    .col-lg-push-1 {
        left: 8.33333%;
    }
    .col-lg-push-2 {
        left: 16.66667%;
    }
    .col-lg-push-3 {
        left: 25%;
    }
    .col-lg-push-4 {
        left: 33.33333%;
    }
    .col-lg-push-5 {
        left: 41.66667%;
    }
    .col-lg-push-6 {
        left: 50%;
    }
    .col-lg-push-7 {
        left: 58.33333%;
    }
    .col-lg-push-8 {
        left: 66.66667%;
    }
    .col-lg-push-9 {
        left: 75%;
    }
    .col-lg-push-10 {
        left: 83.33333%;
    }
    .col-lg-push-11 {
        left: 91.66667%;
    }
    .col-lg-push-12 {
        left: 100%;
    }
    .col-lg-offset-0 {
        margin-left: 0%;
    }
    .col-lg-offset-1 {
        margin-left: 8.33333%;
    }
    .col-lg-offset-2 {
        margin-left: 16.66667%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-4 {
        margin-left: 33.33333%;
    }
    .col-lg-offset-5 {
        margin-left: 41.66667%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-7 {
        margin-left: 58.33333%;
    }
    .col-lg-offset-8 {
        margin-left: 66.66667%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-10 {
        margin-left: 83.33333%;
    }
    .col-lg-offset-11 {
        margin-left: 91.66667%;
    }
    .col-lg-offset-12 {
        margin-left: 100%;
    }
}


/** 1.13 Input Groups */

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

.input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0;
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}

.input-group .form-control:focus {
    z-index: 3;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    padding: 9px 16px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    color: #212121;
    text-align: center;
    background-color: #212121;
    border: 1px solid #212121;
    border-radius: 5px;
}

.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn,
.pagination-classic.input-group-sm > li.input-group-btn > a.input-group-addon,
.pagination-classic.input-group-sm > li.input-group-btn > span.input-group-addon {
    padding: 7px 12px;
    font-size: 15px;
    border-radius: 3px;
}

.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn,
.pagination-classic.input-group-lg > li.input-group-btn > a.input-group-addon,
.pagination-classic.input-group-lg > li.input-group-btn > span.input-group-addon {
    padding: 17px 24px;
    font-size: 17px;
    border-radius: 10px;
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
    margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.pagination-classic > li.input-group-btn:first-child > a,
.pagination-classic > li.input-group-btn:first-child > span,
.input-group-btn:first-child > .element-groups-custom > .btn,
.pagination-classic.input-group-btn:first-child > li.element-groups-custom > a,
.pagination-classic.input-group-btn:first-child > li.element-groups-custom > span,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.pagination-classic > li.input-group-btn:last-child > a:not(:last-child):not(.dropdown-toggle),
.pagination-classic > li.input-group-btn:last-child > span:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .element-groups-custom:not(:last-child) > .btn,
.pagination-classic.input-group-btn:last-child > li.element-groups-custom:not(:last-child) > a,
.pagination-classic.input-group-btn:last-child > li.element-groups-custom:not(:last-child) > span {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.input-group-addon:first-child {
    border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.pagination-classic > li.input-group-btn:last-child > a,
.pagination-classic > li.input-group-btn:last-child > span,
.input-group-btn:last-child > .element-groups-custom > .btn,
.pagination-classic.input-group-btn:last-child > li.element-groups-custom > a,
.pagination-classic.input-group-btn:last-child > li.element-groups-custom > span,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.pagination-classic > li.input-group-btn:first-child > a:not(:first-child),
.pagination-classic > li.input-group-btn:first-child > span:not(:first-child),
.input-group-btn:first-child > .element-groups-custom:not(:first-child) > .btn,
.pagination-classic.input-group-btn:first-child > li.element-groups-custom:not(:first-child) > a,
.pagination-classic.input-group-btn:first-child > li.element-groups-custom:not(:first-child) > span {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.input-group-addon:last-child {
    border-left: 0;
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

.input-group-btn > .btn,
.pagination-classic > li.input-group-btn > a,
.pagination-classic > li.input-group-btn > span {
    position: relative;
}

.input-group-btn > .btn + .btn,
.pagination-classic > li.input-group-btn > a + .btn,
.pagination-classic > li.input-group-btn > span + .btn,
.pagination-classic > li.input-group-btn > .btn + a,
.pagination-classic > li.input-group-btn > a + a,
.pagination-classic > li.input-group-btn > span + a,
.pagination-classic > li.input-group-btn > .btn + span,
.pagination-classic > li.input-group-btn > a + span,
.pagination-classic > li.input-group-btn > span + span {
    margin-left: -1px;
}

.input-group-btn > .btn:hover,
.pagination-classic > li.input-group-btn > a:hover,
.pagination-classic > li.input-group-btn > span:hover,
.input-group-btn > .btn:focus,
.pagination-classic > li.input-group-btn > a:focus,
.pagination-classic > li.input-group-btn > span:focus,
.input-group-btn > .btn:active,
.pagination-classic > li.input-group-btn > a:active,
.pagination-classic > li.input-group-btn > span:active {
    z-index: 2;
}

.input-group-btn:first-child > .btn,
.pagination-classic > li.input-group-btn:first-child > a,
.pagination-classic > li.input-group-btn:first-child > span,
.input-group-btn:first-child > .element-groups-custom {
    margin-right: -1px;
}

.input-group-btn:last-child > .btn,
.pagination-classic > li.input-group-btn:last-child > a,
.pagination-classic > li.input-group-btn:last-child > span,
.input-group-btn:last-child > .element-groups-custom {
    z-index: 2;
    margin-left: -1px;
}


/** 1.23 Alerts */

.alert {
    padding: 8px 15px;
    border-radius: 5px;
}

.alert h4 {
    margin-top: 0;
    color: inherit;
}

.alert .alert-link {
    font-weight: bold;
}

.alert > p,
.alert > ul {
    margin-bottom: 0;
}

.alert > p + p {
    margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
    padding-right: 12px;
}

.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}

.alert-success {
    background-color: #49C15B;
    border-color: #49C15B;
    color: #fff;
}

.alert-success hr {
    border-top-color: #9bba2f;
}

.alert-success .alert-link {
    color: #6ba839;
}

.alert-info {
    background-color: #79ccf2;
    border-color: #79ccf2;
    color: #64aae1;
}

.alert-info hr {
    border-top-color: #62c3f0;
}

.alert-info .alert-link {
    color: #3993d9;
}

.alert-warning {
    background-color: #f5bf2f;
    border-color: #f5bf2f;
    color: #000;
}

.alert-warning hr {
    border-top-color: #f4b817;
}

.alert-warning .alert-link {
    color: #ee8d0f;
}

.alert-sewobe {
    background-color: #ececec;
    border-color: #ececec;
    color: #121212;
}

.alert-sewobe .alert-link {
    color: #E8E8E8;
}

.alert-danger {
    background-color: #DA0300;
    color: white;
}

.alert-danger hr {
    border-top-color: #e14209;
}

.alert-danger .alert-link {
    color: #b40808;
}


/** 1.26 List Group */

.list-group {
    margin-bottom: 20px;
    padding-left: 0;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
}

.list-group-item:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

a.list-group-item,
button.list-group-item {
    color: #555;
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
    color: #333;
}

a.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f7f7f7;
}

button.list-group-item {
    width: 100%;
    text-align: left;
}

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
    background-color: #f5f5f5;
    color: #f2f2f2;
    cursor: not-allowed;
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
    color: inherit;
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
    color: #f2f2f2;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #42b574;
    border-color: #42b574;
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit;
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
    color: #fff;
}

.list-group-item-success {
    color: #84c450;
    background-color: #abcc37;
}

a.list-group-item-success,
button.list-group-item-success {
    color: #84c450;
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
    color: inherit;
}

a.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
    color: #84c450;
    background-color: #9bba2f;
}

a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #84c450;
    border-color: #84c450;
}

.list-group-item-info {
    color: #64aae1;
    background-color: #79ccf2;
}

a.list-group-item-info,
button.list-group-item-info {
    color: #64aae1;
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
    color: inherit;
}

a.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
    color: #64aae1;
    background-color: #62c3f0;
}

a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #64aae1;
    border-color: #64aae1;
}

.list-group-item-warning {
    color: #F3A43D;
    background-color: #f5bf2f;
}

a.list-group-item-warning,
button.list-group-item-warning {
    color: #F3A43D;
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
    color: inherit;
}

a.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
    color: #F3A43D;
    background-color: #f4b817;
}

a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #F3A43D;
    border-color: #F3A43D;
}

.list-group-item-danger {
    color: #e50a0a;
    background-color: #f54b0f;
}

a.list-group-item-danger,
button.list-group-item-danger {
    color: #e50a0a;
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
    color: inherit;
}

a.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
    color: #e50a0a;
    background-color: #e14209;
}

a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #e50a0a;
    border-color: #e50a0a;
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
}


/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

.fa-cloud-upload:before {
    content: "\f0ee";
}

.fa-angle-right:before {
    content: "\f105";
}

.fa-angle-down:before {
    content: "\f107";
}

.fa-file-text-o:before {
    content: "\f0f6";
}

.fa-download:before {
    content: "\f019";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044";
}

[class*='fa-']:before {
    font-weight: 400;
    font-family: 'FontAwesome';
}

h3 {
    margin-top: 60px;
    margin-bottom: 25px;
}


/*The Hemmpire strikes back*/

h3.label_dateiuploader, h3.label_dateiuploader_pflicht {
    font-size: 18px;
    margin-top: 5.5px;
    margin-bottom: 5px;
    height: max-content;
    border-radius: 4px;
    color: rgba(0, 130, 68, 1);
}

.formularlabel {
    font-size: 16px;
}


.col-sm-12.col-md-12.col-lg-12 #testen:first-child {
    margin-top: 20px;
}

.contentmiddle {
    /*liegt hinter den Symbolen oben*/
    margin-left: 61px;
    /*koennen mit der Margin verschoben werden*/
    margin-top: 40px;
}

img.ui-datepicker-trigger:hover {
    cursor: pointer;
    background: #dcdcdc;
}

.text-mantis i.fa {
    font-size: 25px;
    padding-right: 10px;
}

div#profil_button {
    padding-bottom: 15px;
}

h1,
.h1 {
    margin-left: 15px;
}

#GEBDATUM {
    border-radius: 4px;
}

.pflicht:after {
    content: "*";
    color: red;
}

.formBoxBelow strong {
    font-family: "Lato", Helvetica, Arial, sans-serif;
    color: #6f707e;
}

ul li {
    font-family: "Lato", Helvetica, Arial, sans-serif;
    color: #6f707e;
}

.formFieldContainer {
    max-width: 800px;
}


.formFieldContainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerContentItem strong {
    display: block;
    font-weight: 700;
    font-size: 16pt;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
}
.headerContentItem i, .headerContentItem i.fa{
    font-size: 80px;
}

#header {
    min-height: 350px;
    width: 100%;
    background-color: rgba(0, 130, 68, 1);
    padding: 0px;
    top: 0;
    left: 0;
    top: 3px;
    border: none;
    position: absolute;
    cursor: pointer;
}

.btn {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    margin: 2px 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 8px 12px;
    margin: 12px 7.5px 0;
    font-size: inherit;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
    display: block;
    width: calc(100% - 15px);
}

.btn svg {
    height: 14px;
}

.btn:hover,
.btn:active,
.btn:focus {
    cursor: pointer;
    opacity: .6;
}
a {
    text-decoration: underline;
    cursor: pointer;
}
.newsletter > div {
    clear: both;
}
footer a {
    text-decoration: none;
    padding: 15px;
    border-radius: 4px;
}
/* Mediaquerys */
@media all and (max-width: 800px) {
    .nav-item {
        line-height: 25px;
    }

    .nav-item svg {
        width: 25px;
        height: 25px;
        flex: 0 0 25px;
    }

    .nav-item h2 {
        font-size: 18px;
    }
}

@media all and (max-width: 575px) {
    .nav-item {
        flex: 0 0 calc(100% - 20px);
    }
}

/* Colors */
.input-field > input:active, .input-field > input:focus, .input-field > select:active, .input-field > select:focus, .input-field > textarea:active, .input-field > textarea:focus,
.datepicker table tr td.selected, .datepicker table tr td.selected.highlighted,
input[class*="pflicht"],
select[class*="pflicht"],
textarea[class*="pflicht"] {
    border-color: rgba(0, 130, 68, 1);
}

.input-checkbox > input:checked ~ .checkmark,
.text-primary,
.btn,
.input-field input ~ label.filled,
.input-field input:active ~ label,
.input-field input:focus ~ label,
.input-field select ~ label.filled,
.input-field select:active ~ label,
.input-field select:focus ~ label,
.input-field textarea ~ label.filled,
.input-field textarea:active ~ label,
.input-field textarea:focus ~ label,
.nav-item,
h1,
h2,
a,
.datepicker table tr td.today,
.datepicker table tr th.dow{
    color: rgba(0, 130, 68, 1);
}

.btn-primary,
.nav-item.active,
footer a,
.datepicker table tr td.active, .datepicker table tr td.active.highlighted,
.datepicker table tr td.selected, .datepicker table tr td.selected.highlighted,
.datepicker table tr td.day:not(.active):hover, .datepicker table tr td.focused,
.datepicker{
    background-color: rgba(0, 130, 68, 1);
}

.nav-item.active {
    background-color: rgba(0, 130, 68, .38);
}


.btn-primary,
footer a{
    color: #FBFBFB;
}


.btn-plain {
    background-color: transparent;
    color: rgba(0, 130, 68, 1);
    border-color: rgba(0, 130, 68, 1);
}

input ~ .input-icon.fa-calendar-alt svg {
    fill: rgba(0, 130, 68, 1);
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
    user-select: none;
}

/* neues Design der Pflichtfeld-Fehlermeldungen Beginn*/
.error-container:not(:empty), .success-container:not(:empty) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 10%;
    left: 50%;
    width: 50%;
    max-width: 550px;
    transform: translate(-50%, 0);
    z-index: 100;

    color: black;
    background-color: #fefefe;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.12) 3px 2px 8px, rgba(0, 0, 0, 0.24) 1px 2px 8px;
    padding: 15px 15px 0 15px;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
}

.error-container:hover, .success-container:hover {
    .timer-bar {
        animation-play-state: paused;
    }
    animation-play-state: paused;
}

.success-container#ok, .error-container#fehler {
    position: relative;
    width: 100% !important;
    max-width: 100%;
}

.timer-bar-success {
    background-color: #00b300;
}

.timer-bar-error {
    background-color: red;
}

.timer-bar {
    height: 4px;
    width: calc(100% + 30px);
    margin-top: 15px;
    margin-left: -15px;
    opacity: 0.8;
    animation: closing-timer var(--timerDuration) linear forwards;
    transform-origin: left center;
    border-bottom-left-radius: 5px;
}

.fade-out {
    animation: fade-out 0.5s ease forwards;
    animation-delay: var(--timerDuration);
}

.wrapper {
    display: flex;
    flex-direction: column;
}

.icon-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

@keyframes closing-timer {
    to {
        transform: scaleX(0);
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* Neues Design der Pflichtfeld Fehlermeldungen Ende */

/* AllocationTable Beginn */
.zuweisungsliste {
    padding: 0 9px 0 9px;
}

.swbATWrapper {
    max-height: 230px;
    border-radius: 4px;
}

.swbATSearchBar {
    margin-bottom: 10px;
}

ul.swbATList {
    border: 1px solid #D8D8D8;
    border-radius: 4px;
    list-style-type: none;
    height: 150px;
    overflow: auto;
}

ul.swbATList>li {
    display: flex;
    padding: 5px;

    &.checked {
        color: white;
        background-color: rgba(0, 130, 68, .75);

        &::before {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 448 512'%3E%3Cstyle%3Esvg%7Bfill:%23ffffff%7D%3C/style%3E%3Cpath d='M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16H64zM0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
        }
    }

    &:hover {
        cursor: pointer;
        color: white;
        background-color: rgba(0, 130, 68, 1);

        &.checked {
            &::before {
                content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 448 512'%3E%3Cstyle%3Esvg%7Bfill:%23ffffff%7D%3C/style%3E%3Cpath d='M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16H64zM0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
            }
        }

        &:not(.checked) {
            &::before {
                content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 448 512'%3E%3Cstyle%3Esvg%7Bfill:%23ffffff%7D%3C/style%3E%3Cpath d='M384 80c8.8 0 16 7.2 16 16V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16H384zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z'/%3E%3C/svg%3E");
            }
        }
    }

    &::before {
        margin: 0px 7px 0px 2px;
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 448 512'%3E%3Cstyle%3Esvg%7Bfill:%23434345%7D%3C/style%3E%3Cpath d='M384 80c8.8 0 16 7.2 16 16V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16H384zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z'/%3E%3C/svg%3E");
    }

    &:first-of-type {
        border-radius: 3px 0 0 0;
    }

    &:last-of-type {
        border-radius: 0 0 3px 0;
    }
}

.swbATActionBar {
    float: right;
    font-size: 14px;
}
/* AllocationTable Ende */