body {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    background: #f0f0f0;
}
.topo {
    background: #ffffff;
    border-bottom: 2px solid #ececec;
    display: flex;
}
.box_logo, .box_texto {
    float: left;
}
.box_logo {
    width: 25%;
    box-sizing: border-box;
}
.box_texto {
    width: 75%;
    box-sizing: border-box;
    text-align: right;
    font-size: 26px;
    font-weight: 100;
    padding: 11px;
}
img.logo {
    width: 200px;
    margin: 6px 0 0px 5px;
}
.conteudo {
	background: #ffffff;
    padding: 15px;
    border: 1px solid #ececec;
    width: 400px;
    margin: 30px auto;
	border-radius: 5px;
}
b {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #666666;
}
.input {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 10px;
    font-size: 18px;
    color: #444444;
    width: 100%;
    margin: 0 0 10px 0;
    box-sizing: border-box;
}
.btn {
    background: #00b237;
    color: #ffffff;
    border: 1px solid #509208;
    font-size: 19px;
    font-weight: 100 !important;
    display: block;
    width: 100%;
    padding: 11px 0;
    cursor: pointer;
}
.btn:hover {
	background: #09ce46;
}
p {
    text-align: center;
    margin-top: 5px;
}

.msg_alerta {
	background: #ffe4e4 !important;
    border: 1px solid #f1b4b4 !important;
    color: #e66d6d !important;
}
.conteudo span {
	position: relative;
}
.conteudo span i {
	position: absolute !important;
    /*top: 25px !important;*/
	white-space: nowrap;
    right: 0 !important;
    color: #ffffff !important;
    background: #f1b4b4 !important;
    font-size: 11px !important;
    padding: 2px 5px !important;
}
h2 {
	font-weight: 500;
    font-size: 20px;
    background: #ffffff;
}

@media (max-width: 600px) {
	.box_logo {
		width: 40%;
	}
	.box_texto {
		width: 60%;
	}
}
@media (max-width: 600px) {
	.box_logo {
		width: 40%;
	}
	.box_texto {
		width: 60%;
	}
	.conteudo {
		width: 85%;
	}
}
@media (max-width: 500px) {
	.topo {
		display: block;
	}
	.box_logo {
		width: 100%;
		text-align: center;
		float: unset;
	}
	.box_texto {
		width: 100%;
		text-align: center;
		float: unset;
	}
	.conteudo {
		width: 85%;
	}
}

/* loading */
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #000000;
      border-color: #0064b2 transparent #ff6500 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.bg_loading {
	background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.txt_loading {
	position: fixed;
    top: 30%;
    text-align: center;
    width: 100%;
}
.fa-warning {
	font-size: 50px !important;
    color: #ff9900 !important;
}
.fa-check-circle {
	font-size: 50px !important;
    color: #66e208 !important;
}
.btn_ok {
	background: #0064b2;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
}