/**
 * Fichier  : /ott/404/assets/css/style.css
 * Fonction : style global de la page 404
 */


/* ==================================================
   ERROR WRAPPER
================================================== */

#error {
    position: relative;
    overflow: hidden;
}

#error {
    min-height: 100vh;
}

#error {
    color: var(--color-white);
}


/* ==================================================
   BOX SIZING
================================================== */

#error,
#error *,
#error *::before,
#error *::after {
    box-sizing: border-box;
}


/* ==================================================
   MAIN
================================================== */

#error > main {
    position: relative;
    z-index: 1;
}

#error > main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}


/* ==================================================
   LINK RESET
================================================== */

#error a {
    color: inherit;
    text-decoration: none;
}


/* ==================================================
   ACCESSIBILITY
================================================== */

#error a:focus-visible,
#error button:focus-visible {
    outline: none;
}

#error a:focus-visible,
#error button:focus-visible {
    box-shadow: var(--shadow-focus);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media screen and (max-width: 768px) {

    #error {
        padding: 22px 0 36px 0;
    }

}