body {
    background: #f9f9f9;
}

.agree-popup-wrap {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agree-popup-dim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 10000;
}
.agree-popup-wrap .popup {
    position: relative;
    width: 420px;
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    z-index: 2;
}

.agree-popup-wrap .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.agree-popup-wrap .head h3 {
    font-size: 18px;
    font-weight: 700;
}

.agree-popup-wrap .close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.agree-popup-wrap .body {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.agree-popup-wrap .items {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 4px;
}

.agree-popup-wrap .items::-webkit-scrollbar {
    width: 6px;
    height: 10px;
    margin: 0 2px;
    background-color: rgba(0, 0, 0, 0);
    -webkit-border-radius: 100px;
}

.agree-popup-wrap .items::-webkit-scrollbar:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.agree-popup-wrap .items::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 100px;
    border: 2px solid transparent;
}

.agree-popup-wrap .items::-webkit-scrollbar-thumb:active {
    background: rgba(0, 0, 0, 0.61);
    -webkit-border-radius: 100px;
}


.agree-popup-wrap .txt b {
    margin-right: 4px;
}

.agree-popup-wrap .custom-chk-inp-wrap.all {
    padding: 16px;
    background: #edf3ff;
    display: block;
    cursor: pointer;
}

.agree-popup-wrap .custom-chk-inp-wrap {
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.agree-popup-wrap .custom-chk-inp-wrap:not(:last-child) {
    margin-bottom: 16px;
}

.agree-popup-wrap .custom-chk-inp-wrap .desc {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    width: 100%;
}

.agree-popup-wrap .custom-chk-inp-wrap .desc p {
    margin: 4px 0;
}

.agree-popup-wrap .custom-chk-inp-wrap .desc p strong {
    display: block;
    margin-top: 8px;
    font-weight: 600;
    color: #222;
}

.agree-popup-wrap .custom-chk-inp-wrap .desc p:first-child strong {
    margin-top: 0;
}

.agree-popup-wrap .footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}
.agree-popup-wrap .agree-confirm {
    width: 100%;
    padding: 20px 20px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}
.agree-popup-wrap .agree-confirm:hover {
    background: #333;
}
