/* ========================================================================
 * SIGN
 * ======================================================================== */
#load {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background: hsl(0deg 20% 93% / 74%);
    color: lightgray;
}

#load svg {
    height: 200px;
}

.help-block {
    color: #a94442;
    margin: 0.5rem 0 1rem 0;
    font-size: 0.8rem;
}

#particles {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: unset !important;
}

#confetti {
    display: none;
}

@media (max-width: 850px) {
    #particles {
        display: none;
    }
}

.particles-js-canvas-el {
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
}



#installContainer {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    width: 100%;
    height: 60px;
    z-index: 999;
}

#installContainer button {
    color: hsl(0deg 0% 100%);
    border: 0;
    padding: 0.75em;
    width: 100%;
    font-size: 1.2em;
}

/* ========================================================================
 * NOTIFY THEME
 * ======================================================================== */
[data-notify="container"][class*="alert-pastel-"] {
    background-color: rgb(255, 255, 238);
    border-width: 0;
    border-radius: 0;
    box-shadow: 0 0 5px rgba(51, 51, 51, 0.3);
    font-size: 20px;
    letter-spacing: 1px;
}

[data-notify="container"][class*="alert-pastel-info"] {
    border-left: 15px solid rgb(49, 176, 213);
}

[data-notify="container"][class*="alert-pastel-success"] {
    border-left: 15px solid rgb(56, 130, 56);
}

[data-notify="container"][class*="alert-pastel-warning"] {
    border-left: 15px solid rgb(236, 151, 31);
}

[data-notify="container"][class*="alert-pastel-danger"] {
    border-left: 15px solid rgb(217, 83, 79);
}

[data-notify="container"][class*="alert-pastel-"] > [data-notify="title"] {
    color: rgb(80, 80, 57);
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

[data-notify="container"][class*="alert-pastel-"] > [data-notify="message"] {
    font-weight: 400;
}


/* ========================================================================
 * ERROR PAGE
 * ======================================================================== */

.error-wall {
    width: 100%;
    height: 100%;
    position: fixed;
    text-align: center;
}

.error-wall .error-container {
    display: block;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    margin: 10px;
}

.error-wall .error-container h1 {
    color: #FFF;
    font-size: 130px;
    margin: 5px;
}

@media (max-width: 850px) {
    .error-wall .error-container h1 {
        font-size: 65px;
    }
}

.error-wall .error-container h3 {
    color: #464444;
    font-size: 34px;
    margin: 5px;
}

@media (max-width: 850px) {
    .error-wall .error-container h3 {
        font-size: 25px;
    }
}

.error-wall .error-container h4 {
    margin: 5px;
    color: #FFF;
    font-size: 40px;
}

@media (max-width: 850px) {
    .error-wall .error-container h4 {
        font-size: 35px;
    }
}

body.body-logged .error-wall .error-container h1,
body.body-logged .error-wall .error-container h4 {
    color: #464444;
}

.error-wall .error-container p {
    font-size: 15px;
}

.error-wall .error-container p:first-of-type {
    color: #464444;
    font-weight: lighter;
}

.error-wall .error-container p:nth-of-type(2) {
    color: #464444;
    font-weight: bold;
}

.error-wall .error-container p.type-white {
    color: #FFF;
}

@media (max-width: 850px) {
    .error-wall .error-container p {
        font-size: 12px;
    }
}

@media (max-width: 390px) {
    .error-wall .error-container p {
        font-size: 10px;
    }
}