body {
    font-family: 'Arimo', 'Noto Sans KR', sans-serif;
    background-color: #f9fafb;
    color: #101828;
}

/* Main Content Styles */
.main {
    margin-left: 255.994px;
    padding: 23.991px;
    min-height: calc(100vh - 64.9px);
    flex: 1;
    transition: all 0.3s ease;
}

.page-header {
    margin-bottom: 23.991px;
}

.page-title {
    font-size: 30px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 7.997px;
}

.page-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #4a5565;
}

/* Offline Page Styles */
.offline-page {
    display: flex;
    flex-direction: column;
    gap: 23.991px;
}

/* ===== Payment Page ===== */
.payment-page .page-title {
    font-size: 22px;
    color: #1a2b4a;
    font-weight: 800;
    margin-bottom: 6px;
}
.payment-page .page-subtitle {
    font-size: 14px;
    color: #8b95a1;
    font-weight: 400;
}
.payment-header-divider {
    height: 1px;
    background: #e8ebf0;
    margin-bottom: 28px;
}

/* Tabs */
.payment-tabs-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.payment-tabs {
    display: flex;
    gap: 0;
}
.payment-tab {
    height: 44px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: #8b95a1;
    background: none;
    border: none;
    border-bottom: 2.7px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}
.payment-tab.active {
    color: #1a2b4a;
    font-weight: 700;
    border-bottom-color: #ff6b35;
}
.payment-tab:hover:not(.active) {
    color: #364153;
}
.payment-sort {
    height: 36px;
    padding: 0 32px 0 12px;
    background: white;
    border: 1px solid #e8ebf0;
    border-radius: 10px;
    font-size: 13px;
    color: #364153;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238b95a1' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

/* Result Row */
.payment-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.payment-count {
    font-size: 15px;
    font-weight: 700;
    color: #1a2b4a;
}
.payment-search-wrap {
    position: relative;
    width: 220px;
}
.payment-search-input {
    width: 100%;
    height: 36px;
    padding: 0 36px 0 12px;
    border: 1px solid #e8ebf0;
    border-radius: 10px;
    font-size: 13px;
    color: #364153;
    box-sizing: border-box;
    outline: none;
}
.payment-search-input::placeholder { color: #b0b8c4; }
.payment-search-input:focus { border-color: #aab4c0; }
.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

/* Payment List */
.payment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Payment Card */
.payment-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 1px solid #e8ebf0;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(26,43,74,0.08);
    padding: 20px;
}

/* Thumbnail */
.payment-thumb {
    position: relative;
    width: 120px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e0e4ea;
}
.payment-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.thumb-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    padding: 2px 7px;
    border-radius: 4px;
    line-height: 15px;
}

/* Info */
.payment-info {
    flex: 1;
    min-width: 0;
}
.payment-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0 0 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.payment-instructor {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.instructor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #e8ebf0;
    border-radius: 50%;
    font-size: 10px;
    flex-shrink: 0;
}
.payment-instructor > span:last-child {
    font-size: 13px;
    color: #8b95a1;
}
.payment-tags {
    display: flex;
    gap: 6px;
}
.tag-cat {
    font-size: 11px;
    color: #8b95a1;
    background: #f4f5f7;
    border-radius: 4px;
    padding: 2px 7px;
    line-height: 16.5px;
}
.tag-type {
    font-size: 11px;
    border-radius: 4px;
    padding: 2px 7px;
    line-height: 16.5px;
}

/* Price Column */
.payment-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    min-width: 190px;
}
.price-main {
    font-size: 17px;
    font-weight: 800;
    color: #1a2b4a;
    line-height: 1.5;
}
.price-sub-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-original {
    font-size: 12px;
    color: #8b95a1;
    text-decoration: line-through;
    line-height: 18px;
}
.discount-badge {
    font-size: 11px;
    font-weight: 700;
    color: white;
    background: #10b981;
    border-radius: 4px;
    padding: 2px 7px;
    line-height: 16.5px;
}
.price-date {
    font-size: 12px;
    color: #8b95a1;
    line-height: 18px;
}
.status-badge {
    font-size: 11px;
    font-weight: 500;
    color: #10b981;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 8px;
    padding: 4px 10px;
    line-height: 16.5px;
}
.status-badge.called {
    color: #b45309;
    background-color: #fff3d9;
    border-color: #ffe1a8;
}
.status-badge.rejected {
    color: #9f0712;
    background-color: #ffe2e2;
    border-color: #ffc9c9;
}
.status-badge.approved {
    color: #07309f;
    background-color: #e2e6ff;
    border-color: #cac9ff;
}

/* Actions */
.payment-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    flex-shrink: 0;
}
.btn-view {
    width: 72px;
    height: 32px;
    background: #ff6b35;
    color: white;
    font-size: 12px;
    font-weight: 700;
    border: none;
    border-radius: 7px;
    cursor: pointer;
}
.btn-receipt {
    width: 72px;
    height: 32px;
    background: white;
    color: #8b95a1;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #e8ebf0;
    border-radius: 7px;
    cursor: pointer;
}
.btn-refund {
    font-size: 11px;
    font-weight: 500;
    color: #ef4444;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    padding: 0;
    line-height: 16.5px;
}

.btn-refund.disabled {
    color: #4a5565;
    cursor: not-allowed;
    opacity: 0.5;
}

/* ===== Receipt Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,27,46,0.65);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-overlay.open {
    display: flex;
}
.receipt-modal {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px 0 rgba(26,43,74,0.2);
    width: 480px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
/* Header */
.receipt-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: linear-gradient(166deg, #1a2b4a 0%, #2a3f6f 100%);
    border-radius: 16px 16px 0 0;
    flex-shrink: 0;
}
.receipt-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.receipt-title {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 0 0 6px 0;
}
.receipt-order-no {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
.receipt-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.receipt-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16,185,129,0.25);
    border: 1px solid rgba(16,185,129,0.5);
    border-radius: 999px;
    padding: 4px 12px;
    white-space: nowrap;
}
.receipt-close-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 13px;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
}
.receipt-close-x:hover {
    background: rgba(255,255,255,0.22);
}
/* Body */
.receipt-modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px 28px 0 28px;
}
/* Course Row */
.receipt-course-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8ebf0;
}
.receipt-thumb {
    position: relative;
    width: 88px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e0e4ea;
}
.receipt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.receipt-thumb .thumb-badge {
    bottom: 4px;
    left: 6px;
}
.receipt-course-info {
    flex: 1;
}
.receipt-course-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0 0 6px 0;
}
.receipt-course-instructor {
    font-size: 12px;
    color: #8b95a1;
    margin: 0 0 10px 0;
}
/* Price Table */
.receipt-price-table {
    display: flex;
    flex-direction: column;
}
.receipt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f4f5f7;
    font-size: 13px;
}
.receipt-row .r-label {
    color: #8b95a1;
}
.receipt-row .r-value {
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
}
.receipt-row .r-value.green { color: #10b981; }
.receipt-row .r-value.orange { color: #ff6b35; font-weight: 800; font-size: 18px; }
.rate-badge {
    font-size: 13px;
    color: #10b981;
    background: rgba(16,185,129,0.1);
    border-radius: 4px;
    padding: 2px 8px;
    line-height: 19.5px;
}
.receipt-divider {
    height: 1px;
    background: #e8ebf0;
    margin: 8px 0;
}
.receipt-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fb;
    border-radius: 10px;
    padding: 16px;
    margin-top: 4px;
}
.receipt-total-row .r-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a2b4a;
}
/* Payment Details */
.receipt-payment-details {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e8ebf0;
    padding-top: 20px;
}
.receipt-payment-details .receipt-row:last-child {
    border-bottom: none;
}
.receipt-status-small {
    font-size: 13px;
    color: #10b981;
    background: rgba(16,185,129,0.1);
    border-radius: 8px;
    padding: 2px 8px;
    line-height: 19.5px;
}
/* Footer */
.receipt-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 28px;
    border-top: 1px solid #e8ebf0;
    flex-shrink: 0;
}
.btn-print {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 16px;
    background: white;
    border: 1px solid #e8ebf0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #8b95a1;
    cursor: pointer;
    white-space: nowrap;
}
.btn-pdf-save {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 16px;
    background: #1a2b4a;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    white-space: nowrap;
}
.btn-modal-close {
    height: 40px;
    padding: 0 16px;
    background: white;
    border: 1px solid #e8ebf0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #8b95a1;
    cursor: pointer;
}
.btn-print:hover { background: #f9fafb; }
.btn-pdf-save:hover { background: #243660; }
.btn-modal-close:hover { background: #f9fafb; }

/* ===== Refund Modal ===== */
.refund-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,27,46,0.65);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}
.refund-modal-overlay.open {
    display: flex;
}
.refund-modal {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px 0 rgba(26,43,74,0.2);
    width: 520px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.refund-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px;
    flex-shrink: 0;
}
.refund-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a2b4a;
    margin: 0 0 4px 0;
}
.refund-subtitle {
    font-size: 13px;
    color: #8b95a1;
    margin: 0;
}
.refund-close-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f4f5f7;
    border: none;
    border-radius: 50%;
    color: #8b95a1;
    font-size: 13px;
    cursor: pointer;
    flex-shrink: 0;
}
.refund-close-x:hover { background: #e8ebf0; }
.refund-header-divider {
    height: 1px;
    background: #e8ebf0;
    flex-shrink: 0;
}
.refund-modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 28px;
    flex: 1;
}
/* Course card */
.refund-course-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fb;
    border-radius: 10px;
    padding: 16px;
}
.refund-course-thumb {
    width: 72px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.refund-course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.refund-course-meta {
    flex: 1;
    min-width: 0;
}
.rc-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rc-instructor {
    font-size: 12px;
    color: #8b95a1;
    margin: 0;
}
.refund-course-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}
.rc-price {
    font-size: 15px;
    font-weight: 800;
    color: #ff6b35;
    margin: 0 0 2px 0;
}
.rc-date {
    font-size: 11px;
    color: #8b95a1;
    margin: 0;
}
/* Policy */
.refund-policy-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.refund-policy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.refund-policy-title {
    font-size: 13px;
    font-weight: 700;
    color: #f59e0b;
}
.refund-policy-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #ff6b35;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.refund-policy-box {
    background: rgba(245,158,11,0.06);
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 10px;
    padding: 16px 17px;
}
.refund-policy-box-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0 0 10px 0;
}
.refund-policy-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.refund-policy-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.refund-policy-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.policy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}
.policy-icon.ok { background: rgba(16,185,129,0.15); color: #10b981; }
.policy-icon.no { background: rgba(239,68,68,0.15); color: #ef4444; }
.refund-policy-item-text {
    font-size: 13px;
    color: #2a2a2a;
}
.policy-badge {
    font-size: 11px;
    border-radius: 4px;
    padding: 2px 8px;
    line-height: 16.5px;
    white-space: nowrap;
    flex-shrink: 0;
}
.policy-badge.ok    { background: rgba(16,185,129,0.1); color: #10b981; }
.policy-badge.no    { background: rgba(239,68,68,0.1);  color: #ef4444; }
.policy-badge.amber { background: rgba(245,158,11,0.1);  color: #f59e0b; }
/* Timeline (라이브/오프라인) */
.policy-timeline {
    position: relative;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.policy-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e8ebf0;
}
.policy-timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.policy-timeline-dot {
    position: absolute;
    left: -20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.policy-timeline-dot.green { background: #10b981; }
.policy-timeline-dot.amber { background: #f59e0b; }
.policy-timeline-dot.red   { background: #ef4444; }
.policy-timeline-text {
    font-size: 13px;
    color: #2a2a2a;
    flex: 1;
}
.policy-timeline-note {
    background: rgba(239,68,68,0.05);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    color: #8b95a1;
    line-height: 1.5;
}
/* Reasons */
.refund-reasons-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.refund-reasons-label {
    font-size: 13px;
    font-weight: 700;
    color: #2a2a2a;
}
.refund-reasons-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.refund-reason-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid #e8ebf0;
    border-radius: 10px;
    padding: 0 14px;
    height: 44px;
    cursor: pointer;
    transition: border-color 0.15s;
}
.refund-reason-option:hover { border-color: #ffc4ae; }
.refund-reason-option.selected {
    border-color: #ff6b35;
    background: rgba(255,107,53,0.03);
}
.refund-reason-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #d0d5dd;
    border-radius: 50%;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s;
}
.refund-reason-option input[type="radio"]:checked {
    border-color: #ff6b35;
    background: #ff6b35;
}
.refund-reason-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}
.refund-reason-option span {
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
}
.refund-other-textarea {
    width: 100%;
    border: 1px solid #e8ebf0;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: #364153;
    resize: vertical;
    min-height: 80px;
    box-sizing: border-box;
    outline: none;
    font-family: inherit;
    display: none;
}
.refund-other-textarea:focus { border-color: #ff6b35; }
/* Agreement checkbox */
.refund-agree-row {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.refund-agree-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #d0d5dd;
    border-radius: 4px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s, background 0.15s;
}
.refund-agree-row input[type="checkbox"]:checked {
    border-color: #ff6b35;
    background: #ff6b35;
}
.refund-agree-row input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}
.refund-agree-row span {
    font-size: 13px;
    font-weight: 500;
    color: #2a2a2a;
}
/* Footer */
.refund-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 17px 28px;
    background: #f8f9fb;
    border-top: 1px solid #e8ebf0;
    border-radius: 0 0 16px 16px;
    flex-shrink: 0;
}
.btn-refund-cancel {
    height: 44px;
    padding: 0 20px;
    background: white;
    border: 1px solid #e8ebf0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #8b95a1;
    cursor: pointer;
}
.btn-refund-cancel:hover { background: #f9fafb; }
.btn-refund-submit {
    height: 44px;
    padding: 0 24px;
    background: #d0d5dd;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    cursor: not-allowed;
    transition: background 0.2s;
}
.btn-refund-submit.enabled {
    background: #ef4444;
    cursor: pointer;
}
.btn-refund-submit.enabled:hover { background: #dc2626; }

/* Pagination */
.payment-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #e8ebf0;
    background: white;
    color: #8b95a1;
    transition: all 0.15s;
}
.pagination-btn:hover:not(.active) {
    border-color: #aab4c0;
    color: #364153;
}
.pagination-btn.active {
    background: #1a2b4a;
    border-color: #1a2b4a;
    color: white;
    font-weight: 700;
}

.pagination-btn.arrow {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .payment-card {
        max-width: 99%;
    }
}

@media (max-width: 800px) {
    
}