:root {
  --customColor: #217dbb;
}

body {
  font-family: "Open Sans", sans-serif;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.02);
}

@keyframes spinner {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(359deg);
  }
}
* {
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.02);
}

.login {
  border-radius: 2px 2px 5px 5px;
  padding: 10px 20px 20px 20px;
  width: 90%;
  max-width: 400px;
  background: #ffffff;
  position: relative;
  padding-bottom: 80px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}
.login.loading button {
  max-height: 100%;
  padding-top: 50px;
}
.login.loading button .spinner {
  opacity: 1;
  top: 40%;
}
.login.ok button {
  background-color: #8bc34a;
}
.login.ok button .spinner {
  border-radius: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  height: 20px;
  animation: none;
  transform: rotateZ(-45deg);
}
.login:not(.loading) button:hover {
  box-shadow: 0px 1px 3px #2196F3;
  cursor: pointer;
}
.login:not(.loading) button:focus {
  border-bottom-width: 4px;
}
.login input[type=text], .login input[type=password] {
  display: block;
  padding: 15px 10px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ddd;
  transition: border-width 0.2s ease;
  border-radius: 2px;
  color: #ccc;
}
.login input[type=text] + i.fa, .login input[type=password] + i.fa {
  color: #fff;
  font-size: 1em;
  position: absolute;
  margin-top: -47px;
  opacity: 0;
  left: 0;
  transition: all 0.1s ease-in;
}
.login input[type=text]:focus, .login input[type=password]:focus {
  outline: none;
  color: #444;
  border-color: var(--customColor);
  border-left-width: 35px;
}
.login input[type=text]:focus + i.fa, .login input[type=password]:focus + i.fa {
  opacity: 1;
  left: 30px;
  transition: all 0.25s ease-out;
}
.login a {
  font-size: 0.8em;
  color: var(--customColor);
  text-decoration: none;
}
.login .title {
  color: #444;
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px 0 30px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.login .subtitle {
  color: #444;
  font-size: 1em;
  font-weight: 500;
  margin: 10px 0 30px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.login div.radio {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.login .form-check {
  padding-left: 2rem;
  line-height: 2.5;
}
.login .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0.6rem;
  margin-left: -2rem;
}
.login .form-check-label {
  cursor: pointer;
}
.login .spin {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  border: 2px solid #cccccc;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  right: 15px;
  margin-top: -40px;
  animation: spinner 0.6s infinite linear;
}
.login .info-link {
  display: block;
  margin: 30px 0 10px;
  text-align: center;
}
.login .info {
  font-size: 0.8em;
  text-align: center;
}
.login .token-block {
  transition: 0.5s;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.login .token-block.sended {
  opacity: 1;
  height: 200px;
}
.login .token-block .token-inputs {
  display: inline-flex;
  flex-direction: row;
  gap: 12px;
}
.login .token-block .token-inputs > input {
  border-radius: 10px;
  border: 2px solid #ddd;
  transition: none;
  text-align: center;
  font-weight: bold;
  color: #444;
}
.login .token-block .token-inputs > input:focus {
  border: 2px solid;
}
.login button {
  width: 100%;
  height: 100%;
  padding: 10px 10px;
  background: var(--customColor);
  color: #fff;
  display: block;
  border: none;
  margin-top: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 60px;
  border: 0px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 0 2px 2px;
  transform: rotateZ(0deg);
  transition: all 0.1s ease-out;
  border-bottom-width: 7px;
}
.login button .spinner {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  border: 4px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  left: 50%;
  top: 0;
  opacity: 0;
  margin-left: -20px;
  margin-top: -20px;
  animation: spinner 0.6s infinite linear;
  transition: top 0.3s 0.3s ease, opacity 0.3s 0.3s ease, border-radius 0.3s ease;
}
.login .divider {
  margin: 0 auto;
  position: relative;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
}
.login .divider h3 {
  color: #ccc;
  line-height: 20px;
  margin: 20px 0;
  text-align: center;
  text-transform: lowercase;
  font-size: 22px;
}
.login .divider h3:before, .login .divider h3:after {
  content: "";
  height: 1px;
  position: absolute;
  top: 10px;
  width: 40%;
  background: #e1e1e1;
}
.login .divider h3:before {
  background: linear-gradient(right, #e1e1e1 0%, white 100%);
  background: -moz-linear-gradient(right, #e1e1e1 0%, white 100%);
  background: -ms-linear-gradient(right, #e1e1e1 0%, white 100%);
  background: -o-linear-gradient(right, #e1e1e1 0%, white 100%);
  background: -webkit-linear-gradient(right, #e1e1e1 0%, white 100%);
  left: 0;
}
.login .divider h3:after {
  background: linear-gradient(left, #e1e1e1 0%, white 100%);
  background: -moz-linear-gradient(left, #e1e1e1 0%, white 100%);
  background: -ms-linear-gradient(left, #e1e1e1 0%, white 100%);
  background: -o-linear-gradient(left, #e1e1e1 0%, white 100%);
  background: -webkit-linear-gradient(left, #e1e1e1 0%, white 100%);
  right: 0;
}
.login a.first-access {
  font-size: 1em;
  text-align: center;
  display: block;
}
.login h6 {
  text-align: center;
  color: var(--customColor);
}

.login-icon-sm {
  display: none;
  color: #98A1AB;

}

.login-logo{
  margin-bottom: 50px; 
  height: 70px
}

#step-not-mine .formheader i {
  font-size: 1.8em;
  color: #ffc107;
}

footer {
  display: block;
  padding-top: 50px;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  font-weight: normal;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  font-size: 0.8em;
}

footer a,
footer a:link {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.formheader {
  text-align: center;
}

.becker {
  height: 30px;
  margin: 10px;
}

.error {
  display: none;
  background-color: #e74c3c;
  color: white;
  font-size: 12px;
  text-align: center;
  padding: 10px;
}

.examecard {
  border-left: 8px solid #2196F3;
  border-radius: 2px 2px 5px 5px;
  padding: 10px 20px 20px 20px;
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  position: relative;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.wrapappoint {
  display: inline-flex;
  flex-direction: column;
  align-items: baseline;
}

.appointcard {
  border-radius: 2px 2px 5px 5px;
  padding: 10px 20px 20px 20px;
  background: #ffffff;
  position: relative;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  width: 100%;
  flex-wrap: wrap;
}

.appoint-detail {
  display: inline-block;
  margin: 15px;
  flex-grow: 1;
  flex-basis: 0;
}

#rating {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

#rating .fa-star {
  color: rgba(0, 0, 0, 0.3);
  margin: 3px;
}

.starselected {
  color: orange !important;
}

#rating .fa-star:hover {
  cursor: pointer;
}

.appoint-detail h5 {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3);
}

.appoint-detail p {
  font-size: 12px;
}

.examecard h5 {
  display: inline-block;
}

#exametitle {
  margin-bottom: 30px;
}

.resultadolink {
  float: right;
  color: #2196F3;
  cursor: pointer;
}

.modal {
  display: none;
  background-color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
  border-radius: 10px;
  text-align: center;
}

.closemodal {
  margin-top: 20px;
  margin-right: 50px;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: right;
  color: #2196F3;
}

.closemodalicon:hover {
  cursor: pointer;
}

.headerimg {
  height: 50px;
}

.navbar {
  margin-bottom: 50px;
}

.navbar a {
  margin: 15px;
  padding-bottom: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
  display: inline-block;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.navbar a:hover {
  box-shadow: inset 0 -3px 0 0 var(--customColor);
}

.selected {
  box-shadow: inset 0 -3px 0 0 var(--customColor);
}

.swal-title {
  font-size: 18px;
  margin-bottom: 28px;
}

.pnotify-text {
  font-size: 0.8em;
}

.content-exames-files{
  max-width: 500px;
  width: 100%;
  margin-top: 50px;
}


.content-exames-files .line-division{
  top:10px;
  border-top: 1px solid var(--customColor);
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
}

.content-exames-files .line-division h5{
  text-align: center;
  position: relative;
  bottom: 16px;
  background: #f5f5f5;
  color: #2a2a2a;
  width: 200px;
  align-items: center;
  justify-content: center;
}

.print-emblem{
  float: right;
  position: absolute;
  right: 0;
  top: 0;
  margin: 10px;
}

.sair-sm{
  display: none ;
}

.modal {
  position: fixed;
}

.modal.modal-fullscreen .modal-dialog {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  max-width: none;
}

.modal.modal-fullscreen .modal-content {
  height: auto;
  height: 100vh;
  border-radius: 0;
  border: none;
}

.modal.modal-fullscreen .modal-body {
  overflow-y: auto;
  padding: 0;
}

.btn-download {
  background-color: #3D83DF !important;
  color: white !important;
}

@media only screen and (max-width: 480px) {
  /* For mobile phones: */

  .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 100%;
  padding: 0;
  background: white;
  
  }
  .topmenu{
      background:  white;
      border-bottom: 2px solid darkgray;
      width: 100%;
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: center;
  }
  
  .username{
      padding: 10px;
      white-space: nowrap;
  }

  .navbar {
      margin: 0;
      padding: 15px;
      overflow: auto;
      flex-wrap: nowrap;
      justify-content: start;
      width: 100%;
  }

  .navbar a {
      border: 1px solid #dbdbdb;
      border-radius: 20px;
      white-space: nowrap;

      margin: 3px;
      padding-top: 5px;
      padding-bottom: 5px;
      padding-left: 10px;
      padding-right: 10px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 700;
      color: rgba(0, 0, 0, 0.7);
      display: inline-block;
      transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
  }

  .navbar a:hover {
      border: 1px solid var(--customColor) !important;
      color:var(--customColor) !important;
      background-color: #EEF4FD ;
      box-shadow: none ;
  }

  .selected {
      border: 1px solid var(--customColor) !important;
      color: var(--customColor) !important;
      background-color: #EEF4FD ;
      box-shadow: none ;
  }
  .wrapappoint {
      padding-left: 20px;
      padding-right: 20px;
      max-width: 500px;
      width: 98vw;
      margin-top: 20px;
  }

  .sair{
      display: none !important;
  }
  .sair-sm{
      font-size: 12px;
      display: block;
  }
  .benefit-card{
      display: none;
  }
}
/*# sourceMappingURL=patient-interface.css.map */
