/* popup_list.css, popup_new.css 통합예정 */

/* popup */
@keyframes moveDownFadeIn {
    0% {
        transform: translate(-50%, -50%);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.popWrap {
    width: 100%;
    height: 100vh;
    padding: 50px;
    background-color: rgba(0,0,0,0.3);
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    z-index: 1000;
}

.popup {
    width: 443px;
    height: 179px;
    background-color: var(--color-white);
    border-radius: 12px;
    display: flex;

    justify-content: end;
    flex-direction: column;
    padding: 30px 40px;
    /* animation: moveDownFadeIn 0.4s; */
}


.popup .popup_content{
    display: flex;
    flex-direction: row;
    margin-bottom: 32px;
}

.popup .popup_content .content_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 12px;
}


.popup .popup_content .content_right .title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.popup .popup_content .content_right .text {
}

.popup .btn_full {
    width: 302px;
    height: 60px;
    border-radius: 6px;
    background-color: var(--color-main-black);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
}

.popup .btn_full:hover {
    background-color: #272a41ed;
}

.popup .btn_area {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.popup .btn_left {
    width: 100px;
    height: 60px;
    border-radius: 6px;
    background-color: var(--color-white);
    border: 1px solid var(--color-main-black);
    font-weight: 500;
    font-size: 24px;
    color: var(--color-main-black);
}

.popup .btn_left:hover {
    background-color: #f5f5f5;
}

.popup .btn_right {
    width: 190px;
    height: 60px;
    border-radius: 6px;
    background-color: var(--color-main-black);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
}

.popup .btn_right:hover {
    background-color: #272a41ed;
}

.pop_del .popup_btn {
    width: 100%;
    display: flex;
    gap: 10px;
}

.popup .btn_sel {
    width: 100%;
    height: 60px;
    border-radius: 6px;
    background-color: var(--color-main-black);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
}

.pop_reRgst .name {
    font-weight: 600;
    font-size: 32px;
    color: var(--color-main-black);
}

.pop_reRgst .sit {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-main-blue);
}

/* 팝업 버튼 박스(복합) */
.popup-btnBox_left {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
}




