.popup-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
}
.popup-notice-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.popup-notice-content {
    position: fixed;
    top: 30vh;
    user-select: none;
    background-color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    z-index: 2;
}
.popup-notice-content * {
    padding: 12px 18px;
}
.popup-notice-content header {
    color: #212121;
    background-color: rgb(254, 215, 63);
    border-radius: 10px 10px 0 0;
}
.popup-notice-content main {
    color: #757575;
    padding: 12px 18px;
}
.popup-notice-content footer {
    border-top: #757575 1px solid;
    margin: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-notice-content footer .popup-notice-btn {
    background-color: rgb(254, 215, 63);
    padding: 6px 36px;
    border-radius: 50px;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .popup-notice-content {
        margin: 24px;
    }
}
