#listadoDeTickets {
	width: 100%;
    margin-bottom: 1em;
}
#solicitudRecibida {
    margin-bottom: calc(2.5em + 15px + 60px);
}
#solicitudRecibida .elementor-widget-icon {
    margin-bottom: 1em;
}
#solicitudRecibida .elementor-col-100 .elementor-widget-heading:nth-child(3) p {
    font-size: 15px;
}
.ticket-card {
  background: #fff;
  border-radius: 14px;
  padding:20px;
  margin-bottom: 2em;
  position: relative;
  transition: all .3s ease;
  width: 100%;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ticket-id {
  background: #e6e6e6;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

.ticket-info {
  flex: 1;
  margin-left: 20px;
  font-size: 14px;
  line-height: 20px;
}

.ticket-info strong{
    font-size: 12px;
}

.ticket-status {
  text-align: right;
  font-size: 14px;
}

.ticket-status button.btn-eliminar{
    font-size: 12px;
}

.ticket-status strong{
    font-size: 12px;
}

.btn-eliminar {
  margin-top: 10px;
  border: 1px solid var( --e-global-color-252285b ); 
  color: var( --e-global-color-252285b );
  background: transparent;
  padding: 6px 18px;
  border-radius: 20px;
  cursor: pointer;
}

.btn-eliminar:hover {
  background: var( --e-global-color-252285b );
  color: white;
}

.ticket-body {
    background: #f2f2f2;
    padding: 10px;
    width: 100%;
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, opacity .3s ease;
    opacity: 0;
    margin-top: 15px;
    font-size: 14px;
    font-style: italic;
}

.ticket-body strong{
    font-size: 12px;
}

.ticket-card.open .ticket-body {
  max-height: 300px;
  opacity: 1;
}

.ticket-toggle {
  font-size: 10px;
  position: absolute;
  bottom: -1.8em;
  right: 20px;
  background: #6ea3c9;
  width: 75px;
  height: 18px;
  border-radius: 0px 0px 8px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.ticket-toggle:hover,
.ticket-card.open .ticket-toggle {
  background: #3983C2;
}
.ticket-toggle i {
  color: white;
  transition: transform .3s ease;
}

.ticket-card.open .ticket-toggle i {
  transform: rotate(180deg);
}


.loader-container-mini {
    background: #fff;
    z-index: 99999;
    width: 100%;
    /* position: fixed; */
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}