.dialog-box {
    position: absolute;
    width: 360px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../assets/dialog/dialog_box.png);
    color: #111111;
    padding: 40px 30px 30px;
    display: none;
    text-align: center;
    pointer-events: all;
}

.dialog-box .notice-text {
    /* font-family: 'MoleFont', sans-serif; */
    text-align: justify
}

.dialog-box .notice-title {
    margin-bottom: 10px;
}

.dialog-text {
    line-height: 1.5;
    font-size: 18px;
    min-height: 55px;
}

.dialog-img {
    margin: 10px 0 15px;
}

/* .dialog-button {
} */

.dialog-button img {
    width: 100%;
    height: 100%;
}

.dialog-shadow {
    box-shadow: 0px 5px 0px 0px #797979;
    border-radius: 50px;
    height: 50px;
}

.dialog-confirm {
    display: none;
}

.dialog-cancel {
    display: none;
}

.dialog-yes {
    display: none;
}

.dialog-close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 36px;
    height: 35px;
    transition: all .3 ease;
    display: none;
}