#editor-container {
  height: 150px;
}
.ticket-img {
  max-width: 100%;
  max-height: 100;
}
a.nav-link {
  text-transform: capitalize;
}
.nav-tabs .nav-link.active {
  background-color: #212529;
  color: white;
}
a {
  color: black;
}
.nav-tabs .nav-link:hover {
  background-color: darkgray;
  color: white;
  text-transform: capitalize;
}
label,
.label {
  font-weight: bold;
  text-transform: capitalize;
}

input::placeholder {
  text-transform: capitalize;
}

.container {
  font-size: 11px;
}
.pointer {
  cursor: pointer;
}

a .ticket-img:hover {
  opacity: 0.8;
  cursor: zoom-in;
}
.text-transparent {
  color: transparent;
}
body,
td,
th,
a,
button,
input,
select {
  font-size: 12px;
}
input[type="number"] {
  text-align: right;
}
input[type="number"]::placeholder {
  text-align: left;
}
.chart {
  min-height: 500px;
}
.firma {
  max-width: 250px;
}
.item-list {
  display: inline-block;
  margin: 5px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #f9f9f9;
}
.badge button {
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 0 4px 4px 0;
  margin-left: 5px;
}
#signature-pad {
  border: 2px dashed #666;
  background-color: #f7f7f7;
  cursor: crosshair;
}
label:has(+ input:required)::after,
label:has(+ select:required)::after,
label:has(+ textarea:required)::after,
label:has(+ .input-group input:required)::after,
.required::after {
  content: " *";
  color: red;
}

.profilepic {
  max-width: 100%;
  height: 40vh;
  display: block;
  margin: auto;
}

.spinner {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url("../images/spinner.gif") 50% 50% no-repeat rgb(249, 249, 249);
  opacity: 0.8;
}
.show {
  display: block;
  transition: 0.5s;
}
.hide {
  display: none;
  transition: 0.5s;
}

#modalBusqueda {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 999;
}
#contenedorBusqueda {
  background: whitesmoke;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  max-height: 90%;
  overflow-y: auto;
}

@media (max-width: 993px) {
  .modal-lg {
    max-width: 90%;
  }
}
@media (min-width: 1024px) {
  .modal-lg {
    max-width: 70%;
  }
}
