.modal {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);   
    z-index: 1000;
}

.modal_body {
    position: relative;
    width: 320px;
    height: auto;
    padding: 14px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
    border: 1px solid #ccc;
    outline: none;
    z-index: 1001;
    animation-name: scale;
    animation-duration: .2s;
}

.modal_body h3{
    display: block;
    padding-top: 10px;
    font-size: 16px!important;
    font-weight: 500;
    color: #222;
    line-height: 20px;
    letter-spacing: -1.12px!important;
    text-align: center;
}

.u-pop-body {
}

.table {
    margin-top: 20px;
    border-radius: 15px;
    padding: 4px 4px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}
.table dl {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-pop-body .table dl {
    border-top: solid 1px #ebebeb;
}

.table dl dt {
    flex: 1;
    color: #999;
    background-color: #f5f7fa;
    display: flex;
    align-items: center;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    white-space : nowrap;
    width: calc(100%);
    justify-content: space-around;
}
.table dl dd {
    flex: 2;
    color: #222;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 8px 8px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    justify-content: space-around;
    word-break: break-all;
}

.close-button {
    background: url(./close.svg) no-repeat center;
    vertical-align: middle;
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
.desc {
    margin-top: 16px;
    color: #666;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: underline;
}

.confirm-button {
    margin-top: 20px;
	background: #35c5f0;
    color: #fff;
	font-weight: 500;
	letter-spacing: 1px;
    padding: 12px 30px;
}

.modal-container {
    border: 1px solid #ccc;
    background: #fff;
    overflow: auto;
    border-radius: 10px;
    outline: none;
    z-index: 1001;
    animation-name: scale;
    animation-duration: .2s;
}
