﻿.botao {
	background-color: #2a3c92;
	border-color: #ffffff;
	color: white;
}

	.botao:hover {
		background-color: #fdc813;
		border-color: #fdc813;
		color: white;
	}

.content {
	background-color: #ffffff;
	padding-top: 15px;
}

.painel-principal {
	margin: 0 auto;
	border: 1px solid #fff;
	padding: 20px;
	margin-bottom: 7px;
	color: #fdc813;
	border-radius: 10px;
	background-color: #2a3c92;
}

.painel {
	margin: 0 auto;
	text-align: center;
	border: 1px solid #fff;
	max-width: 450px;
	padding: 30px;
	border-radius: 20px;
	margin-bottom: 7px;
	color: white;
}

.titulo {
	color: #2a3c92;
}

.botao-cancel {
	background-color: #2a3c92;
	border-color: #ffffff;
	color: white;
}

	.botao-cancel:hover {
		background-color: #ff0000;
		border-color: #ff0000;
		color: white;
	}

.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	width: 100%;
	padding: 10px;
	height: calc(2.25rem + 2px);
	border-radius: 5px;
	color: #495057;
}
#ui-id-1 {
	background-color: white;
	width: 505px;
	height: 100%;
	padding-left: 2%;
}
.ui-menu-item:hover {
	background-color: #007bff;
	color: white;
	cursor: pointer;
}
#loading {
	position: absolute;
	left: 53%;
	top: 70%;
	z-index: 1;
	margin: -75px 0 0 -75px;
	border: 6px solid #b1b1b1;
	border-radius: 50%;
	border-top: 6px solid #0b3861;
	width: 30px;
	height: 30px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Add animation to "page content" */
.animate-bottom {
	position: relative;
	-webkit-animation-name: animatebottom;
	-webkit-animation-duration: 1s;
	animation-name: animatebottom;
	animation-duration: 1s
}

@-webkit-keyframes animatebottom {
	from {
		bottom: -100px;
		opacity: 0
	}

	to {
		bottom: 0px;
		opacity: 1
	}
}

@keyframes animatebottom {
	from {
		bottom: -100px;
		opacity: 0
	}

	to {
		bottom: 0;
		opacity: 1
	}
}