/* ===== ПРОФИЛЬ ЛЕЙАУТ ===== */
.profile-layout {
    display: flex;
    min-height: calc(100vh - 140px);
    background: #f0f2f5;
    flex: 1;
}

/* ===== САЙДБАР ===== */
.profile-sidebar {
    width: 260px;
    min-height: 100%;
    background: #ffffff;
    border-right: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: calc(100vh - 140px);
    overflow-y: auto;
    box-shadow: 2px 0 8px rgba(0,0,0,0.04);
}

.sidebar-brand {
    padding: 28px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-brand h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #1a2a5a;
    letter-spacing: -0.3px;
}

.sidebar-brand h2 span {
    color: #4A7AAA;
}

.sidebar-sub {
    font-size: 12px;
    color: #999;
    display: block;
    margin-top: 2px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.sidebar-user {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.user-avatar {
    font-size: 40px;
    margin-bottom: 8px;
    display: block;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a2a5a;
}

.user-email {
    font-size: 13px;
    color: #999;
    margin-top: 2px;
    word-break: break-all;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: transparent;
    width: 100%;
}

.sidebar-link:hover {
    background: #f5f7fa;
    color: #1a2a5a;
}

.sidebar-link.active {
    background: #f0f4fa;
    color: #1a2a5a;
    font-weight: 600;
    border-left: 3px solid #1a2a5a;
    border-radius: 8px 0 0 8px;
    padding-left: 13px;
}

.sidebar-text {
    flex: 1;
}

.sidebar-badge {
    background: #f0f4fa;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #1a2a5a;
}

.sidebar-link.active .sidebar-badge {
    background: #1a2a5a;
    color: #ffffff;
}

.sidebar-footer {
    border-top: 1px solid #f0f0f0;
    padding: 12px;
    margin-top: auto;
}

.sidebar-footer .sidebar-link {
    font-size: 13px;
    color: #888;
    padding: 8px 16px;
}

.sidebar-footer .sidebar-link:hover {
    color: #dc3545;
    background: #fdf0f2;
}

.sidebar-footer .sidebar-link.logout-link {
    color: #888;
}

.sidebar-footer .sidebar-link.logout-link:hover {
    color: #dc3545;
    background: #fdf0f2;
}

/* ===== ВЫПАДАЮЩЕЕ МЕНЮ ===== */
.sidebar-dropdown {
    display: flex;
    flex-direction: column;
}

.sidebar-dropdown .dropdown-menu {
    display: none;
    padding-left: 16px;
    margin-top: 2px;
}

.sidebar-dropdown .dropdown-menu.open {
    display: block;
}

.sidebar-dropdown .dropdown-item {
    font-size: 13px;
    padding: 6px 16px 6px 20px;
    border-left: 2px solid transparent;
    border-radius: 0 8px 8px 0;
}

.sidebar-dropdown .dropdown-item:hover {
    background: #f5f7fa;
    border-left-color: #4A7AAA;
}

.sidebar-dropdown .dropdown-item.active {
    background: #f0f4fa;
    border-left-color: #1a2a5a;
    color: #1a2a5a;
    font-weight: 600;
}

.dropdown-arrow {
    font-size: 18px;
    color: #999;
    transition: transform 0.3s;
    margin-left: 8px;
    line-height: 1;
}

.sidebar-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* ===== КОНТЕНТ ===== */
.profile-content {
    flex: 1;
    padding: 28px 36px;
    overflow-x: hidden;
    background: #f0f2f5;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.profile-section {
    display: none;
    animation: fadeIn 0.25s ease;
    flex: 1;
    display: none;
    flex-direction: column;
}

.profile-section.active {
    display: flex;
    flex-direction: column;
    flex: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a5a;
    margin: 0;
    letter-spacing: -0.3px;
}

.section-count {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #e8e8e8;
}

/* ===== ГРУППЫ ЛИЦЕНЗИЙ ===== */
.groups-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-add-group {
    padding: 8px 20px;
    background: #1a2a5a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-group:hover {
    background: #2A4A7A;
}

.groups-hint {
    font-size: 13px;
    color: #888;
}

.license-group {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    padding: 16px 20px 20px 20px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.group-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.group-number {
    font-size: 16px;
    font-weight: 600;
    color: #1a2a5a;
}

.btn-delete-group {
    padding: 4px 12px;
    background: #fdf0f2;
    color: #c0392b;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-delete-group:hover:not(:disabled) {
    background: #fce4e8;
}

.btn-delete-group:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.group-divider {
    border-top: 2px solid #e8e8e8;
    margin-bottom: 16px;
}

/* ===== ТАБЛИЦА ===== */
.table-container {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.table-container .table-scroll {
    flex: 1;
    overflow: visible !important;
    min-height: 0;
}

.table-container .table-scroll::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-container .table-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.table-container .table-scroll::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 4px;
}

.table-container .table-scroll::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

/* ===== EXCEL-ТАБЛИЦА ===== */
.excel-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 700px;
    table-layout: fixed;
}

.excel-table thead {
    background: #f8faff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.excel-table th {
    padding: 0 10px;
    height: 44px;
    text-align: center;
    font-weight: 600;
    color: #1a2a5a;
    border-bottom: 2px solid #d0d8e0;
    border-right: 1px solid #d0d8e0;
    font-size: 12px;
    white-space: nowrap;
    position: sticky;
    top: 0;
    background: #f8faff;
    z-index: 10;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: visible !important;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.excel-table th:last-child {
    border-right: none;
}

/* ===== ШИРИНА СТОЛБЦОВ ТАБЛИЦЫ (В ПРОЦЕНТАХ) ===== */
.excel-table .col-id {
    width: 5% !important;
    min-width: 40px !important;
    max-width: 60px !important;
}

.excel-table .col-app {
    width: 10% !important;
    min-width: 100px !important;
}

.excel-table .col-version {
    width: 8% !important;
    min-width: 70px !important;
}

.excel-table .col-key {
    width: 20% !important;
    min-width: 160px !important;
    max-width: 300px !important;
}

.excel-table .col-expires {
    width: 12% !important;
    min-width: 100px !important;
}

.excel-table .col-days {
    width: 12% !important;
    min-width: 90px !important;
}

.excel-table .col-term {
    width: 17% !important;
    min-width: 120px !important;
}

.excel-table .col-action {
    width: 17% !important;
    min-width: 100px !important;
}

.excel-table th .filter-icon {
    display: inline-block;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: 400;
    background: transparent;
    border: 1px solid transparent;
    line-height: 1;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.excel-table th .filter-icon:hover {
    background: #e0e4e8;
    color: #1a2a5a;
    border-color: #ccc;
}

.excel-table th .filter-icon.active {
    color: #1a2a5a;
    background: #d4e0ff;
    border-color: #1a2a5a;
}

.filter-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 12px 14px;
    min-width: 200px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    z-index: 100;
    margin-top: 4px;
}

.filter-dropdown.show {
    display: block !important;
}

.filter-dropdown input,
.filter-dropdown select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    background: #ffffff;
    font-family: inherit;
}

.filter-dropdown input:focus,
.filter-dropdown select:focus {
    outline: none;
    border-color: #1a2a5a;
    box-shadow: 0 0 0 3px rgba(26, 42, 90, 0.1);
}

.excel-table td {
    padding: 0 10px;
    height: 44px;
    vertical-align: middle;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    color: #444;
    font-size: 13px;
    text-align: center;
    background: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: normal;
}

.excel-table td:last-child {
    border-right: none;
}

.excel-table td:first-child {
    text-align: center;
    white-space: nowrap;
}

.excel-table td:nth-child(2) {
    text-align: left;
}

.excel-table tbody tr:hover td {
    background: #f8faff;
}

.excel-table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== ФИКС ДЛЯ КЛЮЧА И ЯЧЕЕК ===== */
.excel-table .col-key .license-key-code {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    background: #f5f6f8;
    padding: 2px 10px;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.5px;
    color: #1a2a5a;
    word-break: break-all;
    max-width: 100%;
    white-space: normal !important;
    line-height: 1.4;
    overflow-wrap: break-word;
}

.excel-table td.col-key {
    white-space: normal !important;
    overflow: visible !important;
    line-height: 1.4;
    padding: 4px 10px;
}

.excel-table td.col-app {
    white-space: normal !important;
    text-align: left !important;
}

.excel-table td.col-app strong {
    white-space: normal !important;
}

.table-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 18px;
    background: #fafbfc;
    border-top: 1px solid #e8e8e8;
    font-size: 14px;
    color: #888;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

/* ===== БЭДЖИ ===== */
.badge {
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
}

.badge.active {
    background: #e8f5ee;
    color: #0a7a4a;
}

.badge.expired {
    background: #fdf0f2;
    color: #c0392b;
}

.badge.inactive {
    background: #f0f0f0;
    color: #666;
}

.badge.trial {
    background: #f39c12;
    color: #ffffff;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.license-key-code {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    background: #f5f6f8;
    padding: 2px 10px;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.5px;
    color: #1a2a5a;
    word-break: break-all;
    max-width: 100%;
}

.days-badge {
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
}

.days-badge.good {
    background: #e8f5ee;
    color: #0a7a4a;
}

.days-badge.warning {
    background: #fff3e6;
    color: #b87333;
}

.days-badge.danger {
    background: #fdf0f2;
    color: #c0392b;
}

/* ===== КНОПКИ ДЕЙСТВИЙ В ТАБЛИЦЕ ===== */
.btn-action {
    padding: 4px 14px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-action.pay {
    background: #1a2a5a;
    color: #ffffff;
}

.btn-action.pay:hover:not(:disabled) {
    background: #2A4A7A;
}

.btn-action.activate {
    background: #f39c12;
    color: #ffffff;
}

.btn-action.activate:hover {
    background: #e67e22;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.btn-action.extend {
    background: #27ae60;
    color: #ffffff;
}

.btn-action.extend:hover:not(:disabled) {
    background: #2ecc71;
}

.btn-action.active {
    background: #e8f5ee;
    color: #0a7a4a;
    cursor: default;
}

.btn-action:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== ВЫПАДАЮЩИЙ СПИСОК ===== */
.term-select {
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    background: #f5f6f8;
    cursor: pointer;
    min-width: 100px;
    font-family: inherit;
    outline: none;
    transition: background 0.2s;
}

.term-select:hover {
    background: #e8eaf0;
}

.term-select:focus {
    background: #e8eaf0;
}

.term-select:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

/* ===== ПРОФИЛЬ ===== */
.settings-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    padding: 28px 32px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    flex: 1;
}

.settings-grid-one-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.settings-grid-one-col .settings-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 30px;
}

.settings-grid-one-col .settings-item:last-child {
    border-bottom: none;
}

.settings-grid-one-col .settings-label {
    color: #888;
    font-size: 14px;
    font-weight: 400;
    min-width: 120px;
    flex-shrink: 0;
}

.settings-grid-one-col .settings-value {
    color: #1a2a5a;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
}

/* ===== МОДАЛЬНОЕ ОКНО ОПЛАТЫ ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.payment-modal {
    max-width: 480px;
    width: 90%;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.payment-modal h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a5a;
    margin: 0 0 4px 0;
}

.payment-modal > p {
    color: #888;
    font-size: 14px;
    margin: 0 0 20px 0;
}

.payment-term {
    margin-bottom: 20px;
}

.payment-term label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 6px;
}

.payment-term-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
    cursor: pointer;
    font-family: inherit;
}

.payment-term-select:focus {
    outline: none;
    border-color: #1a2a5a;
    box-shadow: 0 0 0 3px rgba(26, 42, 90, 0.1);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: #f8faff;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.payment-btn:hover {
    border-color: #1a2a5a;
    background: #f0f4fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.payment-btn .payment-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.payment-btn .payment-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a2a5a;
}

.payment-btn .payment-desc {
    display: block;
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.modal-actions .btn-secondary {
    padding: 10px 28px;
    background: #f0f4fa;
    color: #555;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-actions .btn-secondary:hover {
    background: #e0e4e8;
}

.btn-pay {
    padding: 4px 14px;
    background: #1a2a5a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-pay:hover {
    background: #2A4A7A;
}

.btn-pay:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-pay.free {
    background: #0a7a4a;
}

.btn-pay.free:disabled {
    background: #a0c4b0;
}

.loading-text {
    color: #999;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}

.empty-text {
    color: #999;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 992px) {
    .profile-layout {
        flex-direction: column;
    }
    .profile-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 8px 12px;
        gap: 2px;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .sidebar-brand {
        display: none;
    }
    .sidebar-user {
        display: none;
    }
    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0;
        gap: 2px;
    }
    .sidebar-link {
        padding: 6px 14px;
        font-size: 13px;
        border-radius: 6px;
    }
    .sidebar-link.active {
        border-left: none;
        border-bottom: 2px solid #1a2a5a;
        border-radius: 0;
        padding-left: 14px;
    }
    .sidebar-badge {
        display: none;
    }
    .sidebar-footer {
        display: none;
    }
    .profile-content {
        padding: 16px 20px;
    }
    .settings-card {
        max-width: 100%;
    }
    .settings-grid-one-col .settings-item {
        flex-wrap: wrap;
        gap: 4px;
    }
    .settings-grid-one-col .settings-value {
        text-align: left;
    }
    .excel-table {
        min-width: 700px;
    }
    .payment-modal {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .section-header h2 {
        font-size: 20px;
    }
    .excel-table {
        font-size: 12px;
        min-width: 600px;
    }
    .excel-table th,
    .excel-table td {
        padding: 6px 10px;
        height: 38px;
        font-size: 12px;
    }
    .filter-dropdown {
        min-width: 160px;
        left: -10px;
        transform: none;
    }
    .settings-card {
        padding: 20px;
    }
    .settings-grid-one-col .settings-item {
        padding: 8px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .settings-grid-one-col .settings-value {
        text-align: left;
        font-weight: 600;
    }
    .excel-table th .filter-icon {
        font-size: 16px;
        padding: 4px 6px;
    }
    .groups-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    .group-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .group-title-wrapper {
        flex-wrap: wrap;
    }
    .payment-btn {
        padding: 12px 16px;
    }
    .payment-btn .payment-icon {
        font-size: 24px;
    }
    .payment-btn .payment-title {
        font-size: 14px;
    }
    .term-select {
        min-width: 80px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .profile-content {
        padding: 12px;
    }
    .excel-table th .filter-icon {
        font-size: 14px;
        padding: 2px 4px;
    }
    .settings-grid-one-col .settings-label {
        font-size: 13px;
        min-width: auto;
    }
    .settings-grid-one-col .settings-value {
        font-size: 13px;
    }
    .license-group {
        padding: 12px 14px 16px 14px;
    }
    .excel-table {
        font-size: 11px;
        min-width: 500px;
    }
    .excel-table th,
    .excel-table td {
        padding: 4px 6px;
        height: 34px;
        font-size: 11px;
    }
    .btn-action {
        font-size: 10px;
        padding: 2px 8px;
    }
    .payment-modal {
        padding: 20px 16px;
        width: 95%;
    }
    .payment-term-select {
        font-size: 13px;
        padding: 8px 12px;
    }
    .payment-btn {
        padding: 10px 14px;
        gap: 10px;
    }
    .payment-btn .payment-icon {
        font-size: 20px;
    }
    .payment-btn .payment-title {
        font-size: 13px;
    }
    .payment-btn .payment-desc {
        font-size: 11px;
    }
    .term-select {
        min-width: 70px;
        font-size: 11px;
        padding: 2px 4px;
    }
}