.pop_up_container {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 100;
    overflow: auto;
    padding: 10px;
}

.notice_pop_up {
    background-color: white;
    border-radius: 10px;
    width: fit-content;
    height: auto;
    padding: 15px;
    position: relative;
}

.pop_up_img {
    margin: 0 auto;
    display: block;
    height: 80px;

    /* margin: 0 auto;
                display: block;
                height: 100px;
                background-color: #282829;
                padding: 10px 50px;
                border-radius: 6px; */
}

.pop_up_msg {
    color: var(--main-black);
    font-size: 20px;
}

.pop_up_msg>p {
    text-align: center;
    padding: 30px 0;
}

.pop_up_msg .sale {
    background-color: rgb(27, 167, 22);
    color: white;
    margin: 15px auto;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 24px;
    display: block;
    width: fit-content;
    border-radius: 4px;
}

.pop_up_msg a {
    color: rgb(67, 105, 228);
}

.close_pop_up {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 30px;
    width: 30px;
    font-size: 24px;
    color: var(--dark-gray);
}

@media screen and (max-width: 450px) {
    .pop_up_msg {
        font-size: 16px;
    }
}