/* .form-control {
    font-size: 1.4rem;
    border-color: var(--brand-color);
    border-width: 2px;
    border-radius: 0;
}
.form-control::placeholder {
    color: #b7bdb6;
    font-weight: bold;
} */

input:not([type=submit]):not([type=file]):not([type=radio]):not([type=checkbox]),
select,
select.form-control {
    padding-bottom: .2rem;
    height: calc(1.5em + .575rem + 2px);
    line-height: normal;
    border: 1px solid black;
    border-radius: 0;
    background: white;
}

input.masked {
    height: calc(1.5em + .575rem + 5px) !important;
    font-family: monospace, monospace;
    font-size: 14px;
}

.custom-file {
    height: 35px;
    color: var(--brand-color);
    background-color: white;
    border: 1px solid black;
    border-radius: 0;
}

.custom-file-label {
    height: 33px;
    background-color: rgba(0, 0, 0, 0);
    font-weight: normal;
    text-align: left;
    border: none;
    border-radius: 0;
}

.custom-file-label::after {
    border-radius: 0;
}

.custom-file-input {
    font-size: 18px;
}

.custom-file-input~.custom-file-label::after {
    content: "Auswählen";
    right: -1px;
    color: white;
    font-weight: 100;
    font-size: 1rem;
    background-color: var(--brand-color);
}

.input-group-text {
    padding-top: 5px;
    padding-bottom: 5px;
    border-color: var(--brand-color);
    border-width: 2px;
    border-radius: 0;
    border-right: none;
    background-color: transparent;
}

.input-group>.form-control:not(:first-child) {
    border-left: none;
}

.mat-error {
    color:#dc3545;
}

.mat-checkbox {
    display: inline-flex;
    flex-wrap: wrap;
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    font-weight: normal;
    cursor: pointer;
    min-height: 33px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: center;
}

.mat-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
}

.mat-checkbox i {
    font-style: normal;
}

.mat-checkbox span {
    position: absolute;
    top: 6px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid black;
}

.mat-checkbox:hover input~span {
    background-color: #eee;
}

.mat-checkbox input:checked~span {
    background-color: var(--brand-color);
}

.mat-checkbox span:after {
    content: "";
    position: absolute;
    display: none;
}

.mat-checkbox input:checked~span:after {
    display: block;
}

.mat-checkbox span:after {
    left: 6px;
    top: 2px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.button-primary {
    display: inline-block;
    padding: 8px 1rem 5px;
    color: white;
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
    background-image: none;
    background-color: var(--brand-color);
    background-clip: padding-box;
    background: linear-gradient(0deg, rgba(211, 14, 67, 1) 0%, rgba(204, 0, 51, 1) 48%, rgba(199, 14, 64, 1) 53%, rgba(191, 0, 61, 1) 100%);
    border: 0;
    border-radius: 0.75em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease-in-out;
}

.button-primary i {
    margin-right: 0.3em;
    font-size: 0.9em;
}

.button-primary:focus {
    color: white;
    text-decoration: none;
    outline: 0;
}

.button-primary:hover {
    color: white;
    text-decoration: none;
    background-color: var(--brand-color);
    box-shadow: 0 1px 6px #000000;
}

@media (max-width: 991.98px) {}