* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    font-family: 'Comfortaa', sans-serif;
    max-width: 800px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-overflow-scrolling: touch;
}

body{
    visibility: hidden;
    opacity: 0;
    font-size: 0.7rem;
}

#master_wrapper{
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    height: 100%;
    overflow-y: hidden;
}


/* Rotate the screen for iPhone */
    /*@media not all and (min-resolution:.001dpcm) { @media {
        @media screen and (orientation: landscape) {
            html {
                transform: rotate(-90deg);
                transform-origin: left top;
                width: 100vh;
                height: 100vw;
                overflow-x: hidden;
                position: absolute;
                top: 100%;
                left: 0;
            }
        }
    }}*/

.button{
    height: 100%;
    min-width: 50px;
    padding: 2%;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

img.button{
    min-width: 0;
}

.text_container{
    position: absolute;
    width: 90%;
    height: 70%;
    left: 5%;
    top: 15%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.text_inner_container{
    font-size: 1.6rem;
    width: 100%;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    color: #ff9b29
}
.close{
    /*position: fixed !important;*/
    position: absolute !important;
    right: 0;
    width: 10%;
    min-width: 30px;
    max-width: 50px !important;
    padding: 5%;
    cursor: pointer;
    z-index: 50;
}

.fullscreen_popup{
    position: absolute;
    /*position: fixed;*/
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    background-color: #000;
    color: #fff;
    text-align: center;
    z-index: 200;
}

/* POPUP BOX */
    #popup_container{
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.7);
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        z-index: 250;
        display: none;
    }

    #popup_box{
        width: 76%;
        padding: 8% 4%;
        font-size: 1.3rem;
        color: #fff;
        background-color: #588ab3;
        text-align: center;
        border-radius: 10px;
    }

    #popup_box .text{    
        margin-bottom: 20px;
    }

    #popup_box .button{    
        height: 100%;
        width: 40%;
        min-width: 50px;
        margin: 0 4%;
        padding: 2%;
        color: #000;
        text-transform: uppercase;
        display: inline-block;
        background-color: #fff;
        border-radius: 10px;
        cursor: pointer;
    }


@media not all and (min-resolution:.001dpcm) { @media {
    .hide_ios{
        display: none !important;
    }
    
}}
    