:root {
    --bg: #020817;
    --panel: #08152c;
    --panel2: #0c1d3b;
    --line: rgba(255,255,255,.1);
    --text: #f7faff;
    --muted: #9eabc0;
    --blue: #1478ff;
    --blue2: #38a0ff;
    --green: #20c56b;
    --red: #ef4444
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: Inter,Segoe UI,Arial,sans-serif;
    background: #f4f7fb;
    color: #101b31
}

a {
    text-decoration: none;
    color: inherit
}

button,input,select,textarea {
    font: inherit
}

.brand {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px
}

.brand span {
    color: var(--blue2)
}

.auth-body {
    min-height: 100vh;
    background: #030a18
}

.auth-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr
}

.auth-promo {
    padding: 55px 8%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: radial-gradient(circle at 30% 35%,rgba(20,120,255,.25),transparent 35%),linear-gradient(145deg,#03132d,#020817);
    color: #fff
}

.auth-promo h1 {
    font-size: clamp(42px,5vw,70px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    max-width: 670px;
    margin: 14px 0 22px
}

.auth-promo p {
    color: #b8c5d9;
    font-size: 18px;
    max-width: 600px
}

.promo-kicker {
    color: var(--blue2);
    font-weight: 800;
    letter-spacing: .12em;
    font-size: 12px
}

.auth-promo ul {
    list-style: none;
    margin-top: 28px
}

.auth-promo li {
    margin: 13px 0;
    color: #dce6f5
}

.auth-promo li i {
    color: var(--green);
    margin-right: 10px
}

.auth-promo>small {
    color: #75839b
}

.auth-panel {
    display: grid;
    place-items: center;
    padding: 35px;
    background: #f6f8fc
}

.auth-card {
    width: min(510px,100%);
    padding: 42px;
    border-radius: 22px;
    /* background: #524e4e; */
    box-shadow: 0 28px 80px rgba(14,35,70,.15)
}

.register-card {
    width: min(650px,100%)
}

.auth-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg,var(--blue),var(--blue2));
    color: #fff;
    font-size: 25px;
    margin-bottom: 22px
}

.auth-card h2 {
    color: black;
    font-size: 31px;
    letter-spacing: -1px
}

.auth-card>p {
    color: #718096;
    margin: 7px 0 25px
}

.auth-card label,.form-panel label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 16px
}

.auth-card input,.form-panel input,.form-panel select {
    display: block;
    width: 100%;
    height: 50px;
    margin-top: 7px;
    padding: 0 14px;
    border: 1px solid #ccd6e5;
    border-radius: 9px;
    background: #f9fbfd;
    outline: none
}

.auth-card input:focus,.form-panel input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(20,120,255,.1)
}

.two-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.primary-button {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(135deg,var(--blue),var(--blue2));
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(20,120,255,.22)
}

.inline-button {
    width: auto;
    padding: 0 25px
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -2px 0 20px;
    font-size: 13px
}

.auth-options a,.auth-footer a {
    color: var(--blue);
    font-weight: 700
}

.check {
    color: black;
    display: flex!important;
    align-items: center;
    gap: 8px;
    margin: 0!important;
    font-weight: 500!important
}

.check input {
    width: auto!important;
    height: auto!important;
    margin: 0!important
}

.auth-footer {
    text-align: center;
    margin-top: 22px;
    color: #718096;
    font-size: 14px
}

.auth-message,.page-message {
    display: block;
    padding: 13px 15px;
    border-radius: 9px;
    margin-bottom: 18px;
    font-size: 13px
}

.auth-message:empty,.page-message:empty {
    display: none
}

.error {
    background: #fff0f0;
    color: #b42318;
    border: 1px solid #ffcaca
}

.success {
    background: #effcf4;
    color: #147a43;
    border: 1px solid #bfe8ce
}

.simple-auth {
    display: grid;
    place-items: center;
    padding: 25px
}

.simple-auth .auth-card {
    max-width: 500px
}

.dark-brand {
    display: inline-block;
    color: #101b31;
    margin-bottom: 28px
}

.app-shell {
    min-height: 100vh;
    display: flex
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 275px;
    padding: 27px 20px;
    background: linear-gradient(180deg,#07152f,#020817);
    color: #fff;
    display: flex;
    flex-direction: column;
    z-index: 100
}

.sidebar .brand {
    padding: 0 10px
}

.user-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255,255,255,.035)
}

.avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(135deg,var(--blue),var(--blue2))
}

.user-mini strong,.user-mini small {
    display: block;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.user-mini strong {
    font-size: 13px
}

.user-mini small {
    color: var(--muted);
    font-size: 10px;
    margin-top: 3px
}

.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.sidebar nav a,.side-bottom a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 14px;
    border-radius: 10px;
    color: #c5d0e2;
    font-size: 14px
}

.sidebar nav a:first-child,.sidebar nav a:hover,.side-bottom a:hover {
    background: rgba(20,120,255,.15);
    color: #fff
}

.sidebar nav i,.side-bottom i {
    width: 20px;
    color: #6eb4ff
}

.sidebar em {
    margin-left: auto;
    font-style: normal;
    font-size: 9px;
    padding: 3px 6px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    color: #91a0b7
}

.side-bottom {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-top: 15px
}

.main-area {
    width: calc(100% - 275px);
    margin-left: 275px
}

.topbar {
    height: 78px;
    padding: 0 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border-bottom: 1px solid #e5eaf2;
    position: sticky;
    top: 0;
    z-index: 50
}

.topbar button {
    display: none;
    border: 0;
    background: none;
    font-size: 20px
}

.topbar span,.topbar small {
    display: block
}

.topbar span {
    font-weight: 800
}

.topbar small {
    color: #7c899d;
    font-size: 11px
}

.support-btn {
    margin-left: auto;
    padding: 10px 15px;
    border: 1px solid #d8e1ed;
    border-radius: 9px;
    color: #324158;
    font-size: 13px
}

.page-content {
    padding: 35px;
    max-width: 1600px;
    margin: auto
}

.page-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 28px
}

.page-heading>div>span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em
}

.page-heading h1 {
    font-size: 34px;
    letter-spacing: -1.2px
}

.page-heading p {
    color: #748196
}

.primary-link,.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 17px;
    border-radius: 9px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 800
}

.secondary-link {
    background: #eef4ff;
    color: var(--blue)
}

.welcome-alert {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 16px 18px;
    margin-bottom: 22px;
    border: 1px solid #bfe8ce;
    border-radius: 12px;
    background: #effcf4;
    color: #147a43
}

.welcome-alert strong,.welcome-alert span {
    display: block
}

.welcome-alert span {
    font-size: 12px
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin-bottom: 22px
}

.metric-card {
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 17px;
    border: 1px solid #e0e6ef;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(23,47,83,.05)
}

.metric-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 21px
}

.metric-icon.blue {
    background: #e9f2ff;
    color: #1478ff
}

.metric-icon.cyan {
    background: #e6faff;
    color: #00a3c4
}

.metric-icon.orange {
    background: #fff3e2;
    color: #ef9417
}

.metric-icon.green {
    background: #e9f9ef;
    color: #20a85c
}

.metric-card span,.metric-card strong,.metric-card a {
    display: block
}

.metric-card span {
    color: #758298;
    font-size: 12px
}

.metric-card strong {
    font-size: 28px;
    line-height: 1.2
}

.metric-card a {
    color: var(--blue);
    font-size: 11px;
    margin-top: 4px
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 20px;
    margin-bottom: 20px
}

.panel {
    padding: 24px;
    border: 1px solid #e0e6ef;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(23,47,83,.04)
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #edf1f5
}

.panel-head h2 {
    font-size: 18px
}

.panel-head p {
    color: #8490a2;
    font-size: 12px
}

.panel-head>a {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700
}

.empty-state {
    text-align: center;
    padding: 45px 20px
}

.empty-state>i {
    font-size: 42px;
    color: #b9c5d6
}

.empty-state h3 {
    margin: 13px 0 5px
}

.empty-state p {
    color: #7d899a;
    margin-bottom: 17px
}

.quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 20px
}

.quick-grid a {
    padding: 20px 12px;
    text-align: center;
    border: 1px solid #e1e7f0;
    border-radius: 12px;
    background: #f9fbfd
}

.quick-grid i,.quick-grid span {
    display: block
}

.quick-grid i {
    font-size: 23px;
    color: var(--blue);
    margin-bottom: 8px
}

.quick-grid span {
    font-size: 12px;
    font-weight: 700
}

.security-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px
}

.security-row>div {
    display: flex;
    align-items: center;
    gap: 14px
}

.security-row>div>i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #eaf3ff;
    color: var(--blue)
}

.security-row strong,.security-row span {
    display: block
}

.security-row span {
    color: #7b8798;
    font-size: 12px
}

.profile-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 20px
}

.form-panel .panel-head {
    margin-bottom: 20px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px
}

.form-grid .wide {
    grid-column: 1/-1
}

.page-message {
    margin-bottom: 20px
}

@media(max-width: 1150px) {
    .dashboard-cards {
        grid-template-columns:repeat(2,1fr)
    }

    .profile-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width: 900px) {
    .auth-layout {
        grid-template-columns:1fr
    }

    .auth-promo {
        display: none
    }

    .sidebar {
        transform: translateX(-100%);
        transition: .25s
    }

    .sidebar.open {
        transform: none
    }

    .main-area {
        width: 100%;
        margin: 0
    }

    .topbar button {
        display: block
    }

    .dashboard-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width: 620px) {
    .auth-panel {
        padding:15px
    }

    .auth-card {
        padding: 28px 22px
    }

    .two-fields,.dashboard-cards,.form-grid {
        grid-template-columns: 1fr
    }

    .page-content {
        padding: 22px 14px
    }

    .topbar {
        padding: 0 15px
    }

    .support-btn {
        display: none
    }

    .page-heading {
        align-items: flex-start;
        flex-direction: column
    }

    .page-heading h1 {
        font-size: 28px
    }

    .metric-card {
        padding: 17px
    }

    .security-row {
        align-items: flex-start;
        gap: 18px;
        flex-direction: column
    }
}

/* ZIP 2 ADDITIONS
Append this entire file to the bottom of:
Client\css\client.css
*/
.service-list {
    display: grid;
    gap: 14px
}

.service-row {
    display: grid;
    grid-template-columns: 58px 1.6fr .65fr .65fr .55fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e6ef;
    border-radius: 15px;
    background: #171717;
    box-shadow: 0 8px 24px rgba(23,47,83,.04)
}

.service-type-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #eaf3ff;
    color: #1478ff;
    font-size: 20px
}

.service-main>span {
    color: #1478ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em
}

.service-main h3 {
    font-size: 17px
}

.service-main small,.service-meta small {
    display: block;
    color: #7d899b
}

.service-meta strong {
    display: block;
    font-size: 13px
}

.status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    background: #eef2f7;
    color: #5e6b7d
}

.status.active {
    background: #e9f9ef;
    color: #16874c
}

.status.pending {
    background: #fff4df;
    color: #b36d00
}

.status.suspended {
    background: #fff0f0;
    color: #b42318
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.detail-list {
    padding-top: 10px
}

.detail-list>div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #edf1f5
}

.detail-list span {
    color: #7a8799
}

.action-list {
    display: grid;
    gap: 12px;
    padding-top: 18px
}

.action-list>a,.action-list>div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fafcff
}

.action-list i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #eaf3ff;
    color: #1478ff
}

.action-list strong,.action-list span {
    display: block
}

.action-list span {
    color: #7b8798;
    font-size: 12px
}

.domain-table {
    padding: 0;
    overflow: hidden
}

.domain-table-head,.domain-table-row {
    display: grid;
    grid-template-columns: 1.5fr .65fr .8fr .7fr auto;
    gap: 14px;
    align-items: center;
    padding: 17px 20px
}

.domain-table-head {
    background: #f7f9fc;
    color: #778397;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase
}

.domain-table-row {
    border-top: 1px solid #edf1f5
}

.domain-table-row>div {
    display: flex;
    align-items: center;
    gap: 10px
}

.domain-table-row>div i {
    color: #1478ff
}

.order-panel {
    max-width: 850px;
    margin: auto
}

.order-hero-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #eaf3ff;
    color: #1478ff;
    font-size: 30px
}

.order-panel h2 {
    margin-top: 18px
}

.order-panel>p {
    color: #7c899a;
    margin-bottom: 23px
}

.notice-box {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    padding: 15px;
    border-radius: 11px;
    background: #eef5ff;
    color: #315f9c;
    font-size: 12px
}

.instance-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.instance-card {
    padding: 23px;
    border: 1px solid #e0e6ef;
    border-radius: 16px;
    background: #1f1f1f;
    box-shadow: 0 8px 24px rgba(23,47,83,.04)
}

.instance-top {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.instance-card h3 {
    margin-top: 17px
}

.instance-card>p {
    color: #7a8799;
    font-size: 13px
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin: 20px 0
}

.resource-grid span {
    padding: 12px 8px;
    text-align: center;
    border-radius: 10px;
    background: #f5f8fc;
    color: #768296;
    font-size: 10px
}

.resource-grid b {
    display: block;
    color: #17243b;
    font-size: 14px
}

.instance-meta {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #edf1f5;
    font-size: 12px
}

.instance-meta span {
    color: #7c899a
}

.instance-card>.secondary-link {
    margin-top: 15px;
    width: 100%
}

@media(max-width: 1200px) {
    .service-row {
        grid-template-columns:50px 1.5fr .7fr .7fr auto
    }

    .service-row>.service-meta:nth-of-type(2) {
        display: none
    }

    .instance-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width: 850px) {
    .detail-grid {
        grid-template-columns:1fr
    }

    .service-row {
        grid-template-columns: 50px 1fr auto
    }

    .service-row>.service-meta,.service-row>div:nth-child(3) {
        display: none
    }

    .domain-table-head {
        display: none
    }

    .domain-table-row {
        grid-template-columns: 1fr auto
    }

    .domain-table-row>span {
        display: none
    }

    .instance-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width: 520px) {
    .service-row {
        gap:10px;
        padding: 15px
    }

    .service-row .secondary-link {
        padding: 9px 11px
    }

    .domain-table-row {
        padding: 15px
    }

    .resource-grid {
        grid-template-columns: 1fr 1fr 1fr
    }
}

/* ZIP 3 ADDITIONS
Append this entire file to the bottom of Client\css\client.css
*/
:root {
    --bg: #090a0d;
    --panel: #12141a;
    --panel2: #171a21;
    --line: #262a34;
    --text: #f7f7f8;
    --muted: #969ca8;
    --red: #e50914;
    --red2: #ff3844;
    --sidebar: 272px;
    --shadow: 0 20px 55px rgba(0,0,0,.28)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter,system-ui,sans-serif;
    font-size: 14px
}

a {
    text-decoration: none;
    color: inherit
}

button,input,select,textarea {
    font: inherit
}

.app-shell {
    min-height: 100vh
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: var(--sidebar);
    background: linear-gradient(180deg,#101116,#0b0c10);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    z-index: 100;
    box-shadow: 15px 0 45px rgba(0,0,0,.18)
}

.sidebar-top {
    height: 78px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line)
}

.brand {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1.3px
}

.brand span {
    color: var(--red)
}

.sidebar-close {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 20px
}

.user-mini {
    margin: 18px 16px 8px;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.025);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 11px
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg,var(--red),#7e0710);
    display: grid;
    place-items: center;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(229,9,20,.22)
}

.user-copy {
    min-width: 0
}

.user-copy strong,.user-copy small {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.user-copy strong {
    font-size: 13px
}

.user-copy small {
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px
}

.side-nav {
    padding: 9px 12px 18px;
    overflow-y: auto;
    flex: 1
}

.nav-label {
    display: block;
    padding: 17px 11px 7px;
    color: #686e7a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase
}

.side-nav a,.side-bottom a {
    height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #adb2bd;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid transparent;
    transition: .18s
}

.side-nav a i,.side-bottom a i {
    width: 17px;
    text-align: center;
    font-size: 14px
}

.side-nav a:hover,.side-nav a.active {
    color: white;
    background: rgba(229,9,20,.1);
    border-color: rgba(229,9,20,.18)
}

.side-nav a.active i {
    color: var(--red2)
}

.side-bottom {
    padding: 12px;
    border-top: 1px solid var(--line)
}

.side-bottom .logout-link {
    color: #ff737b
}

.main-area {
    margin-left: var(--sidebar);
    min-height: 100vh
}

.topbar {
    height: 78px;
    border-bottom: 1px solid var(--line);
    background: rgba(10,11,15,.86);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.topbar-left,.topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.topbar-left>div span,.topbar-left>div small {
    display: block
}

.topbar-left>div span {
    font-weight: 700
}

.topbar-left>div small {
    color: var(--muted);
    font-size: 11px;
    margin-top: 3px
}

.menu-btn,.icon-link {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 1px solid var(--line);
    background: var(--panel);
    color: white;
    display: grid;
    place-items: center
}

.menu-btn {
    display: none
}

.support-btn,.primary-link,.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    font-weight: 700;
    transition: .18s
}

.support-btn,.primary-link {
    background: linear-gradient(135deg,var(--red),#b80610);
    color: white;
    padding: 11px 15px;
    box-shadow: 0 8px 24px rgba(229,9,20,.18)
}

.support-btn:hover,.primary-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.08)
}

.primary-link.compact {
    padding: 9px 13px;
    font-size: 12px
}

.secondary-link {
    border: 1px solid var(--line);
    padding: 9px 12px;
    color: #ddd;
    background: #171920
}

.page-content {
    padding: 30px;
    max-width: 1600px;
    margin: auto
}

.page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px
}

.eyebrow {
    color: var(--red2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px
}

.page-heading h1 {
    font-size: 30px;
    letter-spacing: -1px;
    margin: 7px 0
}

.page-heading p {
    color: var(--muted);
    margin: 0
}

.welcome-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(31,182,113,.25);
    background: rgba(31,182,113,.08);
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 20px
}

.welcome-alert i {
    color: #36d18c;
    font-size: 20px
}

.welcome-alert strong,.welcome-alert span {
    display: block
}

.welcome-alert span {
    color: #aab0b9;
    font-size: 12px;
    margin-top: 3px
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
    margin-bottom: 18px
}

.metric-card {
    min-height: 132px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg,var(--panel2),var(--panel));
    border-radius: 16px;
    padding: 19px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: var(--shadow)
}

.metric-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 17px
}

.metric-icon.red {
    background: rgba(229,9,20,.14);
    color: #ff5962
}

.metric-icon.purple {
    background: rgba(147,92,246,.14);
    color: #b58cff
}

.metric-icon.amber {
    background: rgba(247,172,45,.14);
    color: #ffc45b
}

.metric-icon.green {
    background: rgba(31,182,113,.14);
    color: #46d798
}

.metric-card>div:last-child {
    min-width: 0;
    flex: 1
}

.metric-card span,.metric-card strong,.metric-card a {
    display: block
}

.metric-card span {
    font-size: 12px;
    color: var(--muted)
}

.metric-card strong {
    font-size: 28px;
    margin: 8px 0 11px;
    letter-spacing: -1px
}

.metric-card a {
    font-size: 11px;
    color: #c9cbd0;
    font-weight: 700
}

.metric-card a i {
    margin-left: 4px
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0,1.55fr) minmax(340px,.75fr);
    gap: 18px;
    margin-bottom: 18px
}

.lower-grid {
    grid-template-columns: minmax(0,1.2fr) minmax(360px,.8fr)
}

.panel {
    border: 1px solid var(--line);
    background: linear-gradient(145deg,var(--panel2),var(--panel));
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.panel-head {
    min-height: 76px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.panel-head h2 {
    font-size: 16px;
    margin: 0 0 5px
}

.panel-head p {
    font-size: 11px;
    color: var(--muted);
    margin: 0
}

.panel-head>a {
    color: #d9dbe0;
    font-size: 11px;
    font-weight: 700
}

.empty-state {
    min-height: 270px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.empty-state.small {
    min-height: 220px
}

.empty-state>i {
    font-size: 30px;
    color: #555d6b;
    margin-bottom: 13px
}

.empty-state h3 {
    margin: 0 0 8px;
    font-size: 16px
}

.empty-state p {
    max-width: 400px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
    margin: 0 0 17px
}

.quick-grid {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.quick-grid a {
    min-height: 116px;
    padding: 16px;
    border-radius: 13px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.025);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: .18s
}

.quick-grid a:hover {
    border-color: rgba(229,9,20,.4);
    background: rgba(229,9,20,.06);
    transform: translateY(-2px)
}

.quick-grid i {
    color: var(--red2);
    font-size: 19px;
    margin-bottom: 13px
}

.quick-grid span {
    font-weight: 700;
    font-size: 12px
}

.quick-grid small {
    color: var(--muted);
    font-size: 10px;
    margin-top: 5px
}

.list-stack {
    padding: 6px 16px 14px
}

.list-row {
    min-height: 67px;
    padding: 10px 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.055)
}

.list-row:last-child {
    border-bottom: 0
}

.list-row:hover .list-copy strong {
    color: #ff6a72
}

.list-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(229,9,20,.1);
    color: #ff5962;
    display: grid;
    place-items: center
}

.list-copy {
    min-width: 0;
    flex: 1
}

.list-copy strong,.list-copy span {
    display: block
}

.list-copy strong {
    font-size: 12px
}

.list-copy span {
    color: var(--muted);
    font-size: 10px;
    margin-top: 5px
}

.status-pill {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 6px 8px;
    border-radius: 999px
}

.status-pill.success {
    background: rgba(31,182,113,.12);
    color: #4ddd9f
}

.status-pill.warning {
    background: rgba(247,172,45,.12);
    color: #ffc45b
}

.status-pill.danger {
    background: rgba(229,9,20,.12);
    color: #ff6972
}

.status-pill.neutral {
    background: rgba(145,151,163,.12);
    color: #aeb4bf
}

.row-chevron {
    color: #555b66;
    font-size: 11px
}

.row-amount {
    font-size: 12px
}

.security-panel {
    padding-bottom: 8px
}

.security-row {
    margin: 0 18px;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid var(--line)
}

.security-row:last-child {
    border-bottom: 0
}

.security-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(229,9,20,.1);
    color: #ff5962;
    display: grid;
    place-items: center
}

.security-row>div:nth-child(2) {
    flex: 1
}

.security-row strong,.security-row span {
    display: block
}

.security-row strong {
    font-size: 12px
}

.security-row span {
    font-size: 10px;
    color: var(--muted);
    margin-top: 5px;
    line-height: 1.5
}

.mobile-overlay {
    display: none
}

@media(max-width: 1180px) {
    .dashboard-cards {
        grid-template-columns:1fr 1fr
    }

    .dashboard-grid,.lower-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width: 820px) {
    .sidebar {
        transform:translateX(-100%);
        transition: .22s
    }

    .sidebar.open {
        transform: translateX(0)
    }

    .sidebar-close,.menu-btn {
        display: grid
    }

    .main-area {
        margin-left: 0
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.62);
        z-index: 90
    }

    .mobile-overlay.open {
        display: block
    }

    .topbar {
        padding: 0 18px
    }

    .page-content {
        padding: 22px 16px
    }

    .page-heading {
        align-items: flex-start;
        flex-direction: column
    }

    .support-btn span {
        display: none
    }

    .dashboard-cards {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width: 560px) {
    .dashboard-cards {
        grid-template-columns:1fr
    }

    .metric-card {
        min-height: 114px
    }

    .quick-grid {
        grid-template-columns: 1fr
    }

    .topbar-left>div small {
        display: none
    }

    .page-heading h1 {
        font-size: 25px
    }

    .list-row {
        flex-wrap: wrap
    }

    .status-pill {
        margin-left: 50px
    }

    .row-amount {
        margin-left: auto
    }
}

.billing-list {
    display: grid;
    gap: 14px
}

.billing-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr .8fr .7fr .55fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e6ef;
    border-radius: 15px;
    /* background: #fff; */
    box-shadow: 0 8px 24px rgba(23,47,83,.04)
}

.billing-row small,.billing-row strong {
    display: block
}

.billing-row small {
    color: #7c899a;
    font-size: 11px
}

.billing-row strong {
    font-size: 13px
}

.billing-kicker {
    color: #1478ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em
}

.billing-row h3 {
    font-size: 16px;
    margin: 2px 0
}

.invoice-row {
    grid-template-columns: 1.5fr .9fr .8fr .55fr auto
}

.transaction-row {
    grid-template-columns: 1.4fr .9fr 1fr .8fr .55fr auto
}

.invoice-layout {
    display: grid;
    grid-template-columns: 1.5fr .65fr;
    gap: 20px
}

.invoice-paper {
    padding: 30px
}

.invoice-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.invoice-brand-row .brand {
    margin: 0
}

.invoice-brand-row small {
    display: block;
    color: #7c899a
}

.invoice-meta-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin: 28px 0
}

.invoice-meta-grid>div {
    padding: 15px;
    border-radius: 11px;
    background: #2f3238;
}

.invoice-meta-grid small,.invoice-meta-grid strong {
    display: block
}

.invoice-meta-grid small {
    color: #7d899a;
    font-size: 10px
}

.invoice-meta-grid strong {
    margin-top: 4px;
    font-size: 13px
}

.invoice-items {
    border: 1px solid #e3e8f0;
    border-radius: 12px;
    overflow: hidden
}

.invoice-item-head,.invoice-item-row {
    display: grid;
    grid-template-columns: 1.8fr .35fr .65fr .65fr;
    gap: 12px;
    padding: 14px 16px
}

.invoice-item-head {
    /* background: #f6f8fc; */
    color: #7a8798;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase
}

.invoice-item-row {
    border-top: 1px solid #e7ecf3;
    font-size: 13px
}

.invoice-totals {
    width: min(380px,100%);
    margin: 25px 0 0 auto
}

.invoice-totals>div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0
}

.invoice-totals span {
    color: #748195
}

.invoice-totals .grand-total {
    padding-top: 15px;
    border-top: 2px solid #e0e6ef;
    font-size: 20px
}

.payment-panel {
    text-align: center
}

.payment-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: #eaf3ff;
    color: #1478ff;
    font-size: 27px
}

.payment-panel p {
    color: #758298;
    margin: 7px 0 20px
}

.payment-link {
    width: 100%
}

.paid-panel .payment-icon {
    background: #e9f9ef;
    color: #16874c
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr;
    gap: 20px
}

.payment-form-panel label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin: 20px 0
}

.payment-form-panel input {
    display: block;
    width: 100%;
    height: 52px;
    margin-top: 7px;
    padding: 0 14px;
    border: 1px solid #ccd6e5;
    border-radius: 9px;
    background: #f9fbfd
}

.gateway-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px;
    margin-top: 20px;
    border: 1px solid #e1e7f0;
    border-radius: 12px;
    background: #f8faff
}

.gateway-card>div {
    display: flex;
    align-items: center;
    gap: 13px
}

.gateway-card i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #eaf3ff;
    color: #1478ff
}

.gateway-card strong,.gateway-card span {
    display: block
}

.gateway-card span {
    color: #7b8798;
    font-size: 11px
}

.danger-notice {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
    border-radius: 11px;
    background: #fff1f1;
    color: #a52b2b;
    font-size: 12px
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #edf1f5
}

.checkout-total strong {
    font-size: 24px
}

.checkout-summary ul {
    list-style: none;
    padding-top: 18px
}

.checkout-summary li {
    margin: 13px 0;
    color: #56647a;
    font-size: 13px
}

.checkout-summary li i {
    color: #18a85d;
    margin-right: 9px
}

.success-screen {
    max-width: 850px;
    margin: 50px auto;
    text-align: center;
    padding: 55px
}

.success-check {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e9f9ef;
    color: #18a85d;
    font-size: 36px
}

.success-screen>span {
    color: #18a85d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em
}

.success-screen h1 {
    font-size: 38px;
    margin: 8px 0
}

.success-screen p {
    max-width: 650px;
    margin: 0 auto;
    color: #758298
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px
}

@media(max-width: 1100px) {
    .billing-row {
        grid-template-columns:1.4fr .8fr .7fr .55fr auto
    }

    .billing-row>div:nth-child(2) {
        display: none
    }

    .invoice-layout,.checkout-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width: 750px) {
    .billing-row,.invoice-row,.transaction-row {
        grid-template-columns:1fr auto
    }

    .billing-row>div:not(:first-child):not(:last-child) {
        display: none
    }

    .invoice-meta-grid {
        grid-template-columns: 1fr 1fr
    }

    .invoice-item-head,.invoice-item-row {
        grid-template-columns: 1.4fr .35fr .7fr
    }

    .invoice-item-head span:nth-child(3),.invoice-item-row span:nth-child(3) {
        display: none
    }

    .success-screen {
        padding: 35px 20px
    }

    .success-screen h1 {
        font-size: 30px
    }

    .success-actions {
        flex-direction: column
    }
}

/* =========================================================
   V-WVID CLIENT AREA - ZIP 4A SUPPORT CENTER
   Copy this entire file to the END of Client/css/client.css
   ========================================================= */
.auth-card input, .form-panel input, .form-panel select {
    display: block;
    width: 100%;
    height: 50px;
    margin-top: 7px;
    padding: 0 14px;
    border: 1px solid #ccd6e5;
    border-radius: 9px;
    background: #1563b0;
    outline: none;
}

.ticket-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-bottom: 18px
}

.ticket-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border: 1px solid #e1e7ef;
    border-radius: 15px;
    background: #060707;
    box-shadow: 0 10px 30px rgba(25,43,72,.05)
}

.ticket-stat>i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #eaf3ff;
    color: #1478ff;
    font-size: 20px
}

.ticket-stat small,.ticket-stat strong {
    display: block
}

.ticket-stat small {
    font-size: 11px;
    color: #7a8798
}

.ticket-stat strong {
    font-size: 25px;
    margin-top: 2px
}

.ticket-filter-panel {
    margin-bottom: 17px
}

.ticket-filter-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr auto;
    gap: 14px;
    align-items: end
}

.ticket-filter-grid label,.support-form-grid label,.ticket-reply-panel label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #344258
}

.ticket-filter-grid input,.ticket-filter-grid select,.support-form-grid input,.support-form-grid select,.support-form-grid textarea,.ticket-reply-panel textarea,.ticket-reply-panel input[type=file] {
    display: block;
    width: 100%;
    margin-top: 7px;
    border: 1px solid #ced8e6;
    border-radius: 10px;
    background: #f9fbfd;
    color: #1e2b3c;
    outline: none
}

.ticket-filter-grid input,.ticket-filter-grid select,.support-form-grid input,.support-form-grid select {
    height: 50px;
    padding: 0 14px
}

.support-form-grid textarea,.ticket-reply-panel textarea {
    padding: 14px;
    resize: vertical
}

.ticket-filter-button {
    height: 50px
}

.ticket-list {
    display: grid;
    gap: 12px
}

.ticket-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border: 1px solid #e1e7ef;
    border-radius: 15px;
    /* background: #fff; */
    color: inherit;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(25,43,72,.04);
    transition: .2s ease
}

.ticket-list-item:hover {
    transform: translateY(-2px);
    border-color: #b9cff0;
    box-shadow: 0 16px 35px rgba(25,43,72,.08)
}

.ticket-number {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    color: #1478ff
}

.ticket-main h3 {
    margin: 4px 0 8px;
    font-size: 17px
}

.ticket-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #7b8798;
    font-size: 11px
}

.ticket-meta i {
    margin-right: 5px
}

.ticket-badges {
    display: flex;
    align-items: center;
    gap: 9px
}

.ticket-status,.priority {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em
}

.ticket-status.open {
    background: #e9f4ff;
    color: #1669b2
}

.ticket-status.answered {
    background: #eafaf0;
    color: #18844b
}

.ticket-status.waiting,.ticket-status.waiting-client {
    background: #fff3dc;
    color: #a86a00
}

.ticket-status.closed {
    background: #eef1f5;
    color: #677386
}

.priority.low {
    background: #f0f2f5;
    color: #657082
}

.priority.medium {
    background: #eaf3ff;
    color: #176ab7
}

.priority.high {
    background: #fff0dd;
    color: #b56b00
}

.priority.critical {
    background: #ffe7e7;
    color: #be3030
}

.ticket-create-layout {
    display: grid;
    grid-template-columns: 1.45fr .65fr;
    gap: 20px
}

.ticket-form-panel {
    padding: 26px
}

.support-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
    margin: 21px 0
}

.support-form-grid .full {
    grid-column: 1/-1
}

.attachment-field small {
    display: block;
    margin-top: 6px;
    color: #7d8999;
    font-weight: 500
}

.attachment-field input[type=file] {
    height: auto;
    padding: 12px
}

.support-tips {
    padding: 26px
}

.support-tips-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #fff1d7;
    color: #d88700;
    font-size: 24px
}

.support-tips h2 {
    margin: 17px 0 12px
}

.support-tips ul {
    padding-left: 19px;
    color: #627086
}

.support-tips li {
    margin: 10px 0;
    line-height: 1.5
}

.support-hours {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    border-radius: 12px;
    background: #f4f8fd
}

.support-hours i {
    color: #1478ff;
    margin-top: 2px
}

.support-hours strong,.support-hours span {
    display: block
}

.support-hours span {
    font-size: 11px;
    color: #768397;
    margin-top: 4px;
    line-height: 1.5
}

.ticket-view-heading {
    align-items: flex-start
}

.ticket-heading-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap
}

.ticket-view-layout {
    display: grid;
    grid-template-columns: 1.45fr .58fr;
    gap: 20px
}

.ticket-conversation {
    display: grid;
    gap: 14px
}

.ticket-message {
    display: flex;
    gap: 13px
}

.message-avatar {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #eaf3ff;
    color: #1478ff
}

.staff-message .message-avatar {
    background: #eaf9ef;
    color: #16864b
}

.message-body {
    flex: 1;
    border: 1px solid #e0e6ee;
    border-radius: 15px;
    background: #777777;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(25,43,72,.035)
}

.message-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 17px;
    background: #2a2a2a;
    border-bottom: 1px solid #e9edf3;
}

.staff-message .message-head {
    background: #42504b;
}

.message-head strong,.message-head span {
    display: block
}

.message-head span {
    font-size: 10px;
    color: #7c8999;
    margin-top: 2px
}

.message-head time {
    font-size: 10px;
    color: #8490a0;
    white-space: nowrap
}

.message-text {
    padding: 18px;
    font-size: 13px;
    line-height: 1.7;
    color: #3b485b
}

.ticket-reply-panel {
    margin-top: 18px;
    padding: 24px
}

.reply-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 17px
}

.danger-button,.secondary-button {
    height: 48px;
    padding: 0 18px;
    border-radius: 9px;
    font-weight: 800;
    cursor: pointer
}

.danger-button {
    border: 1px solid #efb6b6;
    background: #fff3f3;
    color: #b62828
}

.secondary-button {
    border: 1px solid #cbd6e4;
    background: #fff;
    color: #304157
}

.closed-ticket-panel {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 18px
}

.closed-ticket-panel>i {
    font-size: 30px;
    color: #18a25b
}

.closed-ticket-panel>div {
    flex: 1
}

.closed-ticket-panel h3 {
    margin: 0 0 3px
}

.closed-ticket-panel p {
    margin: 0;
    color: #788496;
    font-size: 12px
}

.ticket-info-card h2,.ticket-attachments h2 {
    font-size: 17px;
    margin: 0 0 15px
}

.ticket-info-card>div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #edf1f5
}

.ticket-info-card>div:last-child {
    border-bottom: 0
}

.ticket-info-card span {
    font-size: 11px;
    color: #7b8797
}

.ticket-info-card strong {
    font-size: 11px;
    text-align: right
}

.ticket-attachments {
    margin-top: 18px
}

.ticket-attachments>a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #edf1f5
}

.ticket-attachments>a:last-child {
    border-bottom: 0
}

.ticket-attachments>a>i:first-child {
    color: #1478ff
}

.ticket-attachments>a>i:last-child {
    margin-left: auto;
    color: #8490a0
}

.ticket-attachments strong,.ticket-attachments span {
    display: block
}

.ticket-attachments strong {
    font-size: 11px;
    word-break: break-all
}

.ticket-attachments span {
    font-size: 9px;
    color: #8994a3;
    margin-top: 2px
}

@media(max-width: 1050px) {
    .ticket-create-layout,.ticket-view-layout {
        grid-template-columns:1fr
    }

    .ticket-stats {
        grid-template-columns: repeat(3,1fr)
    }
}

@media(max-width: 760px) {
    .ticket-stats {
        grid-template-columns:1fr
    }

    .ticket-filter-grid,.support-form-grid {
        grid-template-columns: 1fr
    }

    .support-form-grid .full {
        grid-column: auto
    }

    .ticket-list-item {
        align-items: flex-start;
        flex-direction: column
    }

    .ticket-badges {
        width: 100%;
        justify-content: flex-start
    }

    .ticket-badges>i {
        margin-left: auto
    }

    .ticket-heading-actions {
        width: 100%
    }

    .message-head {
        flex-direction: column
    }

    .reply-actions {
        flex-direction: column
    }

    .reply-actions input {
        width: 100%
    }
}

/* =========================================================
V-WVID CLIENT AREA - ZIP 5
Knowledgebase & Download Center
Paste at the END of Client/css/client.css
========================================================= */
.kb-hero {
    padding: 34px;
    border-radius: 20px;
    background: linear-gradient(135deg,#10233e,#1a4e86);
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 18px 45px rgba(17,49,87,.2)
}

.kb-hero>div:first-child span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    color: #93c9ff
}

.kb-hero h1 {
    font-size: 34px;
    margin: 8px 0 7px
}

.kb-hero p {
    margin: 0;
    color: #ccdef3
}

.kb-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 24px
}

.kb-search input {
    height: 54px;
    border: 0;
    border-radius: 12px;
    padding: 0 17px;
    font-size: 14px;
    outline: none
}

.kb-search .primary-button {
    height: 54px;
    padding: 0 25px
}

.compact-heading {
    margin-top: 6px
}

.kb-category-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    margin-bottom: 28px
}

.kb-category-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #e0e6ee;
    border-radius: 15px;
    background: white;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(25,43,72,.04);
    transition: .2s
}

.kb-category-card:hover {
    transform: translateY(-2px);
    border-color: #b7d2f2
}

.kb-category-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #eaf3ff;
    color: #1478ff;
    font-size: 19px
}

.kb-category-card>div:nth-child(2) {
    flex: 1
}

.kb-category-card h3 {
    font-size: 15px;
    margin: 1px 0 6px
}

.kb-category-card p {
    font-size: 11px;
    color: #748196;
    line-height: 1.5;
    margin: 0 0 7px
}

.kb-category-card span {
    font-size: 9px;
    font-weight: 800;
    color: #1478ff;
    text-transform: uppercase
}

.kb-category-card>i {
    color: #93a0b1;
    margin-top: 5px
}

.kb-results-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 24px 0 12px
}

.kb-results-head span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #1478ff
}

.kb-results-head h2 {
    font-size: 21px;
    margin: 4px 0 0
}

.kb-results-head>strong {
    font-size: 11px;
    color: #7c899b
}

.kb-article-list {
    display: grid;
    gap: 11px
}

.kb-article-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid #e1e7ef;
    border-radius: 14px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: .2s
}

.kb-article-row:hover {
    border-color: #b8d2f0;
    transform: translateY(-1px)
}

.kb-list-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #f0f6fd;
    color: #1478ff
}

.kb-list-main {
    flex: 1
}

.kb-list-main>span {
    font-size: 9px;
    color: #1478ff;
    font-weight: 800;
    text-transform: uppercase
}

.kb-list-main h3 {
    font-size: 15px;
    margin: 3px 0 5px
}

.kb-list-main p {
    font-size: 11px;
    color: #748095;
    margin: 0;
    line-height: 1.5
}

.kb-row-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #8a96a6;
    font-size: 10px
}

.article-breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    color: #768397;
    font-size: 11px
}

.article-breadcrumbs a {
    color: #1478ff;
    text-decoration: none
}

.article-breadcrumbs i {
    font-size: 8px
}

.article-layout {
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    gap: 20px
}

.article-card {
    padding: 0;
    overflow: hidden
}

.article-head {
    padding: 28px;
    border-bottom: 1px solid #e8edf3;
    background: #f8fafc
}

.article-head>span {
    font-size: 9px;
    font-weight: 800;
    color: #1478ff;
    text-transform: uppercase;
    letter-spacing: .09em
}

.article-head h1 {
    font-size: 29px;
    line-height: 1.2;
    margin: 7px 0 9px
}

.article-head p {
    color: #6f7c8f;
    line-height: 1.6
}

.article-meta {
    display: flex;
    gap: 17px;
    margin-top: 15px;
    color: #8490a0;
    font-size: 10px
}

.article-content {
    padding: 28px;
    font-size: 13px;
    line-height: 1.8;
    color: #344258
}

.article-content h2,.article-content h3 {
    color: #1f2d3e;
    margin-top: 25px
}

.article-content pre {
    padding: 16px;
    border-radius: 11px;
    background: #101c2c;
    color: #d9e7f8;
    overflow: auto
}

.article-content code {
    font-family: Consolas,monospace
}

.article-content .note {
    padding: 15px;
    border-left: 4px solid #1478ff;
    background: #eef6ff;
    border-radius: 8px
}

.article-vote {
    display: flex;
    align-items: center;
    gap: 17px;
    flex-wrap: wrap;
    padding: 22px 28px;
    background: #f8fafc;
    border-top: 1px solid #e8edf3
}

.article-vote>div:first-child {
    flex: 1
}

.article-vote strong,.article-vote span {
    display: block
}

.article-vote span {
    font-size: 10px;
    color: #7f8b9a;
    margin-top: 3px
}

.article-vote-actions {
    display: flex;
    gap: 8px
}

.vote-button {
    height: 39px;
    padding: 0 13px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 11px;
    cursor: pointer
}

.vote-button.positive {
    border: 1px solid #a8dfc0;
    background: #effbf4;
    color: #16864b
}

.vote-button.negative {
    border: 1px solid #e3c5c5;
    background: #fff7f7;
    color: #a64545
}

.article-vote-message {
    width: 100%;
    font-size: 11px;
    color: #16864b
}

.related-card h2,.need-help-card h2 {
    font-size: 16px;
    margin-top: 0
}

.related-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #edf1f5;
    font-size: 11px
}

.related-card a:last-child {
    border-bottom: 0
}

.related-card a>span {
    flex: 1
}

.related-card a>i:first-child {
    color: #1478ff
}

.related-card a>i:last-child {
    font-size: 8px;
    color: #8794a5
}

.need-help-card {
    margin-top: 17px
}

.need-help-card p {
    font-size: 11px;
    color: #778496;
    line-height: 1.5
}

.download-category-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    margin-bottom: 22px
}

.download-category-card {
    display: flex;
    gap: 13px;
    padding: 19px;
    border: 1px solid #e0e6ee;
    border-radius: 14px;
    background: #fff;
    color: inherit;
    text-decoration: none
}

.download-category-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    border-radius: 12px;
    background: #eff6ff;
    color: #1478ff
}

.download-category-card h3 {
    font-size: 14px;
    margin: 1px 0 5px
}

.download-category-card p {
    font-size: 10px;
    color: #748196;
    line-height: 1.45;
    margin: 0 0 6px
}

.download-category-card span {
    font-size: 9px;
    color: #1478ff;
    font-weight: 800
}

.download-list {
    display: grid;
    gap: 13px
}

.download-card {
    display: flex;
    gap: 17px;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e6ee;
    border-radius: 15px;
    background: #fff
}

.download-file-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    border-radius: 14px;
    background: #eef5fd;
    color: #1478ff;
    font-size: 21px
}

.download-card-main {
    flex: 1
}

.download-card-main>span {
    font-size: 9px;
    font-weight: 800;
    color: #1478ff;
    text-transform: uppercase
}

.download-card-main h3 {
    font-size: 16px;
    margin: 4px 0
}

.download-card-main p {
    font-size: 11px;
    color: #748095;
    margin: 0 0 8px
}

.download-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 9px;
    color: #8390a1
}

.download-card-actions {
    text-align: right
}

.service-required {
    display: block;
    font-size: 8px;
    color: #b06c00;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 800
}

.download-detail-layout {
    display: grid;
    grid-template-columns: 1.3fr .55fr;
    gap: 20px
}

.download-detail-card {
    padding: 0;
    overflow: hidden
}

.download-detail-head {
    display: flex;
    gap: 18px;
    padding: 27px;
    background: #f8fafc;
    border-bottom: 1px solid #e8edf3
}

.download-detail-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    flex: 0 0 64px;
    border-radius: 16px;
    background: #eaf3ff;
    color: #1478ff;
    font-size: 25px
}

.download-detail-head span {
    font-size: 9px;
    color: #1478ff;
    font-weight: 800;
    text-transform: uppercase
}

.download-detail-head h1 {
    font-size: 27px;
    margin: 5px 0 7px
}

.download-detail-head p {
    font-size: 12px;
    color: #748095;
    margin: 0
}

.download-detail-meta {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-bottom: 1px solid #e8edf3
}

.download-detail-meta>div {
    padding: 17px;
    border-right: 1px solid #e8edf3
}

.download-detail-meta>div:last-child {
    border-right: 0
}

.download-detail-meta span,.download-detail-meta strong {
    display: block
}

.download-detail-meta span {
    font-size: 9px;
    color: #8591a1
}

.download-detail-meta strong {
    font-size: 12px;
    margin-top: 4px
}

.download-description {
    padding: 27px;
    font-size: 13px;
    line-height: 1.75;
    color: #344258
}

.download-action-box,.download-blocked-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 27px 27px;
    padding: 18px;
    border-radius: 13px
}

.download-action-box {
    background: #edf9f2;
    border: 1px solid #ccebd9
}

.download-blocked-box {
    background: #fff7e9;
    border: 1px solid #f0d8aa
}

.download-action-box>div,.download-blocked-box>div {
    flex: 1
}

.download-action-box strong,.download-action-box span,.download-blocked-box strong,.download-blocked-box span {
    display: block
}

.download-action-box span,.download-blocked-box span {
    font-size: 10px;
    color: #718095;
    margin-top: 3px
}

.download-blocked-box>i {
    color: #b77500;
    font-size: 22px
}

.large-link {
    padding: 14px 18px
}

.changelog-card h2 {
    font-size: 17px;
    margin-top: 0
}

.changelog-content {
    font-size: 11px;
    line-height: 1.65;
    color: #5f6d80
}

.changelog-content ul {
    padding-left: 18px
}

@media(max-width: 1050px) {
    .kb-category-grid,.download-category-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .article-layout,.download-detail-layout {
        grid-template-columns: 1fr
    }
}

@media(max-width: 760px) {
    .kb-search {
        grid-template-columns:1fr
    }

    .kb-category-grid,.download-category-grid {
        grid-template-columns: 1fr
    }

    .kb-article-row,.download-card {
        align-items: flex-start
    }

    .download-card {
        flex-wrap: wrap
    }

    .download-card-actions {
        width: 100%;
        text-align: left
    }

    .download-detail-meta {
        grid-template-columns: repeat(2,1fr)
    }

    .download-detail-meta>div:nth-child(2) {
        border-right: 0
    }

    .article-vote {
        align-items: flex-start
    }

    .download-action-box,.download-blocked-box {
        align-items: flex-start;
        flex-direction: column
    }
}

/* =========================================================
V-WVID CLIENT AREA - ZIP 6
Notifications, Account Settings & Security
Paste at the END of Client/css/client.css
========================================================= */
.notification-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px
}

.notification-summary>div:not(.notification-filters) {
    min-width: 120px;
    padding: 15px 18px;
    border-radius: 13px;
    background: #fff;
    border: 1px solid #e2e8f0
}

.notification-summary span,.notification-summary strong {
    display: block
}

.notification-summary span {
    font-size: 9px;
    color: #7b8798;
    text-transform: uppercase;
    font-weight: 800
}

.notification-summary strong {
    font-size: 22px;
    margin-top: 3px
}

.notification-filters {
    margin-left: auto;
    display: flex;
    gap: 8px
}

.notification-filters a {
    padding: 9px 13px;
    border: 1px solid #dce4ed;
    border-radius: 9px;
    background: #fff;
    color: #425168;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800
}

.notification-list {
    display: grid;
    gap: 11px
}

.notification-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e0e7ef;
    color: inherit;
    text-decoration: none;
    transition: .2s
}

.notification-card.unread {
    border-left: 4px solid #1478ff;
    background: #fbfdff
}

.notification-card:hover {
    transform: translateY(-1px);
    border-color: #b7d2f1
}

.notification-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    flex: 0 0 47px;
    border-radius: 13px;
    background: #edf5ff;
    color: #1478ff
}

.notification-icon.success {
    background: #eaf8f0;
    color: #16864b
}

.notification-icon.warning {
    background: #fff6e5;
    color: #b87500
}

.notification-icon.danger {
    background: #fff0f0;
    color: #c14141
}

.notification-icon.billing {
    background: #f4efff;
    color: #7550bc
}

.notification-icon.service {
    background: #eaf5ff;
    color: #1478ff
}

.notification-main {
    flex: 1
}

.notification-title-row {
    display: flex;
    align-items: center;
    gap: 9px
}

.notification-main h3 {
    font-size: 14px;
    margin: 0
}

.notification-main p {
    font-size: 11px;
    color: #748095;
    line-height: 1.5;
    margin: 5px 0 7px
}

.notification-main>span {
    font-size: 9px;
    color: #8b96a5
}

.new-dot {
    font-size: 8px!important;
    padding: 3px 6px;
    border-radius: 20px;
    background: #1478ff;
    color: #fff!important;
    font-weight: 800
}

.notification-view-card {
    padding: 0;
    overflow: hidden
}

.notification-view-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 28px 28px 0;
    border-radius: 18px;
    background: #edf5ff;
    color: #1478ff;
    font-size: 27px
}

.notification-view-head {
    padding: 20px 28px;
    border-bottom: 1px solid #e7edf3
}

.notification-view-head>span {
    font-size: 9px;
    color: #8793a3
}

.notification-view-head h1 {
    font-size: 28px;
    margin: 6px 0 8px
}

.notification-view-head p {
    font-size: 12px;
    color: #6e7c8f;
    line-height: 1.55
}

.notification-view-body {
    padding: 28px;
    font-size: 13px;
    line-height: 1.75;
    color: #344258
}

.notification-view-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 28px;
    background: #f8fafc;
    border-top: 1px solid #e7edf3
}

.settings-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.settings-card h2 {
    font-size: 18px;
    margin-top: 0
}

.settings-help {
    font-size: 11px;
    color: #788597;
    margin-bottom: 20px
}

.toggle-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #edf1f5;
    cursor: pointer
}

.toggle-row>div {
    flex: 1
}

.toggle-row strong,.toggle-row span {
    display: block
}

.toggle-row strong {
    font-size: 12px
}

.toggle-row span {
    font-size: 10px;
    color: #7b8798;
    margin-top: 4px
}

.toggle-row input {
    width: 18px;
    height: 18px
}

.form-grid.one-column {
    grid-template-columns: 1fr
}

.form-message {
    display: block;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 700
}

.form-message.success {
    color: #16864b
}

.form-message.error {
    color: #bd3636
}

.narrow-page {
    max-width: 720px;
    margin: 0 auto
}

.security-summary-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-bottom: 20px
}

.security-summary-card {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 18px;
    border: 1px solid #e0e7ef;
    border-radius: 14px;
    background: #fff
}

.security-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    border-radius: 12px;
    background: #edf5ff;
    color: #1478ff
}

.security-summary-card span,.security-summary-card strong,.security-summary-card small {
    display: block
}

.security-summary-card span {
    font-size: 8px;
    color: #8793a3;
    text-transform: uppercase;
    font-weight: 800
}

.security-summary-card strong {
    font-size: 12px;
    margin: 3px 0
}

.security-summary-card small {
    font-size: 9px;
    color: #7b8798
}

.security-action-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px
}

.security-action-card {
    display: flex;
    align-items: center;
    gap: 15px;
    color: inherit;
    text-decoration: none;
    transition: .2s
}

.security-action-card:hover {
    transform: translateY(-2px);
    border-color: #b8d2ef
}

.security-action-card>i:first-child {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #edf5ff;
    color: #1478ff
}

.security-action-card>div {
    flex: 1
}

.security-action-card h2 {
    font-size: 14px;
    margin: 0 0 4px
}

.security-action-card p {
    font-size: 10px;
    color: #778496;
    margin: 0
}

.security-action-card>i:last-child {
    font-size: 9px;
    color: #8793a3
}

.twofactor-card {
    text-align: center
}

.twofactor-visual {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    margin: 0 auto 17px;
    border-radius: 22px;
    background: #edf5ff;
    color: #1478ff;
    font-size: 31px
}

.twofactor-card h2 {
    font-size: 20px
}

.twofactor-card>p {
    max-width: 530px;
    margin: 0 auto 20px;
    color: #738094;
    font-size: 11px;
    line-height: 1.6
}

.status-banner {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 13px;
    border-radius: 10px;
    margin: 15px 0
}

.status-banner.warning {
    background: #fff7e8;
    color: #a96800
}

.status-banner.success {
    background: #edf9f2;
    color: #16864b
}

.login-status {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 20px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase
}

.login-status.success {
    background: #eaf8f0;
    color: #16864b
}

.login-status.failed {
    background: #fff0f0;
    color: #bc3f3f
}

.user-agent-cell {
    max-width: 360px;
    white-space: normal!important;
    font-size: 10px;
    color: #6e7b8e
}

.session-list {
    display: grid;
    gap: 13px
}

.session-card {
    display: flex;
    align-items: center;
    gap: 15px
}

.session-device-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex: 0 0 50px;
    border-radius: 13px;
    background: #edf5ff;
    color: #1478ff
}

.session-main {
    flex: 1
}

.session-main h3 {
    font-size: 12px;
    margin: 0 0 7px;
    word-break: break-word
}

.session-main>div {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 9px;
    color: #7d899a
}

.revoke-session-button {
    padding: 9px 12px;
    border: 1px solid #e0bcbc;
    border-radius: 8px;
    color: #b73f3f;
    text-decoration: none;
    font-size: 9px;
    font-weight: 800
}

.danger-button {
    padding: 11px 15px;
    border: 1px solid #da9f9f;
    border-radius: 9px;
    background: #fff1f1;
    color: #ad3636;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer
}

@media(max-width: 1100px) {
    .security-summary-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .settings-layout {
        grid-template-columns: 1fr
    }
}

@media(max-width: 760px) {
    .notification-summary {
        align-items:stretch;
        flex-wrap: wrap
    }

    .notification-filters {
        margin-left: 0;
        width: 100%
    }

    .notification-card {
        align-items: flex-start
    }

    .security-summary-grid,.security-action-grid {
        grid-template-columns: 1fr
    }

    .session-card {
        align-items: flex-start;
        flex-wrap: wrap
    }

    .revoke-session-button {
        margin-left: 65px
    }

    .notification-view-actions {
        align-items: stretch;
        flex-direction: column
    }
}

.stripe-pay-button {
    width: 100%;
    padding: 14px;
    border: 0;
    border-radius: 10px;
    background: #635bff;
    color: #fff;
    font-weight: 800;
    cursor: pointer
}

.stripe-result-wrap {
    max-width: 680px;
    margin: 50px auto
}

.stripe-result-card {
    text-align: center;
    padding: 40px
}

.stripe-result-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    font-size: 28px
}

.stripe-result-icon.success {
    background: #eaf8f0;
    color: #16864b
}

.stripe-result-icon.pending {
    background: #fff7e7;
    color: #a66a00
}

.stripe-result-icon.cancelled {
    background: #fff0f0;
    color: #bd3f3f
}

.stripe-eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
    font-weight: 800;
    color: #7c8797
}

.stripe-result-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px
}

.stripe-subscription-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px
}

.stripe-subscription-card h3 {
    font-size: 11px;
    word-break: break-all
}

.subscription-state {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 20px;
    background: #edf2f7;
    font-size: 8px;
    text-transform: uppercase
}

.subscription-state.active,.subscription-state.trialing {
    background: #eaf8f0;
    color: #16864b
}

@media(max-width: 760px) {
    .stripe-subscription-grid {
        grid-template-columns:1fr
    }

    .stripe-result-actions {
        flex-direction: column
    }
}

.domain-order-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.domain-order-card span,.domain-order-summary span {
    font-size: 9px;
    font-weight: 800;
    color: #8591a3
}

.domain-order-card h2 {
    font-size: 24px;
    margin: 5px 0
}

.domain-order-card>strong {
    font-size: 25px
}

.domain-years-form {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 220px 200px;
    align-items: center;
    gap: 14px
}

.domain-years-form select {
    padding: 12px;
    border: 1px solid #d9e0e9;
    border-radius: 9px
}

.domain-order-summary {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px
}

.domain-order-summary>div {
    padding: 14px;
    border-radius: 10px;
    background: #f5f7fa
}

.domain-order-summary strong {
    display: block;
    margin-top: 5px
}

@media(max-width: 700px) {
    .domain-years-form,.domain-order-summary {
        grid-template-columns:1fr
    }
}
