/*GENERAL*/

@font-face {
    font-family: 'Graphikregular';
    src: url('../skin/fonts/Graphik-Regular.woff2') format('woff2'),
        url('../skin/fonts/Graphik-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphik';
    src: url('../skin/fonts/Graphik-Medium.woff2') format('woff2'),
        url('../skin/fonts/Graphik-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Warnock';
    src: url('../skin/fonts/WarnockPro-Regular.woff2') format('woff2'),
        url('../skin/fonts/WarnockPro-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    height: 100%;
}

body {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Graphik';
    font-size: 16px;
    color: #FFFFFF;
    background-color: #00be96;



}





/*/////////////////////////////////////*/
/*JAVASCRIPT INSIDE TOUR IN JS ACTIONS*/
/*/////////////////////////////////////*/

/*////////////*/
/*S_IFRAME*/
/*////////////*/

/*
.s_popup_container
                  |
                  .container_placeholder_s_iframe
                  |                              |
                  |                              .spinner_s_iframe
                  |                                             |
                  |                                             .dot1_s_iframe
                  |                                             .dot2_s_iframe
                  |
                  .s_iframe
*/



/*DIV S_POPUP_CONTAINER*/

.s_popup_container {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/*PLACEHOLDER S_IFRAME*/
.container_placeholder_s_iframe {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    align-content: center;
    flex-wrap: wrap;
    height: 100%;
}

.spinner_s_iframe {
    width: 40px;
    height: 40px;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.dot1_s_iframe,
.dot2_s_iframe {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #41ffc7;
    border-radius: 100%;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2_s_iframe {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/*S_IFRAME*/
.s_iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    opacity: 0;
    transition: opacity 1s ease-out;
    left: 0px;
    /*  border-radius: 40px;*/
}


/*LOADER*/


.wrapper_spinner {

    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00be96;
    opacity: 1;
    z-index: 200;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    transition: opacity 600ms linear;
}

.spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.loadingtext {
    opacity: .3;
    text-align: center;
    color: #ffffff;
    margin-top: 20px;
    font-size: 9px;

}

/*INFOTEXT*/
/*480*/



.infotext-wrapper {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s;
    z-index: 20000000000000000;
    width: 600px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    right: 0px;
    top: 100px;
    /* height: 240px; */
    -webkit-box-shadow: 0px 10px 0px 0px #00BE96, -20px 20px 0px -10px #00BE96;
    box-shadow: 0px 10px 0px 0px #00BE96, -20px 20px 0px -10px #00BE96;

    overflow: hidden;

}

/* .infotext-subwrapper{
 height:100%;
 width:100%;
 background-color: #00BE96;

} */


.infotext-wrapper-hide {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s, visibility 0.2s linear;

}

html {
    --scrollbarBG: #ffffff;
    --thumbBG: rgba(0, 190, 149, 0.5);
}

#mobiletitle {

    display: none;
}

.mobiletitle-line {
    display: none;
}

.infotext {
    display: none;
    opacity: 1;

    box-sizing: border-box;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255);
    line-height: 18px;
    overflow-y: auto;
    color: gray;
    height: 80%;
    font-family: 'Graphikregular';
    font-size: 14px;

    max-height: 210px;
    padding: 0px 30px 0px 30px;
    user-select: text;
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);

}


.infotext::-webkit-scrollbar {
    width: 11px;
}

.infotext::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

.infotext::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}


/*// WELLCOME*/

.wellcome {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 212, 212, 0);
    opacity: 1;
    z-index: 150;
    display: none;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    transition: opacity 600ms linear;
    user-select: none;
}

.textwellcome {
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;

    font-size: 4vw;
    color: white;
    text-shadow: 2px 2px 6px #212121;
}

.subtextwellcome {
    color: white;
    font-size: 2vw;
}

@media only screen and (max-width: 1024px),
only screen and (max-device-width: 1024px) {
    .infotext-wrapper {
        width: 100%;
        height: 100%;
        background-color: #00be96;
        color: #ffffff;
        top: 0px;
    }

    .infotext {
        color: white;
        background-color: #00be96;
        max-height: unset;
        height: calc(100% - 232px);
        line-height: 1.5em;
        scrollbar-width: thin;
        scrollbar-color: var(--scrollbarBG) #00be96;

    }

    .infotext::-webkit-scrollbar {
        width: 11px;
    }

    .infotext::-webkit-scrollbar-track {
        background: #00be96;
    }

    .infotext::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 6px;
        border: 3px solid #00be96;
    }

    .mobile-close-button {
        position: absolute;
        right: 20px;
        top: 10px;
        width: 42px;
        height: 43px;
        background-image: url(../skin/img/general-info-button_close_m.png);
        cursor: pointer;
    }

    #mobiletitle {
        padding: 0px 20px 0px 30px;
        font-family: 'Warnock';
        font-size: 32px;
        display: block;
        margin-top: 80px;

    }

    .mobiletitle-line {
        display: block;
        margin-left: 30px;
        border: 1px solid white;
        width: 40px;

    }

    .textwellcome {


        font-size: 8vw;
    }

    .subtextwellcome {


        font-size: 4vw;
    }

}