/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Description: Tema hijo para sistema de Atención al Cliente
Version: 1.0
*/

/* ====== CONTENEDOR TICKET ====== */
#aqTicketBox{
  max-width: 360px;
  margin: 20px auto;
  padding: 20px;
  border: 2px dashed #111;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff;
}

.aq-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.aq-big{
  font-size: 72px;
  font-weight: 900;
}

.aq-foot{
  margin-top: 12px;
  font-size: 12px;
  opacity: .7;
}

/* ====== BOTONES ====== */
.aq-btn{
  display: inline-block;
  padding: 14px 20px;
  margin: 10px 6px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background: #111;
  color: #fff;
  border-radius: 6px;
}

.aq-btn.secondary{
  background: #555;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px){
  .aq-big{ font-size: 52px; }
}

/* ====== IMPRESIÓN: SOLO EL TICKET ====== */
@media print {

  body{
    visibility: hidden;
  }

  #aqTicketBox,
  #aqTicketBox *{
    visibility: visible;
  }

  #aqTicketBox{
    position: fixed;
    top: 20px;
    left: 20px;
    width: 320px;
    background: #fff;
    box-sizing: border-box;
  }

  #aqTake,
  #aqPrint{
    display: none !important;
  }
}
