/*!
 * Classes para animar ícones FontAwesome e Glyphicon
 */
.fa-spin-custom, .glyphicon-spin {
    -webkit-animation: spin 1000ms infinite linear;
    animation: spin 1000ms infinite linear;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
textarea{
  resize: vertical;
}
.highlightedText {
    background: yellow;
}


.error-page-content {
  margin-top: 30px;
  margin-bottom: 30px;
}


#photo-painel {
  display: flex;
  flex-wrap: wrap;
  min-height: 90px;
  width: 250px;
  justify-content: space-around;
  align-items: center;
  margin-left: 1px; 
}

.inputWrapper {
    height: 32px;
    width: 64px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    /*Using a background color, but you can use a background image to represent a button*/
    background-color: #006dcc;
    border-radius: 3px;
}

.inputWrapper label {
    color: #FFF;
    padding-top: 8.5px;
    padding-left: 8.5px;
    font-size: 8pt;
    font-weight: 300;
}

.fileInput {
    cursor: pointer;
    color: #FFF;
    height: 100%;
    position:absolute;
    top: 0;
    right: 0;
    z-index: 99;
    /*This makes the button huge. If you want a bigger button, increase the font size*/
    font-size:50px;
    /*Opacity settings for all browsers*/
    opacity: 0;
    -moz-opacity: 0;
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0)
}

#photo-painel input:focus{
    outline: none;
}

.img-box {
  width: 80px;
  height: 80px;
}

.person-photo {
  width: 80px;
  height: 80px;
}

.btn-relatorio {
  margin-top: 10px;
  margin-left: 30px;
}

.btn-filtro {
 margin-top: 10px;
 margin-bottom: 10px;
}

.close-button {
  float: right;
}

.label-sublinhada {
  margin-bottom: 20px;
  text-decoration: underline;
}

.button-redirect {
 float: right;
 background-color:rgba(0, 0, 0, 0);
 margin-right: 20px;
}

.button-redirect span {
 font-size: 30px;
 color: #ffffff;
}
.button-redirect span:hover{
  color:#01b1f0;
}
.dependente-panel {
  margin-bottom: 100px;
}
.wrap-custom-file {
  position: relative;
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 0.5rem 1rem;
  text-align: center;
}
.wrap-custom-file input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  overflow: hidden;
  opacity: 0;
}
.wrap-custom-file label {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  padding: 0 0.5rem;
  cursor: pointer;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.wrap-custom-file label button {
  display: none;
}
.wrap-custom-file label .fa {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  -webkit-transform: translatex(-50%);
  transform: translatex(-50%);
  font-size: 3.5rem;
  color: #006f97;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.wrap-custom-file label:hover {
  -webkit-transform: translateY(-1rem);
  transform: translateY(-1rem);
  opacity: 0.8;
}
.wrap-custom-file label:hover button,
.wrap-custom-file label:hover .fa {
  color: #01b1f0;
}
.wrap-custom-file label.file-ok {
  background-size: cover;
  background-position: center;
}
.wrap-custom-file label.file-ok button {
  display: block;
  position: absolute;
  bottom: 0;
  left: 144px;
  width: 20%;
  padding: 0.3rem;
  font-size: 1.1rem;
  color: #fff;
  background-color: rgb(217,83,79);
  opacity: 1 !important;
}
.wrap-custom-file label.file-ok button:hover {
  background-color: #ac2925;
}
.wrap-custom-file label.file-ok .fa {
  display: none;
}
.icon-blue {
  color: #FFF !important;
  background-color: #016e96 !important;
}

#BlockVincAcessos, #BlockVinc {
  min-width: 520px;
}

.search-bar {
  max-width: 400px;
}

.color-error
{
  color: red;
}