/* colours */
:root{
  --primary: #89e9ff;
  --secondary: #1cc9d1;
  --title: #00337D;
}



div#side-menu ul {
  height: calc(100vh - 230px);
}nav.z-depth-0 {
  background: #00337D !important;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05) !important;
}

nav a {
  color: #ffffff !important;
}.sidenav-trigger {
  color: #ffffff;
  font-size: 35px !important;
}

  /*menu Direita */
   /* Estilos gerais para a barra lateral */
   .mlat-sidebar {
  position: absolute;
  right: 0;
  top: 60px;
  height: calc(100vh - 60px);
  background-color: #e9e9e9;
  display: flex;
  transition: width 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
  box-shadow: -2px 0 2px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

  /* Define a largura do menu no estado fechado e aberto */
  .mlat-sidebar-icons {
    width: 45px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: linear-gradient(135deg, #3a6ba9, #013B82);
    box-sizing: border-box;
  }

  /* ConteÃºdo expandido */
  .mlat-sidebar.open {
    width: 450px;
  }

  /* Estilos para cada item da barra */
  .mlat-sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: Arial, sans-serif;
  }

  /* Ãcone padrÃ£o */
  .mlat-sidebar-item i {
    font-size: 24px;
    margin-bottom: 5px;
  }

  /* NÃºmero abaixo do Ã­cone */
  .mlat-item-number {
    font-size: 12px;
    font-weight: bold;
    background-color: #ffffff;
    color: #3D3D3D;
    padding: 2px 8px;
    border-radius: 12px;
    text-align: center;
    margin-top: 4px;
  }

  /* BotÃ£o minimalista de abrir/fechar */
  .mlat-toggle-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.5s ease; /* TransiÃ§Ã£o mais suave */
  }

  /* Estilo da seta como linha Ãºnica minimalista */
  .mlat-toggle-arrow::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-230deg);
    transition: transform 0.5s ease; /* TransiÃ§Ã£o mais suave */
  }

  /* Altera a direÃ§Ã£o da seta quando o menu estÃ¡ aberto */
  .mlat-sidebar.open .mlat-toggle-arrow::before {
    transform: rotate(311deg);
    transition: transform 0.5s ease; /* TransiÃ§Ã£o mais suave */
  }

  /* ConteÃºdo detalhado que aparece apenas quando o menu estÃ¡ aberto */
  .mlat-content {
    display: none;
    width: 100%;
    color: #333;
    /* padding: 1px; */
    font-family: Arial, sans-serif;
    overflow-y: auto;
    height: 100vh;
  }

  /* Exibe o conteÃºdo quando o menu estÃ¡ aberto */
  .mlat-sidebar.open .mlat-content {
    display: block;
  }

  .mlat-section-header {
    background-color: #3D3D3D;
    padding: 10px;
    font-size: 0.9em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
  }

  /* Estilos para caixas de conteÃºdo com rolagem */
  .mlat-scrollable-content {
    background-color: #ffffff;
    font-size: 0.9em;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: 370px;
    padding: 6px;
    height: calc(50% - 49px);
  }

  .mlat-content-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.75em;
    padding-right: 5px;
  }

  .mlat-content-item:last-child {
    border-bottom: none;
  }

  .mlat-content-icon {
    font-size: 24px;
    margin-right: 10px;
    color: #3d3d3d;
  }

  .mlat-content-details {
    line-height: 1.2em;
    flex-grow: 1;
  }

  .mlat-content-details span {
    display: block;
  }

  /* Ãcones de status menores e alinhados Ã  direita */
  .mlat-status-icon {
    font-size: 18px;
    margin-left: auto;
  }

  /* Ãcones de status */
  .status-approved { color: green; }
  .status-rejected { color: red; }
  .status-pending { color: #FFA500; } /* cor de relÃ³gio (laranja) */


  /*final menu direita */

  .menu-topo {
    z-index: 1000 !important;
    position: sticky;
  }
  .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #013B82, #144b8f);
    border-radius: 6px;
    /* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15); */
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  .menu-item:hover {
    background-color: #005299;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  }
  .menu-item i {
    color: #ffffff;
    font-size: 2em;
    margin-bottom: 5px;
  }
  .menu-item span {
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    font-size: 8px;
    text-align: center;
    line-height: 10px;
  }
  .sidenav li {
    line-height: 15px;
    height: 60%;
  }
  .sidenav{
    padding-bottom:  0 !important;
  }
  .menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }
  li.center-align-user {
  height: auto !important;
}
  .sidenav {
    top: 60px !important;
    height: calc(100vh - 60px);
    position: absolute;
    background-color: #ebeaeae7;
    padding-top: 10px;
    transform: translateX(-105%);
    transition: transform 0.3s ease;
  }
  .sidenav.open {
    transform: translateX(0%);

    background: #ebebeb;
  }
  .sidenav-overlay {
    top: 64px;
  }
  
  .sidenav li{
    line-height: 15px !important;
  }
  .user-view {
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #3d3d3d;
  height: 40%;
  padding: 0 !important;
  margin: 0 !important;
  }
  .user-view .user-details {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .user-view .user-details img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
  }
  .user-view .user-info {
    color: #f0f0f0;
    font-size: 0.7em;
    text-align: left;
    padding-bottom: 15px;
  }
  .user-view .user-info span {
    display: block;
    margin-top: 5px;
  }
  .dropdown-menu {
    position: absolute;
    top: 60px;
    right: 20px;
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 0;
    display: none;
    z-index: 2000;
    width: 150px;
  }
  .dropdown-menu.open {
    display: block;
  }
  .dropdown-menu li {
    list-style: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    height: 50px;
  }
  .dropdown-menu li i {
    margin-right: 10px;
  }
  .dropdown-menu li:hover {
    background: #f0f0f0;
  }
  .dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 850;
    display: none;
  }
  .dark-overlay.open {
    display: block;
  }
  .right-side-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background: #00AEEF;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
  }
  .right-side-menu.open {
    right: 0;
  }
  .right-side-menu-header {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .section-title {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .content-box {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .content-box .content-header {
    font-weight: bold;
    margin-bottom: 10px;
  }
  .content-box .content-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .content-box .content-item i {
    margin-right: 10px;
    color: #00AEEF;
  }
  .content-box .content-item:last-child {
    margin-bottom: 0;
  }
  .toggle-menu-button {
    position: fixed;
    top: 50%;
    right: 350px;
    width: 40px;
    height: 40px;
    background: #00AEEF;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    z-index: 2100;
    transition: right 0.3s ease;
  }
  .toggle-menu-button.open {
    right: 0;
  }
  .anniversaries-tab {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .anniversaries-tab button {
    width: 48%;
    background-color: #006080;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .anniversaries-tab button.active {
    background-color: #004050;
  }



/* layout styles */
nav{
  background: var(--primary);
  /* border-bottom: #191c21; */
}
nav.z-depth-0 {
  background: #00337D !important;
}
/* nav a{
  text-transform: uppercase;
  color: var(--title);
} */
nav a span{
  font-weight: bold;
}
nav .sidenav-trigger{
  margin: 0;
}

/* contact styles */
.contacts{
  margin-top: 20px;
}
.card-panel.contact{
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0px 1px 3px rgba(90,90,90,0.1);
  display: flex;
  grid-template-columns: 2fr 6fr 1fr;
  grid-template-areas: "image details delete";
  position: relative;
  background: #80cbc4 ;
  align-items: center;
}


/* .contact img{
  width: 20%;
  max-width: 60px;
} */
/* .contact-details{
  width: 50%;
  margin-top: 3px;
} */
/* .contact-options{
  width: 20%;
  position: absolute;
  bottom: 0px;
  right: 0px;
} */

.contact-call{
  grid-area: delete;
  position: absolute;
  top: 0px;
  right: 0px;
}
.contact-call i{
  font-size: 18px;
}

.contact-title{
  font-weight: bold;
}
.contact-numbers{
  font-size: 0.8em;
}

.call_out{
  width: 18px;
}

/* form-styles */
.add-btn{
  background: var(--title) !important;
}
input{
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.side-form button{
  background: var(--title);
  box-shadow: 1px 1px 3px rgba(90,90,90,0.2);
}
form .input-field{
  margin-top: 30px;
}

.pk-contact{
  display: flex;
  align-items: center;
  justify-content:space-between;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0px 1px 3px rgba(90,90,90,0.1);  
  grid-template-columns: 2fr 6fr 1fr;
  grid-template-areas: "image details delete";
  position: relative;
  background: #80cbc4 ;
  align-items: center;
  margin-bottom: 8px;
}

.contact-image{
  width: 60px;
}
.contact-image > img{
  width: 100%;
}
.contact-details{
  display: flex;  
  flex-direction: column;
  flex: 1;
}

.contact-options i{
  justify-content: space-evenly;
  font-size: 18px;
  align-items: center;
  margin-top: 10px;
}

.contact-options{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  font-size: 18px;
  align-items: center;
} /* Custom styles for a more sophisticated finish */
body {
  font-family: 'Roboto', sans-serif;
  background: #f4f4f4;
}
.nav-wrapper {
  /* background: #51CCBC; */
  background: linear-gradient(to right, #013B82, #162d4b);
}
.sidenav {
  background: #00337D;
  color: #ffffff;
}
/* .sidenav a {
  color: #ffffff;
} */
.btn-large {
  border-radius: 25px;
  transition: background-color 0.3s ease;
}
.btn-large:hover {
  background-color: #004d40;
}
.container {
  margin-top: 0px;
}
.card {
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  border-radius: 5px !important;
}
.card:hover {
  transform: translateY(-10px);
}
.card-title {
  font-weight: bold;
  color: #00796b;
  color: #004d40 !important;
}
.pdf-item {
  padding: 5px;
}
.pdf-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}
#pdf-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  margin: 0 !important;
  padding: 0 !important;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  overflow: auto;
  z-index: 1000;
}
#pdf-modal-content {
  position: relative;
  max-height: 90vh;
  margin: auto;
  background-color: #ffffff;
  /* padding: 20px; */
  /* border-radius: 15px; */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
#pdf-canvas {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0px;
}
.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  /* background: #e0f2f1; */
  /* border-radius: 0 0 15px 15px; */
}
.pdf-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}
.pdf-controls button {
  background-color: #00796b;
  color: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.pdf-controls button:hover {
  background-color: #004d40;
}

.page-info {
  flex-grow: 1;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
}

#close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  color: #00337D;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
#close-modal:hover {
  color: #00337D;
}/* Centralizar a imagem */
/* Borda arredondada para o card */

/* Borda arredondada para o card */
.rounded-card {
  border-radius: 5px;
  overflow: hidden;
}

/* Fundo da imagem como background */
.card-image {
  background-size: cover;
  background-position: center;
  height: 150px;
  position: relative;

}

/* Gradiente sobreposto ÃƒÆ’Ã‚Â  imagem */
.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%; /* Cobrir a imagem */
  background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.65) 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 10px;
}

/* Cor do texto branco */
.card-title, .btn {
  /* color: white !important; */
}

/* Estilos do Carrossel */
.pdf-carousel {
  position: relative;
  display: flex;
  align-items: center;
  overflow-x: auto; /* Permite a rolagem horizontal */
  scroll-snap-type: x mandatory; /* Ajuste suave para cada item */
  gap: 10px; /* EspaÃ§o entre os itens */
  padding: 10px;
  width: 100%;
}

/* Lista de PDFs em linha */
.pdf-list {
  display: flex;
  gap: 10px;
}

.pdf-item {
  min-width: 250px;
  max-width: 250px;
  flex-shrink: 0;
  scroll-snap-align: start; /* Alinha o item ao inÃ­cio na rolagem */
}

/* Estilos da imagem do card */
.card-image {
  background-size: cover;
  background-position: center;
  height: 340px;
  position: relative;
  border-radius: 5px 5px 0 0;
}

/* Remove a barra de rolagem em alguns navegadores */
.pdf-carousel::-webkit-scrollbar {
  display: none;
}

/* Estilos da imagem do card */
.card-image {
  background-size: cover;
  background-position: center;
  height: 340px;
  position: relative;
  border-radius: 5px 5px 0 0;
}

/*LOGIN */
body {
  font-family: 'Spartan', sans-serif;
}

.focus\:border-custom-blue:focus {
  border-color: #0056b3;
}

.icon-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

:root {
  --primary-color: #000;
  --secondary-color: #bbb;
  --tertiary-color: #aaa;
  --border-color: #ddd;
  --focus-border-color: var(--primary-color);
  --background-gradient-start: rgba(0, 0, 0, 0.7);
  --background-gradient-end: rgba(0, 0, 0, 0);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.dot {
  animation: blink 1.4s infinite;
  display: inline-block;
  margin: 0 2px;
  opacity: 0;
  font-size: 1.5rem;
}

.dot:nth-child(1) { animation-delay: 0ms; }
.dot:nth-child(2) { animation-delay: 200ms; }
.dot:nth-child(3) { animation-delay: 400ms; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.form-control {
  position: relative;
  padding-top: 15px;
}

.form-control input {
  border: none;
  border-bottom: 2px solid var(--border-color);
  background: transparent;
  padding: 15px 0;
  width: 100%;
  outline: none;
  transition: border-color .3s;
}

.form-control input:focus {
  border-bottom-color: var(--focus-border-color);
}

.form-control label {
  position: absolute;
  top: 15px;
  left: 0;
  pointer-events: none;
  transition: all .3s;
  color: var(--tertiary-color);
  text-transform: uppercase;
  font-size: 0.75rem;
}

.form-control input:focus + label,
.form-control input:not(:placeholder-shown) + label {
  top: -10px;
  color: var(--primary-color);
}

.image-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  background-image: linear-gradient(to top, var(--background-gradient-start) 10%, var(--background-gradient-end));
  color: white;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.logo-container img {
  margin-top: 50px;
  width: 40%;
}

.password-field {
  position: relative;
}

.password-button {
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  color: var(--secondary-color);
  font-size: 1rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.login-container {
  animation: fadeInUp 0.8s ease-out;
}

.login-container,
.image-container,
body {
  overflow: hidden;
}

.image-container {
  animation: fadeIn 0.8s ease-out;
}


div#body_file {
  width: 100%;
padding: 10px;
  padding: 0;
  text-align: left;
  float: left;
}.input-group {
  flex-wrap: unset !important;
}
.container {
  max-width: calc(100% - 75px) !important;
  margin-left: 15px !important;
}
.w-100 {
  display: flex;
}


.horario-visita-table {
  width: 100%;
  table-layout: fixed;
  /* Garante que todas as cÃ©lulas tenham a mesma largura */
}

.horario-visita-table th,
.horario-visita-table td {
  width: 20%;
  /* 5 colunas com a mesma largura */
  text-align: center;
  /* Centraliza o conteÃºdo */
  border: 1px solid #ccc;
  /* Adiciona borda para visualizaÃ§Ã£o */
  padding: 8px;
  /* Adiciona um espaÃ§o interno */
}

.inner-table {
  width: 100%;
  table-layout: fixed;
  /* Garante que as tabelas internas tambÃ©m tenham largura fixa */
}

.inner-table td {
  width: 50%;
  /* Metade da largura para as colunas de manhÃ£ e tarde */
  text-align: center;
  padding: 4px;
}

.text-nowrap {
  white-space: nowrap;
  /* Evita quebra de linha automÃ¡tica */
}

.loading-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #6c757d;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

.loading-text {
  margin-top: 10px;
  font-size: 16px;
  color: #6c757d;
}

span.crm-medico {
  color: #3b4046;
  font-size: 12px;
  margin-top: -10px;
}

h6.nome_cliente {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  color: #3b4046;
}

.horario-visita-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f7f7f7;
}

.tx-white:hover,
.tx-white:active {
  color: white !important;
  text-decoration: none;
}

.horario-visita {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.horario-visita-table th,
.horario-visita-table td {
  padding: 0px;
  text-align: center;
  background-color: #E9ECEF;
  border: 0;
  border-radius: 2px;
}

.inner-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 2px;
}

.text-nowrap {
  white-space: nowrap;
}

.horario-visita-table th {
  background-color: #d1d1d1;
  font-weight: bold;
}

.horario-visita-table td,
.inner-table td {
  padding: 0;
  margin: 0;
  border: none;
}

.half-td {
  width: 20%;
  background-color: #f7f7f7;
  padding: 0;
}

td.bg-light-blue {
  background: #e9ecef !important;
  border-radius: 2px;
}

.bg-green {
  background: linear-gradient(to top, #36C090, #6AB9AD);
  border-radius: 2px;
}

.rounded-table {
  border-radius: 10px;
  overflow: hidden;
}

.bg-gradient-header {
  background: linear-gradient(to top, #0866C6, #4E92D6);
  color: #fff !important;
}

.bg-light-blue {
  background-color: #e0f7fa !important;
}

.bg-dark-blue,
.bg-total {
  background: linear-gradient(to top, #0866C6, #4E92D6) !important;
  color: #fff !important;
}

.text-bold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.btn-farma-active,
.btn-farma-active:hover,
.btn-farma-active:focus {
  background-color: #428BD3 !important;
  border: 0;
  border-radius: 0 !important;
  font-size: 11px !important;
  color: #fff !important;
}

.border-selected {
  background: linear-gradient(to top, #E9ECEF, #E9ECEF) !important;
  padding: 5px 0;
  border-radius: 5px;
}

.btn-farma :active {
  color: #428BD3 !important;
}

.btn-farma {
  background-color: #E9ECEF !important;
  border: 0;
  border-radius: 0 !important;
  font-size: 11px !important;
  color: #003366 !important;
}

.horario-visita-table {
  width: 100%;
  margin-top: 3px;
  border-collapse: collapse;
  font-size: 10px;
}

.horario-visita-table th,
.horario-visita-table td {
  border: 1px solid #fff;
  padding: 1px;
  text-align: center;
}

.horario-visita-table th {
  background-color: #E9ECEF;
}

.media-body .planejamento-info {
  font-size: 12px;
  margin-bottom: 10px;
  color: #555;
}

.media-body .endereco-info {
  font-size: 11px;
  color: #3b4046;
  line-height: 12px;
  text-transform: uppercase;
}

.media-body .info-icon {
  margin-right: 5px;
}

.ordem-indicador {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  color: #0866C6;
}

.ordem-indicador .fa-arrow-up {
  margin-right: 5px;
}

.border-selected .fa-check {
  position: relative;
  margin-right: -29px !important;
  margin-top: 5px;
}

.half-td {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

.half-div {
  width: 50%;
  display: inline-block;
  box-sizing: border-box;
}