

@import url(https://fonts.googleapis.com/css?family=Orbitron);

.bg-login-image {
  background-image: url('../img/logo.png');
}

#btAuthStart, #btCaptchaRefresh, #btLoginAuth {
  background-color: transparent !important;
  border-color: #7EC7C0 !important;
}

.background {
  /*background:#5a5c69 url(../img/xd.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position:relative;*/
  background-color:  #34495e;
  
}

.modal {
  background-color: rgb(32,32,38);
}

.modal-content {
  background-color: #3a3b45 !important;
  border: 2px solid #7EC7C0;
}

.modal-header {
  border-bottom: none;
}

.modal-footer {
  border-top: none;
}

.close {
  color: #7EC7C0;
}

.close:hover {
  color: #7EC7C0;
}

.imgCaptcha {
  display: block;
}

#rodape {
	
	font-size: 12px
}

.bg-gradient-primary {
	background-color: #7EC7C0;
	color: #7EC7C0;
}

.col-lg-6, .col {
	background-color: transparent !important;
}

.card {
  background-color: transparent !important;
}

#CaptchaCodeInput, #loginUserInput, #loginPwdInput {
	background-color: transparent !important;
  border: 1px solid #7EC7C0;
  color: #7EC7C0;
}

#title-header {
	/*color: #7EC7C0 !important;*/
	font-family: 'Orbitron', sans-serif;
	font-weight: bold;
  
}

/****************/
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #7EC7C0;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #7EC7C0, 0 0 5px #7EC7C0;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -moz-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  -o-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: #7EC7C0;
  border-left-color: #7EC7C0;
  border-radius: 10px;
  -webkit-animation: pace-spinner 400ms linear infinite;
  -moz-animation: pace-spinner 400ms linear infinite;
  -ms-animation: pace-spinner 400ms linear infinite;
  -o-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes pace-spinner {
  0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes pace-spinner {
  0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes pace-spinner {
  0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes pace-spinner {
  0% { transform: rotate(0deg); transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}
/****************/

.rotate{
  -webkit-animation: rotate 0.7s linear infinite;
  animation: rotate 0.7s linear infinite; 
}
@-webkit-keyframes rotate{
  to{
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate{
  to{
    transform: rotate(360deg);
  }
}