body {
    overflow: hidden;
    font-family: 'Open Sans';
    color: var(--text_color);
    pointer-events: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
}

    body .smallFrameWindow {
        left: 20px;
        top: 20px;
        width: 800px;
        height: 600px;
    }

.hide {
    display: none !important;
}

.show.show {
    opacity: 1;
}

@media only screen and (min-height: 1801px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}

@media only screen and (min-height: 1601px) and (max-height: 1800px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}

@media only screen and (min-height: 1401px) and (max-height: 1600px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}

@media only screen and (min-height: 1201px) and (max-height: 1400px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}

@media only screen and (min-height: 1001px) and (max-height: 1200px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}

@media only screen and (min-height: 801px) and (max-height: 1000px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}

@media only screen and (min-height: 601px) and (max-height: 800px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}

@media only screen and (max-height: 600px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}

.furioos_container {
    --bottom_frame_height_pre: 30px;
    --interface_scale_pre: 1.0;
    --width_factor: 1.0;
    --window_scale: calc(var(--interface_scale_pre) * var(--window_scale_pre));
    --bottom_frame_height: calc(var(--bottom_frame_height_pre) * var(--window_scale) * var(--width_factor));
    --text_color: white;
    --corner_offset: 30px;
    --window_height: 500px;
    --background_color: rgba(49, 51, 59, 0.9);
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 2s ease-in-out;
    opacity: 0;
    flex: 0 1 100vw;
}

@media (max-width: 600px) {
    .furioos_container.furioos_container {
        --width_factor: 1.4;
    }
}

#furioos-sdk-iframe {
    z-index: 1;
    pointer-events: none;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    opacity: 0;
    transform: scaleY(0);
    order: 1;
    flex: 1 1 auto;
}

    #furioos-sdk-iframe.overwrite {
    }

    #furioos-sdk-iframe.show {
        opacity: 1;
        pointer-events: auto;
        transform: scaleY(1);
    }

.bg_image {
    position: absolute;
    inset: 0;
    display: flex;
    background-image: url("https://media.eopus.de/img/studio/2023-02-22/Bad-04/03.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 2s ease-in-out;
    opacity: 0;
    z-index: 2;
    flex: 1 1 auto;
}

.material-icons {
    color: var(--text_color);
}

.start_player_button .material-icons {
    background-color: transparent;
    transform: scaleX(1) scaleY(1);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
    line-height: calc(var(--window_scale) * 10rem);
}

    .start_player_button .material-icons:hover {
        transform: scaleX(1.1) scaleY(1.1);
    }

    .start_player_button .material-icons:active {
        transform: scaleX(1.05) scaleY(1.05);
    }

.overlay_frame {
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: 3;
    transition: opacity 2s ease-out;
    opacity: 0;
}


.start_player_button {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: relative;
    flex: 0 0 auto;
    opacity: 0;
    pointer-events: none;
    transform: translate(0, 50%);
}

    .start_player_button.show {
        display: flex;
        pointer-events: auto;
    }

    .start_player_button .material-icons {
        font-size: 0 !important;
        transition: font-size 2s ease-in-out;
    }

    .start_player_button.show .material-icons {
        font-size: calc(var(--window_scale) * 10rem) !important;
    }

.loading_frame_image {
    z-index: 3;
    transition: opacity 2s ease-in-out;
    opacity: 0;
    position: relative;
    flex: 0 0 22vmin;
    --size: 22vmin;
    transform: translate(0, -60px);
}

@media only screen and (max-height: 500px) {
    .start_player_button {
        transform: translate(0, 30%);
    }
    
}

@media only screen and (max-width: 820px) {
    .loading_frame_percentage.loading_frame_percentage {
        font-size: 30px;
    }

    .loading_frame_actual_doing.loading_frame_actual_doing {
        font-size: 30px;
    }
}

.loading_frame_percentage {
    text-align: center;
    font-family: 'RobotoBlack', sans-serif;
    font-size: 50px;
    color: var(--text_color);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    justify-content: center;
    z-index: 3;
    position: relative;
    flex: 0 0 auto;
    transition: opacity 2s ease-in-out;
    opacity: 0;
    transform: translate(0, -60px);
}

.loading_frame_actual_doing {
    text-align: center;
    font-family: 'RobotoLight', sans-serif;
    font-size: 50px;
    color: var(--text_color);
    justify-content: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    z-index: 3;
    position: relative;
    flex: 0 0 auto;
    transition: opacity 2s ease-out;
    opacity: 0;
    transform: translate(0, -60px);
}

.information_frame {
    position: absolute;
    left: 80%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    height: 60%;
    transition: opacity 2s ease-out;
    opacity: 0;
}

.waterMark-eopus {
    top: 2px;
    right: calc(var(--corner_offset) + 5px);
    height: 32px;
    padding: 0em 0 0 3em;
    position: absolute;
    z-index: 10;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-start;
    color: #fff;
    text-decoration: none;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
    font-size: 0.8rem;
    line-height: 1em;
    pointer-events: auto;
    transform-origin: center;
    transform: scaleX(1) scaleY(1);
    transition: transform 0.3s ease-in-out;
}

    .waterMark-eopus:hover {
        transform: scaleX(1.1) scaleY(1.1);
    }

.waterMarkText {
    flex: 0 1 auto;
    padding: 0.25em 0.13em 0.2em 0.33em;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    position: relative;
}

.waterMarkLogo {
    flex: 0 1 7.8125em;
    width: 7.8125em;
    max-width: 7.8125em;
    object-fit: contain;
    aspect-ratio: 3 / 1;
    padding-left: 0.2em;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.7));
}


/*
body {
    overflow: hidden;
    font-family: 'Open Sans';
    color: var(--text_color);
    pointer-events: none;
}

body .smallFrameWindow {
    left: 20px;
    top: 20px;
    width: 800px;
    height: 600px;
}

.hide {
    display: none !important;
}

.show.show {
    opacity: 1;
}

@media only screen and (min-height: 1801px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}
@media only screen and (min-height: 1601px) and (max-height: 1800px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}
@media only screen and (min-height: 1401px) and (max-height: 1600px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}
@media only screen and (min-height: 1201px) and (max-height: 1400px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}
@media only screen and (min-height: 1001px) and (max-height: 1200px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}
@media only screen and (min-height: 801px) and (max-height: 1000px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}
@media only screen and (min-height: 601px) and (max-height: 800px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}
@media only screen and (max-height: 600px) {
    .furioos_container {
        --window_scale_pre: 1.0;
    }
}

.furioos_container {
    --bottom_frame_height_pre: 30px;
    --interface_scale_pre: 1.0;
    --width_factor: 1.0;
    --window_scale: calc(var(--interface_scale_pre) * var(--window_scale_pre));
    --bottom_frame_height: calc(var(--bottom_frame_height_pre) * var(--window_scale) * var(--width_factor));
    --text_color: white;
    --corner_offset: 30px;
    --window_height: 500px;
    --background_color: rgba(49, 51, 59, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 2s ease-in-out;
    opacity: 0;
}

@media (max-width: 600px) {
    .furioos_container.furioos_container {
        --width_factor: 2.0;
    }
}

@media (max-width: 600px) {
    .furioos_container{
        --bla: 1;
    }

    body{
        --bla2: 1;
    }
}

#furioos-sdk-iframe {
    z-index: 1;
    pointer-events: none;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    top: 0;
    height: calc(100% - var(--bottom_frame_height) - 1rem - 3px) !important;
    opacity: 0;
    position: absolute;
    transform: scaleY(0);
}

#furioos-sdk-iframe.overwrite {
}

#furioos-sdk-iframe.show {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
}

.bg_image {
    position: absolute;
    display: flex;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://media.eopus.de/img/studio/2023-02-22/Bad-04/03.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 2s ease-in-out;
    opacity: 0;
    z-index: 2;
}

.material-icons {
    color: var(--text_color);
}

.start_player_button .material-icons {
    background-color: transparent;
    transform: scaleX(1) scaleY(1);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
    line-height: calc(var(--window_scale) * 10rem);
}

.start_player_button .material-icons:hover {
    transform: scaleX(1.1) scaleY(1.1);
}

.start_player_button .material-icons:active {
    transform: scaleX(1.05) scaleY(1.05);
}

.overlay_frame {
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    transition: opacity 2s ease-out;
    opacity: 0;
}


.start_player_button {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10%;
    height: 10%;
    opacity: 0;
    pointer-events: none;
}

.start_player_button.show {
    display: flex;
    pointer-events: auto;
}

    .start_player_button .material-icons {
        font-size: 0 !important;
        transition: font-size 2s ease-in-out;
    }

    .start_player_button.show .material-icons {
        font-size: calc(var(--window_scale) * 10rem) !important;
    }

    .loading_frame_image {
        z-index: 3;
        transition: opacity 2s ease-in-out;
        opacity: 0;
        position: absolute;
        left: 50%;
        top: calc(50% - 60px);
        height: 120px;
        aspect-ratio: 1/1;
    }

.loading_frame_image * {
    width: 100%;
    height: 100%;
}

.loading_frame_percentage {
    text-align: center;
    font-family: 'RobotoBlack', sans-serif;
    font-size: 50px;
    color: var(--text_color);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    justify-content: center;
    z-index: 3;
    position: absolute;
    left: 50%;
    top: calc(50% + 30px);
    transform: translate(-50%, -50%);
    width: 40%;
    height: 50px;
    transition: opacity 2s ease-in-out;
    opacity: 0;
}

.loading_frame_actual_doing {
    text-align: center;
    font-family: 'RobotoLight', sans-serif;
    font-size: 50px;
    color: var(--text_color);
    justify-content: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    z-index: 3;
    position: absolute;
    left: 50%;
    top: calc(50% + 30px + 50px);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 40px;
    transition: opacity 2s ease-out;
    opacity: 0;
}

.information_frame {
    position: absolute;
    left: 80%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    height: 60%;
    transition: opacity 2s ease-out;
    opacity: 0;
}

.waterMark-eopus {
    top: 2px;
    right: calc(var(--corner_offset) + 5px);
    height: 32px;
    padding: 0em 0 0 3em;
    position: absolute;
    z-index: 10;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-start;
    color: #fff;
    text-decoration: none;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
    font-size: 0.8rem;
    line-height: 1em;
    pointer-events: auto;
    transform-origin: center;
    transform: scaleX(1) scaleY(1);
    transition: transform 0.3s ease-in-out;
}

.waterMark-eopus:hover {
    transform: scaleX(1.1) scaleY(1.1);
}

.waterMarkText {
    flex: 0 1 auto;
    padding: 0.25em 0.13em 0.2em 0.33em;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    position: relative;
}

.waterMarkLogo {
    flex: 0 1 7.8125em;
    width: 7.8125em;
    max-width: 7.8125em;
    object-fit: contain;
    aspect-ratio: 3 / 1;
    padding-left: 0.2em;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.7));
}

*/