.popup-wrapper {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    left: 0;
    margin: auto;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: 0.2s all ease;
    width: 100vw;
    z-index: 9999;
}

.popup-wrapper .popup-container {
    background-color: #ffffff;
    border-radius: 15px;
    height: auto;
    max-height:100vh;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    max-width:1024px;
    padding:40px;
    overflow: auto;
}

.popup-wrapper .popup-container h2 {
    font-size:2rem;
    margin-bottom:2rem;
}

.popup-wrapper .popup-container p {
    font-size:1.6rem;
    line-height:1.7;
}

.popup-wrapper .popup-container table {
  margin:20px 0;
  border-top:1px #e2e4e7 solid;
  border-left:1px #e2e4e7 solid;
}

.popup-wrapper .popup-container table th {
    border-bottom:1px #111 solid;
    font-size:1.4rem;
    padding:10px;
    font-weight:500;
    border-right:1px #e2e4e7 solid;
}
.popup-wrapper .popup-container table td {
    font-size:1.4rem;
    border-bottom:1px #e2e4e7 solid;
    padding:10px;
    line-height:1.5;
    border-right:1px #e2e4e7 solid;
}
.popup-wrapper .popup-container table td p {
    font-size:1.4rem;
}
.popup-wrapper .popup-container table td span {
    font-size:1.3rem;
    color:#999;
    display: block;
}


.popup-wrapper .popup-container .popup-close-button {
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: block;
    height: 30px;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
}

.popup-wrapper .popup-container .popup-close-button::before,
.popup-wrapper .popup-container .popup-close-button::after {
    background-color: #cccccc;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    margin: auto;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5;
}

.popup-wrapper .popup-container .popup-close-button::before {
    transform: rotate(45deg);
}

.popup-wrapper .popup-container .popup-close-button::after {
    transform: rotate(-45deg);
}


@media screen and (max-width: 1024px) {
    .popup-wrapper .popup-container {
        border-radius:0;
        padding:30px;
    }
    .popup-wrapper .popup-container p {
        font-size:1.4rem;
    }
    .popup-wrapper .popup-container table th,
    .popup-wrapper .popup-container table td,
    .popup-wrapper .popup-container table td p {
        font-size:1.3rem;
    }
}
