:root {
    --sgs-black: #050505;
    --sgs-ink: #111111;
    --sgs-panel: #ffffff;
    --sgs-muted: #6f7480;
    --sgs-line: #eceff3;
    --sgs-orange: #ff7a00;
    --sgs-orange-dark: #dc5d00;
    --sgs-orange-soft: #fff3e8;
}

body {
    font-family: "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

.modal {
    z-index: 10650;
}

.modal-backdrop {
    z-index: 10640;
}

.sgs-public-page {
    position: relative;
    overflow-x: hidden;
}

.sgs-public-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(5, 5, 5, .92) 0%, rgba(5, 5, 5, .74) 48%, rgba(255, 122, 0, .18) 100%),
        url("../img/home-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .26;
    filter: saturate(.85) contrast(1.06);
    pointer-events: none;
    z-index: 0;
}

.sgs-public-page .navbar,
.sgs-public-page .container,
.sgs-public-page .sgs-public-footer {
    position: relative;
    z-index: 1;
}

.btn.sgs-btn-primary,
.btn-primary,
.btn-login,
.btn-success,
.btn-info.active,
.btn-info:active,
.btn-info:focus {
    background: var(--sgs-orange) !important;
    border-color: var(--sgs-orange) !important;
    color: #fff !important;
    box-shadow: none !important;
}

.btn.sgs-btn-primary:hover,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary,
.btn-login:hover,
.btn-success:hover {
    background: var(--sgs-orange-dark) !important;
    border-color: var(--sgs-orange-dark) !important;
}

.bg-blue,
.bg-blue-active,
.bg-light-blue,
.bg-light-blue-active,
.label-primary,
.progress-bar {
    background-color: var(--sgs-orange) !important;
}

.sgs-btn-secondary {
    background: #fff;
    border: 1px solid rgba(255, 122, 0, .35);
    color: var(--sgs-orange) !important;
}

.navbar-static-top {
    border: 0;
}

.sgs-public-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 64px;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.sgs-public-brand img {
    width: 108px;
    height: 38px;
    object-fit: contain;
    border-radius: 0;
}

.sgs-app-logo img {
    width: 58px;
    height: 34px;
    object-fit: contain;
    border-radius: 0;
}

.sgs-app-logo-mini {
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.sgs-app-logo-mini img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 0;
}

.sgs-public-brand span,
.sgs-app-logo span {
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.sgs-landing {
    min-height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    align-items: center;
    gap: 48px;
    padding: 48px 0 64px;
}

.sgs-landing-copy {
    max-width: 620px;
}

.sgs-eyebrow {
    display: inline-block;
    color: var(--sgs-orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 16px;
}

.sgs-landing h1 {
    margin: 0;
    font-size: 72px;
    line-height: .95;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0;
}

.sgs-landing p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 22px;
}

.sgs-landing-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.sgs-landing-actions .btn {
    border-radius: 6px;
    padding: 12px 20px;
    font-weight: 800;
}

.sgs-landing-media {
    display: flex;
    justify-content: center;
    position: relative;
    isolation: isolate;
    min-height: 300px;
    align-items: center;
}

.sgs-landing-media::before {
    content: "";
    position: absolute;
    width: min(560px, 88vw);
    aspect-ratio: 1.2;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 122, 0, .42) 0%, rgba(255, 122, 0, .22) 34%, rgba(255, 122, 0, .08) 55%, rgba(255, 122, 0, 0) 72%);
    filter: blur(18px);
    transform: translateY(4px);
    z-index: -1;
    pointer-events: none;
}

.sgs-landing-media img {
    position: relative;
    width: min(78%, 300px);
    border-radius: 0;
    filter: drop-shadow(0 0 18px rgba(255, 122, 0, .32)) drop-shadow(0 18px 42px rgba(0, 0, 0, .45));
}

.sgs-product-owner {
    margin-top: 12px;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.sgs-public-footer {
    padding: 18px 15px 26px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.sgs-public-footer-auth {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    color: #737987;
}

.sgs-auth-brand-panel.left-col {
    background: #050505 !important;
}

.sgs-auth-brand {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px;
}

.sgs-auth-brand a,
.sgs-login-mobile-brand {
    position: relative;
    isolation: isolate;
    display: inline-block;
}

.sgs-auth-brand a::before,
.sgs-login-mobile-brand::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(420px, 76vw);
    aspect-ratio: 1.2;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 122, 0, .42) 0%, rgba(255, 122, 0, .22) 34%, rgba(255, 122, 0, .08) 55%, rgba(255, 122, 0, 0) 72%);
    filter: blur(18px);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.sgs-auth-brand img {
    position: relative;
    width: min(240px, 72%);
    border-radius: 0;
    filter: drop-shadow(0 0 12px rgba(255, 122, 0, .24));
}

.sgs-auth-brand h1 {
    margin: 26px 0 4px;
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
}

.sgs-auth-brand p {
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .18em;
}

.right-col {
    background: #f6f7f9;
    min-height: 100vh;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 32px;
}

.right-col-content,
.right-col-content-register {
    width: 100%;
    margin: 0 auto;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--sgs-line);
    border-radius: 8px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .08);
}

.right-col-content {
    max-width: 430px;
    float: none !important;
    display: block;
}

.right-col-content-register {
    max-width: 760px;
    max-height: calc(100vh - 128px);
    overflow: auto;
    float: none !important;
    display: block;
}

.right-col > .row {
    width: 100%;
}

.right-col > .row > .col-md-9 {
    position: absolute;
    top: 20px;
    right: 32px;
    width: auto;
    z-index: 2;
}

.right-col .text-white {
    color: var(--sgs-ink) !important;
}

.right-col .text-white a:not(.btn),
.right-col a:not(.btn) {
    color: var(--sgs-orange) !important;
    font-weight: 800;
}

.right-col > .row > .col-md-3 {
    display: none;
}

.right-col-content-register fieldset {
    border-radius: 8px;
    background: #fbfcfd;
    border: 1px solid var(--sgs-line) !important;
    padding: 18px 18px 8px !important;
    margin-bottom: 18px !important;
}

.right-col-content-register legend {
    width: auto;
    margin: 0 0 12px;
    padding: 0 8px;
    border: 0;
    color: var(--sgs-ink);
    font-size: 18px;
    font-weight: 900;
}

.right-col-content-register h3 {
    margin-top: 0;
    color: var(--sgs-ink);
    font-weight: 900;
}

.right-col-content-register .steps {
    margin-bottom: 24px;
}

.right-col-content-register .wizard {
    width: 100%;
}

.right-col-content-register .wizard > .steps {
    margin-bottom: 18px;
}

.right-col-content-register .wizard > .steps > ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.right-col-content-register .wizard > .steps > ul > li {
    float: none !important;
    width: auto !important;
}

.right-col-content-register .wizard > .steps a,
.right-col-content-register .wizard > .steps a:active,
.right-col-content-register .wizard > .steps a:hover {
    min-width: 138px;
    border-radius: 6px;
    padding: 12px 14px;
    margin: 0;
    font-weight: 900;
}

.right-col-content-register .wizard > .steps .current a,
.right-col-content-register .wizard > .steps .current a:active,
.right-col-content-register .wizard > .steps .current a:hover,
.right-col-content-register .wizard > .steps .done a,
.right-col-content-register .wizard > .steps .done a:active,
.right-col-content-register .wizard > .steps .done a:hover {
    background: var(--sgs-orange) !important;
    color: #fff !important;
}

.right-col-content-register .wizard > .steps .disabled a,
.right-col-content-register .wizard > .steps .disabled a:active,
.right-col-content-register .wizard > .steps .disabled a:hover {
    background: #f0f2f5 !important;
    color: #9aa0aa !important;
}

.right-col-content-register .wizard > .content {
    min-height: 330px;
    background: #fff !important;
    border: 1px solid var(--sgs-line);
    border-radius: 8px;
    margin: 0;
    overflow: visible;
}

.right-col-content-register .wizard > .content > .body {
    width: 100% !important;
    height: auto !important;
    padding: 22px !important;
    position: relative !important;
}

.right-col-content-register .wizard > .content > .body input,
.right-col-content-register .wizard > .content > .body select {
    display: block;
}

.right-col-content-register .wizard > .actions {
    margin-top: 12px;
}

.right-col-content-register .wizard > .actions a,
.right-col-content-register .wizard > .actions a:active,
.right-col-content-register .wizard > .actions a:hover {
    background: var(--sgs-orange) !important;
    color: #fff !important;
    border-radius: 6px;
    padding: 10px 18px;
    font-weight: 900;
}

.right-col-content-register .wizard > .actions .disabled a,
.right-col-content-register .wizard > .actions .disabled a:active,
.right-col-content-register .wizard > .actions .disabled a:hover {
    background: #eef0f3 !important;
    color: #a2a8b2 !important;
}

.right-col-content-register .input-group {
    width: 100%;
}

.right-col-content-register .form-control {
    min-width: 0;
}

.form-header {
    color: var(--sgs-ink) !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    margin-bottom: 24px !important;
}

.login-form .form-control,
.right-col-content .form-control {
    height: 44px;
    border-radius: 6px;
    border-color: #d9dde4;
    box-shadow: none;
}

.login-form .form-control:focus,
.right-col-content .form-control:focus {
    border-color: var(--sgs-orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, .12);
}

.btn-login {
    width: 100%;
    height: 44px;
    border-radius: 6px !important;
    font-weight: 900;
}

.sgs-repair-status-page .right-col {
    justify-content: center;
}

.sgs-repair-status-page .right-col-content {
    max-width: 520px;
}

.sgs-repair-card {
    padding: 40px 34px 36px;
}

.sgs-repair-card .form-header {
    margin-bottom: 8px !important;
}

.sgs-repair-card-subtitle {
    margin: 0 0 24px;
    color: var(--sgs-muted);
    font-size: 14px;
    line-height: 1.5;
}

.sgs-repair-form .form-group {
    margin-bottom: 14px;
}

.sgs-repair-search-row {
    display: grid;
    grid-template-columns: minmax(150px, .9fr) minmax(0, 1fr);
    gap: 0;
}

.sgs-repair-search-row .form-control {
    width: 100% !important;
    float: none !important;
}

.sgs-repair-search-type {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.sgs-repair-search-number {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    margin-left: -1px;
}

.sgs-repair-card .input-group-addon {
    background: #fbfcfd;
    border-color: #d9dde4;
    color: var(--sgs-orange);
    border-radius: 6px 0 0 6px;
    min-width: 48px;
}

.sgs-repair-card .btn-login {
    margin-top: 4px;
}

.sgs-repair-result {
    width: 100%;
    margin: 18px auto 0;
    max-width: 760px;
    float: none !important;
}

.sgs-login-mobile-brand {
    text-align: center;
    margin-bottom: 18px;
}

.sgs-login-mobile-brand img {
    width: 112px;
    border-radius: 0;
    filter: drop-shadow(0 0 10px rgba(255, 122, 0, .22));
}

.skin-blue-light .main-header .logo,
.skin-blue-light .main-header .navbar,
.main-header .logo,
.main-header .navbar {
    background: var(--sgs-black) !important;
}

.main-header .navbar {
    border-bottom: 1px solid rgba(255, 122, 0, .32);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
}

.main-header .logo {
    border-right: 1px solid rgba(255, 122, 0, .22);
    overflow: hidden;
}

.sgs-app-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sgs-app-logo span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main-sidebar,
.skin-blue-light .main-sidebar,
.skin-blue-light .left-side {
    background: #111111 !important;
    border-right: 1px solid rgba(255, 122, 0, .20);
    box-shadow: 8px 0 28px rgba(0, 0, 0, .14);
}

.main-sidebar > .logo,
.main-sidebar .sidebar > .logo,
.main-sidebar .sidebar .sgs-sidebar-brand {
    display: none !important;
}

.sidebar-mini:not(.sidebar-collapse) .main-header .logo > .logo-mini,
.sidebar-mini:not(.sidebar-collapse) .main-sidebar .logo > .logo-mini {
    display: none !important;
}

.sidebar-mini.sidebar-collapse .main-header .logo > .logo-lg,
.sidebar-mini.sidebar-collapse .main-sidebar .logo > .logo-lg {
    display: none !important;
}

.sidebar-mini.sidebar-collapse .main-header .logo > .logo-mini,
.sidebar-mini.sidebar-collapse .main-sidebar .logo > .logo-mini {
    display: block !important;
}

.sidebar-mini.sidebar-collapse .main-header .logo,
.sidebar-mini.sidebar-collapse .main-sidebar .logo {
    width: 50px !important;
    padding: 0 !important;
}

.sidebar-mini.sidebar-collapse .main-sidebar {
    width: 50px !important;
}

.sidebar-mini.sidebar-collapse .content-wrapper,
.sidebar-mini.sidebar-collapse .right-side,
.sidebar-mini.sidebar-collapse .main-footer {
    margin-left: 50px !important;
}

.sidebar-mini.sidebar-collapse .sidebar-menu {
    padding: 8px 5px 18px !important;
}

.sidebar-mini.sidebar-collapse .sidebar-menu > li > a {
    min-height: 44px;
    padding: 12px 5px !important;
    text-align: center;
    border-left-width: 0 !important;
    border-radius: 6px;
}

.sidebar-mini.sidebar-collapse .sidebar-menu > li > a > i {
    width: auto;
    margin: 0;
    font-size: 17px;
}

.sidebar-menu {
    padding: 10px 8px 18px !important;
}

.sidebar-menu>li {
    margin: 2px 0;
}

.sidebar-menu>li>a,
.skin-blue-light .sidebar-menu>li>a {
    color: rgba(255, 255, 255, .78) !important;
    border-left: 3px solid transparent !important;
    border-radius: 7px;
    font-weight: 700;
    padding: 12px 12px 12px 14px;
}

.sidebar-menu>li:hover>a,
.sidebar-menu>li.active>a,
.sidebar-menu>li.menu-open>a,
.skin-blue-light .sidebar-menu>li:hover>a,
.skin-blue-light .sidebar-menu>li.active>a,
.skin-blue-light .sidebar-menu>li.menu-open>a {
    background: rgba(255, 122, 0, .14) !important;
    color: #fff !important;
    border-left-color: var(--sgs-orange) !important;
}

.sidebar-menu>li>a>i {
    color: var(--sgs-orange) !important;
    width: 22px;
    text-align: center;
}

.sidebar-menu .treeview-menu {
    background: rgba(0, 0, 0, .20) !important;
    border-radius: 7px;
    margin: 2px 0 6px 20px;
    padding: 6px 0;
}

.sidebar-menu .treeview-menu>li>a {
    color: rgba(255, 255, 255, .66) !important;
    font-weight: 600;
    padding: 8px 12px;
}

.sidebar-menu .treeview-menu>li.active>a,
.sidebar-menu .treeview-menu>li>a:hover {
    color: #fff !important;
}

#sgs-superadmin-menu > a,
#sgs-superadmin-menu:hover > a,
#sgs-superadmin-menu.active > a,
#sgs-superadmin-menu.menu-open > a {
    background: #f6c343 !important;
    border-left-color: #f6c343 !important;
    color: #161616 !important;
}

#sgs-superadmin-menu > a > i,
#sgs-superadmin-menu > a .fa-angle-left {
    color: #161616 !important;
}

.content-wrapper {
    background: #f6f7f9 !important;
}

.content-custom {
    padding: 22px 24px 34px !important;
}

.content-header {
    padding: 22px 24px 8px !important;
}

.content-header h1 {
    margin: 0 0 16px;
    color: var(--sgs-ink);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
}

.content-header .input-group,
.content-header .form-control,
.content-header .select2-container {
    max-width: 980px;
}

.content {
    padding: 16px 24px 34px !important;
}

.info-box-new-style,
.box {
    border-radius: 8px !important;
    border: 1px solid var(--sgs-line) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .05) !important;
}

.info-box-new-style {
    min-height: 104px;
    background: #fff;
}

.info-box-icon {
    border-radius: 8px;
    margin: 8px;
    width: 72px;
    height: 72px;
    line-height: 72px;
}

.bg-aqua,
.bg-yellow,
.bg-red,
.bg-maroon {
    background: var(--sgs-orange) !important;
}

.info-box-text {
    color: #7b8190;
    font-weight: 800;
    letter-spacing: .02em;
}

.info-box-number {
    color: #22293a;
    font-size: 22px;
    font-weight: 900;
}

.box.box-primary,
.box.box-warning {
    border-top-color: var(--sgs-orange) !important;
}

.box-header .box-title {
    color: #151515;
    font-weight: 900;
}

.btn-info {
    background: #fff !important;
    border-color: #d9dde4 !important;
    color: #2b2f38 !important;
}

.btn-group .btn {
    border-radius: 6px !important;
    margin-left: 6px;
}

.pos-tab-container {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 20px;
}

.pos-tab-container > .pos-tab-menu,
.pos-tab-container > .pos-tab {
    width: auto !important;
    float: none !important;
    padding: 0 !important;
}

.pos-tab-menu .list-group {
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--sgs-line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
}

.pos-tab-menu .list-group-item {
    border-width: 0 0 1px 0;
    border-color: var(--sgs-line);
    color: #343946;
    font-weight: 800;
    text-align: left !important;
    padding: 13px 16px;
}

.pos-tab-menu .list-group-item:last-child {
    border-bottom: 0;
}

.pos-tab-menu .list-group-item.active,
.pos-tab-menu .list-group-item.active:focus,
.pos-tab-menu .list-group-item.active:hover {
    background: var(--sgs-orange) !important;
    background-color: var(--sgs-orange) !important;
    border-color: var(--sgs-orange) !important;
    color: #fff !important;
}

div.pos-tab-menu div.list-group > a.active,
div.pos-tab-menu div.list-group > a.active .glyphicon,
div.pos-tab-menu div.list-group > a.active .fa {
    background-color: var(--sgs-orange) !important;
    border-color: var(--sgs-orange) !important;
    color: #fff !important;
}

div.pos-tab-menu div.list-group > a.active:after {
    border-left-color: var(--sgs-orange) !important;
}

.pos-tab {
    min-height: 560px;
    background: #fff;
    border: 1px solid var(--sgs-line);
    border-radius: 8px;
    padding: 22px !important;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .05);
}

.pos-tab .form-group {
    margin-bottom: 16px;
}

.pos-tab label,
.box label {
    color: #394158;
    font-weight: 800;
}

.content .form-control,
.content .select2-container--default .select2-selection--single,
.content .input-group-addon {
    min-height: 38px;
    border-color: #d9dde4 !important;
    border-radius: 6px;
    box-shadow: none !important;
}

.content .input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.content .input-group-addon {
    background: #fbfcfd;
    color: var(--sgs-orange);
}

.content .form-control:focus,
.content .select2-container--focus .select2-selection--single {
    border-color: var(--sgs-orange) !important;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, .12) !important;
}

.content .btn-danger,
.content .btn-primary {
    background: var(--sgs-orange) !important;
    border-color: var(--sgs-orange) !important;
    border-radius: 6px !important;
    font-weight: 900;
}

.content .btn-danger:hover,
.content .btn-primary:hover {
    background: var(--sgs-orange-dark) !important;
    border-color: var(--sgs-orange-dark) !important;
}

.main-header .navbar .btn,
.main-header .navbar .dropdown-toggle {
    border-radius: 6px !important;
    font-weight: 800;
}

.main-header .navbar .sidebar-toggle {
    color: #fff !important;
}

.main-header .navbar .sidebar-toggle:hover {
    background: rgba(255, 122, 0, .14) !important;
}

@media (max-width: 767px) {
    .sgs-landing {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
        padding-top: 28px;
    }

    .sgs-landing h1 {
        font-size: 48px;
    }

    .sgs-landing-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .right-col-content,
    .right-col-content-register {
        margin: 32px 12px;
        padding: 24px;
        max-height: none;
    }

    .right-col {
        min-height: auto;
        padding: 24px 12px;
        display: block !important;
    }

    .right-col > .row > .col-md-9 {
        position: static;
        width: 100%;
        text-align: center !important;
        padding-top: 0 !important;
    }

    .sgs-repair-search-row {
        grid-template-columns: 1fr;
    }

    .sgs-repair-search-type,
    .sgs-repair-search-number {
        border-radius: 6px !important;
        margin-left: 0;
    }

    .sgs-repair-search-number {
        margin-top: 10px;
    }

    .content-header,
    .content {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .pos-tab-container {
        display: block;
    }

    .pos-tab-menu {
        margin-bottom: 14px !important;
    }

    .pos-tab-menu .list-group {
        display: flex;
        overflow-x: auto;
        border-radius: 8px;
    }

    .pos-tab-menu .list-group-item {
        min-width: 170px;
        white-space: nowrap;
        border-width: 0 1px 0 0;
    }

    .pos-tab {
        padding: 18px !important;
    }
}

.sgs-pricing-page {
    padding-top: 36px;
    padding-bottom: 64px;
}

.sgs-pricing-hero {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
    color: #fff;
}

.sgs-pricing-hero img {
    width: 86px;
    height: 86px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: 0 18px 48px rgba(255, 122, 0, .18);
}

.sgs-pricing-hero h1 {
    margin: 0 auto;
    max-width: 720px;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
}

.sgs-pricing-hero p {
    max-width: 680px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
}

.sgs-pricing-panel {
    max-width: 1180px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.sgs-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.sgs-pricing-grid > .col-md-4 {
    padding-left: 12px;
    padding-right: 12px;
}

.sgs-pricing-grid .box {
    height: 100%;
    overflow: hidden;
}

.sgs-pricing-grid .box-header {
    background: var(--sgs-black);
    color: #fff;
    border-bottom: 0;
    padding: 22px 18px;
}

.sgs-pricing-grid .box-title {
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 900;
}

.sgs-pricing-grid .box-body {
    color: #252a33;
    font-weight: 700;
    padding: 26px 22px;
}

.sgs-pricing-grid .text-success,
.sgs-pricing-grid .fa-check {
    color: var(--sgs-orange) !important;
}

.sgs-pricing-grid h3 {
    color: var(--sgs-ink);
    font-size: 30px;
    font-weight: 900;
}

.sgs-pricing-grid h3 small {
    color: var(--sgs-muted);
    font-size: 14px;
    font-weight: 800;
}

.sgs-pricing-grid .box-footer {
    background: #f8f9fb !important;
    border-top: 1px solid var(--sgs-line);
    padding: 18px 22px 22px;
}

.sgs-empty-pricing {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 34px 20px;
}

.sgs-empty-icon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sgs-orange-soft);
    color: var(--sgs-orange);
    font-size: 30px;
    margin-bottom: 18px;
}

.sgs-empty-pricing h2 {
    margin: 0;
    color: var(--sgs-ink);
    font-size: 28px;
    font-weight: 900;
}

.sgs-empty-pricing p {
    max-width: 560px;
    margin: 12px auto 22px;
    color: var(--sgs-muted);
    font-size: 16px;
}

@media (max-width: 767px) {
    .sgs-pricing-page {
        padding-top: 24px;
    }

    .sgs-pricing-hero h1 {
        font-size: 32px;
    }

    .sgs-pricing-panel {
        padding: 18px;
    }
}
