/**
 * Magento
 *
 * @category    Mage
 * @package     Errors
 * @copyright   Copyright (c) 2006-2018 Magento, Inc. (http://www.magento.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */


* { 
	margin:0; 
	padding:0; 
}
body	{ 
	background:#f9f9f9; 
	font-family: Arial, Helvetica, sans-serif; 
	text-align: center;
	font-size: 18px;
}
img	{ 
	border:0;
	max-width:100%; 
	vertical-align:top; 
}
h1 {
    line-height: 1em;
    margin: 1em 0;	
}
h2 {
    line-height: 1em;
    margin: 1em 0;	
    font-weight: normal;
}

/* Content ================================================================================= */


.wrapper {
	display: flex;

	justify-content: center;
	
    align-items: center;    
    
    height: 99vh;
}
.column {
	min-height: 250px;
}

.texto-error {
	font-size: 0.7em;
	color: #555;
	line-height: 1.3em;
	text-transform: uppercase;
}
.visible-xs {
	display: none;
}

@media (max-width: 460px) {
	.visible-xs {
		display: block;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 11px;
	}
	.texto-error {
		font-size: 0.9em;
	}
	.logo-site { 
		max-height:80px;	
	}
}

@media (min-width: 640px) and (max-width: 1200px) {
		body { 
			font-size: 15px; 
		}
}
