/* POPUP BLINK */

.mod-pb {
    display: none;
}

.mod-pb.open {
    display: block;
    z-index: 100;
    width: 24.375rem;
    height: 10.125rem;
    background-color: #fff;
    position: absolute;
    top: calc(50% - 5.0625rem);
    left: calc(50% - 12.1875rem);
    box-shadow: 0rem 0.1875rem 0.375rem #00000029;
}

.mod-pb {
    opacity: 0;
    transition: opacity 0.3s;
}

.mod-pb.fadeIn {
    opacity: 1;
}

.mpb-main {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

@media (min-width: 992px) {
    /* DESKTOP ONLY */
}

@media (min-width: 768px) {
    /* DESKTOP AND TABLET */
}

@media (min-width: 768px) and (max-width: 991px) and (min-height: 481px) {
    /* TABLET ONLY */
}

@media (orientation: portrait) and (max-width: 768px) and (max-height: 1280px) {
    /* PHONE HOCH */

    .mod-pb.open {
        width: 100%;
        left: 0rem;
    }
}

@media (orientation: landscape) and (max-width: 915px) and (max-height: 480px) {
    /* PHONE QUER */
}