.campo-valido {
	border-color: #28a745 !important;
	padding-right: calc(1.5em + .75rem);
	background-image: url("/arquivos/imagens/ok.png?v=1") !important;
	background-repeat: no-repeat;
	background-position: right calc(.375em + .1875rem) center;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.campo-invalido {
	border-color: #dc3545 !important;
	padding-right: calc(1.5em + .75rem);
	background-image: url("/arquivos/imagens/erro.png?v=1") !important;
	background-repeat: no-repeat;
	background-position: right calc(.375em + .1875rem) center;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.info-invalido {
	display: none;
	width: 100%;
	margin-top: .25rem;
	font-size: 80%;
	color: #dc3545;
}

#bg_aviso {
	background-color: #000;
	display: none;
	position: fixed;
	height: 1400px;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 77777;
}

#msg_aviso {
	left: 0;
	position: fixed;
	top: 245px;
	width: 100%;
	z-index: 999999;
	text-align: center;
}

#msg_aviso .aviso {
	background: url("/arquivos/imagens/erro.png") no-repeat scroll 10px 9px #e5e8f0;
	display: inline-block;
	padding: 7px 7px 5px 45px;
	color: #1a1a1a;
	border: 1px solid #dc3300;
	max-width: 80%;
}

#msg_aviso .aviso.ok {
	background: url("/arquivos/imagens/ok.png") no-repeat scroll 10px 9px #e5e8f0;
	border-color: #33cc33;
}

#msg_aviso .text {
	cursor: default;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	line-height: 24px;
	/* display:inline-block; */
	max-width: 800px;
}

#msg_aviso .botao,
#msg_aviso .botao .dir,
#msg_aviso .botao .meio {
	display: inline-block;
}

#msg_aviso .botao {
	cursor: pointer;
	float: right;
	margin: -1px 0 0 10px;
	border: 1px solid #ccc;
	color: #333;
}

#msg_aviso .botao:hover .meio {
	background-color: #999;
}

#msg_aviso .botao .meio {
	padding: 3px 9px;
}

#msg_aviso .confirmacao {
	padding: 11px 15px;
	min-width: 450px;
	max-width: 630px;
}

#msg_aviso .confirmacao .titulo {
	height: 35px;
}

#msg_aviso .confirmacao .texto {
	text-align: justify;
}

#msg_aviso .confirmacao .botoes {
	margin: 30px auto 0;
	width: 80%;
}

#msg_aviso .confirmacao .botao {
	position: static;
	float: left;
	width: 70px;
	margin: 0;
}

#msg_aviso .confirmacao .fechar {
	float: right;
}

#telaCarregando {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: #2B2C2F;
	opacity: 0.8;
	z-index: 99999;
}

#telaCarregando img {
	position: fixed;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#telaCarregando .txtCarregando {
	position: fixed;
	left: 50%;
	top: calc(50% + 45px);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
}

/* Notificações popup */
#notification-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

#notification-container .notification {
	position: relative;
	background-color: #fff;
	color: #545454;
	font-size: 16px;
	font-weight: 500;
	width: 280px;
	border-radius: 10px;
	padding: 10px 22px;
	min-height: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	opacity: 0;
	transform: translateY(20px);
	animation: slideIn 0.6s ease-out forwards;
}

#notification-container .notification > a{
	color: #545454;
	background: none !important;
	background-color: none !important;
}

#notification-container .notification .notification-header {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 2px;
}

#notification-container .notification .notification-body {
	font-size: 14px;
	/* white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis; */
}

#notification-container .notification .notification-footer {
	font-size: 10px;
	color: #545454;
	text-align: right;
}

#notification-container .notification .close-btn {
	position: absolute;
	right: 8px;
	top: 0px;
	background: none !important;
	background-color: none !important;
	border: none;
	cursor: pointer;
	padding: 0;
	margin: 0;
	color: #545454;
	font-size: 22px;
	font-weight: bold;
	transition: all 0.1s linear;
}

#notification-container .notification .close-btn:hover {
	transform: scale(1.2);
}

#notification-container .notification.fade-out {
	animation: fadeOut 0.6s ease-out forwards;
}

#notification-container .notification-info,#notification-container .notification-info > a,#notification-container .notification-info div,
#notification-container .notification-info .close-btn {
	background-color: #efbc2f;
	color: #fff !important;
}

#notification-container .notification-ok,#notification-container .notification-ok > a,#notification-container .notification-ok div,
#notification-container .notification-ok .close-btn {
	background-color: #5ecf51;
	color: #fff !important;
}

#notification-container .notification-erro,#notification-container .notification-erro > a,#notification-container .notification-erro div,
#notification-container .notification-erro .close-btn {
	background-color: #dc3545;
	color: #fff !important;
}

@keyframes slideIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(20px);
	}
}