/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5f5;
}
.container{
    position: relative;
    max-width: 1100px;
    width: 100%;
    border-radius: 6px;
    padding: 30px;
    margin: 10px 15px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.monitor {
    display: flex;
    
    width: 100vw;
    background-color: #fff;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
}
.container header{
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}
.container header::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 542px;
    border-radius: 8px;
    background-color: #f33e3a;
}
.container form{
    position: relative;
    margin-top: 16px;
    min-height: 490px;
    background-color: #fff;
    overflow: hidden;
}
.container form .form{
    /* ===== Google Font Import - Poppins ===== */
     /* ===== position: absolute;===== */
    background-color: #fff;
    transition: 0.3s ease;
}
.container form .form.second{
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
}
form.secActive .form.second{
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
form.secActive .form.first{
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
}
.container form .title{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: 6px 0;
    color: #333;
}
.container form .fields{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 10px;
}
form .fields .input-field{
    display: flex;
    width: calc(100% / 4 - 15px);
    flex-direction: column;
    margin: 4px 0;
}
form .fields .input-fieldT{
    display: flex;
    width: calc(100% / 2 - 20px);
    flex-direction: column;
    margin: 4px 0;
}
.input-field label{
    font-size: 12px;
    font-weight: 500;
    color: #2e2e2e;
}
.input-fieldT label{
    font-size: 12px;
    font-weight: 500;
    color: #2e2e2e;
}
.input-field input, select{
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    border-radius: 5px;
    border: 1px solid #aaa;
    padding: 0 15px;
    height: 42px;
    margin: 8px 0;
}
.input-fieldT input, select{
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    border-radius: 5px;
    border: 1px solid #aaa;
    padding: 0 15px;
    height: 42px;
    margin: 8px 0;
}
.input-field input :focus,
.input-field select:focus{
    box-shadow: 0 3px 6px rgba(0,0,0,0.13);
}
.input-field select,
.input-field input[type="date"]{
    color: #707070;
}
.input-field input[type="date"]:valid{
    color: #333;
}
.container form button, .backBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    max-width: 200px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    margin: 25px 0;
    background-color: #4070f4;
    transition: all 0.3s linear;
    cursor: pointer;
}
.container form .btnText{
    font-size: 14px;
    font-weight: 400;
}
form button:hover{
    background-color: #265df2;
}
form button i,
form .backBtn i{
    margin: 0 6px;
}
form .backBtn i{
    transform: rotate(180deg);
}
form .buttons{
    display: flex;
    align-items: center;
}
form .buttons button , .backBtn{
    margin-right: 14px;
}
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 17px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.containercheck {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.containercheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.contenido{
     height: 56rem;
    grid-template-columns: 70vw;
    display: grid;
    grid-template-areas: "a1 a2";
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.container:hover input ~ .checkmark {
  background-color: #ccc;
}
.container input:checked ~ .checkmark {
  background-color: #f33e3a;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.container input:checked ~ .checkmark:after {
  display: block;
}
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.tabla {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.tabla td, #tabla th {
  border: 1px solid #ddd;
  padding: 8px;
}

.tabla tr:nth-child(even){background-color: #f2f2f2;}

.tabla tr:hover {background-color: #ddd;}

.tabla th {
  padding: 10px;
  text-align: left;
  background-color: #4070F4;
  color: white;
}

.nextBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    max-width: 200px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    margin: 25px 0;
    background-color: #f33e3a;
    transition: all .3s linear;
    cursor: pointer;
}
.receptor{
    display: none;
}
.nextBtnsmall{
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    background-color: #4070f4;
    border: none;
    outline: none;
    border-radius: 5px;
    transition: all .3s linear;
    cursor: pointer;
    padding:5px;
}

.scroller::-webkit-scrollbar {
  width: 7.5px;
}

.scroller::-webkit-scrollbar-track {
  background: white;
}

.scroller::-webkit-scrollbar-thumb {
  background: #7f7f7f;
  border-right: 1px solid white;
}
.ancho{
     width: 70%;
}
.derecho {
        width: 30%;
    }
    .scroller{
        width: 70%;
    }
    
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 20px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}   
.LlamadoActual{
    width: 65vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.titulo{
        width: 100vw;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 10%;
    border-bottom: 5px solid #f33e3a;
}
.logo{
    padding: 10px;
}

.llamado{
        padding-bottom: 176px;
    /*display: flex;
    position: relative;
    height: 90%;*/
    grid-area: a1;
    align-content: center;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}
.Postulantellamado{
     text-align: center;
    /* padding-top: 1px; */
    /* padding-left: 0vw; */
    font-size: 7vw;
}
.Servicio{
    padding-bottom: 0vw;
    padding-top: 40px;
    padding-left: 27vw;
    font-size: 4vw;
}
.Numllamado{
    width: 16vw;
  
    text-align: center;
    border: 2px solid red;
    border-radius: 25px;
    position: relative;
    bottom: 0;
    right: 0;
    font-size: 5vw;
    padding: 1%;
    background-color: #f33e3a;
    color: white;
    margin-left: 29vw;
}

.listTickets {
        padding-top: 15px;
        width: 35vw;

}
.boxticket {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    gap: 5px;
    border: 2px solid;
    padding: 10px;
    border-radius: 15px;
    background-color: #dfa9a9;
    color: #fff;
    width: 80%;
}
@media (max-width:1300px){
    .listTickets {
    overflow-y: scroll;
    grid-template-areas: "a1 a2";
    display: grid;
    width: 99vw;
    justify-items: center;
}
.contenido {
    height: 56rem;
    grid-template-columns: 100vw; 
    display: grid;
    grid-template-areas:
        "a1"
        "a2";
    justify-items: center;
}
.llamado {
    padding-bottom: 75px;
    grid-area: a1;
    align-content: center;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}
.Postulantellamado {
    text-align: center;
      font-size: 7vw ;
}
.boxticket {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    gap: 5px;
    border: 2px solid;
    padding: 10px;
    border-radius: 15px;
    background-color: #dfa9a9;
    color: #fff;
    width: 92%;
    
}
    
    .Numllamado {
    width: 16vw;
    text-align: center;
    border: 2px solid red;
    border-radius: 25px;
    position: relative;
    bottom: 0;
    right: 0;
    font-size: 5vw;
    padding: 1%;
    background-color: #f33e3a;
    color: white;
    /* margin-left: -10vw; */
    margin-left: 43vw;
}
   .Servicio {
    padding-bottom: 0vw;
    padding-top: 40px;
    padding-left: 41vw;
    font-size: 4vw;
} 
}

@media (max-width:1080px){
 .Postulantellamado {
        padding-left: 0vw;
        font-size: 10vw;
    }
.Numllamado {
    text-align: center;
    border: 2px solid red;
    border-radius: 25px;
    position: relative;
    bottom: 0;
    right: 0;
    font-size: 8vw;
    padding: 1%;
    background-color: #f33e3a;
    color: white;
    width: 20vw;
    height: 14vw;
    margin-left: 24vw;
}
.Servicio {
       padding-top: 47px;
    padding-left: 19vw;
    font-size: 6vw;
}
}
@media (max-width: 750px) {
    .container form{
        overflow-y: scroll;
    }
    .container form::-webkit-scrollbar{
       display: none;
    }
    form .fields .input-field{
        width: calc(100% / 2 - 15px);
    }
    .derecho {
        width: 100%;
    }
    .scroller{
        width: 100%;
    }
}
@media (max-width: 720px){
        .boxticket {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        gap: 5px;
        border: 2px solid;
        padding: 10px;
        border-radius: 15px;
        background-color: #dfa9a9;
        color: #fff;
        width: 100%;
    }
    .contenido {
    height: 56rem;
    grid-template-columns: 100vw;
    display: grid;
    grid-template-areas:
        "a1"
        "a2";
    }
    .Postulantellamado {
        padding-left: 2vw;
        font-size: 12vw;
    }
    .Servicio {
        padding-top: 39px;
        padding-left: 29vw;
        font-size: 8vw;
    }
        .Numllamado {
        text-align: center;
        border: 2px solid red;
        border-radius: 25px;
        position: relative;
        bottom: 0;
        right: 0;
        font-size: 9vw;
        padding: 1%;
        background-color: #f33e3a;
        color: white;
        width: 27vw;
        height: 16vw;
        margin-left: 36vw;
    }
    .listTickets {
    padding-left: 0rem;
    
    display: flex;
    overflow-y: scroll;
    
    flex-direction: column;
    padding-top: 15px;
    width: 96vw;
    }
}

@media (max-width: 480px) {
    .contenido {
    height: 56rem;
    /* grid-template-columns: 70vw; */
    display: grid;
    grid-template-areas:
        "a1"
        "a2";
    }
    form .fields .input-field{
        width: 100%;
    }
    .LlamadoActual{
        width: 100vw;
        height: 30%;
        display: flex;
        flex-wrap: nowrap;
    }
.listTickets {
        padding-left: 0rem;
       
        display: flex;
        overflow-y: scroll;
        
        width: 90vw;
    }
    
    .container header::before{
        width: 283px;
    }
    form .fields .input-fieldT{
        width: 100%;
    }
    .titulo{
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        align-items: center;
        height: 9%;
        border-bottom: 5px solid #f33e3a;
    }
    .llamado{
        
                width: 98vw;
        padding-bottom: 35px;
        margin-left: 13px;
    }
    .Postulantellamado{
            width: 93vw; 
        margin-bottom: 1rem;
        padding-top: 33px;
        padding-right: 5vw;
        font-size: 12vw;
    }
    .Servicio{
font-size: 9vw;
        padding-left: 100px;
        padding-top: 3px;
        
    }
    .Numllamado{
   font-size: 12vw;
        position: relative;
        width: 36vw;
        height: 22vw;
        margin-left: 123px;
        text-align: center;
    }
        .boxticket {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        gap: 5px;
        border: 2px solid;
        padding: 10px;
        border-radius: 15px;
        background-color: #dfa9a9;
        color: #fff;
        width: 100%;
    }
}
