.mvp-modal {
   display: none;
   position: fixed;
   z-index: 9999;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.6);
}

.mvp-modal-content {
   background: #fff;
   overflow: hidden;
   /* padding: 1.5rem; */
   width: 90%;
   max-width: 25rem;
   margin: 6% auto;
   border-radius: 10px;
   text-align: center;
}

.mvp-modal-content h2 {
   font-size: 1.2rem;
}

.mvp-modal-opcion {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 1rem;
   padding: 1rem;
}

.mvp-modal-opcion label {
   display: flex;
   align-items: center;
   gap: .5rem;
}

#mvp-close {
   padding: .5rem 1.5rem;
   background: #1D57C5;
   color: white;
   border: none;
   border-radius: .5rem;
   cursor: pointer;
}

#mvp-close:hover {
   background: #0d42a5;
}