.loading:before {
	content: '';
	position: absolute;
	margin: auto;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 80%;
	height: 80%;
	max-width: 50px;
	max-height: 50px;
	background-image: url('../../imagens/loading.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.loading-overlay,
.loading-overlay-white {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
}
.loading-overlay {
	background-color: rgba(0,0,0,0.3);
}
.loading-overlay-white {
	background-color: rgba(255,255,255,0.3);
}
.loading-overlay-black {
	background-color: rgba(0,0,0,0.05);
}
.loading-overlay-transparent {
	background-color: transparent;
}
.x-box {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 18px;
    z-index: 10;
}
.over {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}
.bg-sucesso:before {
	content: '\f00c';
	font-size: 2em;
	color: #35C41F;
	font-family: 'FontAwesome';
	border: 5px solid;
	border-radius: 50%;
	width: 2em;
	height: 2em;
	line-height: 2em;
	text-align: center;
}

/* Mensagens
** ----------------------------------------------- */
.info {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-content: flex-end;
	align-items: flex-end;
	position: fixed;
	right: 0;
	top: auto;
	z-index: 100002;
	transition: all 0.3s linear 0s;
	width: 350px;
	bottom: 0;
}
.info .message {
	font-size: 14px;
	position: relative;
	margin: 0 10px 10px;
	width: 100%;
	max-width: 100%;
	right: -360px;
	transition: right 0.5s ease 0s;
	box-sizing: border-box;
	text-align: center;
}
.info .message.message-visible {
	right: 0;
}
.message-close:before {
	content: '\f00d';
	font-family: FontAwesome;
	cursor: pointer;
	position: absolute;
	right: -7px;
	top: -6px;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	text-align: center;
	line-height: 23px;
	background-color: #FFF;
	font-size: 14px;
	box-shadow: 0 0px 1px 1px rgba(255,0,0,0.4), 0 0 2px rgba(255,0,0,0.4) inset;
	color: red;
}

.invalid,
input.invalid,
input[type="text"].invalid,
input[type="email"].invalid,
input[type="file"].invalid,
input[type="password"].invalid,
textarea.invalid,
textarea:not(.default).invalid,
select.invalid {
	background: #FFE6E6;
}

input[type="text"]:not(.default):disabled {
	background-color: #EEF1F2;
}
