#closed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 200;
}

#closed .back-drop {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
}

#closed .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    background: white;
    width: 500px;
    height: 300px;
    z-index: 1;
    transition: height 0.3s;
    /* padding: 30px 30px 100px 30px; */
}

#closed .popup-content .content-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#closed .popup-content .content-inner .info-text {
    font-size: 18px;
    color: black;
    text-align: center;
}
#closed .popup-content .content-inner .accept {
    margin-top: 30px;
    width: 140px;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    color: black;
    background-color: white;
    border: 1px solid black;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    transition: background 0.2s ease;
}
#closed .popup-content .content-inner .accept:hover {
    background-color: #f2f4f5;
}
#closed .popup-content .content-inner .count {
    margin-top: 15px;
    font-size: 15px;
    color: rgb(163 176 186);
}
#closed .popup-content .content-inner .count .number {
    display: inline;
    color: orange;
    font-weight: 500;
}


/*******************************/
/* 반응형 */
/*******************************/

/* 모바일 */
@media screen and (max-width: 450px) {
    #closed .popup-content {
        width: 350px;
        height: 270px;
    }
    #closed .popup-content .content-inner .info-text {
        font-size: 15px;
    }
}

/* 테블릿 */
@media screen and (min-width: 451px) and (max-width: 1023px) {}

/* PC */
@media screen and (min-width: 1024px) {}