﻿@charset "UTF-8";

a.closeX {
    position: absolute;
    right: -5px;
    top: 0px;
    width: 20px;
    background: #605F61;
    color: #FFF;
    margin-top: -5px;
    margin-right: -5px;
    border-radius: 20px;
    padding-left: 3px;
    padding-top: 1px;
    cursor: pointer;
    z-index: 10;
    font-size: 16px;
    font-weight: bold;
}

.pagination2 {
    float: right;
    background: #ff0001;
}

.pagination-ys {
    /*display: inline-block;*/
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination-ys table > tbody > tr {
    float: right;
}

.pagination-ys table > tbody > tr > td {    
    margin-left: 7px;
    border-top: 0px;
    border-bottom: 0px;
    padding: 0px 0px;
}

    .pagination-ys table > tbody > tr:last-child th,
    .pagination-ys table > tbody > tr:last-child td {
        border-bottom: 0px;
    }

    .pagination-ys table > tbody > tr > td > a,
    .pagination-ys table > tbody > tr > td > span {
        position: relative;
        float: left;
        padding: 9px 14px;
        line-height: 1.42857143;
        text-decoration: none;
        color: #6a625a;
        background-color: #f0efee;
        border: 0px;
        margin-left: 6px;
    }

    .pagination-ys table > tbody > tr > td > span {
        position: relative;
        float: left;
        padding: 9px 14px;
        line-height: 1.42857143;
        text-decoration: none;
        margin-left: 6px;
        z-index: 2;
        color: #f0efee;
        background-color: #6a625a;
        border-color: #dddddd;
        border: 0px;
        cursor: default;
    }

/*.pagination-ys table > tbody > tr > td:first-child > a,
.pagination-ys table > tbody > tr > td:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.pagination-ys table > tbody > tr > td:last-child > a,
.pagination-ys table > tbody > tr > td:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}*/

        .pagination-ys table > tbody > tr > td > a:hover,
        .pagination-ys table > tbody > tr > td > span:hover,
        .pagination-ys table > tbody > tr > td > a:focus,
        .pagination-ys table > tbody > tr > td > span:focus {            
            background-color: #f0efee;
            border-color: #dddddd;
            border: 1px;
        }

input[type=checkbox] + span.icon {
    background-color: white;
}

/* alte Popup-Styles (temporär noch aufheben) */
/*
.modalBackground {
    background-color: none;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

.modalPopup {
    background-color: whitesmoke;
    border-width: 3px;
    border-style: solid;
    border-color: #285582;
    padding: 3px;
}
*/

/* Experimental: Popup-Positions-Problematik */

.das-modal {
    /*display: none;*/
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.das-modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.das-modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}

.das-modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.hyperlinkbutton {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    position: relative;
    border: 1px solid #006cb2;
    padding: 7px 15px 5px 15px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    background-color: #006cb2;
    text-decoration: none;
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hyperlinkbutton:hover {
        color: #ffffff;
        background-color: #005a94;
        border: 1px solid #005a94;
    }

.highlight {
    color: red;
    font-weight: bold;
}

.spinner-text {
    font-weight: bold;
    font-size: 21px;
    color: white;
    position: absolute;
    left: 50%;
    top: 70%;
    margin-left: -200px;
    opacity: 0.9;
    -moz-opacity: 0.95;
}

.center-div {
    width: 300px;
    height: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -150px;
}

.spinner {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
    z-index: 1000;
}

.linkbutton-list {
    line-height: 25px;
}

.pflichtangaben .grau {
    margin-top: 5px;
    line-height: 25px;
    font-weight: normal;
    color: #404040;
}


.spinner-bar {
    position: absolute;
    left: 0.48em;
    bottom: 0;
    width: 3px;
    height: 18px;
    border-radius: 0.5em;
    background-color: transparent;
    transform-origin: center -22px;
    -webkit-animation: spin-around 1s infinite linear;
    animation: spin-around 1s infinite linear;
}

    .spinner-bar:nth-child(1) {
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
        -webkit-transform: rotate(0deg);
    }

    .spinner-bar:nth-child(2) {
        -webkit-animation-delay: 0.077s;
        animation-delay: 0.077s;
        -webkit-transform: rotate(30deg);
    }

    .spinner-bar:nth-child(3) {
        -webkit-animation-delay: 0.154s;
        animation-delay: 0.154s;
        -webkit-transform: rotate(60deg);
    }

    .spinner-bar:nth-child(4) {
        -webkit-animation-delay: 0.307s;
        animation-delay: 0.307s;
        -webkit-transform: rotate(90deg);
    }

    .spinner-bar:nth-child(5) {
        -webkit-animation-delay: 0.385s;
        animation-delay: 0.385s;
        -webkit-transform: rotate(120deg);
    }

    .spinner-bar:nth-child(6) {
        -webkit-animation-delay: 0.462s;
        animation-delay: 0.462s;
        -webkit-transform: rotate(150deg);
    }

    .spinner-bar:nth-child(7) {
        -webkit-animation-delay: 0.538;
        animation-delay: 0.538s;
        -webkit-transform: rotate(180deg);
    }

    .spinner-bar:nth-child(8) {
        -webkit-animation-delay: 0.615s;
        animation-delay: 0.615s;
        -webkit-transform: rotate(210deg);
    }

    .spinner-bar:nth-child(9) {
        -webkit-animation-delay: 0.692s;
        animation-delay: 0.692s;
        -webkit-transform: rotate(240deg);
    }

    .spinner-bar:nth-child(10) {
        -webkit-animation-delay: 0.769s;
        animation-delay: 0.769s;
        -webkit-transform: rotate(270deg);
    }

    .spinner-bar:nth-child(11) {
        -webkit-animation-delay: 0.846s;
        animation-delay: 0.846s;
        -webkit-transform: rotate(300deg);
    }

    .spinner-bar:nth-child(12) {
        -webkit-animation-delay: 0.923s;
        animation-delay: 0.923s;
        -webkit-transform: rotate(330deg);
    }

@-webkit-keyframes spin-around {
    0% {
        background-color: #7c8591;
    }

    100% {
        background-color: transparent;
    }
}

@keyframes spin-around {
    0% {
        background-color: #7c8591;
    }

    100% {
        background-color: transparent;
    }
}
