﻿.pszahlen {
    /*
   * Farben
   */
    /*
   * Breakpoints
   */
    /*
   * Schriftgrößen
   */
    /* **************************************************************************
     * ********************************* DESKTOP ********************************
     * *********************************************************************** */
    /*
     * Links.
     */
    /*
     * Headlines (Stufe 1)
     */
    /*
     * Headlines (Stufe 2)
     */
    /*
     * Tabellen.
     */
    /*
     * Stellt ein Element als Inline-Element dar.
     */
    /*
     * Blendet ein Element auf dem Desktop aus.
     */
    /*
     * Blendet ein Element auf mobilen Geräten aus.
     */
    /*
     * Linksbündige Ausrichtung.
     */
    /*
     * Rechtsbündige Ausrichtung.
     */
    /*
     * Zentrierte Ausrichtung.
     */
    /*
     * Die Navigation (Desktop).
     */
    /*
     * Weißer Block (grauer Separator).
     */
    /*
     * Weißer Block (kein Separator).
     */
    /*
     * Weißer Block für Tabellen.
     */
    /*
     * Grauer Block (kein Separator).
     */
    /*
     * Zeile.
     */
    /*
     * Basisklasse für IF-6-Abschlussbuttons.
     */
    /*
     * Ein primärer IF-6-Abschlussbutton (Aktiviert).
     */
    /*
     * Ein primärer IF-6-Abschlussbutton (Deaktiviert).
     */
    /*
     * "Gerahmter Pfeil" für primären IF-6-Abschlussbutton.
     */
    /*
     * "Gerahmter Pfeil" für primären IF-6-Abschlussbutton bei Mouse-Over.
     */
    /*
     * Ein sekundärer IF-6-Abschlussbutton.
     */
    /*
     * Ein "Hinzufügen"-Button für Losnummern bzw. Losbereiche.
     */
    /*
     * Dekoration für den "Hinzufügen"-Button.
     */
    /*
     * Blendet ein Element auf mobilen Geräten aus.
     */
    /* **************************************************************************
     * ********************************* TABLET *********************************
     * *********************************************************************** */
    /* **************************************************************************
     * ********************************* SPHONE *********************************
     * *********************************************************************** */
}

.pszahlen *,
.pszahlen *:before,
.pszahlen *:after {
    box-sizing: border-box;
}

.pszahlen * {
    line-height: 1.3;
}

.pszahlen .spinner {
    margin-top: 45px;
    margin-bottom: 45px;
    text-align: center;
}

@keyframes pszahlen_spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pszahlen .spinner .pszahlen_spin {
    animation: spin 1s infinite linear;
    transform-origin: 16px 16px;
}

.pszahlen .spinner svg {
    display: inline-block;
    vertical-align: middle;
    transform: scale(1.85);
}

@media (max-width: 999px) {
    .pszahlen .spinner {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .pszahlen .spinner svg {
        transform: scale(0.75);
    }
}

.pszahlen .error-message {
    padding: 20px 0;
    text-align: center;
    color: #f00;
}

@media (max-width: 999px) {
    .pszahlen .error-message {
        padding: 10px 0;
    }
}

.pszahlen span.checkbox {
    background-color: white;
}

.pszahlen .column-checkbox.invalid span.checkbox::before {
    border: 2px solid red;
}

.pszahlen .trashcan {
    cursor: pointer;
    display: inline-block;
}

.pszahlen .trashcan::after {
    content: "\F721";
    font: 40px/81% Pictos-IF;
    margin-right: 10px;
    color: #f00;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-bottom: -2px;
    pointer-events: none;
}

.pszahlen .trashcan-big {
    cursor: pointer;
    float: left;
}

.pszahlen .trashcan-big::after {
    content: "\F721";
    font: 25px/81% Pictos-IF;
    margin-left: 10px;
    color: #000;
    display: inline-block;
    width: 27px;
    height: 27px;
    margin-bottom: -2px;
    pointer-events: none;
    border: 1px solid #777;
    border-radius: 50%;
}

.pszahlen .wblock-modal {
    width: auto !important;
    background: white !important;
    transparency: 100% !important;
    padding: 20px;
}

.pszahlen .wblock-modal p {
    margin-bottom: 20px;
    line-height: 150%;
}

.pszahlen input.invalid,
.pszahlen select.invalid {
    border: 2px solid red;
}

.pszahlen .select-modified {
    /* Drop-Down-Button im Firefox ausblenden */
    -moz-appearance: none;
}

.pszahlen .select-modified::-ms-expand {
    display: none;
}

.pszahlen .select-modified:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #777;
}

.pszahlen .image-modal-container a.close-icon {
    text-decoration: none !important;
}

.pszahlen .image-modal-container .image-modal-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3000;
}

.pszahlen .image-modal-container .image-modal-window {
    outline: 10px solid rgba(0, 0, 0, 0.2) !important;
    display: inline-block;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 574px !important;
}

.pszahlen .image-modal-container .image-modal-window img {
    max-width: 534px;
    vertical-align: middle;
}

@media (max-width: 999px) {
    .pszahlen .image-modal-container .image-modal-overlay {
        padding: 10px 40px;
    }

    .pszahlen .image-modal-container .image-modal-window {
        outline-width: 5px !important;
        width: auto !important;
        margin: auto !important;
    }

    .pszahlen .image-modal-container .wblock-modal {
        padding: 15px 10px;
    }

    .pszahlen .image-modal-container img {
        max-height: calc(100vh - 100px);
        max-width: calc(100vw - 100px);
        vertical-align: middle;
    }
}

@media (max-width: 480px) {
    .pszahlen .image-modal-container .image-modal-overlay {
        padding: 10px;
    }

    .pszahlen .image-modal-container .image-modal-window img {
        max-height: calc(100vh - 60px);
        max-width: calc(100vw - 60px);
    }
}

@media (max-width: 999px) {
    .pszahlen .halved1 {
        width: 50% !important;
        padding: 0 0px;
        padding-right: 5px;
    }

    .pszahlen .halved2 {
        width: 50% !important;
        padding: 0 0px;
        padding-left: 5px;
    }

}

.pszahlen .tinytext {
    color: #000;
}

.pszahlen .padded {
    padding: 10px;
    border-top: 1px solid #777;
}

.pszahlen .total {
    color: black;
    border-top: 4px solid #777;
}

.pszahlen .column-checkbox {
    vertical-align: top;
    display: inline-block;
    width: 4%;
}

.pszahlen .column-text {
    display: inline-block;
    width: 95%;
}

.pszahlen label.invalid {
    color: #f00;
}

.pszahlen a {
    color: #f00;
    cursor: pointer;
    text-decoration: underline;
}

.pszahlen .clickable {
    cursor: pointer;
}

.pszahlen h1 {
    font-size: 25px;
    color: #f00;
    margin-top: -5px;
}

.pszahlen h2 {
    font-size: 25px;
    color: #000000;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.pszahlen table {
    font-size: 18px;
}

.pszahlen table tbody {
    color: #000;
}

.pszahlen table tbody tr:nth-child(even) {
    background: #ffffff;
}

.pszahlen table tbody tr:nth-child(odd) {
    background: #e3e3e3;
}

.pszahlen table .min {
    min-width: 220px;
}

.pszahlen .inline {
    display: inline-block;
}

.pszahlen .no-desktop {
    visibility: collapse;
    display: none;
}

.pszahlen .sphone-only {
    visibility: collapse;
    display: none;
}

.pszahlen .left {
    text-align: left;
}

/*.pszahlen .right {
  text-align: right;
}*/
.pszahlen .center {
    text-align: center;
}

.pszahlen .nav-desktop {
    background: #292929;
    padding: 12px;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 10px;

    /*
       * Ein Navigationseintrag.
       */
    /*
       * Ein Navigationseintrag (ausgewählt).
       */
}

.pszahlen .nav-desktop .entry {
    display: inline-block;
    color: #fff;
    padding: 11px 26px;
    cursor: pointer;
    border-radius: 90px;
    border: 1px solid transparent;
}

.pszahlen .nav-desktop .entry:hover {
    color: #fff;
    border: 1px solid #fff;
}

.pszahlen .nav-desktop .active {
    color: #fff;
    border: 1px solid #fff;
}

.pszahlen .wblock {
    background: #ffffff;
    border: none;
    border-bottom: 4px solid #f0f0f0;
    margin: 0px !important;
    padding: 20px;
}

.pszahlen .bblock {
    background: #ffffff;
    border: none;
    border-bottom: 4px solid #f0f0f0;
    margin: 0px !important;
    padding: 20px;
    padding-top: 5px !important;
}

.pszahlen .wblock-nosep {
    background: #ffffff;
    border: none;
    margin: 0px !important;
    padding: 15px;
}

.pszahlen .tblock {
    background: #ffffff;
    border: none;
    border-bottom: 4px solid #f0f0f0;
    margin: 0 0 2rem 0 !important;
    padding: 0px !important;
}

.pszahlen .gblock {
    background: #f0f0f0;
}

.pszahlen button::-moz-focus-inner,
.pszahlen a:focus,
.pszahlen a:active {
    border: 0px !important;
    outline: 0px !important;
}

.pszahlen .row {
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
    margin: 0;
    /*
       * 1. Spalte.
       */
    /*
       * 2. Spalte.
       */
    /*
       * Label für EingabeElemente.
       */
    /*
       * Textfelder + Auswahl.
       */
    /*
       * Kleines Textfeld.
       */
    /*
       * Großes Textfeld.
       */
    /*
       * Auswahl.
       */
}

/*.pszahlen .row .column1 {
  width: 33%;
  display: inline-block;
}*/


.pszahlen .row .column2 {
    width: 66%;
    display: inline-block;

}

.pszahlen .row .column2 label {
    margin-left: 20px;
    margin-right: 20px;
}

.pszahlen .row .column2a {
    width: 66%;
    display: inline-block;
    margin-left: -5px;
}

.pszahlen .row label {
    /*font-size: 14px;*/
    margin-right: 20px;
}

.pszahlen .row input,
.pszahlen .row select {
    font-size: 18px;
}

.pszahlen .row input.small {
    width: 130px;
}

.pszahlen .row input.large {
    width: 300px;
}

.pszahlen .row select {
    width: auto;
}

.pszahlen .button {
    border-radius: 0px;
    padding: 10px;
    margin-top: 15px;
    border: none;
    font-size: 25px;
    margin-left: 10px;
    cursor: pointer;
}

.pszahlen .back {
    background: none;
    color: #000;
    font-size: 18px;
    margin-left: -10px;
}

.pszahlen .back::before {
    content: "<";
    font: 25px/81% Pictos-IF;
    margin-right: 10px;
    color: #000;
    display: inline-block;
    width: 27px;
    height: 27px;
    border: 1px solid #777;
    border-radius: 50%;
    margin-bottom: -2px;
    pointer-events: none;
}

.pszahlen .back:not([disabled]):hover::before {
    background: #777;
    color: #ffffff;
}

.pszahlen .primary {
    background: #f00;
    color: white;
}

.pszahlen .primary:disabled {
    background: #ffcccc;
    cursor: default;
}

.pszahlen .primary::after {
    content: ">";
    font: 25px/81% Pictos-IF;
    margin-left: 10px;
    color: #ffffff;
    display: inline-block;
    width: 27px;
    height: 27px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    margin-bottom: -2px;
    pointer-events: none;
}

.pszahlen .primary:not([disabled]):hover::after {
    background: #ffffff;
    color: #f00;
}

.pszahlen .secondary {
    background: #e3e3e3;
    color: #000;
    margin-right: 10px;
}

.pszahlen button.plus {
    color: #f00;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    margin-left: -6px;
    outline: none;
}

.pszahlen button.plus::before {
    content: "+ ";
}

.pszahlen div.link {
    color: #f00;
    border: none;
    padding-left: 0;
    padding-right: 0;
    background: none;
    cursor: pointer;
    outline: none;
    text-decoration: underline;
    display: inline;
}

.pszahlen .no-sphone {
    visibility: visible !important;
    display: flex !important;
    flex-wrap: nowrap;
}

@media (max-width: 999px) {
    .pszahlen {
        /*
         * Headlines (Stufe 1)
         */
        /*
         * Headlines (Stufe 2)
         */
        /*
         * Tabellen
         */
        /*
         * Die Navigation (Tablets).
         */
        /*
         * Blendet ein Element auf mobilen Geräten aus.
         */
        /*
         * Blendet ein Element auf mobilen Geräten aus.
         */
        /*
         * Blendet ein Element auf dem Desktop aus.
         */
        /*
         * Blendet ein Element auf mobilen Geräten aus.
         */
        /*
         * Grauer Block (kein Separator).
         */
        /*
         * Zeile.
         */
        /*
         * Basisklasse für IF-6-Abschlussbuttons.
         */
        /*
         * "Gerahmter Pfeil" für primären IF-6-Abschlussbutton.
         */
        /*
         * Ein "Hinzufügen"-Button für Losnummern bzw. Losbereiche.
         */
    }

    .pszahlen .pad-correction2 {
        margin-left: -5px !important;
    }

    .pszahlen .column-checkbox {
        vertical-align: top;
        display: inline-block;
        width: 10%;
    }

    .pszahlen .column-text {
        display: inline-block;
        width: 89%;
    }

    .pszahlen button.plus {
        font-size: 15px;
        margin-left: 0px;
    }

    .pszahlen h1 {
        font-size: 17px;
        margin-top: -10px;
    }

    .pszahlen h2 {
        font-size: 17px;
    }

    /*  .pszahlen table {
        font-size: 15px;
      }*/
    .pszahlen table .min {
        min-width: 50px;
    }

    .pszahlen .nav-desktop * {
        font-size: 16px;
    }

    .pszahlen .no-tablet {
        visibility: collapse !important;
        display: none !important;
    }

    .pszahlen .no-desktop {
        visibility: visible !important;
        display: block !important;
    }

    .pszahlen .sphone-only {
        visibility: collapse !important;
        display: none !important;
    }

    .pszahlen .gblock {
        padding: 0px 0px 10px 10px;
    }

    .pszahlen .tblock {
        border: none;
        border-bottom: 4px solid #f0f0f0;
        padding: 0px !important;
    }

    .pszahlen .row {
        /*
           * Label für EingabeElemente.
           */
        /*
           * Textfelder + Auswahl.
           */
        /*
           * 1. Spalte.
           */
        /*
           * 2. Spalte.
           */
    }

    .pszahlen .row label {
        /*font-size: 14px !important;*/
    }

    @media (max-width: 500px) {
        .pszahlen .row label {
            margin-bottom: 10px;
        }
    }

    .pszahlen .row input,
    .pszahlen .row select {
        font-size: 15px !important;
    }

    .pszahlen .row .column1 {
        width: 24%;
    }

    .pszahlen .row .column2 {
        width: 75%;
    }

    /*  .pszahlen .row .column2 label {
        margin-left: 10px;
        margin-right: 10px;
      }*/
    .pszahlen .row input.smaller {
        width: 100px;
    }

    .pszahlen .row input.small {
        width: 100px;
    }

    .pszahlen .row .trashcan::after {
        margin-right: 0px;
    }

    .pszahlen .button {
        font-size: 17px;
    }

    .pszahlen .primary::after {
        content: ">";
        font: 17px/81% Pictos-IF !important;
        margin-left: 7px !important;
        width: 17px !important;
        height: 17px !important;
    }

    .pszahlen .back::before {
        font: 17px/81% Pictos-IF !important;
        margin-left: 7px !important;
        width: 17px !important;
        height: 17px !important;
    }

    .pszahlen .plus {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pszahlen {
        /*
         * Blendet ein Element auf mobilen Geräten aus.
         */
        /*
         * Blendet ein Element auf mobilen Geräten aus.
         */
        /*
         * Die Navigation (Smartphone).
         */
        /*
         * Zeile.
         */
    }


    .pszahlen .no-sphone {
        visibility: collapse !important;
        display: none !important;
    }

    .pszahlen .sphone-only {
        visibility: visible !important;
        display: block !important;
    }

    .nav-sphone.sphone-only {
        display: none !important;

    }

    .nav-desktop.no-sphone {
        display: flex !important;
        visibility: visible!important;
    }

    .pszahlen .nav-sphone {
        background: #f0f0f0;
        padding: 10px 0px 0px 10px;
        margin-left: -10px;
        border-bottom: 2px solid #f0f0f0;
    }

    .pszahlen .nav-sphone option {
        background: #ffffff;
        color: #000000;
    }

    .pszahlen .nav-sphone option:checked {
        background: #ffffff !important;
        color: #f00;
    }

    .pszahlen .nav-sphone select {
        font-size: 17px;
        border: none;
        border-radius: 0px;
        color: #f00;
        width: 100%;
        height: 50px;
        outline: none;
    }

    .pszahlen .nav-sphone select.select-modified {
        margin-right: -50px;
        background: #ffffff;
        height: 50px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        line-height: 20px;
    }

    .pszahlen .nav-sphone select.select-modified:-moz-focusring {
        color: transparent;
        text-shadow: 0 0 0 #f00;
    }

    .pszahlen .nav-sphone select.select-modified + span.select {
        display: inline-block;
        z-index: 9999;
    }

    .pszahlen .nav-sphone span.select {
        display: none;
        pointer-events: none;
        background-color: #f00;
        width: 50px;
        height: 50px;
        position: relative;
        top: 19px;
        padding: 5px 5px 5px 1px;
        font-size: 18px;
        line-height: 20px;
        border-radius: 0px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        white-space: nowrap;
    }

    .pszahlen .nav-sphone span.select:before {
        border: none;
        font-family: Pictos-IF;
        content: "d";
        color: #ffffff;
        display: block;
        position: absolute;
        top: 30%;
        left: 10px;
        font-size: 30px;
    }

    .pszahlen .row {
        /*
           * 1. "Spalte" (volle Breite).
           */
        /*
           * 2. "Spalte" (volle Breite).
           */
    }

    .pszahlen .row .column1 {
        width: 100% !important;
        display: inline-block;
        text-align: left !important;
        /*
             * Label für EingabeElemente.
             */
    }

    /*  .pszahlen .row .column1 label {
        padding-right: 20px;
        font-size: 12px;
      }*/
    .pszahlen .row .column2 {
        width: 100% !important;
        display: inline-block;
        /*
             * Label für EingabeElemente.
             */
    }

    .pszahlen .row .column2 label {
        margin-left: 0px !important;
    }

    .pszahlen .row .column2a {
        width: 100%;
        display: inline-block;
    }

    .pszahlen .row label {
        /*font-size: 12px;*/
    }

    .pszahlen .row input,
    .pszahlen .row select {
        font-size: 12px;
    }

    .pszahlen .row input.small {
        width: 100%;
    }

    .pszahlen .row input.large {
        width: 100%;
    }

    .pszahlen .row input.small.removable {
        width: 80%;
    }

    .pszahlen .row input.smaller.removable {
        width: 70%;
    }

    .pszahlen .row select {
        width: 100%;
    }
}
