.carregamento-pagina
{
    position: absolute;
    top: 120px;
    left: 0px;
    width: 100%;
    height: 80%;
    z-index: 9999997;
    /* transparência compatível com os navegadores comuns.*/
    opacity:0.65;
    -moz-opacity: 0.65;
    filter: alpha(opacity=65);
    background: black;
    text-align: center;
}
.notification {
    background: #CD5C5C;
    border-radius: 3px;
    color: #fff;
    z-index: 1;
    font-weight: 600;
    padding: 2px 6px;
    box-shadow: 0 2px 3px rgba(0,0,0,.2), inset 0 2px 5px rgba(225,225,225,.3);
    font-size: 20px;
    margin-left: 5px;
    position: absolute;
    display: inline-block;
    top: -1px;
}


.iframe_responsive {
    border: none; 
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hoverTableItemDocumento{
    font-weight: 600;
    color: #574B90;
    cursor: pointer;
}

.hoverTableItemDocumento:hover {
    text-decoration: underline;
}

.versionCompactOrExtended {
    font-weight: 500;
    display: flex;
    flex-direction: row;
}

.versionCompactOrExtended span {
    cursor: pointer;
    border: 1px solid #ccc;
    border-bottom: none;
    background-color: #f1f1f1;
    padding: 5px 3px 0px 3px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.versionCompactOrExtended span:hover {
    background-color: #fafafa;
    padding-bottom: 1px;
}

.versionCompactOrExtended span:first-child {
    margin-right: 7px;
}

.modalDialog {
    width: 100%;
    position: fixed;
      top: 0;
      rigth: 0;
      bottom: 0;
      left: 0;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
    overflow: scroll; /* só ativa o scroll se o conteúdo do modal for cumprido */
  }
  
  .modalDialog:target {
    opacity: 1;
    pointer-events: auto;
  } 
  
  .modalDialog > div {
    position: relative;
    margin: 150px auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    width: 90%;
    font-size: 17px;
  }

  .modalDialog > div h4 {
    margin-top: 9px;
  }

  .close {
    background-color: #ccc;
    color: black;
    margin-top: 5px;
    padding: 5px;
    border-radius: 7px;
  }
  
  .close:hover { 
    background: #00d9ff; 
  }

  .modalClose {
      display: flex;
      flex-direction: row;
      justify-content: space-between;

  }

  .spacementIconsLeft {
    margin-left: 10px;
  }





.area-upload{
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
  margin: 20px auto;
  padding: 20px;
  box-sizing: border-box;
  
  width: 100%;
  position: relative;
}

.area-upload label.label-upload{
  border: 2px dashed #0d8acd;
  min-height: 200px;
  text-align: center;
  width: 100%;
  
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #0d8acd;
  position: relative;
  
  -webkit-transition: .3s all;
  -moz-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
}

.area-upload label.label-upload.highlight{
  background-color: #fffdaa;
}

.area-upload label.label-upload *{
  pointer-events: none;
}

.area-upload input{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  -webkit-appearance: none;
  opacity: 0;
}

.area-upload .lista-uploads{
  
}

.area-upload .lista-uploads .barra{
  background-color: #e6e6e6;
  margin: 10px 0;
  width: 100%;
  position: relative;
}

.area-upload .lista-uploads .barra .fill{
  background-color: #a1f7ff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  min-width: 0;
  
  -webkit-transition: .2s all;
  -moz-transition: .2s all;
  -o-transition: .2s all;
  transition: .2s all;
}

.area-upload .lista-uploads .barra.complete .fill{
  background-color: #bcffdf;
}

.area-upload .lista-uploads .barra .text{
  z-index: 10;
  text-align: center;
  padding: 3px 5px;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  color: black;
  font-size: 12px;
}
.area-upload .lista-uploads .barra .text a{
  color: black;
  font-weight: bold;
}

.area-upload .lista-uploads .barra.error .fill{ 
  background-color: #c02929;
  color: white;
  min-width: 100%;
}

.area-upload .lista-uploads .barra.error .text{
  color: white;
}




.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 9000;
    -webkit-transition: opacity .4s ease-in;
    -moz-transition: opacity .4s ease-in;
    transition: opacity .4s ease-in;
    overflow: hidden;
    min-height: 90%;
}

.modal>div {
    position: relative;
    margin: 3%;
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    max-width: 100%;
    width: 95%;
    min-height: 90%;
}

.modal .modal_header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

.modal_content .modal_content {
    overflow-y: auto;
    min-width: 100%;
    min-height: 100%;
}

.modal_content .modal_content .modal_body {
    min-width: 100%;
    min-height: 100%;
}


.modal .modal_content iframe {
    top:0;
    left:0;
    width:100%;
    min-height:82vh;
}

.filterBox {
  display: flex;
  flex-direction: column;
  padding: 5px 10px 15px 10px;
  font-size: 14.6px;
  background-color: #fafafa;
}

.filtersInfo {
  background-color: #cecece;
  display: flex;
  justify-content: space-between;
  font-size: 14.6px;
  padding-left: 10px;
  padding-right: 10px;
}
