
/**************** General styles ******************** *
 *  1. html, body
 *  2. Containers
 *  3. Global styles
 *  4. Global elements
****************************************************/

/**** 1. html, body ****/

html, body {
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    height: 100%;
    margin: 0;
    padding: 0;
}

html.policies,
html.policies body {
    overflow: visible;
    height: auto;
}

/**** 2. Containers ****/



/**** 3. Global styles ****/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a,
button,
.transition {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.no-transition {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

*:focus {
    outline: none !important;
}

/**** 4. Global elements ****/