﻿legend {
    font-size: 20px;
}

.k-button {
    text-transform: none;
}

/* DateTimepicker muss man sich noch für die Auflösung xs ansehen. Wenn man das fenster ganz klein zieht ist der Datepicker nichtmehr 
komplett sichtbar. */
.k-datetimepicker, .k-combobox, .k-dropdown {
    width: 100%;
    /*Maxwidth wegen Smartphones u. Tables, die dehnen sich sonst zu weit wenn die nur einzeilig angezeigt werden.*/
    max-width: 307px;
}

.filterCheckBoxSelection {
    height: 300px;
    overflow: scroll;
}

.jahaRadioButton {
    margin-right: 20px;
}

.loader {
    padding: 10px;
    display: none;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 35px;
    height: 35px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
