.custom_popup_template{
    position: fixed;
    left: 0%;
    top: 0%;
    right: auto;
    bottom: auto;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    overflow: scroll;
}

.custom_popup_template .custom_popup_template_content{
    position: relative;
    margin: 0 auto;
    top: calc(50% - 220px);
    width: 500px;
    background-color: white;
    border-radius: 10px;
    height: fit-content;
    padding: 20px 40px;
}

.custom_popup_template .custom_popup_template_content .close_img{
    position: relative;
    left: 420px;
    top: -5px;
    width: 18px;
    cursor: pointer;
}

.custom_popup_template .custom_popup_template_content .custom-popup-emoji{
    width: 100%;
    text-align: center;
    font-size: 100px;
    height: 80px;
    margin-top: 30px;
}

.custom_popup_template .custom_popup_template_content .custom-popup-title{
    font-size: 20px;
    text-align: center;
    height: fit-content;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 25px;
}

.custom_popup_template .custom_popup_template_content .custom-popup-text{
    font-size: 18px;
    line-height: 25px;
    height: fit-content;
    text-align: center;
}

.custom_popup_template .custom_popup_template_content .custom-popup-button{
    min-width: 100px;
    width: fit-content;
    padding: 10px 20px;
    background-color: #307bff;
    text-align: center;
    border-radius: 10px;
    color: white;
    margin: 20px auto;
    cursor: pointer;
}

.custom_popup_template .custom-popup-buttons{
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    margin: 40px auto;
}

.custom_popup_template .custom-popup-button1{
    min-width: 190px;
    width: fit-content;
    padding: 10px 20px;
    background-color: #7e7e7e;
    text-align: center;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}

.custom_popup_template .custom-popup-button2{
    min-width: 190px;
    width: fit-content;
    padding: 10px 20px;
    background-color: #307bff;
    text-align: center;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}

.custom_popup_template .kakao-login-button{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgb(242, 221, 37);
    color: rgb(25, 23, 8);
    font-size: 14px;
    cursor: pointer;
}

.custom_popup_template .kakao-login-button img{
    height: 40%;
}


@media screen and (max-width: 720px){
    .custom_popup_template{
        position: fixed;
        left: 0%;
        top: 0%;
        right: auto;
        bottom: auto;
        z-index: 1000;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.55);
        overflow: scroll;
    }
    
    .custom_popup_template .custom_popup_template_content{
        position: relative;
        margin: 0 auto;
        top: calc(50% - 220px);
        width: 90%;
        background-color: white;
        border-radius: 10px;
        height: fit-content;
        padding: 20px 40px;
    }
    
    .custom_popup_template .custom_popup_template_content .close_img{
        position: relative;
        left: 100%;
        top: -5px;
        width: 18px;
        cursor: pointer;
    }
    
    .custom_popup_template .custom_popup_template_content .custom-popup-emoji{
        width: 100%;
        text-align: center;
        font-size: 100px;
        height: 80px;
        margin-top: 30px;
    }
    
    .custom_popup_template .custom_popup_template_content .custom-popup-title{
        font-size: 20px;
        text-align: center;
        height: fit-content;
        margin-bottom: 10px;
        font-weight: bold;
    }
    
    .custom_popup_template .custom_popup_template_content .custom-popup-text{
        font-size: 18px;
        line-height: 25px;
        height: fit-content;
        text-align: center;
    }
    
    .custom_popup_template .custom_popup_template_content .custom-popup-button{
        min-width: 100px;
        width: fit-content;
        padding: 10px 20px;
        background-color: #307bff;
        text-align: center;
        border-radius: 10px;
        color: white;
        margin: 20px auto;
        cursor: pointer;
    }

    .custom_popup_template .custom-popup-buttons{
        width: 100%;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        margin: 40px auto;
    }

    .custom_popup_template .custom-popup-button1{
        min-width: 45%;
        width: fit-content;
        padding: 10px 20px;
        background-color: #7e7e7e;
        text-align: center;
        border-radius: 10px;
        color: white;
        cursor: pointer;
    }
    
    .custom_popup_template .custom-popup-button2{
        min-width: 45%;
        width: fit-content;
        padding: 10px 20px;
        background-color: #307bff;
        text-align: center;
        border-radius: 10px;
        color: white;
        cursor: pointer;
    }
}