<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/***
  * 고객지원 &gt; 신고내역확인 및 출력
*/

.p__customer-view .customer-view-content {
    border: 1px solid #d7d7d7;
}

.p__customer-view .customer-view-box {
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.p__customer-view .customer-view-box:not(:first-child) {
    border-top: 1px solid #d7d7d7;
}

.p__customer-view .customer-desc {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p__customer-view .customer-desc .customer-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    letter-spacing: -0.72px;
}

.p__customer-view .customer-desc .customer-text {
    color: #7d7d7d;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.64px;
}


.p__customer-view .customer-btn-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    gap: 20px;
}

.p__customer-view .customer-btn-group .btn-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media only screen and (max-width: 768px) {
    .p__customer-view .customer-btn-group {
        flex-direction: column;
        gap: 8px;
    }

    .p__customer-view .customer-btn-group .btn-wrap {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .p__customer-view .customer-btn-group button {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .p__customer-view .customer-view-box button {
        width: 100%;
    }
}

/* 온라인 원본확인 모달 */
.customer-view-modal .modal-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.customer-view-modal .f__group .f__control-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.customer-view-modal .f__group .c__select {
    width: calc(100% / 3);
}</pre></body></html>