#app-loading {
    background: rgba(0,0,0,0.8);
    color: var(--theme-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200000;
    display: none;
}

#app-loading img {
    width: 250px;
}

#app-loading h1 {
    color: var(--white);
}

/* XS */
@media only screen and (min-width : 0px) {

	#app-loading img {
        width: 150px;
    }

	#app-loading h1 {
        font-size: 1.5rem;
    }

}

/* SM (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* MD (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* LG (desktops, 992px and up) */
@media (min-width: 992px) {

	#app-loading img {
        width: 250px;
    }

	#app-loading h1 {
        font-size: 2.5rem;
	}
}

/* XL (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}