body,html {
    width: 100%;
    height: 100%;
    font-family: Arial;
    padding: 0;
    margin: 0;
    background: black;
    background-position: center;
    background-repeat: no-repeat;
    user-select: none;
}

button {
    outline: none;
    padding: 3px;
    border: none;
    background: none;
    border-radius: 3px;
}

button:active {
    opacity: 0.3;
}

button:disabled {
    opacity: 0.5;
}

td {
    text-align: center;
    vertical-align: middle;
    padding: 0;
}

.disable {
    opacity: 0.5;
}

#ispinner {
    position: fixed;
    width: 100%;
    height: 100%;
    background: black;
    padding: 0;
    margin: 0;
    z-index:10;
}

#splash {
    position: fixed;
    height: 100%;
    width: 100%;
    display: block;
    background: black;
    z-index: 9;
}

#c-progress {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

#logo {
    display: block;
    background: none;
    width: 100%;
}

#progress-bar {
    display: block;
    width: 100%;
    height: 5px;
    background: gray;
    border-radius: 90px;
    text-align: left;
}

#bar {
    position: absolute;
    width: 0%;
    height: 5px;
    border-radius: 90px;
    background: linear-gradient( to bottom,red, gold,red);
    text-align: center;
    line-height: 5px;
}

.x-button {
    position: absolute;
    right: -1%;
    top: -1%;
    font-size: 2vw;
    font-weight: 900;
    padding: 5px;
    border-radius: 6px;
    color: white;
    z-index: 3;
    outline: none;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}


@media only screen and (orientation:portrait) {
    #c-progress {
        width: 50%;
    }
}

@media only screen and (orientation:landscape) {
    #c-progress {
        width: 20%;
    }
}
