:root {
    --ic-bg: #f6f9fc;
    --ic-bg-soft: #f2f9fd;
    --ic-card: #ffffff;
    --ic-dark: #0f2140;
    --ic-heading: #0f2140;
    --ic-muted: #607089;
    --ic-line: rgba(15, 33, 64, .08);
    --ic-blue: #38b1ed;
    --ic-blue-dark: #0aa7a3;
    --ic-blue-hover: #229fe0;
    --ic-green-hover: #078f8c;
    --ic-blue-soft: rgba(56, 177, 237, .10);
    --ic-green: #74f0d4;
    --ic-shadow: 0 18px 48px rgba(15, 33, 64, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.inatcloud-whmcs {
    margin: 0;
    background: #f6f9fc;
    color: var(--ic-dark);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.inatcloud-whmcs a {
    color: inherit;
    text-decoration: none;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

body.inatcloud-whmcs a:hover {
    color: var(--ic-blue-dark);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ic-container {
    width: min(1170px, calc(100% - 32px));
    margin: 0 auto;
}

.ic-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .84);
    border-bottom: 1px solid rgba(15, 33, 64, .08);
    box-shadow: 0 14px 40px rgba(15, 33, 64, .08);
    backdrop-filter: blur(16px);
}

.ic-topbar {
    background: rgba(238, 247, 252, .92);
    border-bottom: 1px solid rgba(15, 33, 64, .07);
    color: #53647d;
    font-size: 13px;
    font-weight: 700;
}

.ic-topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ic-top-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f2140;
}

.ic-top-note:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #74f0d4;
    box-shadow: 0 0 0 5px rgba(116, 240, 212, .12);
}

.ic-top-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.ic-top-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 14px;
    border: 1px solid rgba(56, 177, 237, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
}

.ic-top-links i {
    color: #74f0d4;
    font-size: 14px;
}

.ic-nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.ic-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.ic-logo img,
.ic-footer-logo {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: block;
}

.ic-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
    font-weight: 700;
}

.ic-menu > a,
.ic-menu-item > a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 7px;
    color: #0f2140;
}

.ic-menu > a:hover,
.ic-menu-item > a:hover {
    color: var(--ic-blue-dark);
    background: transparent;
}

.ic-menu-item {
    position: static;
}

.ic-has-mega > a:after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.ic-mega {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    right: 0;
    width: min(1170px, calc(100vw - 32px));
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 120;
}

.ic-mega-domains {
    width: min(1170px, calc(100vw - 32px));
}

.ic-has-mega:hover .ic-mega,
.ic-has-mega:focus-within .ic-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.ic-mega-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(15, 33, 64, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 50px rgba(15, 33, 64, .12);
    backdrop-filter: blur(16px);
}

.ic-mega-hosting {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.ic-mega-cards {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ic-mega-intro {
    flex: 0 0 23%;
    padding: 12px 10px;
}

.ic-mega-intro h4 {
    margin: 0 0 8px;
    color: var(--ic-heading);
    font-size: 18px;
    font-weight: 800;
}

.ic-mega-intro p {
    margin: 0;
    color: var(--ic-muted);
    font-size: 14px;
    line-height: 1.7;
}

.ic-menu .ic-mega-card {
    min-height: 112px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(15, 33, 64, .08);
    border-radius: 8px;
    background: rgba(246, 249, 252, .82);
    color: #607089;
}

.ic-menu .ic-mega-card.has-status {
    padding-right: 18px;
}

.ic-mega-card img {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    object-fit: contain;
    padding: 7px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(56, 177, 237, .12), rgba(10, 167, 163, .12));
    flex: 0 0 38px;
    transition: transform .18s ease, background .18s ease;
}

.ic-menu .ic-mega-card:hover {
    color: #0f2140;
    border-color: rgba(56, 177, 237, .26);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 33, 64, .10);
    transform: translateY(-2px);
}

.ic-menu .ic-mega-card:hover img {
    background: linear-gradient(135deg, rgba(56, 177, 237, .18), rgba(10, 167, 163, .18));
    transform: translateY(-1px);
}

.ic-mega-card-body {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.ic-mega-card-body > span {
    color: var(--ic-heading);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: normal;
    word-break: normal;
}

.ic-menu .ic-mega-card .ic-status-line {
    display: block;
    align-self: flex-start;
    max-width: 100%;
    color: var(--ic-blue-dark) !important;
    margin: -1px 0 0;
    font-size: 10.5px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .45px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: left;
    border-radius: 0;
    background: none;
    padding: 0;
}

.ic-mega-card:hover .ic-mega-card-body > span {
    color: var(--ic-blue-dark);
}

.ic-mega-card-body small {
    color: var(--ic-muted);
    font-size: 12.5px;
    line-height: 1.45;
    overflow-wrap: normal;
    word-break: normal;
}

.ic-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.ic-btn,
.ic-domain-form button,
body.inatcloud-whmcs .btn,
body.inatcloud-whmcs .btn-primary,
body.inatcloud-whmcs input[type="submit"],
body.inatcloud-whmcs button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 6px 40px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--ic-blue), var(--ic-blue-dark));
    box-shadow: 0 14px 30px rgba(56, 177, 237, .24);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.ic-btn,
.ic-btn:active,
.ic-btn:focus,
.ic-btn:visited {
    color: #fff !important;
    text-decoration: none;
}

.ic-btn:hover,
.ic-domain-form button:hover,
body.inatcloud-whmcs .btn:hover,
body.inatcloud-whmcs .btn-primary:hover,
body.inatcloud-whmcs input[type="submit"]:hover,
body.inatcloud-whmcs button[type="submit"]:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--ic-blue-hover), var(--ic-green-hover));
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(10, 167, 163, .30);
}

.ic-btn:hover {
    color: #fff !important;
    text-decoration: none;
}

.ic-btn-outline,
body.inatcloud-whmcs .btn-default,
body.inatcloud-whmcs .btn-secondary {
    background: #fff;
    border-color: var(--ic-line);
    box-shadow: none;
    color: var(--ic-blue-dark);
}

.ic-btn-outline:hover,
body.inatcloud-whmcs .btn-default:hover,
body.inatcloud-whmcs .btn-secondary:hover {
    background: var(--ic-blue-soft);
    color: var(--ic-blue-dark);
    border-color: rgba(56, 177, 237, .26);
    box-shadow: 0 12px 26px rgba(15, 33, 64, .08);
}

.ic-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    min-width: 42px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: linear-gradient(135deg, var(--ic-blue), var(--ic-blue-dark));
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(56, 177, 237, .24);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ic-menu-toggle:before {
    content: none;
}

.ic-menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform .22s ease, opacity .18s ease;
}

.ic-menu-toggle:hover,
.ic-menu-toggle:focus {
    outline: 0;
    background: linear-gradient(135deg, var(--ic-blue-hover), var(--ic-green-hover));
}

.ic-menu-toggle:focus,
.ic-menu-toggle:focus-visible {
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(56, 177, 237, .14), 0 12px 26px rgba(56, 177, 237, .24);
}

.ic-header.menu-open .ic-menu-toggle {
    box-shadow: 0 16px 34px rgba(10, 167, 163, .26);
    transform: rotate(90deg);
}

.ic-header.menu-open .ic-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ic-header.menu-open .ic-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.ic-header.menu-open .ic-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.ic-header.menu-closing .ic-menu-toggle {
    transform: rotate(0deg);
}

.ic-header.menu-closing .ic-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ic-header.menu-closing .ic-menu-toggle span:nth-child(2) {
    opacity: .78;
}

.ic-header.menu-closing .ic-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.ic-clientbar {
    border-top: 1px solid rgba(217, 231, 242, .82);
    background: rgba(246, 249, 252, .92);
}

.ic-clientbar-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
}

.ic-clientbar a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    color: #53647d;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.ic-clientbar a:hover {
    background: #ffffff;
    color: var(--ic-blue-dark);
    box-shadow: 0 8px 20px rgba(15, 33, 64, .08);
}

.ic-page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(56, 177, 237, .20), transparent 34%),
        radial-gradient(circle at 12% 12%, rgba(116, 240, 212, .22), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f2f9fd 48%, #e8f5fb 100%);
    border-bottom: 1px solid rgba(15, 33, 64, .08);
    padding: 58px 0 50px;
}

.ic-page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--ic-heading);
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.07;
    letter-spacing: 0;
}

.ic-breadcrumb {
    margin-top: 14px;
    color: var(--ic-muted);
    font-weight: 700;
}

.ic-breadcrumb a {
    color: var(--ic-blue-dark);
}

.ic-main {
    position: relative;
    background: rgba(255, 255, 255, .96);
    margin-top: 30px;
    margin-bottom: 46px;
    padding: 30px;
    border: 1px solid rgba(217, 231, 242, .92);
    border-radius: 8px;
    box-shadow: var(--ic-shadow);
}

.ic-main-section {
    padding: 34px 0 58px;
}

body.inatcloud-whmcs #main-body {
    background: transparent;
    min-height: 420px;
}

body.inatcloud-whmcs #main-body .container {
    width: min(1170px, calc(100% - 32px));
    max-width: 1170px;
}

body.inatcloud-whmcs .primary-content {
    min-width: 0;
}

body.inatcloud-whmcs .primary-content > h2:first-child,
body.inatcloud-whmcs .primary-content > h3:first-child {
    color: var(--ic-heading);
    font-weight: 900;
}

body.inatcloud-whmcs .primary-content > .logincontainer,
body.inatcloud-whmcs .primary-content > .card,
body.inatcloud-whmcs .primary-content > .panel,
body.inatcloud-whmcs .primary-content > form,
body.inatcloud-whmcs .client-home-panels,
body.inatcloud-whmcs .main-content {
    position: relative;
}

.ic-alert,
body.inatcloud-whmcs .alert {
    padding: 14px 16px;
    border-radius: 7px;
    margin-bottom: 18px;
    border: 1px solid transparent;
}

.ic-alert-error,
body.inatcloud-whmcs .alert-danger {
    background: #fff1f1;
    border-color: #ffd6d6;
    color: #982323;
}

.ic-alert-success,
body.inatcloud-whmcs .alert-success {
    background: #ecfdf5;
    border-color: #bdf4da;
    color: #166534;
}

.ic-home-hero {
    padding: 86px 0 92px;
    background:
        radial-gradient(circle at right top, rgba(36, 168, 232, .24), transparent 28rem),
        linear-gradient(135deg, #f7fcff 0%, #eef9ff 55%, #ffffff 100%);
    color: var(--ic-dark);
    border-bottom: 1px solid rgba(217, 231, 242, .92);
}

.ic-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 48px;
    align-items: center;
}

.ic-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(56, 177, 237, .18);
    border-radius: 999px;
    background: #fff;
    color: var(--ic-blue-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.ic-home-hero h1 {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--ic-heading);
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.05;
}

.ic-lead {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--ic-muted);
    font-size: 19px;
}

.ic-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.ic-hero-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(217, 231, 242, .92);
    border-radius: 8px;
    padding: 28px;
    box-shadow: var(--ic-shadow);
}

.ic-hero-card img {
    width: 100%;
    display: block;
}

.ic-domain-box {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    background: #fff;
    border: 1px solid rgba(15, 33, 64, .08);
    border-radius: 8px;
    padding: 28px;
    box-shadow: var(--ic-shadow);
}

.ic-domain-box h2 {
    margin: 0 0 16px;
    color: var(--ic-heading);
    font-size: 26px;
}

.ic-domain-form {
    display: flex;
    gap: 10px;
}

.ic-domain-form input,
body.inatcloud-whmcs input[type="text"],
body.inatcloud-whmcs input[type="email"],
body.inatcloud-whmcs input[type="password"],
body.inatcloud-whmcs input[type="search"],
body.inatcloud-whmcs input[type="tel"],
body.inatcloud-whmcs input[type="url"],
body.inatcloud-whmcs select,
body.inatcloud-whmcs textarea,
body.inatcloud-whmcs .form-control {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--ic-line);
    border-radius: 7px;
    background: #fff;
    color: var(--ic-dark);
    padding: 0 15px;
    font: inherit;
    box-shadow: none;
}

body.inatcloud-whmcs textarea,
body.inatcloud-whmcs textarea.form-control {
    min-height: 130px;
    padding-top: 12px;
}

.ic-domain-form input {
    flex: 1;
    min-height: 52px;
    font-size: 17px;
}

body.inatcloud-whmcs .ic-main .input-group:not(.logincontainer .input-group),
body.inatcloud-whmcs #main-body .domain-checker-container .input-group,
body.inatcloud-whmcs #main-body .domain-search-container .input-group,
body.inatcloud-whmcs #main-body .domain-lookup-primary .input-group {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

body.inatcloud-whmcs .ic-main .input-group:not(.logincontainer .input-group) .form-control,
body.inatcloud-whmcs #main-body .domain-checker-container .input-group .form-control,
body.inatcloud-whmcs #main-body .domain-search-container .input-group .form-control,
body.inatcloud-whmcs #main-body .domain-lookup-primary .input-group .form-control {
    border-radius: 7px;
}

body.inatcloud-whmcs .ic-main .input-group:not(.logincontainer .input-group) .input-group-btn,
body.inatcloud-whmcs .ic-main .input-group:not(.logincontainer .input-group) .input-group-append,
body.inatcloud-whmcs #main-body .domain-checker-container .input-group .input-group-btn,
body.inatcloud-whmcs #main-body .domain-checker-container .input-group .input-group-append,
body.inatcloud-whmcs #main-body .domain-search-container .input-group .input-group-btn,
body.inatcloud-whmcs #main-body .domain-search-container .input-group .input-group-append,
body.inatcloud-whmcs #main-body .domain-lookup-primary .input-group .input-group-btn,
body.inatcloud-whmcs #main-body .domain-lookup-primary .input-group .input-group-append {
    display: flex;
    flex: 0 0 auto;
}

body.inatcloud-whmcs .ic-main .input-group:not(.logincontainer .input-group) .btn,
body.inatcloud-whmcs #main-body .domain-checker-container .input-group .btn,
body.inatcloud-whmcs #main-body .domain-search-container .input-group .btn,
body.inatcloud-whmcs #main-body .domain-lookup-primary .input-group .btn {
    min-width: 118px;
    border-radius: 8px;
    padding-left: 28px;
    padding-right: 28px;
}

body.inatcloud-whmcs input:focus,
body.inatcloud-whmcs select:focus,
body.inatcloud-whmcs textarea:focus,
body.inatcloud-whmcs .form-control:focus {
    border-color: rgba(56, 177, 237, .42);
    outline: none;
    box-shadow: 0 0 0 4px rgba(56, 177, 237, .13);
}

.ic-service-grid {
    padding: 54px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ic-service-grid article,
body.inatcloud-whmcs .panel,
body.inatcloud-whmcs .card,
body.inatcloud-whmcs .tile,
body.inatcloud-whmcs .list-group,
body.inatcloud-whmcs .logincontainer,
body.inatcloud-whmcs .client-home-panels .panel {
    background: #fff;
    border: 1px solid rgba(15, 33, 64, .08);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 33, 64, .07);
}

body.inatcloud-whmcs .logincontainer {
    max-width: 540px;
    margin: 0 auto;
    padding: 38px 48px 0;
    overflow: hidden;
}

body.inatcloud-whmcs .logincontainer:before {
    content: "";
    display: block;
    height: 4px;
    margin: -38px -48px 34px;
    background: linear-gradient(135deg, var(--ic-blue), var(--ic-blue-dark));
}

body.inatcloud-whmcs .logincontainer h1,
body.inatcloud-whmcs .logincontainer h2,
body.inatcloud-whmcs .logincontainer h3,
body.inatcloud-whmcs .logincontainer label,
body.inatcloud-whmcs .logincontainer p,
body.inatcloud-whmcs .logincontainer span,
body.inatcloud-whmcs .logincontainer div {
    color: var(--ic-dark);
}

body.inatcloud-whmcs .logincontainer .form-group {
    margin-bottom: 18px;
}

body.inatcloud-whmcs .logincontainer .input-group {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
}

body.inatcloud-whmcs .logincontainer .input-group-prepend,
body.inatcloud-whmcs .logincontainer .input-group-append {
    display: flex;
    flex: 0 0 auto;
}

body.inatcloud-whmcs .logincontainer .input-group-text {
    width: 44px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 33, 64, .08);
    background: #f6f9fc;
    color: var(--ic-muted);
}

body.inatcloud-whmcs .logincontainer .input-group-prepend .input-group-text {
    border-right: 0;
    border-radius: 8px 0 0 8px;
}

body.inatcloud-whmcs .logincontainer .input-group .form-control {
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border-radius: 0 8px 8px 0;
}

body.inatcloud-whmcs .logincontainer .input-group-prepend + .form-control {
    border-left: 0;
}

body.inatcloud-whmcs .logincontainer .input-group-append .btn {
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 0 8px 8px 0;
    box-shadow: none;
}

body.inatcloud-whmcs .logincontainer .input-group .form-control:not(:last-child) {
    border-radius: 0;
}

body.inatcloud-whmcs .logincontainer .checkbox,
body.inatcloud-whmcs .logincontainer .custom-control {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ic-muted);
}

body.inatcloud-whmcs .logincontainer .btn-primary,
body.inatcloud-whmcs .logincontainer button[type="submit"],
body.inatcloud-whmcs .logincontainer input[type="submit"] {
    width: 100%;
    min-height: 46px;
    margin-top: 4px;
}

body.inatcloud-whmcs .logincontainer a {
    color: var(--ic-blue-dark);
    font-weight: 700;
}

body.inatcloud-whmcs .ic-login-polished h1,
body.inatcloud-whmcs .ic-login-polished h2,
body.inatcloud-whmcs .ic-login-polished h3 {
    margin-bottom: 6px;
    font-size: 30px;
    font-weight: 900;
}

.ic-login-note {
    margin: 0 0 22px;
    color: var(--ic-muted) !important;
    font-size: 15px;
    line-height: 1.7;
}

body.inatcloud-whmcs .logincontainer .footer,
body.inatcloud-whmcs .logincontainer .card-footer,
body.inatcloud-whmcs .logincontainer .panel-footer {
    margin: 28px -48px 0;
    padding: 16px 48px;
    border-top: 1px solid rgba(15, 33, 64, .08);
    background: #f6f9fc;
}

body.inatcloud-whmcs .sidebar .panel,
body.inatcloud-whmcs .sidebar .card,
body.inatcloud-whmcs .sidebar .list-group {
    overflow: hidden;
    margin-bottom: 18px;
}

body.inatcloud-whmcs .sidebar .list-group-item {
    border-color: var(--ic-line);
    color: #53647d;
}

body.inatcloud-whmcs .sidebar .list-group-item.active,
body.inatcloud-whmcs .sidebar .active > .list-group-item {
    background: var(--ic-blue-soft);
    border-color: rgba(56, 177, 237, .18);
    color: var(--ic-blue-dark);
    font-weight: 800;
}

body.inatcloud-whmcs .tiles,
body.inatcloud-whmcs .client-home-panels {
    gap: 14px;
}

body.inatcloud-whmcs .tile {
    overflow: hidden;
    border-radius: 8px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.inatcloud-whmcs .tile:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 177, 237, .22);
    box-shadow: 0 18px 40px rgba(15, 33, 64, .10);
}

body.inatcloud-whmcs .tile .stat,
body.inatcloud-whmcs .tile .title {
    color: var(--ic-heading);
}

body.inatcloud-whmcs .tile .icon {
    color: rgba(15, 33, 64, .18);
}

body.inatcloud-whmcs .tile .highlight,
body.inatcloud-whmcs .tile .progress-bar {
    background: linear-gradient(135deg, var(--ic-blue), var(--ic-blue-dark)) !important;
}

body.inatcloud-whmcs .ic-dashboard-tile {
    min-height: 112px;
}

body.inatcloud-whmcs .ic-dashboard-tile .icon {
    opacity: .72;
}

body.inatcloud-whmcs .ic-dashboard-panel {
    overflow: hidden;
}

body.inatcloud-whmcs .ic-dashboard-panel .panel-body,
body.inatcloud-whmcs .ic-dashboard-panel .card-body {
    line-height: 1.75;
}

body.inatcloud-whmcs .client-home-panels .panel-body:empty:before,
body.inatcloud-whmcs .client-home-panels .card-body:empty:before {
    content: "Trenutno nema podataka za prikaz.";
    display: block;
    color: var(--ic-muted);
}

.ic-service-grid article {
    padding: 26px;
}

.ic-service-grid img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.ic-service-grid h3 {
    margin: 18px 0 8px;
    color: var(--ic-heading);
}

.ic-service-grid p,
body.inatcloud-whmcs .text-muted,
body.inatcloud-whmcs .small {
    color: var(--ic-muted);
}

.ic-service-grid a {
    color: var(--ic-blue-dark);
    font-weight: 800;
}

body.inatcloud-whmcs .panel-heading,
body.inatcloud-whmcs .card-header {
    background:
        radial-gradient(circle at 96% 0%, rgba(56, 177, 237, .10), transparent 12rem),
        linear-gradient(180deg, #ffffff, #f6f9fc);
    border-bottom: 1px solid rgba(15, 33, 64, .08);
    color: var(--ic-heading);
    font-weight: 800;
}

body.inatcloud-whmcs table,
body.inatcloud-whmcs .table {
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-color: var(--ic-line);
}

body.inatcloud-whmcs .primary-content,
body.inatcloud-whmcs .panel,
body.inatcloud-whmcs .card,
body.inatcloud-whmcs .panel-body,
body.inatcloud-whmcs .card-body,
body.inatcloud-whmcs .tab-content,
body.inatcloud-whmcs .dataTables_wrapper {
    max-width: 100%;
    min-width: 0;
}

body.inatcloud-whmcs .panel-body,
body.inatcloud-whmcs .card-body,
body.inatcloud-whmcs .table-responsive,
body.inatcloud-whmcs .dataTables_wrapper,
body.inatcloud-whmcs .dataTables_scroll,
body.inatcloud-whmcs .dataTables_scrollBody {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

body.inatcloud-whmcs .dataTable,
body.inatcloud-whmcs table.dataTable,
body.inatcloud-whmcs table[id^="table"] {
    width: 100% !important;
    max-width: 100%;
}

body.inatcloud-whmcs .clientarea-domains table,
body.inatcloud-whmcs .clientarea-domains .table,
body.inatcloud-whmcs .page-clientareadomains table,
body.inatcloud-whmcs .page-clientareadomains .table {
    min-width: 720px;
}

body.inatcloud-whmcs #tableDomainsList,
body.inatcloud-whmcs #tableServicesList,
body.inatcloud-whmcs #tableInvoicesList,
body.inatcloud-whmcs #tableTicketsList,
body.inatcloud-whmcs #tableQuotesList,
body.inatcloud-whmcs #tableEmailsList,
body.inatcloud-whmcs #tableContactsList,
body.inatcloud-whmcs #tablePaymentMethodsList,
body.inatcloud-whmcs #tableSslList,
body.inatcloud-whmcs #tableMassPay,
body.inatcloud-whmcs table[id^="table"] {
    min-width: 720px;
}

body.inatcloud-whmcs .dataTables_filter,
body.inatcloud-whmcs .dataTables_length,
body.inatcloud-whmcs .dataTables_info,
body.inatcloud-whmcs .dataTables_paginate {
    max-width: 100%;
}

body.inatcloud-whmcs .dataTables_filter input,
body.inatcloud-whmcs .dataTables_length select {
    width: auto;
    max-width: 100%;
}

body.inatcloud-whmcs .table th,
body.inatcloud-whmcs .table td {
    border-color: var(--ic-line);
    vertical-align: middle;
}

body.inatcloud-whmcs .table th {
    color: var(--ic-heading);
    font-weight: 800;
}

body.inatcloud-whmcs .table-striped tbody tr:nth-of-type(odd),
body.inatcloud-whmcs .table-hover tbody tr:hover {
    background-color: rgba(56, 177, 237, .035);
}

body.inatcloud-whmcs .label,
body.inatcloud-whmcs .badge {
    border-radius: 999px;
    padding: .38em .7em;
}

body.inatcloud-whmcs .navbar,
body.inatcloud-whmcs .main-navbar-wrapper,
body.inatcloud-whmcs .header-lined {
    display: none;
}

body.inatcloud-whmcs .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

body.inatcloud-whmcs .btn-return-to-admin {
    position: fixed;
    right: 18px;
    bottom: 18px;
    top: auto;
    z-index: 10050;
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #12345a, #14557a);
    box-shadow: 0 16px 34px rgba(15, 33, 64, .22);
    writing-mode: initial;
    transform: none;
}

body.inatcloud-whmcs .btn-return-to-admin:hover {
    background: linear-gradient(135deg, var(--ic-blue), var(--ic-blue-dark));
}

body.inatcloud-whmcs .btn-return-to-admin i {
    margin-right: 7px;
}

body.inatcloud-whmcs .btn-return-to-admin span {
    display: inline-block !important;
}

.ic-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 0%, rgba(84, 200, 255, .24), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(116, 240, 212, .18), transparent 30%),
        linear-gradient(135deg, #12345a 0%, #14557a 52%, #0d365e 100%);
    border-top: 0;
    color: rgba(255, 255, 255, .78);
    margin-top: 0;
}

.ic-footer:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .42), transparent 86%);
}

.ic-footer > .ic-container,
.ic-subfooter .ic-container {
    position: relative;
    z-index: 1;
}

.ic-footer-grid {
    padding: 56px 0 26px;
    display: grid;
    grid-template-columns: 1.05fr 1fr 1.05fr;
    gap: 30px;
    align-items: start;
}

.ic-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ic-footer-logo {
    margin-bottom: 14px;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .14));
}

.ic-footer p {
    max-width: 410px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .74);
}

.ic-footer h3 {
    color: #ffffff;
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .3px;
}

.ic-footer a {
    display: block;
    margin: 7px 0;
    color: rgba(255, 255, 255, .80);
    font-weight: 700;
}

.ic-footer a:hover {
    color: #baf8ea;
}

.ic-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ic-footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .90);
    font-size: 12px;
    font-weight: 800;
}

.ic-payment-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.ic-payment-row img {
    width: 68px;
    height: 36px;
    object-fit: contain;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
}

.ic-newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    margin: 12px 0 8px;
}

.ic-newsletter-form input {
    width: 100%;
    height: 52px;
    padding: 0 58px 0 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    box-shadow: none;
}

.ic-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .58);
}

.ic-newsletter-form button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 8px;
    border: 0;
    background: linear-gradient(135deg, var(--ic-blue), var(--ic-blue-dark));
    color: #fff;
    box-shadow: 0 12px 24px rgba(56, 177, 237, .22);
}

.ic-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 4px;
    padding: 12px 22px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--ic-blue), var(--ic-blue-dark));
    color: #ffffff !important;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(56, 177, 237, .24);
}

.ic-footer-cta:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
}

.ic-footer small {
    display: block;
    color: rgba(255, 255, 255, .74);
    margin-bottom: 12px;
}

.ic-contact-title {
    margin-top: 14px !important;
}

.ic-footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ic-footer-contact i {
    color: #baf8ea;
    width: 15px;
}

.ic-social-icons {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
}

.ic-footer .ic-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    border: 0;
    color: #ffffff;
    box-shadow: none;
}

.ic-footer .ic-social-icons a:hover {
    background: linear-gradient(135deg, var(--ic-blue), var(--ic-blue-dark));
    color: #fff;
    transform: translateY(-1px);
}

.ic-subfooter {
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: 9px 0;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .06);
    font-size: 14px;
}

.ic-subfooter .ic-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ic-subfooter a {
    display: inline;
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

.ic-subfooter a:hover {
    color: #baf8ea;
}

@media (max-width: 1100px) {
    .ic-nav {
        gap: 14px;
    }

    .ic-menu > a,
    .ic-menu-item > a {
        padding: 0 9px;
    }
}

@media (max-width: 960px) {
    .ic-topbar-inner {
        justify-content: center;
        text-align: center;
    }

    .ic-top-links {
        display: none;
    }

    .ic-nav {
        min-height: 72px;
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 0;
    }

    .ic-logo img {
        width: 170px;
    }

    .ic-menu-toggle {
        display: inline-flex;
    }

    .ic-menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        order: 10;
        margin-left: 0;
        padding: 0;
        opacity: 0;
        transform-origin: top center;
        transition: max-height .28s ease, opacity .2s ease, padding .2s ease;
    }

    .ic-menu.is-open {
        max-height: calc(100vh - 150px);
        padding: 8px 0 10px;
        opacity: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        animation: ic-mobile-menu-in .24s cubic-bezier(.2, .8, .2, 1) both;
        will-change: opacity, transform;
    }

    .ic-header.menu-closing .ic-menu.is-open {
        pointer-events: none;
        animation: ic-mobile-menu-out .2s ease both;
    }

    .ic-menu.is-open > a,
    .ic-menu.is-open > .ic-menu-item,
    .ic-menu.is-open > .ic-actions {
        animation: ic-mobile-item-in .24s ease both;
    }

    .ic-menu.is-open > :nth-child(2) {
        animation-delay: .025s;
    }

    .ic-menu.is-open > :nth-child(3) {
        animation-delay: .05s;
    }

    .ic-menu.is-open > :nth-child(4) {
        animation-delay: .075s;
    }

    .ic-menu.is-open > :nth-child(5) {
        animation-delay: .1s;
    }

    .ic-menu.is-open > :nth-child(6) {
        animation-delay: .125s;
    }

    .ic-menu > a,
    .ic-menu-item > a {
        width: 100%;
        min-height: 46px;
        justify-content: center;
        background: #f6fbff;
        border: 1px solid rgba(217, 231, 242, .9);
    }

    .ic-menu-item {
        width: 100%;
        position: relative;
    }

    .ic-has-mega > a:after {
        display: inline-block;
        margin-left: auto;
        transform: rotate(45deg);
        transition: transform .18s ease;
    }

    .ic-has-mega.is-mega-open > a:after {
        transform: rotate(-135deg) translate(-2px, -2px);
    }

    .ic-mega,
    .ic-mega-domains {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding-top: 8px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        transition: max-height .24s ease, opacity .18s ease, visibility .18s ease, padding .18s ease;
    }

    .ic-has-mega.is-mega-open .ic-mega {
        max-height: 760px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .ic-mega-inner,
    .ic-mega-hosting,
    .ic-mega-cards {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ic-mega-hosting {
        display: grid;
    }

    .ic-mega-cards {
        width: 100%;
    }

    .ic-mega-inner,
    .ic-mega-hosting {
        padding: 10px;
        border-radius: 8px;
        box-shadow: none;
        background: #ffffff;
    }

    .ic-mega-intro {
        display: none;
    }

    .ic-menu .ic-mega-card {
        min-height: auto;
        align-items: flex-start;
        gap: 12px;
        padding: 13px 14px;
        text-align: left;
    }

    .ic-mega-card-body,
    .ic-menu .ic-mega-card .ic-mega-card-body > span,
    .ic-menu .ic-mega-card .ic-mega-card-body small {
        min-width: 0;
    }

    .ic-mega-card-body {
        align-items: flex-start;
    }

    .ic-menu .ic-mega-card.has-status {
        padding-right: 14px;
    }

    .ic-status-line {
        display: block;
        color: var(--ic-blue-dark) !important;
        width: auto;
        min-width: 0;
        margin: -1px 0 0;
        font-size: 10.5px;
        line-height: 1.2;
        text-align: left;
        transform: none !important;
        transition: none !important;
    }

    .ic-mega-card:hover .ic-status-line,
    .ic-mega-card:focus .ic-status-line {
        color: var(--ic-blue-dark) !important;
        margin-left: 0;
        transform: none !important;
    }

    .ic-mega-card img {
        width: 36px;
        height: 36px;
        padding: 7px;
    }

    .ic-actions {
        width: 100%;
        order: 11;
        display: none;
    }

    .ic-menu.is-open + .ic-actions {
        display: flex;
        animation: ic-mobile-item-in .24s ease both;
        animation-delay: .14s;
    }

    .ic-actions {
        justify-content: stretch;
    }

    .ic-actions .ic-btn {
        flex: 1;
    }

    @keyframes ic-mobile-menu-in {
        from {
            opacity: 0;
            transform: translateY(-10px) scale(.985);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @keyframes ic-mobile-menu-out {
        from {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        to {
            opacity: 0;
            transform: translateY(-8px) scale(.985);
        }
    }

    @keyframes ic-mobile-item-in {
        from {
            opacity: 0;
            transform: translateY(-4px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    body.inatcloud-whmcs table,
    body.inatcloud-whmcs .table {
        min-width: 620px;
    }

    body.inatcloud-whmcs .dataTables_filter,
    body.inatcloud-whmcs .dataTables_length,
    body.inatcloud-whmcs .dataTables_info,
    body.inatcloud-whmcs .dataTables_paginate {
        float: none !important;
        width: 100%;
        text-align: left;
        margin: 8px 0;
    }

    body.inatcloud-whmcs .dataTables_filter label,
    body.inatcloud-whmcs .dataTables_length label {
        width: 100%;
    }

    body.inatcloud-whmcs .dataTables_filter input {
        width: 100%;
        margin-left: 0;
        margin-top: 6px;
    }

    body.inatcloud-whmcs .dataTables_paginate {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
    }

    .ic-hero-grid,
    .ic-service-grid,
    .ic-footer-grid {
        grid-template-columns: 1fr;
    }

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

    .ic-hero-grid {
        gap: 28px;
    }

    .ic-home-hero {
        padding: 58px 0 76px;
    }

    .ic-main {
        padding: 22px;
    }

    .ic-domain-form {
        flex-direction: column;
    }

    body.inatcloud-whmcs .ic-main .input-group:not(.logincontainer .input-group),
    body.inatcloud-whmcs #main-body .domain-checker-container .input-group,
    body.inatcloud-whmcs #main-body .domain-search-container .input-group,
    body.inatcloud-whmcs #main-body .domain-lookup-primary .input-group {
        flex-direction: column;
    }

    body.inatcloud-whmcs .ic-main .input-group:not(.logincontainer .input-group) .input-group-btn,
    body.inatcloud-whmcs .ic-main .input-group:not(.logincontainer .input-group) .input-group-append,
    body.inatcloud-whmcs #main-body .domain-checker-container .input-group .input-group-btn,
    body.inatcloud-whmcs #main-body .domain-checker-container .input-group .input-group-append,
    body.inatcloud-whmcs #main-body .domain-search-container .input-group .input-group-btn,
    body.inatcloud-whmcs #main-body .domain-search-container .input-group .input-group-append,
    body.inatcloud-whmcs #main-body .domain-lookup-primary .input-group .input-group-btn,
    body.inatcloud-whmcs #main-body .domain-lookup-primary .input-group .input-group-append {
        width: 100%;
    }

    body.inatcloud-whmcs .ic-main .input-group:not(.logincontainer .input-group) .btn,
    body.inatcloud-whmcs #main-body .domain-checker-container .input-group .btn,
    body.inatcloud-whmcs #main-body .domain-search-container .input-group .btn,
    body.inatcloud-whmcs #main-body .domain-lookup-primary .input-group .btn {
        width: 100%;
    }

    body.inatcloud-whmcs .logincontainer {
        padding: 30px 28px 0;
    }

    body.inatcloud-whmcs .logincontainer:before {
        margin: -30px -28px 28px;
    }

    body.inatcloud-whmcs .logincontainer .footer,
    body.inatcloud-whmcs .logincontainer .card-footer,
    body.inatcloud-whmcs .logincontainer .panel-footer {
        margin: 24px -28px 0;
        padding: 15px 28px;
    }
}

@media (max-width: 560px) {
    .ic-container {
        width: min(100% - 24px, 1180px);
    }

    .ic-logo img {
        width: 150px;
    }

    .ic-topbar {
        font-size: 12px;
    }

    .ic-topbar-inner {
        min-height: 36px;
        padding: 6px 0;
    }

    .ic-top-note {
        line-height: 1.35;
    }

    .ic-nav {
        gap: 10px;
    }

    .ic-menu.is-open {
        max-height: calc(100vh - 132px);
    }

    .ic-page-hero {
        padding: 38px 0 34px;
    }

    .ic-main {
        margin-top: 20px;
        padding: 18px;
    }

    .ic-home-hero h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .ic-domain-box {
        margin-top: 24px;
        padding: 20px;
    }

    .ic-subfooter .ic-container {
        justify-content: center;
        text-align: center;
    }

    .ic-footer-links {
        grid-template-columns: 1fr;
    }

    .ic-footer-grid,
    .ic-footer-brand,
    .ic-footer-contact-block {
        text-align: center;
    }

    .ic-footer-logo,
    .ic-payment-row,
    .ic-footer-badges,
    .ic-footer-contact a,
    .ic-social-icons {
        justify-content: center;
    }

    .ic-footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    body.inatcloud-whmcs .logincontainer {
        padding: 26px 18px 0;
    }

    body.inatcloud-whmcs .logincontainer:before {
        margin: -26px -18px 24px;
    }

    body.inatcloud-whmcs .logincontainer .footer,
    body.inatcloud-whmcs .logincontainer .card-footer,
    body.inatcloud-whmcs .logincontainer .panel-footer {
        margin: 22px -18px 0;
        padding: 14px 18px;
    }

    body.inatcloud-whmcs .btn-return-to-admin {
        right: 12px;
        bottom: 12px;
        min-height: 38px;
        padding: 0 12px;
    }

    body.inatcloud-whmcs .btn-return-to-admin span {
        display: none !important;
    }
}
