* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pos-abs-total {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.container {
    width: 100%;
    height: 100%;
    position: relative;
}

#render, #molde__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#render {
    background-color: #1d1d1d;
}

#molde__container {
    overflow: hidden;
    opacity: 0;
}

.cores {
    position: absolute;
    top: 0;
    width: 100%;
    height: 40px;
    z-index: 98;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.cores span {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 7px;
    border: 1px solid #383838;
}

.cores span:hover {
    transform: scale(1.1);
}

.inativo {
    color: #fff;
    text-align: center;
    display: none;
}

.inativo.show {display: flex;}

.inativo h3 {
    margin-bottom: 20px;
}

.loading {
    text-align: center;
    color: #fff;
}
.loading.hide {
    display: none;
}
.loading img {
    max-width: 50px;
}

.home--container,
.container-404 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home--container {
    background-color: #1d1d1d;
}
