.esmodal {
    visibility: hidden;
    transition: all 0.4s;
    opacity: 0;
}
.esmodal.open {
    visibility: visible;
    opacity: 1;
}

.esmodal,
.esmodal-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: var(--screen-h, 100vh);
    width: 100vw;
    z-index: 100;
}

.esmodal-overlay {
   background: rgb(13 50 110 / 42%);
}

.esmodal,
.esmodal-card,
.esmodal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.esmodal-content {
    overflow: auto;
    flex-grow: 1;
}

.esmodal-body {
    z-index: 101;
    margin: auto;
    max-height: calc(100vh - 1rem);
    max-width: calc(100vw - 1rem);
    border-radius: 10px;
    overflow: hidden;
    width: 700px;
    height: 100%;
    background: white;
}

.esmodal-header,
.esmodal-content,
.esmodal-footer {
    padding: 0rem;
}

.esmodal-header {
    background: #1d285c;
    text-transform: capitalize;
    font-size: 1.25rem;
    color: white;
    font-weight: bold;
}

.esmodal-footer {
  display: flex;
  justify-content: space-between;
}




.esmodaltwo {
    visibility: hidden;
    transition: all 0.4s;
    opacity: 0;
}
.esmodaltwo.open {
    visibility: visible;
    opacity: 1;
}

.esmodaltwo,
.esmodaltwo-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: var(--screen-h, 100vh);
    width: 100vw;
    z-index: 100;
}

.esmodaltwo-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.esmodaltwo,
.esmodaltwo-card,
.esmodaltwo-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.esmodaltwo-content {
    overflow: auto;
    flex-grow: 1;
}

.esmodaltwo-body {
    z-index: 101;
    margin: auto;
    max-height: calc(100vh - 1rem);
    max-width: calc(100vw - 1rem);
    border-radius: 10px;
    overflow: hidden;
    width: 700px;
    height: 700px;
    background: white;
}

.esmodaltwo-bodytwo {
    z-index: 101;
    margin: auto;
    max-height: calc(100vh - 1rem);
    max-width: calc(100vw - 1rem);
    border-radius: 10px;
    overflow: scroll;
    overflow-x: scroll;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    background: white;
}

.esmodaltwo-header,
.esmodaltwo-content,
.esmodaltwo-footer {
    padding: 0.5rem;
}

.esmodaltwo-header {
    background: #0d326e;
    text-transform: capitalize;
    font-size: 1.25rem;
    color: white;
    font-weight: bold;
}

.esmodaltwo-footer {
  display: flex;
    justify-content: center;
    background-color: #0d326e;
}

button.botoncerrar {
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 2%;
    padding-bottom: 2%;
    margin-bottom: 0%;
    font-family: 'Indivisa Display Sans Heavy Italic';
    background-color: #0029e5;
    color: white;
    font-size: 1em;
    border: none;
    /* border-radius: 10%; */
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
}

