/*  */

.mod-hu {
    display: none;
}

.mhu-head .bttClose {
    height: 1rem;
    width: 1rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.mhu-head .bttClose .ico {
    height: 1rem;
    width: 1rem;
    cursor: pointer;
}

.mod-hu.open {
    display: block;
    height: 100%;
    width: 100%;
    z-index: 100;
    position: absolute;
    top: 0rem;
    left: 0rem;
}

.mod-hu .back {
    width: 100%;
    height: 100%;
    background-color: #4f4f4fe6;
}

.mod-hu .front {
    background-color: #fff;
    position: absolute;
    width: 50rem;
    height: 30rem;
    box-shadow: 0rem 0.1875rem 0.375rem #00000029;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mhu-head {
    height: 2rem;
}

.mhu-head .txt {
    padding-top: 1rem;
    height: 1rem;
    line-height: 1rem;
    margin-left: 0.625rem;
}

.mhu-main {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 3rem;
    height: calc(100% - 5rem);
}

.mhu-vid {
    /*width: calc(100% - 6rem);*/
    height: calc(100% - 3rem);
}

.mhu-vid video {
    height: 100%;
}

.mhu-btt {
    box-shadow: 0rem 0rem 0.625rem #00000029;
    border-radius: 1.5rem;
    opacity: 1;
    text-align: center;
    background-color: var(--az-color);
    height: 2rem;
    line-height: 2rem;
    color: #fff;
    cursor: pointer;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (min-width: 992px) {
    /* DESKTOP ONLY */
}

@media (min-width: 768px) {
    /* DESKTOP AND TABLET */
}

@media (min-width: 768px) and (max-width: 991px) {
    /* TABLET ONLY */
}

@media (orientation: portrait) and (max-width: 768px) and (max-height: 1280px) {
    /* PHONE HOCH */

    .mod-hu .front {
        width: 100%;
        height: 100%;
    }

    .mhu-vid {
        width: calc(100% - 6rem);
        height: auto;
    }

    .mhu-vid video {
        width: 100%;
        height: auto;
    }

}

@media (orientation: landscape) and (max-width: 915px) and (max-height: 480px) {
    /* PHONE QUER */
    .mod-hu .front {
        width: 100%;
        height: 100%;
    }
}