/* MENU NO TOPO */
.menu-topbar {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:40px;
  background:#4d7eb9;
  z-index:999;
}
.menu-topbar .company-info {
  display: inline-block;
  margin: 5px 30px 5px 0;
  padding: 5px 10px;
  background-color: #fff;
  color: #4d7eb9;
  border-radius: 5px;
  cursor: pointer;
}
.menu-topbar .company-info:hover {
  background-color: #e9e9e9;
}

/* LOAD EM BOTOES */
.btn.loader {
    opacity: .6;
    pointer-events: none;
    user-select: none;
}
.btn.loader i {
    margin-right: 10px;
    animation-name: loading;
    animation-duration: 700ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes loading{
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* CAMPO PESQUISA PACIENTES */
.swal2-modal .pesqProcedimento {
  font-size: .75em;
}
.pesqProcedimento {
  background: #fff;
  height: auto;
  position: absolute;
  border: 1px solid #a6d2ff;
  margin-top: -1px;
  z-index: 2;
  padding: 0;
  max-width: 575px;
}
.pesqProcedimento .table > tbody + tbody {
  border-top: 2px solid transparent;
}

.pesqProcedimento .table > tbody td.w-nowrap {
  white-space: nowrap;
}

.pesqProcedimento .table > tbody td.w70:first-of-type {
  width: 70%;
}

.pesqProcedimento .table > tbody td.w85:first-of-type {
  width: 85%;
}

.pesqProcedimento #table label{
  font-weight: bold;
}

/* PACIENTES :: FOTO DO PACIENTE */
.panel-fotos {
  margin: 0 auto 25px;
  width: 320px;
  text-align: center;
}
.panel-fotos img {
  width: 130px;
}
.panel-fotos label {
  display: block;
  width: 100%;
  margin-top: 20px;
  border: 2px dashed #e6e6e6;
  border-radius: 3px;
  padding: 10px 0;
}
.panel-fotos label:hover {
  background-color: #e6e6e6;
  cursor: pointer;
}

.iframe-fotos {
  height: 190px;
}

/* PAGINA ORCAMENTOS */
.proc-delete {
  position: relative;
}
.proc-delete span {
  display: none;
  position: absolute;
  left: -10px;
  top: calc(-2px + 50%);
  transform: translateY(-50%);
  cursor: pointer;
  color: red;
}
.proc-delete:hover span {
  display: inline-block;
}

/* ESTILO MODULO CALENDARIO */
.fc .fc-timegrid-slot {
  height: 4.5em;
}
.agenda-filtro {
  width: 365px;
  float: right;
}
.agenda-filtro select {
  margin-top: -7px;
}

.fc-event[title] {
  display: block;
}

.fc-event[title]:after {
  content: attr(title);
  color: #111;
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
  font-weight: bold;
  z-index: 99999;
}

.fc-event[data-title] {
  position: relative;
}

.fc .fc-bg-event {
  background-color: #d5d5d5 !important;
  user-select: none;
  pointer-events: none;
}
.fc .fc-timegrid-bg-harness {
  user-select: none;
  pointer-events: none;
}
.fc .fc-bg-event:after {
  display: none;
}

/* ORCAMENTO :: SELECAO DE DENTES */
#tabelaDentes td {
  position: relative;
}
#tabelaDentes td .dente-selecao {
  background-color: #4d7eb9;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  text-align: center;
  transform: translatex(-50%);
  display: flex;
  align-items: center;
}
.dente-selecao input {
  display: block;
  margin: 0 auto;

}

