* {
  box-sizing: border-box;
  text-decoration: none;
}

/* Style the body */
body {
  font-family: Arial;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #D3D3D3;
}

h1 {
  color: #fff;
}

h2 {
  color: #136b37;
  font-family: Heuvetica, Arial, Sans;
  text-decoration: none;
  border-bottom: 2px solid #136b37;
  margin-bottom: 0;
  font-style: normal;
  font-weight: bold;
}

h4 {
  color: #136b37;
  font-family: Heuvetica, Arial, Sans;
  text-decoration: none;
  margin-bottom: 0;
  padding-top: 5px;
  margin-top: 0px;
  font-style: normal;
  font-weight: bold;
}

/* Header/logo Title */
.header {
  display: flex;
  padding-top: 15px;
  padding-bottom: 10px;
  align-items: center;
  justify-content: center;
  background: #48744e;
  color: white;
  text-decoration: none;
}

.triagem,
.agendados,
.agendamento {
  background-color: #fff;
  color: #136b37;
  padding-top: 2px;
  padding-left: 35px;
  height: auto;
  border-radius: 8px;
}

.local {
  display: flex;
  justify-content: flex-end;
  padding-top: 15px;

}

/* Style the top navigation bar */
.navbar {
  display: flex;
  justify-content: left;
  background-color: #fff;
}

/* Column container */
.row {
  display: flex;
  flex-wrap: wrap;
}

.w3-input[type=text] {
  width: 100%;
  padding: 10px 10px;
  margin: 1px 0;
  display: inline-block;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 13px;
  text-transform: uppercase;
}

.w3-input-minusculo[type=text] {
  width: 100%;
  padding: 10px 10px;
  margin: 1px 0;
  display: inline-block;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 13px;
  /*text-transform: lowercase;*/
}

.w3-input[type=email] {
  width: 100%;
  padding: 10px 10px;
  margin: 1px 0;
  display: inline-block;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 13px;
  text-transform: lowercase;
}

.eu {
  border: 1px solid green;
  height: 32px;

}

.textarea {
  width: 100%;
  text-transform: uppercase;
  border-radius: 8px;
  resize: none;
}

/* Main column */
.main {
  flex: 100%;
  background-color: #fff;
  padding-left: 5px;
  border-radius: 8px;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 550px) {

  .row,
  .navbar {
    flex-direction: column;
  }
}

/* ========================================================================== */

.dropbtn {
  background-color: #fff;
  color: #000;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  display: flex;
  border-radius: 8px;
  /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
  /* cursor: pointer; */
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  margin: -5px;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  font-size: 12px;
  font-weight: bold;
  margin-top: 0px;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
  border-radius: 8px;
  cursor: pointer;
}

.dropdown-content a:hover {
  background-color: #96e4a0
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  color: #48744e;
  /* color:  #96e4a0; */

}

/* início da tabela de pesquisa */

#inputTabelaResp {
  /* background-image: url('/css/searchicon.png'); */
  background-position: 10px 10px;
  background-repeat: no-repeat;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

#tabelaResp {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ddd;
  font-size: 18px;
}

#tabelaResp th {
  padding: 16px;
  border: 1px solid #ddd;
  text-align: left;
  background-color: #4CAF50;
  color: white;
}

#tabelaResp td {
  font-size: small;
  border: 1px solid #ddd;
  text-align: left;
  padding: 5px 15px;
}

/*
#tabelaResp tr {
  border-bottom: 1px solid #ddd;
} */

#tabelaResp tr:hover {
  background-color: #f1f1f1;
}


.tabelaSelected {
  background-color: #4CAF50;
  color: white;
}

/* Fim da tabela de pesquisa */

/*
Configuração para modal de carregando
 */
/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.modalCarregando {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.9)
    /*url('http://i.stack.imgur.com/FhHRx.gif')*/
    url("../img/Preloader_8.gif") 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .modalCarregando {
  overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modalCarregando {
  display: block;
}

/*
/*Configurações para impressão*/
/*
@media print {
  body * {
    visibility: hidden;
  }
  #section-to-print, #section-to-print * {
    visibility: visible;
  }
  #section-to-print {
    position: absolute;
    left: 0;
    top: 0;
  }
}
*/

@media screen {
  #printSection {
    display: none;
  }
}

@media print {

  html,
  body {
    height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
  }

  body * {
    visibility: hidden;
  }

  #printSection,
  #printSection * {
    visibility: visible;
  }

  #printSection {
    position: absolute;
    height: auto;
    left: 0;
    top: 0;

  }
}

@page {
  size: auto;
  margin: 7mm 50px 0mm 25px;

}

.alert {
  padding: 20px;
  /*background-color: #f44336;*/
  color: rgb(66, 64, 64);
  background: rgba(241, 76, 76, 0.212);
  /*opacity: 0.2;*/
  transition: opacity 0.6s;
  margin-bottom: 15px;
}

.alert.success {
  background: rgba(76, 241, 112, 0.212);
  /*background-color: #04AA6D;*/
}

.alert.info {
  background: rgba(76, 189, 241, 0.212);
  /*background-color: #2196F3;*/
}

.alert.warning {
  background: rgba(241, 156, 76, 0.212);
  /*background-color: #ff9800;*/
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

label {
  float: left;
  clear: none;
  display: block;
  padding: 0px 1em 0px 8px;
}

input[type=radio],
input.radio {
  float: left;
  clear: none;
  margin: 2px 0 0 2px;
}