* {
    cursor: none;
}

body {
    font-family: var(--font-family);
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-color: var(--body-bg-color);
}

section {
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
}

#getfiles {
    position: absolute;
    left: -10000px;
    display: none;
}

#interface {
    display: block;
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 1;
    -webkit-transition: width 2s, height 2s;
    transition: width 2s, height 2s;
}

#color {
    box-shadow: inset 0 0 0 1000px var(--color-box-shadow);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 150;
    background-color: transparent;
    /* click through this layer */
    pointer-events: none;
}

#emergency {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 99;
    background-color: transparent;
}

#television {
    width: 75.5%;
    height: 75.5%;
    float: left;
    z-index: 10;
    overflow: hidden;
}


#information {
    padding: 0 23.5% 0 0;
    margin: 0;
    /*width: 80.5%;
    height: 19.5%;*/
    width: 76.5%;
    /*width: 100%;*/
    height: 20.5%;
    float: left;
    z-index: 30;
    overflow: hidden;
    background-color: var(--information-bg-color);
}

#branding {
    padding: 7px 30px;
    margin: 0;
    /*width: 75.5%;*/
    width: calc(100% - 30px);
    /*height: 2.5%;*/
    float: left;
    z-index: 90;
    overflow: hidden;
    animation: introbranding 2s;
    background-color: var(--branding-bg-color);
}


#promotions {
    padding: 0px;
    width: 24.5%;
    height: 43.5%;
    float: right;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 141;
    clear: right;
    background-color: var(--promotions-bg-color);
    overflow: hidden;
    animation: introAdvertising 2s;
    transition: width 2s, height 2s;
}


#screentitle {
    display: flex;
    flex-wrap: wrap;
    align-content: space-evenly;
    align-items: center;
    padding: 0px;
    width: calc(24.5%);
    height: calc(7.5%);
    float: right;
    position: absolute;
    right: 0;
    top: 43.5%;
    z-index: 141;
    clear: right;
    font-size: var(--screentitle-font-size);
    color: #fff;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    background-color: var(--side-bg-color);
}

    #screentitle img {
        width: 100%;
        height: 100%;
    }


    #screentitle h3 {
        margin: 0;
        margin-bottom: 10px;
        padding: 0 30px;
        flex: 100%;
        line-height: 1.1;
        color: rgb(255 255 255 / 90%);
        font-size: var(--screentitle-font-size);
    }

    @media (min-width: 1280px) and (max-width: 1300px) {
        #screentitle h3 {
            font-size: var(--screentitle-1280-font-size);
        }
    }

#screentitle p {
    margin: 0;
    padding: 0;
    color: #1dbfd6;
    color: var(--screentitle-link-color);
    font-weight: 700;
    flex: 100%;
    line-height: 0;
    margin-top: 5px;
    margin-top: -15px;
    font-size: 18px;
}

#advertising {
    width: 24.5%;
    height: 24.5%;
    float: right;
    position: absolute;
    right: 0;
    top: 51%;
    z-index: 141;
    clear: right;
    background-color: var(--advertising-bg-color);
    animation: introAdvertising 2s;
}

    #advertising .advertising {
        border-radius: 0 0 0 0px;
    }

#logo {
    padding: 0;
    margin: 0;
    width: 24.5%;
    height: 24.5%;
    float: right;
    z-index: 140;
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--side-bg-color) 0%, var(--tertiary-color) 70%);
    /*background: linear-gradient(to bottom, #06152d 0%,#023164 100%);*/
    border-radius: 0 0 0px 80px;
    animation: introLogo 2s;
}

.fullscreen {
    width: 100vh !important;
    height: 100vw !important;
}

@media (min-width: 400px) {



    #branding {
        padding: 1px 15px;
    }
}

@media (min-width: 1400px) {

   
    #information {
        padding: 0 23.5% 0 0;
        margin: 0;
        width: 76.5%;
        height: 21%;
        float: left;
        z-index: 30;
    }

    #branding {
        padding: 3px 30px;
        padding: 3px 24.5% 3px 30px;
        margin: 0;
        width: 75.5%;
        /*height: 5%;*/
        float: left;
        z-index: 90;
        overflow: hidden;
        animation: introbranding 2s;
    }
}

@keyframes introQrcode {
    from {
        top: 60px;
        opacity: .01;
    }

    to {
        top: 0;
        opacity: .99;
    }
}

@keyframes introAdvertising {
    from {
        /*right: -200px;*/
        opacity: .01;
    }

    to {
        /* right: 0;*/
        opacity: .99;
    }
}

@keyframes introLogo {
    from {
        bottom: 160px;
    }

    to {
        bottom: 0;
    }
}

@keyframes introbranding {
    from {
        margin-top: 30px;
    }

    to {
        margin-top: 0;
    }
}
