.e-modal {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.66);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}
.e-modal-dialog {
    width: calc(280 / 375 * 100vw);
    background-color: #ffffff;
    box-shadow: 0px 2px 7px 1px rgb(0 0 0 / 18%);
    position: fixed;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    border-radius: calc(6 / 375 * 100vw);
    overflow: hidden;
}
.e-modal-content {
    background-color: #fff;
    padding: calc(22/ 375 * 100vw) calc(20 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    color: #2B313F;
    line-height: calc(20 / 375 * 100vw);
}
.e-modal-button {
    display: flex;
    height: calc(44 / 375 * 100vw);
    background-color: #F4F6F8;
    align-items: center;
    justify-content: space-evenly;
}

.e-modal-button-close {
    font-size: calc(16 / 375 * 100vw);
    color: #0063BA;
    font-weight: 400;
    line-height: calc(22 / 375 * 100vw);
    background: none;
    border: 0;
}