@charset "UTF-8";

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    background-color: rgba(0,0,0,0.5);
}

.modal__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.modal-inner {
    width: 295px;
    padding: 47px 0 24px;
    position: relative;
}

.modal-figure {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    margin-bottom: 9px;
}

.modal-date {
    text-align: center;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.modal-code {
    text-align: center;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.modal-close {
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    right: 0;
    top: 5px;
}

.modal-close::before,
.modal-close::after {
    content: "";
    display: block;
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--color-black);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.modal-close::before {
    transform: rotate(45deg);
}
.modal-close::after {
    transform: rotate(-45deg);
}