@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --mt-primary: #ee2b2b;
    --mt-background: #121212;
    --mt-border: rgba(255, 255, 255, 0.1);
    --mt-muted: rgba(255, 255, 255, 0.6);
}

html {
    scroll-behavior: smooth;
}

body,
body.primary-bg-color,
body.mt-whmcs {
    background: var(--mt-background) !important;
    color: #fff !important;
    font-family: "Inter", sans-serif !important;
    min-height: 100vh;
    overflow-x: hidden;
}

body.mt-whmcs {
    display: flex;
    flex-direction: column;
}

.mt-main-body {
    flex: 1 0 auto;
}

.mt-footer {
    flex: 0 0 auto;
    margin-top: auto;
}

body * {
    border-color: var(--mt-border);
}

body a {
    color: inherit;
}

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

::selection {
    background: var(--mt-primary);
    color: #fff;
}

.mt-background {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

.mt-background__gradient {
    background: linear-gradient(to top, #121212 0%, rgba(18, 18, 18, 0.8) 50%, rgba(18, 18, 18, 0.5) 100%);
    inset: 0;
    position: absolute;
    z-index: 2;
}

.mt-background > img {
    filter: grayscale(1);
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    width: 100%;
    animation: mtSlowPan 20s ease infinite alternate;
}

.mt-background__red,
.mt-background__purple {
    border-radius: 9999px;
    filter: blur(120px);
    position: absolute;
    z-index: 3;
}

.mt-background__red {
    background: rgba(238, 43, 43, 0.1);
    height: 384px;
    left: 25%;
    top: 0;
    width: 384px;
}

.mt-background__purple {
    background: rgba(152, 16, 250, 0.05);
    bottom: 25%;
    height: 500px;
    right: 25%;
    width: 500px;
}

@keyframes mtSlowPan {
    from {
        transform: scale(1) translateX(0);
    }
    to {
        transform: scale(1.1) translateX(-2%);
    }
}

.mt-shell {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    width: 100%;
}

.mt-header {
    background: transparent;
    position: relative;
    z-index: 10;
}

.mt-navbar {
    align-items: center;
    border-bottom: 1px solid var(--mt-border);
    display: flex;
    justify-content: space-between;
    min-height: 89px;
    padding-bottom: 20px;
    padding-top: 20px;
    white-space: nowrap;
}

.mt-brand {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

.mt-brand img {
    filter: drop-shadow(0 0 20px rgba(238, 43, 43, 0.3));
    height: 48px !important;
    max-height: 48px !important;
    max-width: 48px !important;
    object-fit: contain;
    transition: transform 0.15s ease;
    width: 48px !important;
}

.mt-brand:hover img {
    transform: scale(1.1);
}

.mt-brand span {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.25;
}

.mt-navbar__collapse,
.mt-navbar__collapse.collapse {
    align-items: center;
    display: flex !important;
    flex: 1;
    margin-left: 96px;
}

.mt-nav-links {
    align-items: center;
    display: flex;
    gap: 48px;
}

.mt-nav-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-transform: uppercase;
    transition: all 0.15s ease;
}

.mt-nav-links a:hover {
    color: #fff;
    letter-spacing: 0.2em;
}

.mt-nav-actions {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

.mt-login-link {
    align-items: center;
    background: var(--mt-primary);
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(238, 43, 43, 0.2), 0 8px 10px -6px rgba(238, 43, 43, 0.2);
    color: #fff !important;
    display: flex;
    font-size: 10px;
    font-weight: 900;
    height: 48px;
    justify-content: center;
    letter-spacing: 0.2em;
    padding-left: 32px;
    padding-right: 32px;
    text-transform: uppercase;
    transition: transform 0.15s ease;
}

.mt-login-link:hover {
    transform: scale(1.02);
}

.mt-login-link:active {
    transform: scale(0.95);
}

.mt-menu-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mt-border);
    border-radius: 8px;
    color: #fff;
    display: none;
    height: 44px;
    margin-left: auto;
    width: 44px;
}

.master-breadcrumb {
    background: rgba(18, 18, 18, 0.86) !important;
    border-bottom: 1px solid var(--mt-border);
    position: relative;
    z-index: 10;
}

.master-breadcrumb .breadcrumb {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.4);
}

.master-breadcrumb .breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.mt-main-body,
section#main-body,
.primary-content {
    background: transparent !important;
    position: relative;
    z-index: 10;
}

body.modal-open .mt-main-body,
body.modal-open section#main-body,
body.modal-open .primary-content {
    position: static !important;
    z-index: auto !important;
}

.mt-page-homepage .mt-main-body {
    padding: 0 !important;
}

.mt-page-homepage .mt-main-body > .container {
    max-width: none !important;
    padding: 0 !important;
}

.mt-home {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}

.mt-home__main {
    display: flex;
    flex-direction: column;
    gap: 128px;
}

.mt-hero {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    min-height: 80vh;
    padding-bottom: 80px;
    padding-top: 80px;
}

.mt-hero__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 576px;
    text-align: center;
}

.mt-hero__copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mt-hero h1 {
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0;
}

.mt-hero h1 > span {
    opacity: 0.9;
}

.mt-hero h1 strong {
    color: var(--mt-primary);
    font-size: inherit;
    font-weight: inherit;
    margin-top: -0.1em;
}

.mt-hero__copy p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.625;
    margin: 0;
    max-width: 448px;
}

.mt-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mt-action-card {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mt-border);
    border-radius: 8px;
    color: #fff !important;
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    min-width: 240px;
    overflow: hidden;
    padding: 16px;
    text-align: left;
    transition: all 0.15s ease;
}

.mt-action-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(238, 43, 43, 0.5);
}

.mt-action-card--discord:hover {
    border-color: rgba(88, 101, 242, 0.5);
}

.mt-action-card > i {
    color: var(--mt-primary);
    font-size: 32px;
    transition: transform 0.15s ease;
}

.mt-action-card:hover > i,
.mt-action-card:hover .mt-discord-icon {
    transform: scale(1.1);
}

.mt-discord-icon {
    align-items: center;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 9999px;
    color: #5865f2;
    display: flex;
    font-size: 24px;
    justify-content: center;
    padding: 4px;
    transition: all 0.15s ease;
}

.mt-action-card:hover .mt-discord-icon {
    background: rgba(88, 101, 242, 0.2);
}

.mt-action-card > span:last-child {
    display: flex;
    flex-direction: column;
}

.mt-action-card strong {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mt-action-card small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.mt-section {
    padding-bottom: 96px;
    padding-top: 96px;
    width: 100%;
}

.mt-section__heading {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
    text-align: center;
}

.mt-section__heading h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.mt-section__heading > span {
    background: var(--mt-primary);
    border-radius: 9999px;
    height: 6px;
    width: 96px;
}

.mt-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    width: 100%;
}

.mt-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--mt-border);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
    padding: 40px;
    position: relative;
    transition: all 0.5s ease;
}

.mt-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(238, 43, 43, 0.5);
}

.mt-animate {
    opacity: 0;
    transition-delay: var(--mt-delay, 0ms);
    will-change: opacity, transform;
}

.mt-animate--hero {
    transform: translateX(-50px);
    transition: opacity 0.8s ease var(--mt-delay, 0ms), transform 0.8s ease var(--mt-delay, 0ms);
}

.mt-animate--up {
    transform: translateY(30px);
    transition: opacity 0.6s ease var(--mt-delay, 0ms), transform 0.6s ease var(--mt-delay, 0ms);
}

.mt-section__heading.mt-animate--up {
    transform: translateY(20px);
}

.mt-animate--scale {
    transform: scale(0.95);
    transition: opacity 0.5s ease var(--mt-delay, 0ms), transform 0.5s ease var(--mt-delay, 0ms);
}

.mt-animate.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.mt-card.mt-animate:hover {
    transform: translateY(-4px);
}

.mt-review.mt-animate:hover {
    transform: translateY(-3px);
}

.mt-card__glow {
    background: linear-gradient(to bottom right, rgba(238, 43, 43, 0.3), rgba(238, 43, 43, 0.05), transparent);
    filter: blur(40px);
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 0.7s ease;
}

.mt-card:hover .mt-card__glow {
    opacity: 1;
}

.mt-card__icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mt-border);
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    color: var(--mt-primary);
    display: flex;
    font-size: 32px;
    height: 64px;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
    width: 64px;
    z-index: 1;
}

.mt-card:hover .mt-card__icon {
    border-color: rgba(238, 43, 43, 0.5);
    transform: scale(1.1);
}

.mt-card__copy {
    position: relative;
    z-index: 1;
}

.mt-card__copy h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
    transition: color 0.15s ease;
}

.mt-card:hover h3 {
    color: var(--mt-primary);
}

.mt-card__copy p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
    margin: 0;
}

.mt-card > a {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mt-border);
    border-radius: 12px;
    color: #fff !important;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    height: 56px;
    justify-content: center;
    margin-top: auto;
    position: relative;
    transition: all 0.15s ease;
    z-index: 1;
}

.mt-card > a:hover {
    background: var(--mt-primary);
    border-color: var(--mt-primary);
    transform: scale(1.02);
}

.mt-review {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--mt-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px;
    transition: all 0.3s ease;
}

.mt-review:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
}

.mt-review__person {
    align-items: center;
    display: flex;
    gap: 20px;
}

.mt-review__avatar {
    position: relative;
}

.mt-review__avatar span {
    background: rgba(238, 43, 43, 0.2);
    border-radius: 9999px;
    filter: blur(8px);
    inset: -4px;
    position: absolute;
    transition: background 0.15s ease;
}

.mt-review:hover .mt-review__avatar span {
    background: rgba(238, 43, 43, 0.4);
}

.mt-review__avatar img {
    border: 2px solid var(--mt-border);
    border-radius: 9999px;
    height: 56px;
    object-fit: cover;
    position: relative;
    width: 56px;
}

.mt-review h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    transition: color 0.15s ease;
}

.mt-review:hover h3 {
    color: var(--mt-primary);
}

.mt-review small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mt-review__stars {
    color: var(--mt-primary);
    font-size: 18px;
    letter-spacing: 4px;
}

.mt-review > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.625;
    margin: 0;
}

.mt-footer {
    background: transparent;
    position: relative;
    z-index: 10;
}

.mt-footer__inner {
    align-items: center;
    border-top: 1px solid var(--mt-border);
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: space-between;
    margin-top: 80px;
    padding-bottom: 48px;
    padding-top: 48px;
}

.mt-footer__brand {
    align-items: center;
    display: flex;
    gap: 12px;
}

.mt-footer__brand > span {
    color: var(--mt-primary);
    font-size: 28px;
}

.mt-footer__brand strong {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.mt-footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

.mt-footer__links {
    display: flex;
    gap: 24px;
}

.mt-footer__links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.15s ease;
}

.mt-footer__links a:hover {
    color: #fff;
}

/* WHMCS inherited pages */
.mt-whmcs:not(.mt-page-homepage) .mt-main-body {
    min-height: 65vh;
    padding-bottom: 64px;
    padding-top: 64px;
}

.mt-whmcs:not(.mt-page-homepage) .primary-content,
.mt-whmcs:not(.mt-page-homepage) .sidebar {
    color: #fff;
}

.mt-page-clientareahome .mt-main-body {
    padding-bottom: 80px !important;
    padding-top: 56px !important;
}

.mt-page-clientareahome .mt-main-body > .container {
    max-width: 1280px;
}

.mt-client-dashboard {
    align-items: start;
    display: grid;
    gap: 30px;
    grid-template-columns: 270px minmax(0, 1fr);
}

.mt-client-profile,
.mt-client-stat,
.mt-client-panel {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--mt-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.22);
}

.mt-client-profile {
    border-radius: 24px;
    overflow: hidden;
    padding: 26px;
    position: sticky;
    top: 24px;
}

.mt-client-profile__title {
    align-items: center;
    display: flex;
    gap: 14px;
}

.mt-client-profile__title > span {
    align-items: center;
    background: rgba(238, 43, 43, 0.1);
    border: 1px solid rgba(238, 43, 43, 0.2);
    border-radius: 14px;
    color: var(--mt-primary);
    display: flex;
    flex: 0 0 auto;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.mt-client-profile__title small {
    color: rgba(255, 255, 255, 0.32);
    display: block;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
}

.mt-client-profile__title h2 {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
}

.mt-client-profile__details {
    border-bottom: 1px solid var(--mt-border);
    border-top: 1px solid var(--mt-border);
    margin: 24px -26px;
    padding: 22px 26px;
}

.mt-client-profile__details p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

.mt-client-profile__email {
    color: rgba(255, 255, 255, 0.35) !important;
    margin-top: 12px !important;
    overflow-wrap: anywhere;
}

.mt-client-logout {
    align-items: center;
    background: var(--mt-primary);
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(238, 43, 43, 0.18);
    color: #fff !important;
    display: flex;
    font-size: 11px;
    font-weight: 900;
    gap: 10px;
    height: 48px;
    justify-content: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.15s ease;
    width: 100%;
}

.mt-client-logout:hover {
    background: #ff3535;
    transform: translateY(-2px);
}

.mt-client-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.mt-client-stats {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mt-client-stat {
    align-items: center;
    border-radius: 22px;
    display: grid;
    gap: 4px 18px;
    grid-template-columns: 58px 1fr;
    min-height: 120px;
    overflow: hidden;
    padding: 24px;
    position: relative;
    transition: all 0.25s ease;
}

.mt-client-stat::after {
    background: linear-gradient(90deg, var(--mt-primary), transparent);
    bottom: 0;
    content: "";
    height: 2px;
    left: 24px;
    opacity: 0.8;
    position: absolute;
    right: 24px;
}

.mt-client-stat:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(238, 43, 43, 0.35);
    transform: translateY(-4px);
}

.mt-client-stat__icon {
    align-items: center;
    background: rgba(238, 43, 43, 0.1);
    border: 1px solid rgba(238, 43, 43, 0.2);
    border-radius: 16px;
    color: var(--mt-primary);
    display: flex;
    font-size: 23px;
    grid-row: 1 / span 2;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.mt-client-stat__number {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
}

.mt-client-stat__label {
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.mt-client-panels {
    display: grid;
    gap: 20px;
}

.mt-client-panel {
    border-radius: 22px;
    overflow: hidden;
}

.mt-client-panel__header {
    align-items: center;
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid var(--mt-border);
    display: flex;
    justify-content: space-between;
    min-height: 62px;
    padding: 0 22px;
}

.mt-client-panel__header h3 {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 15px;
    font-weight: 800;
    gap: 10px;
    margin: 0;
}

.mt-client-panel__header h3 > i {
    color: var(--mt-primary);
}

.mt-client-panel__header > a {
    align-items: center;
    background: rgba(238, 43, 43, 0.1);
    border: 1px solid rgba(238, 43, 43, 0.2);
    border-radius: 9px;
    color: var(--mt-primary) !important;
    display: flex;
    font-size: 10px;
    font-weight: 800;
    gap: 7px;
    min-height: 34px;
    padding: 0 12px;
}

.mt-client-panel__body {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.65;
    padding: 22px;
}

.mt-client-panel__list {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mt-client-panel__list > a,
.mt-client-panel__list > div {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.65) !important;
    display: flex;
    font-size: 13px;
    gap: 9px;
    justify-content: space-between;
    min-height: 50px;
    padding: 10px 22px;
    transition: all 0.15s ease;
}

.mt-client-panel__list > a:hover {
    background: rgba(255, 255, 255, 0.035);
    color: #fff !important;
}

.mt-client-panel__list .btn,
.mt-client-panel__list a.btn {
    align-items: center;
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 8px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    display: inline-flex;
    font-size: 10px !important;
    font-weight: 800;
    justify-content: center;
    min-height: 34px;
    padding: 7px 12px !important;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.mt-client-panel__list .btn:hover,
.mt-client-panel__list a.btn:hover {
    background: var(--mt-primary) !important;
    border-color: var(--mt-primary) !important;
    box-shadow: 0 10px 22px rgba(238, 43, 43, 0.18);
    color: #fff !important;
    transform: translateY(-1px);
}

.mt-client-panel__list .label,
.mt-client-panel__list .badge {
    border-radius: 6px;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 7px;
}

.mt-client-panel__footer {
    border-top: 1px solid var(--mt-border);
    color: rgba(255, 255, 255, 0.28);
    font-size: 11px;
    padding: 12px 22px;
    text-align: right;
}

.mt-client-panel__footer a {
    color: rgba(255, 255, 255, 0.35) !important;
}

.mt-client-invoices .mt-client-panel__header .badge {
    background: rgba(238, 43, 43, 0.12);
    border: 1px solid rgba(238, 43, 43, 0.2);
    color: #ff6666;
    font-size: 8px;
    padding: 4px 7px;
}

.mt-invoice-list {
    display: flex;
    flex-direction: column;
}

.mt-invoice-row {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff !important;
    display: grid;
    gap: 14px;
    grid-template-columns: 42px minmax(0, 1fr) auto 14px;
    min-height: 76px;
    padding: 12px 22px;
    transition: all 0.18s ease;
}

.mt-invoice-row:last-child {
    border-bottom: 0;
}

.mt-invoice-row:hover {
    background: rgba(255, 255, 255, 0.035);
}

.mt-invoice-row__icon {
    align-items: center;
    background: rgba(238, 43, 43, 0.08);
    border: 1px solid rgba(238, 43, 43, 0.18);
    border-radius: 11px;
    color: var(--mt-primary);
    display: flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.mt-invoice-row__info,
.mt-invoice-row__amount {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mt-invoice-row__info strong,
.mt-invoice-row__amount strong {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.mt-invoice-row__info small {
    color: rgba(255, 255, 255, 0.36);
    font-size: 10px;
    margin-top: 5px;
}

.mt-invoice-row__amount {
    align-items: flex-end;
    text-align: right;
}

.mt-invoice-status {
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    margin-top: 5px;
    padding: 3px 7px;
    text-transform: uppercase;
}

.mt-invoice-status--paid {
    background: rgba(42, 198, 113, 0.12);
    color: #55d88f;
}

.mt-invoice-status--unpaid,
.mt-invoice-status--collections {
    background: rgba(238, 43, 43, 0.12);
    color: #ff6666;
}

.mt-invoice-status--cancelled,
.mt-invoice-status--refunded,
.mt-invoice-status--draft {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.5);
}

.mt-invoice-row__arrow {
    color: rgba(255, 255, 255, 0.18);
    font-size: 10px;
    transition: all 0.18s ease;
}

.mt-invoice-row:hover .mt-invoice-row__arrow {
    color: var(--mt-primary);
    transform: translateX(2px);
}

.mt-invoice-empty {
    align-items: center;
    display: flex;
    gap: 12px;
}

.mt-invoice-empty i {
    color: var(--mt-primary);
    font-size: 18px;
}

.mt-page-login .mt-header,
.mt-page-login .master-breadcrumb,
.mt-page-login .mt-footer,
.mt-page-clientregister .mt-header,
.mt-page-clientregister .master-breadcrumb,
.mt-page-clientregister .mt-footer {
    display: none;
}

.mt-page-login .mt-main-body,
.mt-page-clientregister .mt-main-body {
    align-items: center;
    display: flex;
    min-height: 100vh;
    padding: 48px 24px !important;
}

.mt-page-login .mt-main-body > .container,
.mt-page-clientregister .mt-main-body > .container {
    max-width: none;
    padding: 0;
}

.mt-page-login .primary-content,
.mt-page-clientregister .primary-content {
    width: 100%;
}

.mt-auth {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
    z-index: 10;
}

.mt-auth--login {
    max-width: 440px;
}

.mt-auth--register {
    max-width: 980px;
}

.mt-page-clientregister .primary-content {
    display: flex;
    justify-content: center;
}

.mt-page-clientregister .mt-auth--register {
    margin-left: auto;
    margin-right: auto;
}

.mt-auth__heading {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    text-align: center;
}

.mt-auth__heading h1 {
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.6));
    background-clip: text;
    color: transparent;
    font-size: 36px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.mt-auth__heading > div {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-top: 12px;
    opacity: 0.4;
}

.mt-auth__heading > div span {
    background: rgba(255, 255, 255, 0.5);
    height: 1px;
    width: 32px;
}

.mt-auth__heading p {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5em;
    margin: 0;
    text-transform: uppercase;
}

.mt-auth__card {
    backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    padding: 40px;
}

.mt-auth__card--register {
    padding: 42px;
}

.mt-auth__intro {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    text-align: center;
}

.mt-auth__intro > span {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mt-border);
    border-radius: 9999px;
    color: #fff;
    display: flex;
    height: 44px;
    justify-content: center;
    margin-bottom: 10px;
    width: 44px;
}

.mt-auth__intro h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 8px;
}

.mt-auth__intro p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.mt-auth form {
    margin: 0;
}

.mt-auth__field {
    margin-bottom: 20px;
}

.mt-auth__field > label,
.mt-auth__label-row label,
.mt-auth--register .form-group > label:not(.field-icon) {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.mt-auth__label-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.mt-auth__label-row a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px;
    text-decoration: underline;
}

.mt-auth__input {
    align-items: stretch;
    display: flex;
    height: 48px;
}

.mt-auth__input > span {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mt-border);
    border-radius: 8px 0 0 8px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    width: 48px;
}

.mt-auth__input input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--mt-border) !important;
    border-left: 0 !important;
    border-radius: 0 8px 8px 0 !important;
    color: #fff !important;
    flex: 1;
    font-size: 14px;
    min-width: 0;
    padding: 0 14px;
}

.mt-auth__input input:focus {
    border-color: rgba(238, 43, 43, 0.5) !important;
    box-shadow: 0 0 0 2px rgba(238, 43, 43, 0.08) !important;
    outline: none;
}

.mt-auth__input .btn-reveal-pw {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mt-border);
    border-left: 0;
    border-radius: 0 8px 8px 0;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    width: 48px;
}

.mt-auth__input:has(.btn-reveal-pw) input {
    border-radius: 0 !important;
}

.mt-auth__options {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.mt-auth__options label,
.mt-auth .form-check {
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    font-size: 13px;
    gap: 9px;
}

.mt-auth input[type="checkbox"] {
    accent-color: #fff;
    height: 16px;
    margin: 0 !important;
    position: static !important;
    width: 16px;
}

.mt-auth__submit,
.mt-auth--register input[type="submit"].btn-primary {
    align-items: center;
    background: #fff !important;
    border: 0 !important;
    border-radius: 8px !important;
    color: #080808 !important;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    transition: all 0.15s ease;
    width: 100%;
}

.mt-auth__submit:hover,
.mt-auth--register input[type="submit"].btn-primary:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
}

.mt-auth__divider {
    align-items: center;
    display: flex;
    gap: 12px;
    margin: 24px 0;
}

.mt-auth__divider::before,
.mt-auth__divider::after {
    background: rgba(255, 255, 255, 0.1);
    content: "";
    flex: 1;
    height: 1px;
}

.mt-auth__divider span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.mt-auth__switch {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 0;
    text-align: center;
}

.mt-auth__switch a {
    color: #fff !important;
    font-weight: 700;
    margin-left: 4px;
}

.mt-auth__switch--outside {
    margin-top: 24px;
}

.mt-auth .alert {
    background: rgba(238, 43, 43, 0.06);
    border: 1px solid rgba(238, 43, 43, 0.15);
    border-radius: 12px;
    color: #ff6565;
    font-size: 12px;
}

.mt-auth__captcha {
    margin-bottom: 20px;
}

.mt-auth--register #registration .card {
    background: rgba(255, 255, 255, 0.018) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 20px;
    box-shadow: none;
    margin-bottom: 18px !important;
    overflow: hidden;
}

.mt-auth--register #registration .card-body {
    padding: 26px !important;
}

.mt-auth--register #registration .card-title {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.mt-auth--register .form-group {
    margin-bottom: 16px;
    position: relative;
}

.mt-auth--register .prepend-icon .field-icon {
    align-items: center;
    bottom: 0;
    color: rgba(255, 255, 255, 0.38);
    display: flex;
    height: 46px;
    justify-content: center;
    left: 0;
    margin: 0;
    position: absolute;
    width: 46px;
    z-index: 2;
}

.mt-auth--register input.field,
.mt-auth--register select.field,
.mt-auth--register .form-control,
.mt-auth--register .customfield input,
.mt-auth--register .customfield select {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 13px;
    height: 46px;
    width: 100%;
}

.mt-auth--register .prepend-icon input.field,
.mt-auth--register .prepend-icon select.field {
    padding-left: 46px;
}

.mt-auth--register select option {
    background: #181818;
    color: #fff;
}

.mt-auth--register .generate-password {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mt-border);
    border-radius: 9px;
    color: #fff;
    min-height: 42px;
}

.mt-auth--register .progress {
    background: rgba(255, 255, 255, 0.06);
    height: 6px;
}

.mt-auth--register .text-muted,
.mt-auth--register .field-help-text {
    color: rgba(255, 255, 255, 0.4) !important;
}

.mt-auth--register .linked-accounts {
    margin-bottom: 20px;
}

.mt-auth--register .bootstrap-switch,
.mt-auth--register .switch {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    height: 38px !important;
    min-width: 112px !important;
    overflow: hidden;
}

.mt-auth--register .bootstrap-switch-container {
    height: 100%;
}

.mt-auth--register .bootstrap-switch .bootstrap-switch-handle-on,
.mt-auth--register .bootstrap-switch .bootstrap-switch-handle-off,
.mt-auth--register .bootstrap-switch .bootstrap-switch-label {
    align-items: center;
    border: 0 !important;
    box-shadow: none !important;
    display: inline-flex;
    font-size: 11px !important;
    font-weight: 800;
    height: 36px !important;
    justify-content: center;
    line-height: 36px !important;
    padding: 0 12px !important;
}

.mt-auth--register .bootstrap-switch .bootstrap-switch-handle-on {
    background: var(--mt-primary) !important;
    color: #fff !important;
}

.mt-auth--register .bootstrap-switch .bootstrap-switch-handle-off {
    background: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.62) !important;
}

.mt-auth--register .bootstrap-switch .bootstrap-switch-label {
    background: #171717 !important;
    width: 8px !important;
}

.mt-auth--register input.toggle-switch-success:not(.processed) {
    accent-color: var(--mt-primary);
    height: 18px;
    width: 18px;
}

.mt-register {
    margin-left: auto;
    margin-right: auto;
    max-width: 860px;
    width: 100%;
}

.mt-register__title {
    margin-bottom: 28px;
    text-align: center;
}

.mt-register__title > span {
    align-items: center;
    background: rgba(238, 43, 43, 0.12);
    border: 1px solid rgba(238, 43, 43, 0.24);
    border-radius: 999px;
    color: var(--mt-primary);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    margin-bottom: 12px;
    width: 42px;
}

.mt-register__title h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin: 0 0 8px;
}

.mt-register__title p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    margin: 0;
}

.mt-register__notice {
    background: rgba(238, 43, 43, 0.07);
    border: 1px solid rgba(238, 43, 43, 0.18);
    border-left: 4px solid var(--mt-primary);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 22px;
    padding: 20px;
}

.mt-register__notice strong {
    color: #fff;
    display: block;
    font-size: 12px;
    margin-bottom: 14px;
}

.mt-register__notice strong i {
    color: var(--mt-primary);
    margin-right: 7px;
}

.mt-register__notice p {
    margin: 0 0 14px;
}

.mt-register__notice p:last-child {
    margin-bottom: 0;
}

.mt-register__account-type {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 28px;
}

.mt-register__account-type label {
    align-items: center;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--mt-border);
    border-radius: 13px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 86px;
    justify-content: center;
    margin: 0;
    transition: all 0.16s ease;
}

.mt-register__account-type label:has(input:checked),
.mt-register__account-type label.is-active {
    background: rgba(238, 43, 43, 0.08);
    border-color: rgba(238, 43, 43, 0.55);
    box-shadow: inset 0 0 0 1px rgba(238, 43, 43, 0.14);
}

.mt-register__account-type input {
    display: none;
}

.mt-register__account-type strong {
    color: #fff;
    font-size: 14px;
    font-weight: 850;
}

.mt-register__account-type span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    margin-top: 6px;
}

.mt-register__section {
    border-top: 1px solid var(--mt-border);
    margin-top: 28px;
    padding-top: 24px;
}

.mt-register__section h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 850;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    text-transform: none;
}

.mt-register__hint {
    color: rgba(255, 255, 255, 0.4);
    display: block;
    font-size: 11px;
    font-style: italic;
    margin: -10px 0 18px;
}

.mt-register__section .row {
    margin-left: -8px;
    margin-right: -8px;
}

.mt-register__section [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.mt-register__corporate-field {
    display: none;
}

.mt-register__corporate-field.is-visible {
    display: block;
}

.mt-register__section .form-group > label:not(.field-icon) {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mt-register__mailing p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.mt-register__switch {
    align-items: center;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--mt-border);
    border-radius: 12px;
    display: inline-flex;
    gap: 22px;
    min-height: 58px;
    padding: 0 16px;
}

.mt-register__switch > span {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.mt-register__switch input {
    display: none;
}

.mt-register__switch b {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    display: block;
    height: 24px;
    position: relative;
    width: 50px;
}

.mt-register__switch b::before {
    background: #fff;
    border-radius: 999px;
    content: "";
    height: 20px;
    left: 2px;
    position: absolute;
    top: 2px;
    transition: all 0.16s ease;
    width: 20px;
}

.mt-register__switch input:checked + b {
    background: var(--mt-primary);
}

.mt-register__switch input:checked + b::before {
    transform: translateX(26px);
}

.mt-register__agreements {
    background: rgba(255, 255, 255, 0.022);
    border: 1px solid var(--mt-border);
    border-radius: 18px;
    margin-top: 28px;
    padding: 24px;
}

.mt-register__agreement-list {
    margin-bottom: 18px;
}

.mt-register__agreement {
    border-bottom: 1px solid var(--mt-border);
}

.mt-register__agreement summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    min-height: 48px;
    outline: none;
    padding: 0 2px;
}

.mt-register__agreement summary::-webkit-details-marker {
    display: none;
}

.mt-register__agreement summary span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
}

.mt-register__agreement summary span i {
    color: var(--mt-primary);
    margin-right: 8px;
}

.mt-register__agreement summary span em {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--mt-border);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
    font-style: normal;
    margin-left: 7px;
    padding: 3px 6px;
    text-transform: uppercase;
}

.mt-register__agreement summary b {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.mt-register__agreement summary b i {
    margin-left: 6px;
    transition: transform 0.18s ease;
}

.mt-register__agreement[open] summary b i {
    transform: rotate(180deg);
}

.mt-register__agreement-content {
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    line-height: 1.75;
    margin: 0 0 14px;
    max-height: 340px;
    overflow-y: auto;
    padding: 18px;
}

.mt-register__agreement-content h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    margin: 18px 0 8px;
}

.mt-register__agreement-content h4:first-of-type {
    margin-top: 12px;
}

.mt-register__agreement-content p {
    margin: 0 0 10px;
}

.mt-register__agreement-content ul {
    margin: 0;
    padding-left: 18px;
}

.mt-register__agreement-content li {
    margin-bottom: 6px;
}

.mt-register__faq h4 {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 5px;
}

.mt-register__tos {
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.62);
    display: flex;
    font-size: 12px;
    gap: 12px;
    line-height: 1.65;
    margin: 0;
}

.mt-register__tos input {
    accent-color: var(--mt-primary);
    flex: 0 0 16px;
    margin-top: 3px !important;
}

.mt-register__tos:has(input:invalid) span {
    color: rgba(255, 255, 255, 0.72);
}

.mt-register .mt-auth__captcha {
    margin-top: 24px;
}

.mt-register .mt-auth__submit {
    background: var(--mt-primary) !important;
    box-shadow: 0 16px 32px rgba(238, 43, 43, 0.22);
    color: #fff !important;
    font-size: 15px;
    font-weight: 850;
    margin-top: 18px;
}

.mt-register .mt-auth__submit:hover {
    background: #ff3434 !important;
}

.card,
.panel,
.list-group-item,
.modal-content,
.dropdown-menu,
.client-home-panels .panel {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: var(--mt-border) !important;
    color: #fff !important;
}

.card-header,
.card-footer,
.panel-heading {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: var(--mt-border) !important;
}

.form-control,
.custom-select,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="password"] {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--mt-border) !important;
    color: #fff !important;
}

.form-control:focus,
.custom-select:focus,
select:focus,
textarea:focus,
input:focus {
    border-color: rgba(238, 43, 43, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(238, 43, 43, 0.12) !important;
}

.btn-primary,
.btn-success,
.btn-info {
    background: var(--mt-primary) !important;
    border-color: var(--mt-primary) !important;
}

.table {
    color: rgba(255, 255, 255, 0.75) !important;
}

.table td,
.table th {
    border-color: var(--mt-border) !important;
}

/* Standard Cart */
#order-standard_cart {
    color: rgba(255, 255, 255, 0.72);
}

#order-standard_cart h1,
#order-standard_cart h2,
#order-standard_cart h3,
#order-standard_cart h4,
#order-standard_cart label,
#order-standard_cart strong {
    color: #fff;
}

#order-standard_cart .cart-body,
#order-standard_cart .view-cart-items,
#order-standard_cart .order-summary,
#order-standard_cart .summary-container,
#order-standard_cart .account-select-container,
#order-standard_cart .payment-methods,
#order-standard_cart .promo-code-form,
#order-standard_cart .checkout-security-msg {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    color: rgba(255, 255, 255, 0.68) !important;
    overflow: hidden;
}

#order-standard_cart .view-cart-items-header,
#order-standard_cart .order-summary h2,
#order-standard_cart .summary-container > .header {
    background: rgba(255, 255, 255, 0.045) !important;
    border: 0 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 800;
    padding: 18px 20px !important;
}

#order-standard_cart .view-cart-items .item,
#order-standard_cart .order-summary .summary-totals,
#order-standard_cart .order-summary .total-due,
#order-standard_cart .account,
#order-standard_cart .account-select-container .account,
#order-standard_cart .payment-methods .payment-method {
    background: transparent !important;
    border-color: var(--mt-border) !important;
    color: rgba(255, 255, 255, 0.68) !important;
}

#order-standard_cart .view-cart-items .item {
    padding: 20px !important;
}

#order-standard_cart .view-cart-items .item-title,
#order-standard_cart .view-cart-items .item-price span,
#order-standard_cart .order-summary .total-due .amt,
#order-standard_cart .order-summary .total-due .amt-label {
    color: #fff !important;
}

#order-standard_cart .text-muted,
#order-standard_cart small,
#order-standard_cart .item-domain,
#order-standard_cart .item-cycle,
#order-standard_cart .item-price .cycle {
    color: rgba(255, 255, 255, 0.38) !important;
}

#order-standard_cart .sub-heading {
    border-color: var(--mt-border) !important;
    margin: 28px 0 20px !important;
}

#order-standard_cart .sub-heading span {
    background: #171717 !important;
    border: 1px solid var(--mt-border);
    border-radius: 999px;
    color: #fff !important;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    text-transform: uppercase;
}

#order-standard_cart .form-control,
#order-standard_cart input,
#order-standard_cart select,
#order-standard_cart textarea {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 10px !important;
    color: #fff !important;
}

#order-standard_cart .form-control::placeholder,
#order-standard_cart textarea::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

#order-standard_cart .btn-primary,
#order-standard_cart .btn-checkout,
#order-standard_cart .btn-success {
    background: var(--mt-primary) !important;
    border: 0 !important;
    border-radius: 11px !important;
    box-shadow: 0 15px 30px rgba(238, 43, 43, 0.18);
    color: #fff !important;
    font-weight: 800;
}

#order-standard_cart .btn-default,
#order-standard_cart .btn-link,
#order-standard_cart .empty-cart {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: var(--mt-border) !important;
    color: rgba(255, 255, 255, 0.68) !important;
}

#order-standard_cart .alert-success,
#order-standard_cart .alert-info,
#order-standard_cart .alert-warning,
#order-standard_cart .checkout-security-msg {
    background: rgba(238, 43, 43, 0.06) !important;
    border-color: rgba(238, 43, 43, 0.2) !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

#order-standard_cart .account-select-container .account.active,
#order-standard_cart .payment-methods .payment-method.active {
    background: rgba(238, 43, 43, 0.08) !important;
    border-color: rgba(238, 43, 43, 0.35) !important;
}

#order-standard_cart input[type="radio"],
#order-standard_cart input[type="checkbox"] {
    accent-color: var(--mt-primary);
}

#order-standard_cart .panel,
#order-standard_cart .panel-default,
#order-standard_cart .panel-heading,
#order-standard_cart .panel-body,
#order-standard_cart .list-group-item {
    background: transparent !important;
    border-color: var(--mt-border) !important;
    color: rgba(255, 255, 255, 0.68) !important;
}

/* Cart proportions and spacing */
#order-standard_cart {
    margin: 0 auto;
    max-width: 1080px;
}

#order-standard_cart .row {
    margin-left: -10px;
    margin-right: -10px;
}

#order-standard_cart .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

#order-standard_cart h1 {
    font-size: clamp(28px, 3vw, 40px) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0 !important;
    padding: 16px 20px 14px !important;
}

#order-standard_cart .cart-body > h1:first-child,
#order-standard_cart .cart-body > .row:first-child h1 {
    position: relative;
    z-index: 1;
}

#order-standard_cart .field-container {
    margin-bottom: 14px !important;
}

#order-standard_cart .field-container label,
#order-standard_cart .form-group label {
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-bottom: 7px !important;
}

#order-standard_cart .form-control,
#order-standard_cart input[type="text"],
#order-standard_cart input[type="email"],
#order-standard_cart select {
    font-size: 13px !important;
    height: 42px !important;
    padding: 0 13px !important;
}

#order-standard_cart textarea.form-control {
    min-height: 96px;
    padding: 12px 13px !important;
}

#order-standard_cart .product-info {
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 13px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 13px;
    margin-bottom: 18px !important;
    padding: 15px 17px !important;
}

#order-standard_cart .product-info p:last-child {
    margin-bottom: 0;
}

#order-standard_cart .sub-heading {
    margin: 20px 0 16px !important;
}

#order-standard_cart .sub-heading span {
    font-size: 10px !important;
    letter-spacing: 0.12em;
    padding: 7px 14px !important;
}

#order-standard_cart .order-summary {
    border-radius: 16px !important;
    position: sticky;
    top: 18px;
}

#order-standard_cart .order-summary h2 {
    font-size: 14px !important;
    padding: 16px 18px !important;
}

#order-standard_cart .order-summary .summary-totals {
    font-size: 11px !important;
    padding: 12px 14px !important;
}

#order-standard_cart .order-summary .summary-totals .clearfix {
    margin-bottom: 7px;
}

#order-standard_cart .order-summary .total-due {
    border-bottom: 0 !important;
    margin-bottom: 0 !important;
    padding: 16px 14px 18px !important;
}

#order-standard_cart .order-summary .total-due .amt {
    font-size: 26px !important;
    letter-spacing: -0.04em;
}

#order-standard_cart .order-summary .total-due .amt-label {
    font-size: 9px !important;
}

#order-standard_cart .order-summary .btn-checkout,
#order-standard_cart .order-summary .btn-primary {
    font-size: 15px !important;
    min-height: 48px;
    padding: 12px 16px !important;
    width: 100%;
}

#order-standard_cart .order-summary .btn-continue-shopping,
#order-standard_cart .order-summary a[href*="cart.php"]:not(.btn-checkout):not(.btn-primary),
#order-standard_cart .order-summary .continue-shopping,
#order-standard_cart .order-summary .text-center > a:last-child {
    display: none !important;
}

#order-standard_cart .order-summary .summary-container,
#order-standard_cart .order-summary .order-summary-list {
    padding-bottom: 0 !important;
}

#order-standard_cart .order-summary .btn-checkout,
#order-standard_cart .order-summary .btn-primary {
    box-shadow: 0 18px 38px rgba(238, 43, 43, 0.22);
    margin: 20px 0 0 !important;
    width: 100% !important;
}

#order-standard_cart .view-cart-items-header {
    border: 1px solid var(--mt-border) !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    margin-bottom: 10px !important;
    padding: 13px 18px !important;
}

#order-standard_cart .view-cart-items {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none;
    overflow: visible;
}

#order-standard_cart .view-cart-items .item {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 18px !important;
    margin-bottom: 10px !important;
    min-height: 86px;
    padding: 17px 18px !important;
}

#order-standard_cart .view-cart-items .item:last-child {
    margin-bottom: 0 !important;
}

#order-standard_cart .view-cart-items .item-title {
    font-size: 15px !important;
    margin-bottom: 3px;
}

#order-standard_cart .view-cart-items .item-price span {
    font-size: 15px !important;
}

#order-standard_cart .view-cart-items .item .btn,
#order-standard_cart .view-cart-items .item a {
    font-size: 10px !important;
}

#order-standard_cart .empty-cart {
    border: 0 !important;
    border-radius: 9px !important;
    display: table;
    font-size: 10px !important;
    margin: 10px 0 0 auto !important;
    min-height: 32px;
    padding: 8px 14px !important;
    width: auto !important;
}

/* Compact promotion code box */
#order-standard_cart .view-cart-tabs {
    margin-top: 14px !important;
}

#order-standard_cart .view-cart-tabs .nav-tabs {
    display: none !important;
}

#order-standard_cart .view-cart-tabs .nav-tabs > li > a,
#order-standard_cart .view-cart-tabs .nav-tabs > li.active > a {
    background: #1a191c !important;
    border: 1px solid var(--mt-border) !important;
    border-bottom-color: #1a191c !important;
    border-radius: 9px 9px 0 0 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 10px !important;
    font-weight: 700;
    padding: 9px 13px !important;
}

#order-standard_cart .view-cart-tabs .tab-content {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.62) !important;
    padding: 13px !important;
}

#order-standard_cart .view-cart-tabs .tab-pane {
    background: transparent !important;
    padding: 0 !important;
}

#order-standard_cart .view-cart-tabs #inputPromotionCode,
#order-standard_cart input[name="promocode"] {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--mt-border) !important;
    color: #fff !important;
    height: 40px !important;
    padding-left: 42px !important;
}

#order-standard_cart .view-cart-tabs #btn-promo,
#order-standard_cart .view-cart-tabs button[type="submit"] {
    background: rgba(238, 43, 43, 0.12) !important;
    border: 1px solid rgba(238, 43, 43, 0.3) !important;
    border-radius: 9px !important;
    color: #ff5555 !important;
    font-size: 11px !important;
    font-weight: 800;
    min-height: 40px;
}

#order-standard_cart .promo-code-form {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 14px !important;
    overflow: visible;
    padding: 13px !important;
}

#order-standard_cart .view-cart-tabs .input-group,
#order-standard_cart .promo-code-form .input-group {
    position: relative;
}

#order-standard_cart .view-cart-tabs .input-group-addon,
#order-standard_cart .view-cart-tabs .input-group-prepend,
#order-standard_cart .promo-code-form .input-group-addon,
#order-standard_cart .promo-code-form .input-group-prepend {
    align-items: center;
    background: transparent !important;
    border: 0 !important;
    color: rgba(255, 255, 255, 0.42) !important;
    display: flex;
    bottom: 0;
    height: auto;
    justify-content: center;
    left: 0;
    line-height: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 40px;
    z-index: 4;
}

#order-standard_cart .view-cart-tabs .input-group-addon i,
#order-standard_cart .view-cart-tabs .input-group-prepend i,
#order-standard_cart .promo-code-form .input-group-addon i,
#order-standard_cart .promo-code-form .input-group-prepend i {
    display: block;
    line-height: 1;
    margin: 0;
    position: static;
    transform: none;
}

#order-standard_cart .order-summary {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

#order-standard_cart .order-summary > h2 {
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid var(--mt-border) !important;
    border-bottom: 0 !important;
    border-radius: 16px 16px 0 0 !important;
    margin: 0 !important;
}

#order-standard_cart .order-summary .summary-container {
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

#order-standard_cart .view-cart-tabs .input-group-addon + input,
#order-standard_cart .view-cart-tabs .input-group-prepend + input,
#order-standard_cart .promo-code-form .input-group-addon + input,
#order-standard_cart .promo-code-form .input-group-prepend + input {
    padding-left: 42px !important;
}

#order-standard_cart .promo-code-form .form-group,
#order-standard_cart .promo-code-form .input-group,
#order-standard_cart .promo-code-form p {
    margin: 0 !important;
}

#order-standard_cart .promo-code-form .form-control {
    height: 40px !important;
}

#order-standard_cart .promo-code-form .btn {
    background: rgba(238, 43, 43, 0.12) !important;
    border: 1px solid rgba(238, 43, 43, 0.3) !important;
    border-radius: 9px !important;
    color: #ff5555 !important;
    font-size: 11px !important;
    font-weight: 800;
    height: 40px;
    padding: 0 16px !important;
    white-space: nowrap;
}

#order-standard_cart .promo-code-form .btn:hover {
    background: var(--mt-primary) !important;
    color: #fff !important;
}

#order-standard_cart .promo-code-form .card-header,
#order-standard_cart .promo-code-form .panel-heading,
#order-standard_cart .promo-code-form > h3,
#order-standard_cart .promo-code-form > label,
#order-standard_cart .promo-code-form .promo-heading {
    display: none !important;
}

#order-standard_cart .promo-code-form .card-body,
#order-standard_cart .promo-code-form .panel-body {
    display: contents;
    padding: 0 !important;
}

#order-standard_cart .configure-product-domain,
#order-standard_cart .product-configurable-options,
#order-standard_cart .product-custom-fields {
    margin-bottom: 18px;
}

#order-standard_cart .alert {
    border-radius: 11px;
    font-size: 11px;
    line-height: 1.5;
    margin: 16px 0 0;
    padding: 12px 14px;
}

/* Checkout layout */
#order-standard_cart .checkout {
    margin: 0 auto;
    max-width: 920px;
}

#order-standard_cart .checkout h1 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#order-standard_cart .checkout > p,
#order-standard_cart .checkout .checkout-description {
    color: rgba(255, 255, 255, 0.52) !important;
    font-size: 12px;
    margin-bottom: 20px;
}

#order-standard_cart .account-select-container {
    border-radius: 16px !important;
    padding: 0 !important;
}

#order-standard_cart .account-select-container .account {
    align-items: flex-start;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid var(--mt-border) !important;
    border-radius: 0 !important;
    display: flex;
    gap: 10px;
    min-height: 58px;
    padding: 13px 16px !important;
    transition: background 0.15s ease;
}

#order-standard_cart .account-select-container .account:last-child {
    border-bottom: 0 !important;
}

#order-standard_cart .account-select-container .account.active {
    background: rgba(238, 43, 43, 0.055) !important;
    border-color: rgba(238, 43, 43, 0.28) !important;
}

#order-standard_cart .account-select-container .account input[type="radio"] {
    flex: 0 0 auto;
    height: 18px !important;
    margin: 1px 0 0 !important;
    width: 18px !important;
}

#order-standard_cart .account-select-container .account label,
#order-standard_cart .account-select-container .account .account-info {
    cursor: pointer;
    flex: 1;
    line-height: 1.45;
    margin: 0 !important;
    min-width: 0;
}

#order-standard_cart .account-select-container .account small,
#order-standard_cart .account-select-container .account p {
    font-size: 10px !important;
    line-height: 1.45;
    margin: 3px 0 0 !important;
}

#order-standard_cart .prepend-icon,
#order-standard_cart .field-container {
    position: relative;
}

#order-standard_cart .prepend-icon .field-icon,
#order-standard_cart .field-container .field-icon {
    align-items: center;
    bottom: 0;
    color: rgba(255, 255, 255, 0.42) !important;
    display: flex;
    height: 42px;
    justify-content: center;
    left: 0;
    margin: 0 !important;
    pointer-events: none;
    position: absolute;
    top: auto;
    width: 40px;
    z-index: 4;
}

#order-standard_cart .prepend-icon .field-icon i,
#order-standard_cart .field-container .field-icon i {
    line-height: 1;
    margin: 0;
    position: static;
}

#order-standard_cart .prepend-icon input,
#order-standard_cart .prepend-icon select,
#order-standard_cart .field-container.has-icon input,
#order-standard_cart .field-container.has-icon select {
    padding-left: 40px !important;
}

#order-standard_cart .iti,
#order-standard_cart .intl-tel-input {
    width: 100%;
}

#order-standard_cart .iti input,
#order-standard_cart .intl-tel-input input {
    padding-left: 88px !important;
}

#order-standard_cart .iti__selected-country,
#order-standard_cart .intl-tel-input .selected-flag {
    background: rgba(255, 255, 255, 0.035) !important;
    border-right: 1px solid var(--mt-border);
    width: 76px !important;
}

#order-standard_cart .checkout .sub-heading {
    align-items: center;
    border: 0 !important;
    display: flex;
    height: auto !important;
    justify-content: center;
    margin: 30px 0 18px !important;
    min-height: 26px;
    overflow: visible;
}

#order-standard_cart .checkout .sub-heading span {
    display: inline-flex;
    font-size: 9px !important;
    line-height: 1;
    padding: 6px 13px !important;
    position: static !important;
    transform: none !important;
    z-index: 2;
}

#order-standard_cart .checkout .sub-heading + .account-select-container,
#order-standard_cart .checkout .sub-heading + .payment-methods,
#order-standard_cart .checkout .sub-heading + textarea,
#order-standard_cart .checkout .sub-heading + .form-group,
#order-standard_cart .checkout .sub-heading + .row {
    margin-top: 10px !important;
}

#order-standard_cart .payment-methods {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex;
    justify-content: center;
    overflow: visible;
}

#order-standard_cart .payment-methods .payment-method {
    align-items: center;
    border: 1px solid var(--mt-border) !important;
    border-radius: 12px !important;
    display: flex;
    gap: 9px;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px !important;
}

#order-standard_cart .payment-methods .payment-method.active {
    background: rgba(238, 43, 43, 0.055) !important;
}

#order-standard_cart .payment-methods input[type="radio"] {
    height: 18px !important;
    margin: 0 !important;
    width: 18px !important;
}

#order-standard_cart .payment-methods label {
    font-size: 12px !important;
    margin: 0 !important;
}

#order-standard_cart .checkout-security-msg {
    display: block;
    margin-top: 20px !important;
    min-height: 66px;
    padding: 16px 18px 16px 66px !important;
    position: relative;
    text-align: left !important;
}

#order-standard_cart .checkout-security-msg i,
#order-standard_cart .checkout-security-msg .fas,
#order-standard_cart .checkout-security-msg .fa {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 30px !important;
    left: 18px;
    margin: 0 !important;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
}

#order-standard_cart .checkout-security-msg p,
#order-standard_cart .checkout-security-msg div {
    color: rgba(255, 255, 255, 0.68) !important;
    display: inline !important;
    font-size: 10px !important;
    line-height: 1.5;
    margin: 0 !important;
    min-width: 0;
    white-space: normal !important;
}

#order-standard_cart .checkout-security-msg strong,
#order-standard_cart .checkout-security-msg b,
#order-standard_cart .checkout-security-msg span {
    color: #fff !important;
    display: inline !important;
    font-size: inherit !important;
    font-weight: 800 !important;
    line-height: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

#order-standard_cart .checkout .btn-checkout,
#order-standard_cart .checkout #btnCompleteOrder {
    display: block;
    margin: 18px auto 0 !important;
    min-height: 48px;
    padding: 11px 22px !important;
    width: auto !important;
}

@media (max-width: 767px) {
    #order-standard_cart .checkout {
        max-width: none;
    }

    #order-standard_cart .account-select-container .account {
        padding: 12px !important;
    }

    #order-standard_cart .checkout-security-msg {
        padding: 14px 14px 14px 52px !important;
    }

    #order-standard_cart .checkout-security-msg i,
    #order-standard_cart .checkout-security-msg .fas,
    #order-standard_cart .checkout-security-msg .fa {
        font-size: 24px !important;
        left: 14px;
        width: 26px;
    }
}

/* Cart confirmation modal */
body.modal-open {
    overflow: hidden !important;
}

.modal-backdrop {
    background: #000 !important;
    z-index: 1040 !important;
}

.modal-backdrop.show,
.modal-backdrop.in {
    opacity: 0.78 !important;
}

.modal {
    align-items: center;
    bottom: 0 !important;
    filter: none !important;
    left: 0 !important;
    opacity: 1 !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    justify-content: center;
    z-index: 1050 !important;
}

.modal.show,
.modal.in {
    display: flex !important;
}

.modal .modal-dialog {
    margin: 24px auto !important;
    max-width: 440px;
    pointer-events: auto !important;
    position: relative;
    width: calc(100% - 32px);
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 1051 !important;
}

.modal .modal-content {
    backdrop-filter: blur(24px);
    background: rgba(24, 23, 26, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 18px !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 1052 !important;
}

.modal .modal-header,
.modal .modal-body,
.modal .modal-footer {
    background: transparent !important;
    border-color: var(--mt-border) !important;
    color: #fff !important;
    position: relative;
}

.modal .modal-header {
    padding: 18px 20px !important;
}

.modal .modal-body {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 13px;
    padding: 22px 20px !important;
    text-align: center;
}

.modal .modal-footer {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 16px 20px !important;
}

.modal .modal-footer .btn {
    border-radius: 9px !important;
    font-size: 12px;
    font-weight: 800;
    min-width: 92px;
    padding: 10px 16px !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 1 !important;
}

.modal .modal-footer .btn,
.modal button,
.modal a {
    pointer-events: auto !important;
}

.modal .close {
    color: #fff !important;
    opacity: 0.55;
    pointer-events: auto !important;
}

@media (max-width: 767px) {
    #order-standard_cart {
        max-width: none;
    }

    #order-standard_cart .order-summary {
        margin-top: 18px;
        position: static;
    }

    #order-standard_cart .promo-code-form {
        grid-template-columns: 1fr;
    }

    #order-standard_cart .promo-code-form .btn {
        width: 100%;
    }
}

/* Client product details */
.mt-page-complete .mt-main-body,
.mt-page-ordercomplete .mt-main-body {
    padding-bottom: 80px !important;
    padding-top: 52px !important;
}

.mt-page-complete .primary-content,
.mt-page-ordercomplete .primary-content,
#order-standard_cart .order-confirmation {
    margin-left: auto;
    margin-right: auto;
    max-width: 780px;
    text-align: center;
}

.mt-page-complete .primary-content > .card,
.mt-page-ordercomplete .primary-content > .card,
#order-standard_cart .order-confirmation {
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 20px !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    padding: 38px 42px !important;
}

.mt-page-complete h1,
.mt-page-ordercomplete h1,
#order-standard_cart .order-confirmation h1 {
    font-size: clamp(30px, 4vw, 44px) !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    text-align: center;
}

.mt-page-complete .primary-content p,
.mt-page-ordercomplete .primary-content p,
#order-standard_cart .order-confirmation p {
    color: rgba(255, 255, 255, 0.62) !important;
    line-height: 1.7;
    margin: 0 auto 18px !important;
    max-width: 660px;
    text-align: center;
}

.mt-page-complete .alert,
.mt-page-ordercomplete .alert,
#order-standard_cart .order-confirmation .alert {
    background: rgba(238, 43, 43, 0.06) !important;
    border: 1px solid rgba(238, 43, 43, 0.25) !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    margin: 12px auto 20px !important;
    max-width: 520px;
    padding: 14px 20px !important;
    text-align: center;
    width: 100%;
}

.mt-page-complete .btn,
.mt-page-ordercomplete .btn,
#order-standard_cart .order-confirmation .btn {
    background: var(--mt-primary) !important;
    border: 0 !important;
    border-radius: 10px !important;
    box-shadow: 0 16px 32px rgba(238, 43, 43, 0.2);
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    margin: 4px auto 0 !important;
    min-height: 44px;
    padding: 11px 20px !important;
}

@media (max-width: 767px) {
    .mt-page-complete .primary-content > .card,
    .mt-page-ordercomplete .primary-content > .card,
    #order-standard_cart .order-confirmation {
        padding: 28px 20px !important;
    }
}

.mt-page-clientareaproductdetails .mt-main-body {
    padding-bottom: 72px !important;
    padding-top: 34px !important;
}

.mt-page-clientareaproductdetails .primary-content > .card,
.mt-page-clientareaproductdetails .product-details {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.mt-page-clientareaproductdetails .product-details .product-icon,
.mt-page-clientareaproductdetails .product-details .product-icon-holder {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 16px !important;
    color: var(--mt-primary) !important;
    min-height: 210px !important;
}

.mt-page-clientareaproductdetails .product-details .product-icon i {
    color: var(--mt-primary) !important;
    font-size: 54px !important;
}

.mt-page-clientareaproductdetails .product-details .product-icon h3,
.mt-page-clientareaproductdetails .product-details .product-icon-holder h3 {
    color: #fff !important;
    font-size: 22px !important;
    margin-top: 14px !important;
}

.mt-page-clientareaproductdetails .product-details .product-icon h4,
.mt-page-clientareaproductdetails .product-details .product-icon-holder h4 {
    color: rgba(255, 255, 255, 0.42) !important;
    font-size: 13px !important;
}

.mt-page-clientareaproductdetails .product-status {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 0 14px 14px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: 0.14em;
    min-height: 36px;
    padding: 10px !important;
}

.mt-page-clientareaproductdetails .product-status-active,
.mt-page-clientareaproductdetails .product-status-active .product-icon,
.mt-page-clientareaproductdetails .product-status-active .product-status-text {
    background: rgba(255, 255, 255, 0.025) !important;
    border-color: var(--mt-border) !important;
    color: rgba(255, 255, 255, 0.68) !important;
}

.mt-page-clientareaproductdetails .product-details .row {
    align-items: center;
}

.mt-page-clientareaproductdetails .product-details .col-md-6:last-child,
.mt-page-clientareaproductdetails .product-details .product-info {
    color: rgba(255, 255, 255, 0.65) !important;
}

.mt-page-clientareaproductdetails .product-details .col-md-6:last-child h4,
.mt-page-clientareaproductdetails .product-details .product-info h4 {
    color: rgba(255, 255, 255, 0.38) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em;
    margin: 0 0 5px !important;
    text-transform: uppercase;
}

.mt-page-clientareaproductdetails .product-details .col-md-6:last-child p,
.mt-page-clientareaproductdetails .product-details .product-info p {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700;
    margin-bottom: 16px !important;
}

.mt-page-clientareaproductdetails .product-details .btn-danger,
.mt-page-clientareaproductdetails .product-details a.btn-danger,
.mt-page-clientareaproductdetails .primary-content > .card .btn-danger {
    align-items: center;
    background: rgba(238, 43, 43, 0.08) !important;
    border: 1px solid rgba(238, 43, 43, 0.28) !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.84) !important;
    display: inline-flex;
    font-size: 12px !important;
    font-weight: 850 !important;
    gap: 8px;
    justify-content: center;
    letter-spacing: 0 !important;
    min-height: 42px;
    padding: 0 18px !important;
    transition: all 0.16s ease;
    width: auto !important;
}

.mt-page-clientareaproductdetails .product-details .btn-danger:hover,
.mt-page-clientareaproductdetails .product-details a.btn-danger:hover,
.mt-page-clientareaproductdetails .primary-content > .card .btn-danger:hover {
    background: var(--mt-primary) !important;
    border-color: var(--mt-primary) !important;
    box-shadow: 0 14px 28px rgba(238, 43, 43, 0.2) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.mt-page-clientareaproductdetails .product-details .btn-block.btn-danger,
.mt-page-clientareaproductdetails .primary-content > .card .btn-block.btn-danger {
    margin: 14px 0 0 !important;
    max-width: 260px;
}

.mt-page-clientareaproductdetails .product-details .row + .row,
.mt-page-clientareaproductdetails .product-details .product-actions-wrapper {
    margin-top: 14px !important;
}

.mt-page-clientareaproductdetails a[href*="cancel"],
.mt-page-clientareaproductdetails a[href*="Cancellation"],
.mt-page-clientareaproductdetails form[action*="cancel"],
.mt-page-clientareaproductdetails .btn-danger[href*="clientarea.php?action=cancel"],
.mt-page-clientareaproductdetails .btn-danger[href*="cancel"] {
    display: none !important;
}

.mt-page-clientareaproductdetails .nav-tabs {
    border: 0 !important;
    margin: 18px 0 -1px 14px !important;
}

.mt-page-clientareaproductdetails .nav-tabs > li > a,
.mt-page-clientareaproductdetails .nav-tabs .nav-link {
    background: #19191a !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 10px 10px 0 0 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 11px !important;
    font-weight: 800;
    padding: 11px 16px !important;
}

.mt-page-clientareaproductdetails .nav-tabs > li.active > a,
.mt-page-clientareaproductdetails .nav-tabs .nav-link.active {
    border-bottom-color: #171717 !important;
    color: #fff !important;
}

.mt-page-clientareaproductdetails .tab-content {
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 14px !important;
    min-height: 120px;
    padding: 18px !important;
}

.mt-page-clientareaproductdetails .tab-content > .tab-pane {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.65) !important;
}

.mt-ip-change {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--mt-border);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    margin: 0 auto;
    max-width: 720px;
    overflow: hidden;
    padding: 30px;
}

.mt-ip-change__heading {
    align-items: center;
    border-bottom: 1px solid var(--mt-border);
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 22px;
}

.mt-ip-change__heading > span {
    align-items: center;
    background: rgba(238, 43, 43, 0.1);
    border: 1px solid rgba(238, 43, 43, 0.22);
    border-radius: 14px;
    color: var(--mt-primary);
    display: flex;
    flex: 0 0 50px;
    font-size: 20px;
    height: 50px;
    justify-content: center;
}

.mt-ip-change__heading small,
.mt-ip-change__details small {
    color: rgba(255, 255, 255, 0.38);
    display: block;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mt-ip-change__heading h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 850;
    margin: 4px 0;
}

.mt-ip-change__heading p,
.mt-ip-change__form p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    margin: 0;
}

.mt-ip-change__details {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 22px;
}

.mt-ip-change__details > div {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--mt-border);
    border-radius: 13px;
    padding: 16px;
}

.mt-ip-change__details strong {
    color: #fff;
    display: block;
    font-size: 15px;
    margin-top: 7px;
}

.mt-ip-change__form label {
    color: rgba(255, 255, 255, 0.72);
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mt-ip-change__form input {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 11px !important;
    color: #fff !important;
    height: 46px;
    padding: 0 14px;
    width: 100%;
}

.mt-ip-change__form p {
    margin: 9px 0 18px;
}

.mt-ip-change__form button,
.mt-ip-change__notice a {
    background: var(--mt-primary);
    border: 0;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(238, 43, 43, 0.18);
    color: #fff !important;
    font-size: 12px;
    font-weight: 850;
    padding: 12px 18px;
}

.mt-ip-change__notice {
    align-items: center;
    background: rgba(238, 43, 43, 0.06);
    border: 1px solid rgba(238, 43, 43, 0.2);
    border-radius: 14px;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 18px;
}

.mt-ip-change__notice strong {
    color: #fff;
}

.mt-ip-change__notice span {
    color: rgba(255, 255, 255, 0.58);
}

.mt-name-change .mt-ip-change__details {
    grid-template-columns: 1.4fr 0.8fr;
}

/* Product listing */
#order-standard_cart .products {
    display: grid !important;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--mt-border);
    margin: 24px 0 0 !important;
    padding-bottom: 22px;
    padding-top: 24px;
    position: relative;
}

#order-standard_cart .products > .row {
    display: contents !important;
}

#order-standard_cart .products > .row > [class*="col-"] {
    display: flex;
    flex: none !important;
    float: none !important;
    max-width: none !important;
    padding: 0 !important;
    width: auto !important;
}

#order-standard_cart .products > .row:empty {
    display: none !important;
}

#order-standard_cart .products::before {
    background: linear-gradient(90deg, var(--mt-primary), rgba(238, 43, 43, 0.08), transparent);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: -1px;
    width: 110px;
}

#order-standard_cart .cart-body > h1,
#order-standard_cart .cart-body > p {
    padding-left: 0 !important;
    text-align: left !important;
}

#order-standard_cart .cart-body > h1 {
    margin-left: -2px !important;
}

#order-standard_cart .products .product {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid var(--mt-border) !important;
    border-radius: 18px !important;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.62) !important;
    display: flex !important;
    flex-direction: column;
    margin: 0 !important;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    padding: 0 !important;
    position: relative;
    transition: all 0.2s ease;
    width: 100% !important;
}

#order-standard_cart .products .product:hover {
    background: rgba(255, 255, 255, 0.045) !important;
    border-color: rgba(238, 43, 43, 0.34) !important;
    transform: translateY(-3px);
}

#order-standard_cart .products .product header,
#order-standard_cart .products .product .header {
    background: rgba(255, 255, 255, 0.035) !important;
    border-bottom: 1px solid var(--mt-border) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800;
    min-height: 68px;
    padding: 22px 22px 18px 74px !important;
    position: relative;
}

#order-standard_cart .products .product header::before,
#order-standard_cart .products .product .header::before {
    align-items: center;
    background: rgba(238, 43, 43, 0.1);
    border: 1px solid rgba(238, 43, 43, 0.22);
    border-radius: 12px;
    color: var(--mt-primary);
    content: "\f3ed";
    display: flex;
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    left: 20px;
    position: absolute;
    top: 14px;
    width: 42px;
}

#order-standard_cart .products .product header span,
#order-standard_cart .products .product .header span {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

#order-standard_cart .products .product .product-desc,
#order-standard_cart .products .product .product-description,
#order-standard_cart .products .product .description {
    color: rgba(255, 255, 255, 0.5) !important;
    flex: 1;
    float: none !important;
    font-size: 12px;
    line-height: 1.65;
    min-height: 120px;
    padding: 20px 20px 14px !important;
    width: auto !important;
}

#order-standard_cart .products .product .product-desc:empty::before {
    color: rgba(255, 255, 255, 0.38);
    content: "Güvenli lisanslama ve sunucu doğrulama hizmeti.";
}

#order-standard_cart .products .product .product-pricing,
#order-standard_cart .products .product .pricing {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 850;
    padding: 0 20px 16px !important;
}

#order-standard_cart .products .product footer,
#order-standard_cart .products .product .product-footer {
    align-items: center;
    background: transparent !important;
    border: 0 !important;
    display: flex;
    border-left: 0 !important;
    border-top: 1px solid var(--mt-border) !important;
    float: none !important;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 !important;
    margin-top: auto !important;
    min-height: 126px;
    padding: 18px 20px !important;
    text-align: center;
    width: auto !important;
}

#order-standard_cart .products .product footer .product-pricing,
#order-standard_cart .products .product .product-footer .product-pricing {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

#order-standard_cart .products .product footer .product-pricing .price,
#order-standard_cart .products .product .product-footer .product-pricing .price {
    color: #fff !important;
    display: block;
    font-size: 20px !important;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

#order-standard_cart .products .product footer .product-pricing br {
    display: none;
}

#order-standard_cart .products .product footer .product-pricing .price + br {
    display: block;
}

#order-standard_cart .products .product footer .product-pricing {
    color: rgba(255, 255, 255, 0.48) !important;
    font-size: 10px !important;
    font-weight: 700;
    line-height: 1.4;
    min-height: 50px;
    text-align: center;
}

#order-standard_cart .products .product footer .product-pricing .price {
    margin-bottom: 7px;
}

#order-standard_cart .products .product footer .product-pricing small,
#order-standard_cart .products .product .product-footer .product-pricing small {
    color: rgba(255, 255, 255, 0.35) !important;
    display: block;
    font-size: 9px;
    margin-top: 3px;
}

#order-standard_cart .products .product .btn,
#order-standard_cart .products .product a.btn {
    align-items: center;
    background: var(--mt-primary) !important;
    border: 0 !important;
    border-radius: 10px !important;
    box-shadow: 0 14px 28px rgba(238, 43, 43, 0.18);
    color: #fff !important;
    display: inline-flex;
    font-size: 11px !important;
    font-weight: 850;
    gap: 7px;
    min-height: 40px;
    padding: 10px 16px !important;
    width: 100%;
}

#order-standard_cart .products .product .btn:hover,
#order-standard_cart .products .product a.btn:hover {
    background: #ff3737 !important;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    #order-standard_cart .products {
        grid-template-columns: 1fr;
    }

    #order-standard_cart .products .product {
        min-height: 300px;
    }

    #order-standard_cart .products .product footer,
    #order-standard_cart .products .product .product-footer {
        border-top: 1px solid var(--mt-border) !important;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    #order-standard_cart .products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .mt-ip-change {
        padding: 22px;
    }

    .mt-ip-change__details {
        grid-template-columns: 1fr;
    }

    .mt-ip-change__notice {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .mt-page-clientareaproductdetails .product-details .product-icon,
    .mt-page-clientareaproductdetails .product-details .product-icon-holder {
        min-height: 170px !important;
    }
}

/* Client invoice list */
.mt-page-clientareainvoices .mt-main-body {
    padding-top: 92px !important;
}

.mt-page-clientareainvoices .mt-main-body > .container {
    max-width: 1280px;
}

.mt-page-clientareainvoices .primary-content {
    backdrop-filter: blur(18px);
    background: rgba(22, 21, 25, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
    padding: 26px;
}

.mt-page-clientareainvoices .sidebar .panel {
    background: rgba(31, 29, 33, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    margin-bottom: 16px;
    overflow: hidden;
}

.mt-page-clientareainvoices .sidebar .panel-heading {
    background: rgba(255, 255, 255, 0.035) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
    color: #fff !important;
    padding: 15px 17px;
}

.mt-page-clientareainvoices .sidebar > .panel:first-child .panel-heading i:first-child,
.mt-page-clientareainvoices .sidebar > .panel:first-child .panel-title i:first-child,
.mt-page-clientareainvoices .sidebar .panel-title .fa-credit-card,
.mt-page-clientareainvoices .sidebar .panel-title .fa-credit-card-alt {
    display: none !important;
}

.mt-page-clientareaquotes.mt-page-clientareainvoices .sidebar > .panel:first-child .panel-title i.fa-filter:first-child {
    display: inline-block !important;
}

.mt-page-clientareainvoices .sidebar .panel-body,
.mt-page-clientareainvoices .sidebar .list-group-item {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

.mt-page-clientareainvoices .sidebar .list-group-item:hover,
.mt-page-clientareainvoices .sidebar .list-group-item.active {
    background: rgba(238, 43, 43, 0.09) !important;
    color: #fff !important;
}

.mt-page-clientareainvoices .sidebar .btn,
.mt-page-clientareainvoices .sidebar .btn-primary,
.mt-page-clientareainvoices .sidebar .btn-danger {
    background: var(--mt-primary) !important;
    border: 0 !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 28px rgba(238, 43, 43, 0.2);
    color: #fff !important;
    font-weight: 800;
    padding: 10px 16px;
}

.mt-page-clientareainvoices .dataTables_wrapper {
    color: rgba(255, 255, 255, 0.62) !important;
}

.mt-page-clientareainvoices .dataTables_wrapper .dataTables_filter {
    margin-bottom: 18px;
    padding-right: 18px;
}

.mt-page-clientareainvoices .dataTables_wrapper .dataTables_info {
    padding-left: 18px;
    padding-top: 12px;
}

.mt-page-clientareainvoices .dataTables_wrapper .dataTables_filter label,
.mt-page-clientareainvoices .dataTables_wrapper .dataTables_length label {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 12px;
}

.mt-page-clientareainvoices .dataTables_wrapper input[type="search"],
.mt-page-clientareainvoices .dataTables_wrapper select {
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    color: #fff !important;
    min-height: 40px;
    outline: 0;
    padding: 8px 12px;
}

.mt-page-clientareainvoices .dataTables_wrapper input[type="search"]:focus,
.mt-page-clientareainvoices .dataTables_wrapper select:focus {
    border-color: rgba(238, 43, 43, 0.65) !important;
    box-shadow: 0 0 0 3px rgba(238, 43, 43, 0.1) !important;
}

.mt-page-clientareainvoices .table-container {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    overflow: hidden;
}

.mt-page-clientareainvoices table.table-list,
.mt-page-clientareainvoices table.dataTable {
    background: transparent !important;
    border: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.mt-page-clientareainvoices table.table-list thead th,
.mt-page-clientareainvoices table.dataTable thead th {
    background: rgba(255, 255, 255, 0.055) !important;
    border: 0 !important;
    color: rgba(255, 255, 255, 0.58) !important;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 16px 18px !important;
    text-transform: uppercase;
}

.mt-page-clientareainvoices table.table-list tbody tr,
.mt-page-clientareainvoices table.dataTable tbody tr {
    background: transparent !important;
    cursor: pointer;
    transition: background 0.16s ease, transform 0.16s ease;
}

.mt-page-clientareainvoices table.table-list tbody tr:hover,
.mt-page-clientareainvoices table.dataTable tbody tr:hover {
    background: rgba(238, 43, 43, 0.06) !important;
}

.mt-page-clientareainvoices table.table-list tbody td,
.mt-page-clientareainvoices table.dataTable tbody td {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.07) !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 13px;
    padding: 16px 18px !important;
    vertical-align: middle;
}

.mt-page-clientareainvoices .label.status,
.mt-page-clientareainvoices .status {
    border: 1px solid transparent;
    border-radius: 999px !important;
    display: inline-flex;
    font-size: 10px;
    font-weight: 900;
    justify-content: center;
    min-width: 82px;
    padding: 7px 11px !important;
    text-transform: uppercase;
}

.mt-page-clientareainvoices .status-paid {
    background: rgba(54, 190, 112, 0.13) !important;
    border-color: rgba(54, 190, 112, 0.28) !important;
    color: #5ee69a !important;
}

.mt-page-clientareainvoices .status-unpaid,
.mt-page-clientareainvoices .status-overdue {
    background: rgba(238, 43, 43, 0.13) !important;
    border-color: rgba(238, 43, 43, 0.3) !important;
    color: #ff6969 !important;
}

.mt-page-clientareainvoices .status-cancelled,
.mt-page-clientareainvoices .status-refunded {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.58) !important;
}

.mt-page-clientareainvoices .dataTables_info,
.mt-page-clientareainvoices .dataTables_length {
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 18px;
}

.mt-page-clientareainvoices .dataTables_length {
    padding-bottom: 4px;
    padding-left: 18px;
}

.mt-page-clientareainvoices .dataTables_length label {
    align-items: center;
    display: inline-flex;
    gap: 9px;
    margin: 0;
    white-space: nowrap;
}

.mt-page-clientareainvoices .dataTables_length select {
    appearance: auto !important;
    cursor: pointer;
    min-height: 38px;
    min-width: 88px;
    padding: 7px 10px !important;
    width: auto !important;
}

.mt-page-clientareainvoices .pagination,
.mt-page-clientareainvoices .dataTables_paginate {
    margin-top: 14px !important;
}

.mt-page-clientareainvoices .dataTables_paginate {
    padding-right: 18px;
}

.mt-page-clientareainvoices .pagination > li > a,
.mt-page-clientareainvoices .pagination > li > span,
.mt-page-clientareainvoices .dataTables_paginate .paginate_button {
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.68) !important;
}

.mt-page-clientareainvoices .pagination > .active > a,
.mt-page-clientareainvoices .pagination > .active > span,
.mt-page-clientareainvoices .dataTables_paginate .paginate_button.current,
.mt-page-clientareainvoices .dataTables_paginate .paginate_button:hover {
    background: var(--mt-primary) !important;
    border-color: var(--mt-primary) !important;
    color: #fff !important;
}

@media (max-width: 767px) {
    .mt-page-clientareainvoices .primary-content {
        border-radius: 18px;
        padding: 16px;
    }

    .mt-page-clientareainvoices .mt-main-body {
        padding-top: 48px !important;
    }

    .mt-page-clientareainvoices .dataTables_wrapper .dataTables_filter,
    .mt-page-clientareainvoices .dataTables_wrapper .dataTables_filter input {
        margin-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .mt-page-clientareainvoices .dataTables_wrapper .dataTables_info {
        padding-left: 0;
        text-align: left;
    }

    .mt-page-clientareainvoices .dataTables_length,
    .mt-page-clientareainvoices .dataTables_paginate {
        padding-left: 0;
        padding-right: 0;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(238, 43, 43, 0.5);
}

@media (min-width: 640px) {
    .mt-hero__actions {
        flex-direction: row;
    }

    .mt-section__heading h2 {
        font-size: 60px;
    }
}

@media (min-width: 768px) {
    .mt-shell,
    .mt-home {
        padding-left: 32px;
        padding-right: 32px;
    }

    .mt-hero h1 {
        font-size: 72px;
    }

    .mt-hero__copy p {
        font-size: 18px;
    }

    .mt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mt-footer__inner {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .mt-hero {
        align-items: flex-start;
        justify-content: center;
    }

    .mt-hero__content {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .mt-hero h1 {
        font-size: 128px;
    }

    .mt-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-background > img,
    .mt-animate {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 1023px) {
    .mt-navbar {
        flex-wrap: wrap;
    }

    .mt-menu-toggle {
        display: block;
    }

    .mt-navbar__collapse.collapse {
        align-items: stretch;
        display: none !important;
        flex-basis: 100%;
        flex-direction: column;
        margin-left: 0;
        padding-top: 20px;
    }

    .mt-navbar__collapse.collapse.show {
        display: flex !important;
    }

    .mt-nav-links {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .mt-nav-links a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 14px 0;
    }

    .mt-nav-actions {
        margin-top: 16px;
    }

    .mt-login-link {
        width: 100%;
    }

    .mt-client-dashboard {
        grid-template-columns: 1fr;
    }

    .mt-client-profile {
        position: static;
    }
}

@media (max-width: 767px) {
    .mt-grid {
        grid-template-columns: 1fr;
    }

    .mt-card,
    .mt-review {
        padding: 28px;
    }

    .mt-background__red {
        left: 5%;
    }

    .mt-background__purple {
        right: 0;
    }

    .mt-client-stats {
        grid-template-columns: 1fr;
    }

    .mt-auth__card,
    .mt-auth__card--register {
        border-radius: 26px;
        padding: 26px;
    }

    .mt-auth__heading h1 {
        font-size: 30px;
    }
}
