html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/** Fim reset **/
body{
    height: 100vh;
    max-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

.container-error{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.error-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    margin: 0 10px;
}
.error-menu-books{
    margin-left: 17px;
    background-color: #d1d5d7;
    padding: 25px;
    transform: translateY(-3px);
    border-radius: 5px 5px 5px 0;
}
.error-menu-books li div{
    margin-bottom: 10px;
}
.error-menu-books li div a{
    font-size: 1rem;
    color: #535353;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}
.error-menu-books li div a:hover{text-decoration: underline;}


.meio-pagina404{
    display: flex;
    justify-content: center;
}
.links-acesso{
    align-self: flex-end;
}
.texto-pagina404{position: relative;}
.texto-pagina404:before {
    content: "";
    height: 57px;
    width: 25px;
    background: #d1d5d7;
    position: absolute;
    top: 23px;
    right: -17px;
}

.footer-error{height: 100px;}
.socials-error{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.socials-error li{margin-right: 20px;}
.error-blog img{
    height: 50px;
    margin-top: -7px;
}

svg{
    height: 35px;
    width: auto;
}
.socials-error svg path{fill: #9c9c9c}
.socials-error svg:hover path{fill: #ca0014}

.error-div-form{
    display: flex;
}
.error-div-form h2{
    color: #535353;
    font-weight: bold;
    align-self: center;
}
.error-div-form input{
    margin-left: 8px;
    border: 1px solid #535353;
    height: 26px;
}
.error-div-form input[type="submit"]{
    width: 60px;
    border: 1px solid #ca0014;
    background-color: #ca0014;
    color: #FFF;
    transition: .4s;
    border-radius: 5px;
    cursor: pointer;
    height: 30px;
}
.error-div-form input[type="submit"]:hover{
    background-color: #FFF;
    color: #ca0014;
}

@media ( max-width: 750px ) {
    .error-div-form{flex-direction: column;}
    .error-div-form h2{margin-bottom: 8px;}
    .grid_6 img{width: 100%;}

    .meio-pagina404{margin: 0 20px;}
    .texto-pagina404 {
        overflow: hidden;
        height: 22px;
    }
}
@media ( max-width: 500px ) {
    .error-head{
        margin-top: 20px;
        flex-direction: column;
    }
    .meio-pagina404 {
        flex-direction: column;
    }
    .links-acesso {
        align-self: center;
        margin-top: 30px;
    }
    .error-blog img{height: 35px;}
    svg {height: 20px;}
    .grid_6 img{margin-top: 20px;}
    .texto-pagina404:before{display: none;}
    .texto-pagina404 {height: 40px !important;}
}

