#finalizar{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}
  
#finalizar.show {
    opacity: 1;
    pointer-events: auto;
}
  
#fianlizar .content {
    background: #fff;
    max-width: 420px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    padding: 30px;
}
  
#finalizar img {
    max-width: 130px;
    margin-bottom: 20px;
}
  
#finalizar h4 {
    font-size: 1.53rem;
}
  
#finalizar p {
    font-size: 1.15rem;
    margin: 15px 0 30px;
    font-weight: 500;
}
  
#finalizar p strong {
    color: #5e63ba;
    font-weight: 600;
}
  
#finalizar button {
    padding: 12px 23px;
}