.alert-popup{
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    /*background-color: #fff;*/
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none;
}
.alert-popup-box{
    position: fixed;
    min-width: 400px;
    height: auto;
    background: #fff;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: slideInFromTop 0.3s ease-out;
}
.alert-popup-title{
    font-size: 20px;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #597392;
    padding: 10px;
}
.alert-popup-title-text{
    font-size: 16px;
    color: #ffffff;
}
.alert-popup-close{
    cursor: pointer;
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.alert-popup-content-wrapper{
    text-align: center;
    width: 100%;
    padding: 30px 10px 10px 10px;
}
.alert-popup-content{
    padding: 10px;
}
.alert-popup-btn-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding: 10px 10px 20px;
}
.inp-button {
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #4eb79e;
    border: none;
    display: inline-block;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}
.inp-button.alert-confirm{
    background: #597392;
    border-radius: 7px;
}
.inp-button.alert-confirm:hover{
    background: #3f556f;
}
.inp-button.alert-cancel{
    color: #ffffff;
    background: #afafaf;
    border-radius: 7px;
}
.inp-button.alert-cancel:hover{
    background: #8f8f8f;
}
/* alert-popup-btn-wrapper 의 첫번째 요소 */
.inp-button:first-child{
    margin-right: 10px;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translate(-50%, -65%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}