/* 모달 기본 스타일 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.modal_active {
    display: flex;
}

.modal_content {
    background: #fff;
    padding: 20px;
    padding-bottom: 0;
    padding-top: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/*     min-width: 400px; */
    max-width: calc(100% - 24px);
    width: 400px;
}
.modal_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--bt);
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.modal_title h4 {
    font-size: 2rem;
    font-weight: 600;
}
.modal_title .close_modal {
    width: 30px;
    height: 30px;
    background: var(--bgs) url(../img/cancle.png) no-repeat center center;
    background-size: cover;
}
.modal .opt {
    background-color: var(--info-sub);
    padding: 8px;
}
.modal .opt select {
    border: 1px solid var(--pc2);
}
.modal .opt h5 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--pc2);
    margin-bottom: 8px;
}
.opt_list {
    margin-top: 12px;
    margin-bottom: 24px;
    border-top: 1px solid var(--tt);
    overflow: auto;
}
.opt_list table {
    width: 100%;
    border-collapse: collapse;
}
.opt_list th {
	text-align: left;
    background-color: var(--bgs);
    font-weight: 400;
}
.opt_list th,
.opt_list td {
    padding: 8px;
    font-size: 1.5rem;
}
.opt_list td {
    border-bottom: 1px solid var(--bt);
}
.opt_list .btn_common {
    padding: 8px 12px;
    font-size: 1.4rem;
}
