/* Variables */

:root {
  --main-bg-color: #f7f7f7;
  --main-text-color: #4d5053;
  --highlight-text-color:#083D71;
  --darkgreen-color: #042D55;
  --white-text-color: #ffffff;
  --border-color: #ededed;
}

/* Basic styles */

body {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--main-text-color);
  background-color: var(--main-bg-color);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

/* Selection colors */

::selection {
  background: var(--highlight-text-color);
  color: var(--white-text-color);
}
::-moz-selection {
  background: var(--highlight-text-color);
  color: var(--white-text-color);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  color: var(--main-text-color);
  font-weight: 700;
}

h3,
.title-cards {
  color: var(--highlight-text-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h4,
.title-tab {
  color: var(--main-text-color);
  font-size: 16px;
  font-weight: 500;
}

p {
  color: var(--main-text-color);
  font-weight: 400;
}

/* Links */

a {
  text-decoration: none !important;
  outline: 0;
  color: var(--main-text-color);
  transition: all 0.2s ease;
}

a:hover {
  color: var(--highlight-text-color);
}

/* Buttons */

.btn {
  padding: 14px 40px;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn:hover,
.btn:active,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.btn-custom {
  padding: 14px 40px;
  display: inline-block;
  background-color: var(--highlight-text-color);
  border: 1px solid var(--border-color);
  color: var(--white-text-color) !important;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-custom:hover,
.btn-custom:active,
.btn-custom:focus {
  background-color: var(--darkgreen-color);
  color: var(--white-text-color) !important;
  border: 1px solid var(--darkgreen-color);
  outline: 0;
  box-shadow: none;
}

.btn-custom-grid {
  padding: 10px 15px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* Navigation */

.navbar {
  background-color: var(--white-text-color) !important;
  border-bottom: 1px solid var(--border-color);
}

.navbar .navbar-brand {
  color: var(--highlight-text-color);
  /*font-size: 20px;*/
  text-transform: uppercase;
  font-weight: 700;
  /*letter-spacing: 4px;*/
}

.navbar .navbar-brand img{
  max-width: 120px;
}

.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus {
  color: var(--highlight-text-color);
}

.navbar .navbar-text {
  color: var(--main-text-color);
}

.navbar .navbar-text a {
  color: var(--highlight-text-color);
}

.navbar .navbar-text a:hover,
.navbar .navbar-text a:focus {
  color: var(--highlight-text-color);
}

.navbar .navbar-nav .nav-link {
  color: var(--main-text-color);
  border-radius: 0.25rem;
  margin: 0 0.5em;
  transition: 200ms ease-in-out;
  -webkit-transition: 200ms ease-in-out;
}

.navbar .navbar-nav .nav-link:not(.disabled):hover,
.navbar .navbar-nav .nav-link:not(.disabled):focus {
  color: var(--highlight-text-color);
}

.navbar .navbar-nav .nav-link-arrow:after {
  content: "";
  border: solid var(--main-text-color);
  border-width: 0 1px 1px 0;
  position: relative;
  display: inline-block;
  padding: 0.2em;
  top: -2px;
  left: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
  color: var(--highlight-text-color);
}

.navbar .navbar-nav .dropdown-menu {
  background-color: var(--white-text-color);
  border-color: var(--border-color);
}

.navbar .navbar-nav .dropdown-menu .dropdown-item {
  color: var(--main-text-color);
  font-size: 14px;
}

/*.navbar .navbar-nav .dropdown-menu .dropdown-item:before {*/
  /*content: "";*/
  /*border: solid var(--main-text-color);*/
  /*margin-right: 1em;*/
  /*border-width: 0 1px 1px 0;*/
  /*position: relative;*/
  /*display: inline-block;*/
  /*padding: 0.2em;*/
  /*top: -2px;*/
  /*left: 4px;*/
  /*transform: rotate(-45deg);*/
  /*-webkit-transform: rotate(-45deg);*/
/*}*/

.navbar .navbar-nav .dropdown-submenu {
  position: relative;
}

.navbar .navbar-nav .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.navbar .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}

.navbar .navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar .navbar-nav .dropdown-menu .dropdown-item:focus,
.navbar .navbar-nav .dropdown-menu .dropdown-item.active {
  color: var(--highlight-text-color);
  background-color: var(--white-text-color);
}

.navbar .navbar-nav .dropdown-menu .dropdown-divider {
  border-top-color: var(--white-text-color);
}

.navbar .navbar-nav .nav-item.active .nav-link,
.navbar .navbar-nav .nav-item.active .nav-link:hover,
.navbar .navbar-nav .nav-item.active .nav-link:focus,
.navbar .navbar-nav .nav-item.show .nav-link,
.navbar .navbar-nav .nav-item.show .nav-link:hover,
.navbar .navbar-nav .nav-item.show .nav-link:focus {
  color: var(--highlight-text-color);
  background-color: var(--white-text-color);
}

.navbar .navbar-toggler {
  border-color: var(--white-text-color);
  outline: none !important;
}

.navbar .navbar-toggler .navbar-toggler-icon {
  color: var(--main-text-color);
}

.navbar .navbar-collapse,
.navbar .navbar-form {
  border-color: var(--main-text-color);
  padding-top: 10px;
}

.navbar .navbar-link {
  color: var(--main-text-color);
}

.navbar .navbar-link:hover {
  color: var(--highlight-text-color);
}

.navbar-expend .navbar-nav .show .dropdown-menu .dropdown-item {
  color: var(--main-text-color);
}

.navbar-expend .navbar-nav .show .dropdown-menu .dropdown-item:hover,
.navbar-expend .navbar-nav .show .dropdown-menu .dropdown-item:focus {
  color: var(--highlight-text-color);
}

.navbar-expend .navbar-nav .show .dropdown-menu .dropdown-item.active {
  color: var(--highlight-text-color);
  background-color: var(--white-text-color);
}

@media (max-width: 575px) {
  .navbar-expend-sm .navbar-nav .show .dropdown-menu .dropdown-item {
    color: var(--main-text-color);
  }
  .navbar-expend-sm .navbar-nav .show .dropdown-menu .dropdown-item:hover,
  .navbar-expend-sm .navbar-nav .show .dropdown-menu .dropdown-item:focus {
    color: var(--highlight-text-color);
  }
  .navbar-expend-sm .navbar-nav .show .dropdown-menu .dropdown-item.active {
    color: var(--highlight-text-color);
    background-color: var(--white-text-color);
  }
}

@media (max-width: 767px) {
  .navbar-expend-md .navbar-nav .show .dropdown-menu .dropdown-item {
    color: var(--main-text-color);
  }
  .navbar-expend-md .navbar-nav .show .dropdown-menu .dropdown-item:hover,
  .navbar-expend-md .navbar-nav .show .dropdown-menu .dropdown-item:focus {
    color: var(--highlight-text-color);
  }
  .navbar-expend-md .navbar-nav .show .dropdown-menu .dropdown-item.active {
    color: var(--highlight-text-color);
    background-color: var(--white-text-color);
  }
}

@media (max-width: 991px) {
  .navbar-expend-lg .navbar-nav .show .dropdown-menu .dropdown-item {
    color: var(--main-text-color);
  }
  .navbar-expend-lg .navbar-nav .show .dropdown-menu .dropdown-item:hover,
  .navbar-expend-lg .navbar-nav .show .dropdown-menu .dropdown-item:focus {
    color: var(--highlight-text-color);
  }
  .navbar-expend-lg .navbar-nav .show .dropdown-menu .dropdown-item.active {
    color: var(--highlight-text-color);
    background-color: var(--white-text-color);
  }

  .dropdown-menu {
    border: none !important;
  }
}

@media (max-width: 1199px) {
  .navbar-expend-xl .navbar-nav .show .dropdown-menu .dropdown-item {
    color: var(--main-text-color);
  }
  .navbar-expend-xl .navbar-nav .show .dropdown-menu .dropdown-item:hover,
  .navbar-expend-xl .navbar-nav .show .dropdown-menu .dropdown-item:focus {
    color: var(--highlight-text-color);
  }
  .navbar-expend-xl .navbar-nav .show .dropdown-menu .dropdown-item.active {
    color: var(--highlight-text-color);
    background-color: var(--white-text-color);
  }
}

/* Informações do topo */

.info-top {
  margin-top: 4em;
  margin-bottom: 1.5em;
}

.info-top .info-top__collumns {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .info-top .info-top__collumns {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.info-top .info-top__collumns .info-top__item {
  padding: 0 1em;
}

@media (max-width: 768px) {
  .info-top .info-top__collumns .info-top__item {
    padding-left: 0;
  }
}

.info-top .info-top__collumns .info-top__item .info-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--main-text-color);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .info-top .info-top__collumns .info-top__item .info-title {
    margin-top: 2em;
    margin-bottom: 0.5em;
  }
}

.info-top .info-top__collumns .info-top__item .info-subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

/* Mensagem de erro */

.alert-custom .alert-danger--custom {
  font-weight: 400;
}

/* Padrão dos formulários */

.box-model {
  margin-top: 2em;
}

.box-model .box-model__content {
  padding: 2em;
  border-radius: 4px;
  background-color: var(--white-text-color);
  border: 1px solid var(--border-color);
}

.box-model .box-model__content .title-cards {
  margin-bottom: 2em;
}

.box-model .box-model__content .form-group label {
  font-size: 14px;
  color: var(--main-text-color);
  font-weight: 700;
}

.box-model .box-model__content .form-group input,
.box-model .box-model__content .form-group select,
.box-model .box-model__content .form-group textarea {
  /* -webkit-appearance: none; */
  box-shadow: none !important;
  height: 50px;
  border: 1px solid rgba(112, 112, 112, 0.3);
  font-size: 14px;
}

.box-model .box-model__content .form-group textarea {
  height: 100%;
}

.box-model .box-model__content .box-model__buttons {
  display: flex;
  flex-direction: row;
  /* justify-content: flex-end; */
  justify-content: space-between;
  padding: 2em 0;
}

@media (max-width: 767px) {
  .box-model .box-model__content .box-model__buttons {
    display: flex;
    flex-direction: column;
    padding: 2em 0;
  }
  .box-model .box-model__content .box-model__buttons .btn {
    width: 100%;
  }
  .box-model .box-model__content .box-model__buttons .btn-custom {
    width: 100%;
    margin-bottom: 1em;
  }
}

.box-model .box-model__content .form-rad {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  justify-content: center;
}

/* Login */

.login-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #081224; /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #081224 0%, #081F33 100%); /* FF3.6+ */
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#47759e), color-stop(100%,#081F33)); /* Chrome,Safari4+ */
  background: -webkit-radial-gradient(center, ellipse cover, #081224 0%,#081F33 100%); /* Chrome10+,Safari5.1+ */
  background: -o-radial-gradient(center, ellipse cover, #081224 0%,#081F33 100%); /* Opera 12+ */
  background: -ms-radial-gradient(center, ellipse cover, #081224 0%,#081F33 100%); /* IE10+ */
  /*! background: radial-gradient(ellipse at center, #081224 0%,#081F33 100%); */ /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#081224', endColorstr='#081F33',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.login-section .login-section__group {
  background-color: var(--white-text-color);
  width: 450px;
  margin: 0 auto;
  border-radius: 4px;
}

.login-back {
  float: left;
  padding-top: 10px;
  width: 100%;
}

@media (max-width: 485px) {
  .login-section .login-section__group {
    width: 100%;
  }
}

.login-section .login-section__group .login-section__card {
  padding: 4em;
}

@media (max-width: 485px) {
  .login-section .login-section__group .login-section__card {
    padding: 4em 2em;
  }
}

.login-section .login-section__group .login-section__card .title-login {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

.login-section .login-section__group .login-section__card .subtitle-login {
  width: 280px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

.login-section .login-section__group .login-section__card form {
  margin-top: 2em;
}

.login-section .login-section__group .login-section__card form label {
  font-size: 14px;
  color: var(--main-text-color);
  font-weight: 700;
}

.login-section .login-section__group .login-section__card form .form-control {
  height: 50px;
  border: 1px solid rgba(112, 112, 112, 0.3);
  font-size: 16px;
  box-shadow: none;
}

.login-section .login-section__group .login-section__card form .login-section__remember {
  display: flex;
  justify-content: space-between;
}

.login-section .login-section__group .login-section__card form .login-section__remember .form-check .form-check-label {
  font-weight: 400;
}

.login-section .login-section__group .login-section__card form .btn {
  margin-top: 0.5em;
  width: 100%;
}

.login-error-block{
  color: red;
}

/* Página para recuperação a senha */

.recover-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--highlight-text-color);
}

.recover-section .recover-section__group {
  background-color: var(--white-text-color);
  width: 450px;
  margin: 0 auto;
  border-radius: 4px;
  text-align: center;
}

@media (max-width: 485px) {
  .recover-section .recover-section__group {
    width: 100%;
  }
}

.recover-section .recover-section__group .recover-section__card {
  padding: 4em;
}

@media (max-width: 485px) {
  .recover-section .recover-section__group .recover-section__card {
    padding: 4em 2em;
  }
}

.recover-section .recover-section__group .recover-section__card .title-recover {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4px;
}

.recover-section .recover-section__group .recover-section__card .title-login {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

.recover-section .recover-section__group .recover-section__card .subtitle-recover {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.recover-section .recover-section__group .recover-section__card form {
  margin-top: 2em;
}

.recover-section .recover-section__group .recover-section__card form label {
  font-size: 14px;
  color: var(--main-text-color);
  font-weight: 700;
}

.recover-section .recover-section__group .recover-section__card form .form-control {
  height: 50px;
  border: 1px solid rgba(112, 112, 112, 0.3);
  font-size: 14px;
  box-shadow: none;
}

.recover-section .recover-section__group .recover-section__card form .btn {
  width: 100%;
}

/* Homepage */

.cards {
  margin-top: 2em;
}

.cards .cards__collumns {
  display: grid;
  grid-gap: 20px;
  grid-template-areas: "card__item--message card__item--message card__item--fastview-a" "card__item--message card__item--message card__item--fastview-a" "card__item--info-a card__item--info-b card__item--fastview-b" "card__item--info-c card__item--info-d card__item--fastview-b";
  /*grid-auto-rows: minmax(50px, auto);*/
}

@media (max-width: 767px) {
  .cards .cards__collumns {
    grid-template-areas: "card__item--message" "card__item--fastview-a" "card__item--fastview-b" "card__item--info-a" "card__item--info-b" "card__item--info-c" "card__item--info-d";
  }
}

.cards .cards__collumns .card__item {
  padding: 2em;
  border-radius: 4px;
  background-color: var(--white-text-color);
  border: 1px solid var(--border-color);
  color: var(--white-text-color);
}

.cards .cards__collumns .card__item--message {
  grid-area: card__item--message;
  position: relative;
}

.cards .cards__collumns .card__item--message::before {
  content: url(../images/message-icon.svg);
  position: absolute;
  left: -19px;
  top: 20px;
  width: 35px;
  height: 35px;
}

.cards .cards__collumns .card__item--message .title-cards::after {
  content: "";
  display: block;
  margin: 1.5em 0;
  width: 44px;
  height: 1px;
  background-color: var(--main-text-color);
  opacity: 0.3;
}

.cards .cards__collumns .card__item--message .title-message {
  color: var(--main-text-color);
  border-radius: 2px;
  padding: 0.5em;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

.cards .cards__collumns .card__item--fastview-a {
  grid-area: card__item--fastview-a;
}

.cards .cards__collumns .card__item--fastview-a ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards .cards__collumns .card__item--fastview-a ul .item-fastview {
  text-decoration: none;
  margin: 0.5em 0;
}

.cards .cards__collumns .card__item--fastview-a ul .item-fastview a {
  color: var(--main-text-color);
  text-decoration: none;
  transition: 200ms ease-in-out;
}

.cards .cards__collumns .card__item--fastview-a ul .item-fastview a:hover {
  color: var(--highlight-text-color);
}

.cards .cards__collumns .card__item--fastview-a ul .item-fastview a::before {
  content: "+";
  font-weight: 700;
  font-size: 18px;
  margin-right: 0.5em;
  color: var(--highlight-text-color);
}

.cards .cards__collumns .card__item--fastview-b {
  grid-area: card__item--fastview-b;
}

.cards .cards__collumns .card__item--fastview-b .fastview-title {
  color: var(--highlight-text-color);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}

.cards .cards__collumns .card__item--fastview-b ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards .cards__collumns .card__item--fastview-b ul .item-fastview {
  margin: 0.5em 0;
}

.cards .cards__collumns .card__item--fastview-b ul .item-fastview::before {
  content: "+";
  font-weight: 700;
  font-size: 18px;
  margin-right: 0.5em;
  color: var(--highlight-text-color);
}

.cards .cards__collumns .card__item--fastview-b ul .item-fastview a {
  color: var(--main-text-color);
  text-decoration: none;
}

.cards .cards__collumns .card__item--fastview-b ul .item-fastview a:hover {
  color: var(--highlight-text-color);
}

.cards .cards__collumns .card__item--info-a {
  grid-area: card__item--info-a;
  background-color: var(--highlight-text-color);
}

.cards .cards__collumns .card__item--info-a .title-cards--white {
  color: var(--white-text-color);
}

.cards .cards__collumns .card__item--info-a .number-info {
  font-size: 40px;
  color: var(--white-text-color);
  font-weight: 700;
}

.cards .cards__collumns .card__item--info-a .progress {
  height: 0.4rem;
  border-radius: 10em;
  background-color: #acc69b;
}

.cards .cards__collumns .card__item--info-a .progress .progress-bar {
  background-color: var(--white-text-color);
}

.cards .cards__collumns .card__item--info-b {
  grid-area: card__item--info-b;
}

.cards .cards__collumns .card__item--info-b .number-info {
  font-size: 40px;
  color: var(--main-text-color);
  font-weight: 700;
}

.cards .cards__collumns .card__item--info-b .progress {
  height: 0.4rem;
  border-radius: 10em;
}

.cards .cards__collumns .card__item--info-b .progress .progress-bar {
  background-color: var(--highlight-text-color);
}

.cards .cards__collumns .card__item--info-c {
  grid-area: card__item--info-c;
}

.cards .cards__collumns .card__item--info-c .number-info {
  font-size: 40px;
  color: var(--main-text-color);
  font-weight: 700;
}

.cards .cards__collumns .card__item--info-c .progress {
  height: 0.4rem;
  border-radius: 10em;
}

.cards .cards__collumns .card__item--info-c .progress .progress-bar {
  background-color: var(--highlight-text-color);
}

.cards .cards__collumns .card__item--info-d {
  grid-area: card__item--info-d;
}

.cards .cards__collumns .card__item--info-d .number-info {
  font-size: 40px;
  color: var(--main-text-color);
  font-weight: 700;
}

.cards .cards__collumns .card__item--info-d .progress {
  height: 0.4rem;
  border-radius: 10em;
}

.cards .cards__collumns .card__item--info-d .progress .progress-bar {
  background-color: var(--highlight-text-color);
}

/* Chart */

.chart-info {
  margin-top: 2em;
}

.chart-info .chart-info__card {
  padding: 2em;
  border-radius: 4px;
  background-color: var(--white-text-color);
  border: 1px solid var(--border-color);
  color: var(--white-text-color);
}

/* Padrão das tabelas */

.table-custom {
  color: var(--main-text-color);
}

.table-custom .thead-custom tr th {
  background-color: var(--highlight-text-color);
  border: none;
  color: var(--white-text-color);
}

.table-custom .thead-custom tr th:first-child {
  border-radius: 4px 0 0 0;
}

.table-custom .thead-custom tr th:last-child {
  border-radius: 0 4px 0 0;
}

.table-custom tbody tr th {
  color: var(--highlight-text-color);
}

.table-custom tbody tr td i {
  color: var(--highlight-text-color);
  transition: all 0.2s ease;
}

.table-custom tbody tr td i:hover {
  opacity: 0.6;
}

/* Página padrão de busca */

.box-model .box-model__content .box-pacientes__collumns {
  display: flex;
  flex-direction: row;
}

@media (max-width: 767px) {
  .box-model .box-model__content .box-pacientes__collumns {
    flex-direction: column;
  }
}

.box-model .box-model__content .box-pacientes__collumns .form-control {
  height: 50px;
  width: 530px;
  max-width: 530px;
  border: 1px solid rgba(112, 112, 112, 0.3);
  font-size: 14px;
  border-radius: 4px;
  box-shadow: none;
}

@media (max-width: 991px) {
  .box-model .box-model__content .box-pacientes__collumns .form-control {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .box-model .box-model__content .box-pacientes__collumns .btn {
    margin: 1em 0;
  }
}

.box-model .box-model__content .recentes {
  margin: 2em 0;
  font-style: italic;
}

/* Página de dados do perfil do cliente */
.box-model .box-model__content .box-model-client {
  width: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5em 1em;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  /* background-color: pink; */
}

/* Página com cadastro por etapas */
.box-tab .box-model__content .tab-content .tab-pane .title-tab {
  margin-top: 2em;
  margin-bottom: 1.5em;
}
.box-tab .box-model__content .tab-content .tab-pane .title-tab i {
  margin-right: 0.5em;
}
.box-tab .box-model__content .tab-content .tab-pane .btn-pane-group {
  margin-top: 2em;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .box-model .box-model__content .box-model-client {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5em 1em;
    text-align: left;
  }
}
.box-model .box-model__content .box-model-client .img-client {
  border: 2px solid var(--highlight-text-color);
  border-radius: 50%;
  width: 95px;
  height: 95px;
  position: relative;
  background-color: var(--highlight-text-color);
  /* background-image: url("../images/user.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
}
.box-model .box-model__content .box-model-client .img-client img {
  width: 100%;
  object-fit: contain;
}
.box-model .box-model__content .box-model-client .initials {
  text-align: center;
  color: var(--white-text-color);
  position: absolute;
  font-size: 1.8em;
  font-weight: 600;
  top: 25px;
  left: 25px;
}

.box-model .box-model__content .box-model-client .client-content {
  margin-left: 1.5em;
}
@media (max-width: 767px) {
  .box-model .box-model__content .box-model-client .client-content {
    margin-top: 2em;
  }
}
.box-model .box-model__content .box-model-client .client-content .client-name {
  font-size: 18px;
  font-weight: 700;
}
.box-model .box-model__content .box-model-client .client-content .client-info {
  margin-bottom: 0.2em;
}
.box-model
.box-model__content
.box-model-client
.client-content
.client-info
span {
  font-weight: 700;
}

/* Modal de confirmação */

.modal__content {
  text-align: center;
}

.modal__content .modal__header {
  border: none;
  display: block;
}

.modal__content .modal__header .close-modal {
  font-size: 24px;
  color: #969696;
  outline: none !important;
  transition: all 0.2s ease;
}

.modal__content .modal__header .modal__collumns {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2em;
}

.modal__content .modal__header .modal__collumns i {
  font-size: 55px;
  color: #71a64c;
  margin-bottom: 0.3em;
}

.modal__content .modal__header .modal__collumns .modal-title {
  width: 200px;
  color: #71a64c;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}

.modal__content .modal__body .modal-text {
  width: 290px;
  margin: 0 auto;
}

.modal__content .modal__footer {
  border: none;
  display: flex;
  flex-direction: column;
}

.modal__content .modal__footer .return {
  font-weight: 700;
  margin: 2em;
  opacity: 0.6;
}

/* Página com evolução do paciente e timeline */

.timeline {
  list-style-type: none;
  position: relative;
}
.timeline:before {
  content: " ";
  background: #d4d9df;
  display: inline-block;
  position: absolute;
  left: 29px;
  width: 2px;
  height: 100%;
  z-index: 400;
}
@media (max-width: 767px) {
  .timeline:before {
    content: " ";
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 9px;
    width: 2px;
    height: 100%;
    z-index: 400;
  }
}
.timeline > li {
  margin: 20px 0;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .timeline > li {
    padding-left: 0;
  }
}

.timeline > li:before {
  content: " ";
  background: white;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--highlight-text-color);
  left: 20px;
  width: 20px;
  height: 20px;
  z-index: 400;
}
@media (max-width: 767px) {
  .timeline > li:before {
    left: 0px;
  }
}

.timeline .timeline__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.timeline .timeline__inner .timeline-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.timeline .timeline__inner .timeline-group .date {
  margin-top: 0.1em;
}
.timeline .timeline__inner .timeline-group .doctor-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.timeline .timeline__inner .group-edit {
  margin-right: 2em;
}
@media (max-width: 767px) {
  .timeline .timeline__inner .group-edit {
    margin-right: 0;
  }
}
.timeline .timeline__inner .group-edit .fa-trash-alt {
  margin-left: 1em;
}
.timeline li .evolution-patient {
  margin-top: 0;
  margin-bottom: 2em;
}

/* Footer */

.site-footer {
  margin: 12em 0 2em;
}

.site-footer .site-footer__content {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.site-footer .site-footer__content .logo-footer {
  margin-bottom: 0.5em;
  color: #4d5053;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4px;
  opacity: 0.2;
}

.site-footer .site-footer__content .copyright {
  font-size: 11px;
}

/* Icons */
.fa {
  margin-right: 0.5em;
  font-size: 1.3em;
}

.fa.disabled,
.fa[disabled],
.disabled > .fa,
[disabled] > .fa {
  color: grey;
  opacity: 0.5;
}

/* DataTables */
.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: var(--darkgreen-color);
  border-color:  var(--darkgreen-color);
}
.page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: var(--darkgreen-color);
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-top-color: rgb(222, 226, 230);
  border-right-color: rgb(222, 226, 230);
  border-bottom-color: rgb(222, 226, 230);
  border-left-color: rgb(222, 226, 230);
}

.bar-buttons {
  display: flex;
  justify-content: flex-end;
}
.help-block{
  color: red;
}

.invalid-feedback{
  color: red;
}

label.error {
  float: none !important;
  font-size: 90% !important;
  font-weight: normal !important;
  color: red !important;
  vertical-align: bottom !important;
}

.dropdown .img-client {
  border: 2px solid var(--highlight-text-color);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  position: relative;
  background-color: var(--highlight-text-color);
}
.dropdown .img-client img {
  width: 100%;
  object-fit: contain;
}
.dropdown .initials {
  text-align: center;
  color: var(--white-text-color);
  position: absolute;
  font-weight: 600;
  top: 12%;
  left: 20%;
}
.file-row{
  margin-top: 20px;
}

.dropzone {
  border:2px dashed #999999;
  border-radius: 10px;
}
.dropzone .dz-default.dz-message {
  background-size: 132px 132px;
  margin-top: -101.5px;
  background-position-x:center;

}
.dropzone .dz-default.dz-message span {
  display: block;
  margin-top: 140px;
  font-size: 20px;
  text-align: center;
}

[data-letters]:before {
  content:attr(data-letters);
  display:inline-block;
  font-size:1em;
  font-weight: 600;
  width:2.5em;
  height:2.5em;
  line-height:2.5em;
  text-align:center;
  border-radius: 50%;
  background: var(--highlight-text-color);;
  vertical-align:middle;
  margin-right:1em;
  color: white;
}