.popup{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}
.popbox{
    width: 672px;
    background-color: #fff;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pop_img{
    position: relative;
    width: 100%;
    cursor: pointer;
}
.pop_img img{
    max-width: 100%;
    right: 30px;
    top: 40px;
    position: absolute;
}
.pop_title{
    width: 574px;
    border-bottom: 2pt solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222222;
    font-size: 25px;
    font-family: 'Pretendard-ExtraBold', sans-serif;
    padding-top: 60px;
    padding-bottom: 25px;
    margin: auto;
}
.pop_txt{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.pop_txt p{
    font-family: 'Pretendard-Regular', sans-serif;
    font-size: 20px;
    color: #222222;
    padding-bottom: 25px;
}
.pop_txt p strong{
    font-family: 'Pretendard-Bold', sans-serif;
}
.pop_txt span{
    font-family: 'Pretendard-Bold', sans-serif;
    font-size: 20px;
    color: #222222;
}
.popbox input{
    width: 576px;
    background: linear-gradient(137deg, #ffe400, #ffd300);
    font-family: 'Pretendard-Black', sans-serif;
    font-size: 20px;
    color: #fff;
    border: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 23px 0;
    margin-top: 55px;
    margin-bottom: 50px;
    border-radius: 50px;
}