:root{
  --button-radius: 5px;
  --blue: #0162e8;
  --black: #080808;
  --gray: #6c757d;
}

body{
  background-color: #ecf0fa !important;
  min-height: 100vh;
}

/* ----------------------------------------------- header */

#header .center{
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: 100%; */
}

#header .center br{
  display: none;
}

#header .center .button{
  background-color: white!important;
  color: #5b6e88!important;
  font-size: 16px!important;
}

#header .center .button:hover{
  font-weight: 500;
}

/**/

#menuLateral{
  background-color: #485563;
}

/* ----------------------------------------------- content - header */

#content_right .center > h2{
  color: #031b4e;
  font-weight: 500;
}




/* ----------------------------------------------- error alert */

#content_right .center > .error{
  color: #856404;
  background: #ffeeb4;
  border: 1px solid #ffeeba;
  border-radius: var(--button-radius);
  padding: 16px;
}

#content_right .center > .error > p{
  color: #856404;
  font-size: 16px;
}

#content_right .center > .error > p > a{
  font-weight: 500;
}

#content_right .center > .error > p > b{
  color: inherit;
}

/* ----------------------------------------------- box */

#content_right .center .col{
  border-radius: var(--button-radius);
  box-shadow: -8px 12px 18px #dadee8;
}

#content_right .center .col h3{
  color: #031b4e;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: solid 1px #eae8f1;
  /* margin-bottom: 0; */
}

#content_right .center .col h3 + table{
  margin-top: -15px;
}

#content_right .center .col label > .l, #content_right .center .col .label span.l {
  color: var(--black);
}

#content_right .center .col table{
  border: none;
}

#content_right .center .col table > tbody tr{
  /* border-bottom: solid 1px gainsboro; */
}

#content_right .center .col table > tbody tr:hover{
  /* background-color: rgb(235, 235, 235); */
}

#content_right .center .col table tr:nth-child(odd){
  background-color:#ecf0fa;
}

#content_right .center .col table tr:nth-child(even){
  background-color:white;
}

#content_right .center .col table tr:nth-child(even) td,
#content_right .center .col table tr:nth-child(odd) td{
  background-color: transparent;
}
#content_right .center .col table > thead th{
  background-color:white;
  color: #575764;
  font-weight: 600;
  font-size: 11.5px;
  padding-bottom: 12px;
  padding-top: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#content_right .center .col table button,
#content_right .center .col table .button,
input [type="file"]{
  background-color: var(--blue);
  border-radius: var(--button-radius);
  color: white;
  font-size: 13px;
  padding: 6px 10px;
}

.medium.button, #content_right p .medium.button, #content_right a.medium.button, .medium.button:visited{
  padding: 10px 14px;
}

/* #content_right .center .col table button:hover,
#content_right .center .col table .button:hover,
#content_right .center .col form .button:hover{
  background-color: var(--blue);
} */
.button.cinza, a.button.cinza, #content_right p .button.cinza, #content_right a.button.cinza{
  background-color: var(--gray)!important;
  color:#fff!important;
}

.button.vermelho, a.button.vermelho, #content_right p .button.vermelho, #content_right a.button.vermelho{
  background-color:red !important;
  color:#fff!important;
}

#content_right .center .col table button.cinza img{
  filter: brightness(0) invert(1);
}

#content_right .center .col #selects .dropdown dt a{
  border-radius: var(--button-radius);
  margin: 0 5px 5px 0;
}

/* ----------------------------------------------- footer */

#footer .center{
  color: #031b4e;
}

/* ----------------------------------------------- extras */

#content_right fieldset > div > button, .button, a.button, #content_right p .button, #content_right a.button{
  background-color: var(--blue);
  border-radius: var(--button-radius);
  color: white;
  padding: 10px 16px;
}

#content_right .center .col table select{
  border-color: gainsboro
}

.verde{
  background-color: #5cb85c !important;
}


@media only screen and (max-width: 500px) {

  #header .center .button {
      font-size: 14px !important;
  }

}