@import url('https://fonts.googleapis.com/css?family=Arimo:400,400i,700');
@import url('/templates/css/skeleton/colors.css');


.full-width, .two-halfs, .three-thirds,
.four-fourhts, .five-fifths, .six-sixths,
.one-half, .two-fourths, .three-sixths,
.one-third, .two-sixths, .two-thirds,
.four-sixths, .one-fourth, .three-fourths,
.one-fifth, .two-fifths, .three-fifths,
.four-fifths, .one-sixth, .five-sixths {
    float: left;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.full-width, .two-halfs, .three-thirds, .four-fourhts, .five-fifths, .six-sixths{ width: 100%; }
.one-half, .two-fourths, .three-sixths{ width: 50%; }
.one-third, .two-sixths{ width: 33.3333333333333333333%; }
.two-thirds, .four-sixths{ width: 66.6666666666666666666%; }
.one-fourth{ width: 25%; }
.three-fourths{ width: 75%; }
.one-fifth{ width: 20%; }
.two-fifths{ width: 40%; }
.three-fifths{ width: 60%; }
.four-fifths{ width: 80%; }
.one-sixth{ width: 16.6666666666666666666%; }
.five-sixths{ width: 83.33333333333333333333%; }




body{
    margin: 0;
    padding: 0;
    font-family: 'Arimo', Arial, sans-serif;
    font-size: 16px;
    color: #929292;
}


h1{ font-size: 1.6rem; }
h2{ font-size: 1.4rem; }
h3{ font-size: 1.3rem; }
h4{ font-size: 1.2rem; }
h5{ font-size: 1.1rem; }


header.header--login{
    width: 100%;
    height: 400px;

    text-align: center;
}

header.header--login .logo {
    max-width: 300px;
    height: 100px;
    margin-top: 100px;
    display: inline-block;
}

header.header--login .logo img {

    width: auto;
    max-height: 100%;
    max-width: 100%;
}

main a{
    text-decoration: none;
}

main.page--login{
    height: calc(100vh - 400px);
}
main.page--login .login-container{
    background: #ffffff;

    position: relative;
    top: -150px;

    width: 470px;
    padding: 40px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    margin: 0 auto;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);

    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}
main.page--login .login-container h2{
    margin: 0;
}
main.page--login .login-container label.small{
    font-size: 10px;
    margin-top: 20px;
    width: 100%;
    padding: 5px 0;
    display: block;
}
main.page--login .login-container input[type="text"],
main.page--login .login-container input[type="password"]{
    width: 100%;
    font-size: 16px;
    font-family: 'Arimo',Arial, sans-serif;

    padding: 10px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #929292;
    
    border: 2px solid #DEDEDE;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
main.page--login .login-container .control{
    margin-top: 20px;
}

main.page--login .login-container button{
    margin-top: 40px;
}


main.page--login .login-container #form{
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    opacity: 1;
}
main.page--login .login-container #form.hide{
    opacity: 0;
}

main.page--login .login-container #wait {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    text-align: center;

    font-size: 24px;

    opacity: 0;
    display: none;

}
main.page--login .login-container #wait.show {
    opacity: 1;
}

main.page--login .login-container #wait span.w2{
    display: none;
    opacity: 0;
}
main.page--login .login-container #error-string{
    width: 100%;
    padding: 10px;
    color: #f44336;
    border: 3px solid #f44336;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
    margin-top: 10px;
}
main.page--login .login-container #error-string i{
    width: 10%;
    float: left;
}
main.page--login .login-container #error-string span{
    width: 90%;
    position: relative;
    top: 3px;
    display: block;
    float: left;
}

.notice--debug i{
    font-size: 20px;
    position: relative;
    top: 3px;
}
.notice--debug{
    width: 100%;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.notice--debug.red{
    background: #f44336;
    color: #FFF;
}
.notice--debug.blue{
    background: #3f51b5;
    color: #FFF;
}
.notice--debug a{
    color: #FFF;
    text-decoration: none;
}


main.page--main{
    min-height: calc(100vh - 160px);

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    padding-top: 60px;
}


.kdnr-card{
    width: 20.5%;
    margin: 30px 3%;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    line-height: 26px;
    display: block;
    float: left;
    background: #FFF;
    border-radius: 4px;

    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    border: 1px solid #CCC;
}

.kdnr-card:hover{
    -webkit-box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.5);
    box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.5);
}

.kdnr-card .kdnr{
    display: block;
    font-weight: 700;
    font-size: 24px;
}

.kdnr-card:nth-child(4n+1){
    margin-left: 0;
}
.kdnr-card:nth-child(4n){
    margin-right: 0;
}

.kdnr-chooser{
    display: block;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;

    width: 160px;
    background: #FFF;
    border-radius: 4px;
    margin-bottom: 20px;

    border: 1px solid #CCC;
    float: right;
    position: relative;
    z-index: 9999;
}
.kdnr-chooser .aktuell{
    font-size: 12px;
    display: block;
}
.kdnr-chooser .wechseln{
    font-size: 12px;
    display: block;
}
.kdnr-chooser .kdx{
    font-size: 18px;
    font-weight: 700;
    display: block;
}
.kdnr-chooser .kdd{
    font-size: 14px;
    font-weight: 400;
    display: block;
}

button, .button,.paginate_button{
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    padding: 10px 20px;
    cursor: pointer;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;

    text-decoration: none;
}
button i, .button i{
    font-size: 18px !important;
    position: relative;
    top: 3px;
    padding-right: 10px;
}

button:hover, .button:hover,.paginate_button:hover {
    background: #ffffff;
}
button.full-width, .button.full-width{
    width: 100%;
}
.button.disabled{
    cursor: default;
}

.button.minor, .paginate_button.disabled, .button.disabled, .button.disabled:hover{
    background: #999;
    border-color: #999 !important;
    color: #FFF !important;
}
.button.minor:hover, .paginate_button.disabled:hover{
    background: #BBB;
    color: #ffffff !important;
}
.button.cancel{
    background: #f44336;
}
.button.cancel:hover{
    background: #e57373;
}



.error-message{
    border: 3px solid #f44336;

    color: #f44336;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    
    padding: 20px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    line-height: 1.5em;

    margin-bottom: 20px;
    background: #ffebee;
}

.error-message i{
    font-size: 20px;
    position: relative;
    top: 2px;
}
.error-message strong{
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
}
.error-message ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}





header.header--main{
    width: 100%;
    height: 100px;
}


header.header--main .logo{
    position: absolute;
    height: 40px;
    top: 30px;
    left: 50px;
}
header.header--main .logo img{
    height: 100%;
    width: auto;
}

header.header--main nav{
    text-align: right;
}
header.header--main nav ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
header.header--main nav ul li{
    display: inline-block;
    margin-right:20px;
}
header.header--main nav ul li a{
    font-size: 16px;
    color: #FFF;
    font-weight: 700;
    line-height: 16px;
    padding: 42px 20px;
    display: inline-block;
    text-decoration: none;

    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}









footer{
    height: 60px;
    font-size: 14px;
    line-height: 14px;
    padding: 23px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    border-top: 1px solid #DEDEDE;
    color: #AAA;
}

footer a {
    text-decoration: none;
    color: #AAA;
}

footer .center{
    text-align: center;
}

footer .right{
    text-align: right;
}
footer .right a{
    color: #DEDEDE;
}













.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 16px;
    line-height: 26px;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #FFF;
    border: 2px solid #DEDEDE;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}
.control--radio .control__indicator {
    border-radius: 50%;
}
.control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control__indicator:after {
    display: block;
}
.control--checkbox .control__indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
}
.control--radio .control__indicator:after {
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #fff;
}
.control--radio input:disabled ~ .control__indicator:after {
    background: #7b7b7b;
}
label.control{
    text-transform: none;
    text-align: left;
    font-size: 14px;
    width: calc(100% - 30px);
}

.loading-spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
    width: 65px;
    height: 65px;
}

@-webkit-keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

@keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

.loading-path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

/* ***************************************** *
 * MEDIA                                     *
 * ***************************************** */

@media only screen and (max-width: 1199px) {
}

@media only screen and (max-width: 959px) {
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 479px) {
}
