/* ========================================================== */
/* HEADER  */
.logo{
  height: 60px;
  width: auto;
  padding-right: 15px;
}
@media screen and (max-width: 600px) {
  .nav-responsive {
    display: none;
  }
}
/* ========================================================== */



/* ========================================================== */
/* DOCUMENT */
.section-document{
  height: 60vh;
  background-image: url('../../../assets/site/img/banner.jpg');
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

/* DOCUMENT */
.section-document-senha{
  height: 40vh;
  background-image: url('../../../assets/site/img/banner.jpg');
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

:root {
  --jumbotron-padding-y: 3rem;
}

.jumbotron {
  padding-top: var(--jumbotron-padding-y);
  padding-bottom: var(--jumbotron-padding-y);
  margin-bottom: 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .jumbotron {
    padding-top: calc(var(--jumbotron-padding-y) * 2);
    padding-bottom: calc(var(--jumbotron-padding-y) * 2);
  }
}

@media screen and (max-width: 600px) {
  .jumbotron-heading {
    font-size: 40px !important;
  }
  .section-document{
    height: 70vh;
  }
}

.jumbotron p:last-child {
  margin-bottom: 0;
}

.jumbotron-heading {
  color: #fff;
  font-weight: 700;
  font-size: 60px;
}

.text-document{
  color: #fff;
  font-weight: 700;
}

.jumbotron .container {
  max-width: 40rem;
}

footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer p {
  margin-bottom: .15rem;
}

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }

/* ========================================================== */



/* ========================================================== */
/* TITULO DO IMPUTS */
.titulo-do-corpo{
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}
/* ========================================================== */



/* ======================================================== */
/* IMPUTS */
input {
  color: rgb(255, 255, 255);
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
}

.input-effect{
  margin-bottom: 20px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center
}

.effect-16, .effect-17, .effect-18 {
  border: 0;
  padding: 4px 0;
  border-bottom: 1px solid  rgb(255, 255, 255);
  background-color: transparent;
}
.effect-16 ~ label {
  position: absolute;
  left: 0px;
  top: 6px;
  color: rgb(255, 255, 255);
  transition: 0.3s;
  letter-spacing: 0px;
}
.effect-16{
  padding-left: 60px;
}

.effect-16 ~ .focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: 0.4s;
}
.effect-16:focus ~ .focus-border, .has-content.effect-16 ~ .focus-border {
  width: 100%;
  transition: 0.4s;
}
.effect-16 ~ .focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: 0.4s;
  
}
input:focus {
outline: 0;
}
.effect-16:focus ~ label, .has-content.effect-16 ~ label {
  top: -16px;
  font-size: 12px;
  color: #ffffff;
  transition: 0.3s;
}
.input-box {padding:50px 0px;}
/* ======================================================================= */



/* ======================================================================= */
/* BUTTON */
.btn {
  line-height: 50px;
  height: 70px;
  text-align: center;
  width: 150px;
  cursor: pointer;
}

.btn-one {
  color: #FFF;
  transition: all 0.3s;
  position: relative;
}
.btn-one span {
  transition: all 0.3s;
}
.btn-one::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(255,255,255,0.5);
  border-bottom-color: rgba(255,255,255,0.5);
  transform: scale(0.1, 1);
}
.btn-one:hover span {
  letter-spacing: 2px;
}
.btn-one:hover::before {
  opacity: 1; 
  transform: scale(1, 1); 
}
.btn-one::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  background-color: rgba(255,255,255,0.1);
}
.btn-one:hover::after {
  opacity: 0; 
  transform: scale(0.1, 1);
}
.div-botao{
  text-align: center;
}
/* ======================================================================= */



/* ======================================================================= */
/* SENHA  */
.lead{
  font-weight: 500;
}
.lead-senha{
  font-size: 30px;
  font-weight: 700;
}
.agenda-text-ajuste{
  font-weight: 900;
  font-size: 30px;
}
/* ======================================================================= */




/* ========================================================== */
/* TITULO DO IMPUTS */
.titulo-do-corpo-fechado{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
/* ========================================================== */


/* ========================================================== */
/* Media print */
/* Pagina Senha imprimir */
@media print {
  body * {
    visibility: hidden;
  }
  #print, #print * {
    visibility: visible;
  }
  #print {
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff !important;
  }
}
/* ========================================================== */



/* ========================================================== */
/* Paginação DataTables style */
.pagination {
  height: 36px;
  margin: 18px 0;
  color: #000 !important;
}

div.dataTables_wrapper div.dataTables_filter input {
  color: #000 !important;
}

.pagination ul {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-left: 0;
  margin-bottom: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
ul {
  list-style: disc;
}
ul, ol {
  padding: 0;
  margin: 0 0 9px 25px;
}
.pagination li {
  display: inline;
}
li {
  line-height: 18px;
}
ul {
  list-style: disc;
}
.pagination li {
  display: inline;
}
li {
  line-height: 18px;
}
.pagination li:last-child a {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.pagination a:hover, .pagination .active a {
  background-color: #f5f5f5;
}
.pagination a {
  float: left;
  padding: 0 14px;
  line-height: 34px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-left-width: 0;
}
a:hover {
  color: #2071a1;
  text-decoration: underline;
}
a:hover, a:active {
  outline: 0;
}
/* ========================================================== */