@media screen and (min-width: 1200px) {
    body, html {
        width: 600px;
        height: 100%;
        margin: 0 auto;
    }
}

html, body {
    height: 100%;
    margin: 0 auto;
    overflow: hidden
}

body {
    position: relative;
}
.loadingScreenContainer {
    background-color: black;
    z-index: 3;
}

.header-logged-out {
    background: #0b2234;
    color: white;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
}

.hamburger-line {
    width: 35px;
    height: 5px;
    background-color: white;
    margin: 6px 0;
}

.sideMenu {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    background-color: white;
    -webkit-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: 2;
}


.regular-text-size {
    font-size: 1em;
}

.closeButton {
    width: 10%;
    position: absolute;
    right: 3%;
    top: 1%;
    z-index: 1;
}

.text-centered {
    text-align: center;
}

.vertical-scroll {
    overflow-y: scroll;
}

.bigger-regular-text-size {
    font-size: 1.6em;
}

.sideMenuElement {
    display: inline-block;
    margin: 0 0 18px 0;
    width: 100%;
    position: relative;
    font-size: 3em;
}
.hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.smallLoadCircle {
    border: 2px solid blue;
    border-radius: 50%;
    margin-left: -25px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0.8;
    animation: 2s expandLoadingScreen infinite;
}

.partially-full-horizontal-width {
    width: 90%;
}

.regular-progress-bar {
    background-color: red;
}

.regular-progress-bar[value]::-webkit-progress-value {
    background-image: -webkit-linear-gradient(top, rgba(21, 186, 204, .25), rgba(0, 0, 0, .25)), -webkit-linear-gradient(left, #14BACD, #00428E);
    border-radius: 2px;
    background-size: 35px 20px, 100% 100%, 100% 100%;
    
}

.slow-fill[value]::-webkit-progress-value {
    transition: width 2s;
}

.bigLoadCircle {
    border: 2px solid blue;
    border-radius: 50%;
    width: 50px;
    margin-left: -25px;
    margin-top: -25px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0.8;
    animation: 1s expandLoadingScreen infinite;
}

.margin-little-space {
    margin: 0 5%;
}

.fullCover {
    width: 100%;
    height: 100%;
}

@keyframes expandLoadingScreen {
    0% { opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(15);
    }
}