#modal{
    display: none;
    position: fixed;
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    z-index: 99;
    background: rgba(255, 255, 255, .85);
}
#modal.open{
    display: flex;
    justify-content: center;
    align-items: center;
}
#modal #modal_content{
    width: 100%;
    /* height: 100%; */
    max-width: 360px;
    /* max-height: 400px; */
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 40px;
}
#modal_icon_box{
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px){
    #modal_icon_box{
        margin-bottom: 10px;
    }
}
#modal_icon{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#modal #modal_body{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}
#modal #modal_text{
    font-size: 18px;
    /* color: #FFF; */
    /* background: #fff; */
}
#add_content{
    text-align: center;
    padding: 10px 20px;
}
#add_content .errorMessageBox{
    text-align: left;
}
#add_content .errorMessageBox .errorMessage{
    padding-left: 65px;
}
