:root {
  --sp-color-primary: #00897b;
  --sp-color-primary-dark: #0b6c63;
  --sp-color-accent: #ff7043;
  --sp-color-accent-dark: #e35f34;
  --sp-color-bg: #f6faf9;
  --sp-color-surface: #ffffff;
  --sp-color-surface-muted: #f1f7f5;
  --sp-color-border: #d8e5e1;
  --sp-color-text: #20313c;
  --sp-color-text-muted: #5f727d;
  --sp-color-heading: #15232d;
  --sp-shadow-sm: 0 8px 24px rgba(20, 35, 45, 0.06);
  --sp-shadow-md: 0 18px 40px rgba(20, 35, 45, 0.1);
  --sp-radius-sm: 8px;
  --sp-radius-md: 14px;
  --sp-radius-lg: 20px;
  --sp-space-1: 4px;
  --sp-space-2: 8px;
  --sp-space-3: 12px;
  --sp-space-4: 16px;
  --sp-space-5: 20px;
  --sp-space-6: 24px;
  --sp-space-7: 32px;
  --sp-space-8: 40px;
  --sp-space-9: 56px;
  --sp-content-width: 1240px;
  --sp-font-family: "Open Sans", Arial, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--sp-color-bg);
  color: var(--sp-color-text);
  font-family: var(--sp-font-family);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.login {
  background:
    radial-gradient(circle at top, rgba(0, 137, 123, 0.08), transparent 34%),
    linear-gradient(180deg, #f9fcfb 0%, #eef6f3 100%) !important;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--sp-content-width);
}

a {
  color: var(--sp-color-primary);
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

a:hover,
a:focus {
  color: var(--sp-color-accent);
  text-decoration: none;
}

p,
ul li,
ol li,
label,
small,
.textstyle {
  color: var(--sp-color-text-muted);
}

p,
ul,
ol {
  margin-bottom: var(--sp-space-5);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--sp-color-heading);
  font-family: var(--sp-font-family);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0;
}

h1,
.h1 {
  font-size: 2.25rem;
  margin-bottom: var(--sp-space-5);
}

h2,
.h2 {
  font-size: 1.9rem;
  margin-bottom: var(--sp-space-4);
}

h3,
.h3 {
  font-size: 1.45rem;
  margin-bottom: var(--sp-space-4);
}

h4,
.h4 {
  font-size: 1.2rem;
  margin-bottom: var(--sp-space-3);
}

img {
  max-width: 100%;
  height: auto;
}

iframe,
video {
  max-width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.main_container {
  padding-top: var(--sp-space-5);
  padding-bottom: var(--sp-space-8);
}

#header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(216, 229, 225, 0.78);
  box-shadow: 0 6px 24px rgba(20, 35, 45, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

#header .navbar {
  margin-bottom: 0;
}

.header-shell {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  justify-content: space-between;
  min-height: 70px;
  padding-bottom: 8px;
  padding-top: 8px;
}

.header-shell .navbar-brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 50px;
  margin: 0;
  padding: 0;
}

.header-shell .navbar-brand .logo-image {
  height: 100% !important;
  max-height: 46px;
  width: auto;
}

.header-collapse {
  align-items: center;
  flex: 1 1 auto;
  justify-content: space-between;
  min-width: 0;
}

.header-shell-app {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  justify-content: space-between;
}

#header .header-shell-app {
  align-items: center !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
}

#header .header-shell-app > .navbar-brand {
  flex: 0 0 auto;
}

#header .header-desktop-bar {
  align-items: center;
  display: inline-flex !important;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 22px;
  justify-content: flex-end;
  margin-left: auto;
  min-width: 0;
  white-space: nowrap;
  width: auto !important;
}

#header .header-desktop-nav {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  min-width: 0;
  white-space: nowrap;
  width: auto !important;
}

.header-actions-desktop {
  justify-content: flex-end;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none !important;
}

.header-desktop-nav .navbar-nav {
  align-items: center;
  display: flex !important;
  float: none !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 6px;
  justify-content: flex-end;
  margin: 0;
  width: auto;
  white-space: nowrap;
}

#header .header-desktop-nav,
#header .header-actions-desktop,
#header .header-shell-app .main-nav,
#header .header-shell-app .navbar-right:last-child {
  margin-top: 0 !important;
}

#header .header-actions-desktop.navbar-nav,
#header .header-actions-desktop.navbar-right {
  align-items: center;
  display: inline-flex !important;
  flex: 0 0 auto;
  float: none !important;
  flex-wrap: nowrap !important;
  margin: 0 !important;
  white-space: nowrap;
  width: auto !important;
}

#header .header-actions-desktop > li {
  display: inline-flex;
  float: none;
  vertical-align: middle;
}

.header-desktop-nav .nav-link {
  color: var(--sp-color-heading) !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em;
  padding: 8px 10px !important;
  white-space: nowrap;
}

.header-desktop-nav .nav-link:hover,
.header-desktop-nav .nav-link:focus,
.header-desktop-nav .nav-item.open .nav-link {
  background: rgba(0, 137, 123, 0.08);
  color: var(--sp-color-primary) !important;
}

.header-desktop-nav .phone-icon {
  height: 44px;
  width: 44px;
}

.header-shell-public .header-collapse {
  justify-content: center;
}

.main-nav,
.header-shell-public .navbar-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.main-nav .navbar-nav,
.header-shell-public .navbar-nav {
  align-items: center;
  display: flex;
  float: none;
  gap: 6px;
  margin: 0;
}

.main-nav .navbar-nav .nav-item,
.header-shell-public .navbar-nav .nav-item,
#header .navbar-nav li {
  display: inline-flex;
  float: none;
  line-height: normal;
  margin: 0;
  vertical-align: middle;
}

.main-nav .navbar-nav .nav-item .nav-link,
.header-shell-public .navbar-nav .nav-link,
#header .navbar-nav li > a.nav-link {
  border-radius: 999px;
  color: var(--sp-color-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0;
  padding: 10px 12px;
  position: relative;
  text-transform: uppercase;
}

.main-nav .navbar-nav .nav-item .nav-link:before,
.header-shell-public .navbar-nav .nav-link:before {
  display: none;
}

.main-nav .navbar-nav .nav-item:hover .nav-link,
.main-nav .navbar-nav .nav-item .nav-link:hover,
.header-shell-public .navbar-nav .nav-link:hover,
.header-shell-public .navbar-nav .nav-link:focus {
  background: rgba(0, 137, 123, 0.08);
  color: var(--sp-color-primary);
}

.main-nav .navbar-nav .nav-item .nav-link.active,
.header-shell-public .navbar-nav .nav-link.active {
  background: rgba(255, 112, 67, 0.12);
  color: var(--sp-color-accent);
}

.main-nav .navbar-nav .nav-item.open .nav-link,
.header-shell-public .navbar-nav .nav-item.open .nav-link,
#header .navbar-nav li.open > a.nav-link {
  background: rgba(0, 137, 123, 0.1);
  color: var(--sp-color-primary);
}

.main-nav .navbar-nav .nav-item .nav-link.phone-icon,
.header-shell-public .navbar-nav .nav-link.phone-icon,
.phone-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--sp-color-accent) 0%, #ff8a65 100%);
  border-radius: 999px;
  color: #fff !important;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.header-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: flex-end;
  margin: 0;
}

#header .social-icon {
  margin-right: 0 !important;
}

#header .navbar-nav.navbar-right:last-child,
#header .navbar-nav.header-actions {
  margin: 0;
}

.social-icon {
  margin-right: 0;
}

.social-icon ul {
  align-items: center;
  display: flex;
  gap: 12px;
  margin: 0;
}

.social-icon ul li {
  display: inline-flex;
}

.social-icon ul li a {
  align-items: center;
  border: 0;
  box-shadow: none;
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.social-icon ul li a:hover,
.social-icon ul li a:focus {
  color: #fff;
  opacity: 0.92;
  transform: none;
}

.login-btn,
#header .nav > li > a.login-btn-new {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(255, 112, 67, 0.46);
  border-radius: 999px;
  color: var(--sp-color-accent);
  border-width: 2px;
  box-shadow: none;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  white-space: nowrap;
}

#header .header-actions .dropdown-toggle {
  color: inherit;
}

.login-btn .caret {
  margin-top: 0;
}

.login-btn:hover,
.login-btn:focus,
#header .nav > li > a.login-btn-new:hover,
#header .nav > li > a.login-btn-new:focus {
  background: rgba(255, 112, 67, 0.1);
  border-color: var(--sp-color-accent);
  color: var(--sp-color-accent);
}

#header .navbar-nav li.dropdown .user-dropdown {
  background: #fff !important;
  border: 1px solid var(--sp-color-border);
  border-radius: 16px;
  box-shadow: var(--sp-shadow-md);
  margin-top: 12px;
  min-width: 240px;
  overflow: hidden;
  padding: 8px 0;
}

#header .navbar-nav li.dropdown .user-dropdown li {
  display: block;
}

#header .navbar-nav li.dropdown .user-dropdown li a {
  color: var(--sp-color-text);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 16px;
}

#header .navbar-nav li.dropdown .user-dropdown li a:hover,
#header .navbar-nav li.dropdown .user-dropdown li a:focus {
  background: rgba(0, 137, 123, 0.08);
  color: var(--sp-color-primary);
}

.toggle-btn {
  background: #fff;
  border: 1px solid var(--sp-color-border);
  border-radius: 16px;
  box-shadow: var(--sp-shadow-sm);
  display: none;
  height: 48px;
  position: fixed;
  right: 18px;
  top: 18px;
  width: 48px;
  z-index: 1001;
}

.toggle-btn span {
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
}

.toggle-btn span,
.toggle-btn span:before,
.toggle-btn span:after {
  background: var(--sp-color-accent);
  border-radius: 999px;
  content: "";
  position: absolute;
}

.toggle-btn span:before,
.toggle-btn span:after {
  display: block;
  height: 3px;
  left: 0;
  width: 22px;
}

.toggle-btn span:before {
  top: -7px;
}

.toggle-btn span:after {
  top: 7px;
}

.toggle-btn.active {
  background: var(--sp-color-accent);
  border-color: var(--sp-color-accent);
}

.toggle-btn.active span {
  background: transparent;
}

.toggle-btn.active span:before,
.toggle-btn.active span:after {
  background: #fff;
  top: 0;
}

.toggle-btn.active span:before {
  transform: rotate(45deg);
}

.toggle-btn.active span:after {
  transform: rotate(-45deg);
}

.bg-overlay {
  background: rgba(21, 35, 45, 0.46);
  display: none;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.bg-overlay.active {
  display: block;
}

.main_body {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 28px 20px 0;
}

.main_body > .row,
#bigCallout {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  row-gap: 28px;
}

.main_body > .row > [class*="col-"],
#bigCallout > [class*="col-"] {
  min-width: 0;
}

.main_body,
.content-shell,
.table-responsive,
.modal-body {
  overflow-wrap: anywhere;
}

.main_body > .row > aside.col-md-3,
#bigCallout > aside.col-md-3 {
  padding-right: 22px;
}

.main_body > .row > section.col-md-9,
.main_body > .row > .col-md-9,
#bigCallout > section.col-md-9,
#bigCallout > .col-md-9 {
  padding-left: 22px;
}

.main_body > .row > section.col-md-9,
#bigCallout > section.col-md-9 {
  min-height: 520px;
}

.main_body > .row > section.col-md-9 > * + *,
#bigCallout > section.col-md-9 > * + * {
  margin-top: 22px;
}

.main_body > .row > .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.main_body > .row > aside .panel,
.main_body > .row > aside .well,
#bigCallout > aside .panel,
#bigCallout > aside .well {
  margin-bottom: 20px;
}

.main_body > .row > aside .panel:last-child,
.main_body > .row > aside .well:last-child,
#bigCallout > aside .panel:last-child,
#bigCallout > aside .well:last-child {
  margin-bottom: 0;
}

.main_body > .row > aside > .panel:first-child:last-child,
.main_body > .row > aside > .well:first-child:last-child,
#bigCallout > aside > .panel:first-child:last-child,
#bigCallout > aside > .well:first-child:last-child {
  position: sticky;
  top: 112px;
}

.main_body > .row > aside #newsletter,
#bigCallout > aside #newsletter {
  margin-top: 20px;
}

.login-wrap,
.panel,
.well,
.modal-content,
.t-tab .tab-content,
.fre_news,
.blog-box {
  background: var(--sp-color-surface);
  border: 1px solid var(--sp-color-border);
  border-radius: var(--sp-radius-md);
  box-shadow: var(--sp-shadow-sm);
}

.panel,
.well,
.modal-content {
  overflow: hidden;
}

.well {
  padding: var(--sp-space-6);
}

.panel.panel-primary,
.panel.border,
.panel.panel-primary.border {
  border-color: var(--sp-color-border);
}

.panel-primary > .panel-heading,
.panel-heading {
  background: linear-gradient(135deg, var(--sp-color-primary) 0%, #159889 100%);
  border-color: transparent;
  color: #fff;
}

.quickpanelhead,
.quiz_head {
  background: linear-gradient(
    135deg,
    var(--sp-color-primary) 0%,
    #159889 100%
  ) !important;
  color: #fff !important;
  font-size: 1.04rem;
  margin: 0;
  padding: 18px 22px;
  text-align: center;
  text-transform: none;
}

.sidebar-title,
.our-prog-title {
  background: linear-gradient(
    135deg,
    var(--sp-color-accent) 0%,
    #ff8a65 100%
  ) !important;
  color: #fff !important;
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-space-5);
  padding: 16px 20px;
}

.nav-sidebar,
.my_left_accordion,
.my_left_accordion .submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.my_left_accordion {
  background: transparent;
  border-radius: 0 0 24px 24px;
  max-width: 100%;
}

.my_left_accordion.nav-stacked > li + li,
.nav-sidebar.nav-stacked > li + li,
.my_left_accordion > li + li,
.my_left_accordion .submenu > li + li {
  margin-top: 0 !important;
}

.my_left_accordion > li,
.nav-sidebar > li {
  border-bottom: 1px solid var(--sp-color-border);
  margin-bottom: 0 !important;
  position: relative;
}

.my_left_accordion > li:last-child,
.nav-sidebar > li:last-child {
  border-bottom: 0;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.my_left_accordion .my_left_link,
.nav-sidebar > li > a,
ul.nav-sidebar > li > a {
  box-sizing: border-box;
  color: var(--sp-color-text);
  display: block;
  font-size: 0.97rem;
  font-weight: 400 !important;
  line-height: 1.45;
  padding: 16px 20px;
}

.my_left_accordion > li > a,
ul.nav-sidebar > li > a {
  margin-bottom: 0 !important;
  padding-right: 20px;
  width: calc(100% - 54px);
}

.my_left_accordion > li > .my_left_link {
  align-items: center;
  background: transparent;
  border-left: 1px solid var(--sp-color-border);
  cursor: pointer;
  display: flex;
  height: 57px;
  justify-content: center;
  margin: 0 !important;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 54px;
  z-index: 2;
}

.my_left_accordion .my_left_link:hover,
.my_left_accordion .my_left_link:focus,
.nav-sidebar > li > a:hover,
.nav-sidebar > li > a:focus,
ul.nav-sidebar > li > a:hover,
ul.nav-sidebar > li > a:focus {
  background: var(--sp-color-surface-muted);
  color: var(--sp-color-primary) !important;
}

.my_left_accordion li.open > .my_left_link,
.my_left_accordion li.active > .my_left_link,
.nav-sidebar > li.active > a {
  background: linear-gradient(
    90deg,
    rgba(0, 137, 123, 0.12),
    rgba(0, 137, 123, 0.04)
  );
  color: var(--sp-color-primary) !important;
}

.my_left_accordion li i {
  color: var(--sp-color-primary);
}

.my_left_accordion .submenu {
  background: #fbfdfc;
  border-top: 1px solid var(--sp-color-border);
}

.my_left_accordion .submenu a {
  color: var(--sp-color-text-muted);
  display: block;
  font-size: 0.93rem;
  font-weight: 400 !important;
  padding: 12px 18px 12px 28px;
}

.my_left_accordion .submenu a:hover,
.my_left_accordion .submenu a:focus {
  background: rgba(255, 112, 67, 0.08);
  color: var(--sp-color-accent) !important;
}

.manager-sidebar > .manager-sidebar-panel:first-child {
  position: static !important;
  top: auto !important;
}

.manager-sidebar .manager-sidebar-panel {
  margin-bottom: 20px;
}

.manager-sidebar .manager-sidebar-nav,
.manager-sidebar .manager-sidebar-nav.nav,
.manager-sidebar .manager-sidebar-nav.nav-stacked {
  display: block;
  width: 100%;
}

.manager-sidebar .manager-sidebar-nav > li {
  clear: both;
  display: block;
  float: none !important;
  margin: 0 !important;
  width: 100%;
}

.manager-sidebar .manager-sidebar-nav > li > a {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: block !important;
  margin: 0 !important;
  padding: 16px 20px !important;
  white-space: normal;
  width: 100%;
}

.manager-sidebar .manager-sidebar-nav > li + li {
  margin-top: 0 !important;
}

.page-header {
  border-bottom-color: var(--sp-color-border);
  margin-bottom: var(--sp-space-6);
  padding-bottom: var(--sp-space-4);
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}

.breadcrumb > li,
.breadcrumb > .active {
  color: var(--sp-color-text-muted);
}

.breadcrumb_background,
.breadcrumb.breadcrumb_background {
  background: #fff;
  border: 1px solid var(--sp-color-border);
  border-radius: 999px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  padding: 10px 16px;
}

.breadcrumb_background > li,
.breadcrumb.breadcrumb_background > li {
  color: var(--sp-color-text-muted);
  font-size: 0.92rem;
}

.breadcrumb_background > li > a,
.breadcrumb.breadcrumb_background > li > a {
  color: var(--sp-color-primary);
  font-weight: 600;
}

.breadcrumb_background .divider {
  color: var(--sp-color-border);
  margin-left: 8px;
}

button.breadcrumb-back-control {
  -webkit-appearance: none;
  appearance: none;
  align-items: center;
  background: #f8fbfa;
  border: 1px solid #cfe0dc;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(47, 139, 126, 0.1);
  color: var(--sp-color-primary);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  gap: 9px;
  height: 48px;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 14px 0 0;
  padding: 0 18px 0 12px;
  text-transform: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  vertical-align: middle;
}

button.breadcrumb-back-control .breadcrumb-back-icon {
  align-items: center;
  background: #e7f2ef;
  border-radius: 50%;
  color: var(--sp-color-primary);
  display: inline-flex;
  flex: 0 0 30px;
  height: 30px;
  justify-content: center;
  width: 30px;
}

button.breadcrumb-back-control .breadcrumb-back-icon i {
  font-size: 0.9rem;
}

button.breadcrumb-back-control .breadcrumb-back-text {
  display: inline-block;
  white-space: nowrap;
}

button.breadcrumb-back-control:hover,
button.breadcrumb-back-control:focus {
  background: var(--sp-color-primary);
  border-color: var(--sp-color-primary);
  box-shadow: 0 10px 24px rgba(47, 139, 126, 0.2);
  color: #fff;
  outline: none;
}

button.breadcrumb-back-control:hover .breadcrumb-back-icon,
button.breadcrumb-back-control:focus .breadcrumb-back-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.page-header_,
.header_text,
.sub-sub-title,
.blog-author {
  position: relative;
}

.header_text {
  color: var(--sp-color-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.main_body section > .panel:first-child {
  margin-bottom: 0;
}

.main_body section > .panel:first-child,
.main_body section > .page-header_,
.main_body section > .page-header {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.main_body section > .page-header {
  margin-top: 0;
}

.main_body section .text-justify {
  color: var(--sp-color-text);
  font-size: 1rem;
  line-height: 1.8;
}

.main_body section .text-justify > img,
.main_body section .text-justify img.img-responsive,
.main_body section .img.img-responsive {
  border-radius: 18px;
  box-shadow: var(--sp-shadow-sm);
  display: block;
  height: auto;
  margin-bottom: 16px;
  max-width: 100%;
}

.main_body section small.block {
  color: var(--sp-color-text-muted);
  display: block;
  margin-bottom: 20px;
}

.sub-sub-title {
  color: var(--sp-color-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 10px;
}

.blog-author {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.blog-author > .name,
.blog-author > .date {
  background: rgba(0, 137, 123, 0.06);
  border: 1px solid var(--sp-color-border);
  border-radius: 999px;
  color: var(--sp-color-text-muted);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
}

.dooble-border {
  border-radius: var(--sp-radius-md);
}

.quic_col {
  margin-top: 24px;
}

.program-nav-panel {
  background: #fff;
  border: 1px solid var(--sp-color-border);
  border-radius: 24px !important;
  box-shadow: var(--sp-shadow-sm);
  overflow: hidden !important;
}

.program-nav-panel .quickpanelhead,
.program-nav-panel .quiz_head {
  border-radius: 24px 24px 0 0 !important;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 18px 20px;
}

.program-nav-panel .my_left_accordion {
  background: #fff;
  border-radius: 0 0 24px 24px !important;
}

.program-nav-panel,
.program-nav-panel > .my_left_accordion,
.program-nav-panel > .nav-sidebar {
  border-radius: 24px !important;
}

.program-nav-panel > .my_left_accordion > li:last-child,
.program-nav-panel > .nav-sidebar > li:last-child,
.program-nav-panel > .my_left_accordion > li:last-child > a,
.program-nav-panel > .nav-sidebar > li:last-child > a {
  border-radius: 0 0 24px 24px !important;
}

.content-stage {
  display: block;
}

.content-stage-centered {
  float: none !important;
  margin-left: auto;
  margin-right: auto;
}

.content-stage-centered .content-shell {
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
}

.app-subnav {
  margin-top: 0;
  position: relative;
  z-index: 20;
}

.app-subnav-shell {
  padding-bottom: 0;
  padding-top: 0;
}

.app-subnav-bar {
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0;
  min-height: 0;
}

.app-subnav ._containerfluid {
  background: linear-gradient(135deg, var(--sp-color-primary) 0%, #0f7d72 100%);
  border: 1px solid rgba(0, 137, 123, 0.2);
  border-radius: 34px !important;
  box-shadow: 0 14px 30px rgba(0, 137, 123, 0.18);
  display: block !important;
  margin: 0;
  min-height: 0;
  overflow: visible;
  padding: 0;
}

.app-subnav .navbar-collapse {
  background: transparent;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
  display: block !important;
  margin: 0;
  min-height: 0;
  overflow: visible;
  padding: 0;
}

.app-subnav .nav.navbar-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  padding: 10px 18px;
}

.app-subnav .nav.navbar-nav > li {
  display: inline-flex;
  float: none;
  margin: 0;
  position: relative;
}

.app-subnav .nav.navbar-nav > li > a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 10px 16px !important;
  text-shadow: none;
}

.app-subnav .nav.navbar-nav > li > a:hover,
.app-subnav .nav.navbar-nav > li > a:focus,
.app-subnav .nav.navbar-nav > li.open > a,
.app-subnav .nav.navbar-nav > li.active > a {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
}

.app-subnav .nav.navbar-nav > li > a .caret {
  margin-left: 6px;
}

.app-subnav .dropdown-menu {
  background: #fff;
  border: 1px solid var(--sp-color-border);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(20, 35, 45, 0.14);
  display: none;
  min-width: 240px;
  position: absolute;
  padding: 8px;
  top: calc(100% - 2px);
  z-index: 40;
}

.app-subnav .nav.navbar-nav > li:hover > .dropdown-menu,
.app-subnav .open > .dropdown-menu {
  display: block;
}

#bigCallout {
  row-gap: 14px;
}

#bigCallout > aside.col-md-3,
#bigCallout > section.col-md-9,
#bigCallout > .col-md-9 {
  padding-top: 0;
}

#bigCallout .breadcrumb_background {
  margin-bottom: 0 !important;
}

.app-subnav .dropdown-menu > li > a {
  border-radius: 10px;
  color: var(--sp-color-text);
  font-size: 0.93rem;
  font-weight: 400 !important;
  padding: 10px 12px;
  white-space: normal;
}

.app-subnav .dropdown-menu > li > a:hover,
.app-subnav .dropdown-menu > li > a:focus {
  background: rgba(0, 137, 123, 0.08);
  color: var(--sp-color-primary);
}

.content-shell {
  background: #fff;
  border: 1px solid var(--sp-color-border);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(20, 35, 45, 0.08);
  overflow: hidden;
  padding: 0;
}

.content-header {
  padding: 0;
}

.content-hero-panel {
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 137, 123, 0.14),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(255, 112, 67, 0.05) 0%,
      rgba(255, 255, 255, 0.98) 78%
    );
  border: 0;
  border-bottom: 1px solid var(--sp-color-border);
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 28px 30px 18px;
}

.content-shell .header_text {
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.2;
  max-width: none;
  white-space: nowrap;
}

.content-shell .content-article,
.content-shell .page {
  color: var(--sp-color-text);
  font-size: 1rem !important;
  line-height: 1.88;
  margin: 0;
  max-width: 100%;
  padding: 30px 34px 38px;
}

.content-shell .content-article,
.content-shell .page,
.content-shell .content-article *:not(img):not(video):not(iframe),
.content-shell .page *:not(img):not(video):not(iframe) {
  font-family: var(--sp-font-family) !important;
  letter-spacing: normal !important;
}

.content-shell .content-article .glyphicon,
.content-shell .content-article [class*="glyphicon-"],
.content-shell .page .glyphicon,
.content-shell .page [class*="glyphicon-"] {
  font-family: "Glyphicons Halflings" !important;
}

.content-shell .page + .page {
  border-top: 1px solid rgba(216, 229, 225, 0.7);
}

.content-shell .content-article > :first-child,
.content-shell .page > :first-child {
  margin-top: 0;
}

.content-shell .content-article > :last-child,
.content-shell .page > :last-child {
  margin-bottom: 0;
}

.content-shell .content-article p,
.content-shell .page p {
  color: var(--sp-color-text);
  font-size: 1rem !important;
  line-height: 1.9;
  margin-bottom: 18px;
}

.content-shell .content-article div,
.content-shell .content-article span,
.content-shell .content-article td,
.content-shell .content-article th,
.content-shell .content-article a,
.content-shell .page div,
.content-shell .page span,
.content-shell .page td,
.content-shell .page th,
.content-shell .page a {
  font-size: inherit !important;
  line-height: inherit !important;
}

.content-shell .content-article h2,
.content-shell .content-article h3,
.content-shell .content-article h4,
.content-shell .page h2,
.content-shell .page h3,
.content-shell .page h4 {
  color: var(--sp-color-heading);
  letter-spacing: -0.02em;
  margin: 34px 0 14px;
}

.content-shell .content-article h2,
.content-shell .page h2 {
  font-size: 1.95rem;
}

.content-shell .content-article h3,
.content-shell .page h3 {
  font-size: 1.56rem;
}

.content-shell .content-article h4,
.content-shell .page h4 {
  font-size: 1.22rem;
}

.content-shell .content-article ul,
.content-shell .content-article ol,
.content-shell .page ul,
.content-shell .page ol {
  margin-bottom: 22px;
  padding-left: 24px;
}

.content-shell .content-article li,
.content-shell .page li {
  color: var(--sp-color-text);
  font-size: 0.98rem !important;
  line-height: 1.85;
  margin-bottom: 10px;
}

.content-shell .content-article small,
.content-shell .content-article strong,
.content-shell .content-article em,
.content-shell .page small,
.content-shell .page strong,
.content-shell .page em {
  font-size: inherit !important;
}

.content-shell .content-article ol,
.content-shell .page ol {
  padding-left: 20px;
}

.quiz-info-shell .content-hero-panel {
  padding: 28px 32px 20px;
}

.quiz-info-shell .header_text {
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.25;
  white-space: normal;
}

.quiz-info-shell .content-article {
  font-size: 16px !important;
  padding: 28px 32px 32px;
}

.quiz-info-meta {
  display: grid;
  gap: 22px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 32px;
}

.quiz-info-meta-item {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.quiz-info-meta-item-right {
  text-align: right;
}

.quiz-info-meta-item-right .quiz-info-label,
.quiz-info-meta-item-right .quiz-info-value {
  margin-left: auto;
}

.quiz-info-label {
  color: var(--sp-color-text-muted);
  font-size: 16px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-transform: uppercase;
}

.quiz-info-value {
  color: var(--sp-color-heading);
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.35;
}

.quiz-info-topics {
  border-top: 1px solid rgba(216, 229, 225, 0.72);
  margin-top: 8px;
  padding-top: 26px;
}

.quiz-info-subtitle {
  color: var(--sp-color-primary);
  font-size: 16px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.quiz-info-topic-group + .quiz-info-topic-group {
  margin-top: 18px;
}

.quiz-info-topic-heading {
  color: var(--sp-color-heading);
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.quiz-info-topic-list {
  margin: 0;
  padding-left: 24px;
}

.quiz-info-topic-list li {
  color: var(--sp-color-text);
  font-size: 16px !important;
  line-height: 1.55;
  margin-bottom: 4px;
}

.quiz-info-actions {
  border-top: 1px solid rgba(216, 229, 225, 0.72);
  margin-top: 28px;
  padding-top: 24px;
}

.quiz-node-actions {
  margin-top: 30px;
  padding: 0 34px 20px;
}

.quiz-node-actions .btn {
  border-radius: 18px;
  min-width: 152px;
  padding: 12px 24px;
}

@media (max-width: 768px) {
  .quiz-node-actions {
    padding-left: 22px;
    padding-right: 22px;
  }
}

.content-shell .content-article ol li,
.content-shell .page ol li {
  padding-left: 6px;
}

.content-shell .content-article strong,
.content-shell .page strong {
  color: var(--sp-color-heading);
}

.content-shell .content-article img,
.content-shell .page img {
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(20, 35, 45, 0.12);
  display: block;
  height: auto !important;
  margin: 8px 0 20px;
  max-width: 100% !important;
}

.content-shell .content-article table,
.content-shell .page table {
  background: #fff;
  border: 1px solid var(--sp-color-border);
  border-radius: 16px;
  margin: 26px 0;
  overflow: hidden;
  width: 100% !important;
}

.content-shell .content-article blockquote,
.content-shell .page blockquote {
  background: linear-gradient(
    135deg,
    rgba(255, 112, 67, 0.12) 0%,
    rgba(0, 137, 123, 0.08) 100%
  );
  border-left: 4px solid var(--sp-color-accent);
  border-radius: 18px;
  color: var(--sp-color-heading);
  margin: 28px 0;
  padding: 18px 22px;
}

.quiz-content-shell {
  margin-top: 12px;
}

.quiz-content-shell .quiz-content-article {
  padding-top: 26px;
}

.practice-quiz-padding-fix {
  padding: 24px 28px 28px;
}

.practice-quiz-padding-fix > .row {
  margin-left: 0;
  margin-right: 0;
}

.practice-quiz-padding-fix > .row > .col-md-12 {
  padding-left: 0;
  padding-right: 0;
}

.practice-quiz-padding-fix nav {
  padding-top: 6px;
}

.quiz-content-shell .question_div {
  background: #fff;
  border: 1px solid rgba(216, 229, 225, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(20, 35, 45, 0.05);
  margin: 0 0 24px;
  padding: 28px 24px 18px;
}

.quiz-content-shell .question_div > .col-xs-12 {
  display: grid;
  column-gap: 24px;
  grid-template-columns: 96px minmax(0, 1fr);
  padding-left: 0;
  padding-right: 0;
}

.quiz-content-shell .question_div > .col-xs-12 > .control-label {
  color: var(--sp-color-heading);
  float: none;
  font-size: 1rem;
  font-weight: 700;
  grid-column: 1;
  line-height: 1.35;
  padding: 2px 0 0;
  text-align: left;
  width: auto;
  word-break: normal;
}

.quiz-content-shell .question_div > .col-xs-12 > .col-sm-11,
.quiz-content-shell .question_div > .col-xs-12 > .col-sm-9 {
  float: none;
  grid-column: 2;
  padding-left: 0;
  padding-right: 0;
  width: auto;
}

.quiz-content-shell .question_div .form-group {
  margin-bottom: 0;
}

.quiz-content-shell .questionSpacing_ .form-control-static,
.quiz-content-shell .form-control-static {
  color: var(--sp-color-heading);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.7;
  padding-top: 0;
}

.quiz-content-shell .radio-inline,
.quiz-content-shell .checkbox-inline {
  color: var(--sp-color-text);
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  min-height: 100%;
  padding-left: 30px;
}

.quiz-content-shell .radio-inline input[type="radio"],
.quiz-content-shell .checkbox-inline input[type="checkbox"] {
  margin-left: -30px;
  margin-top: 6px;
}

.quiz-content-shell .option_margin {
  display: grid;
  gap: 12px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: 0 !important;
  margin-top: 18px;
}

.quiz-content-shell .option_margin::after {
  clear: both;
  content: "";
  display: table;
}

.quiz-content-shell .option_margin > div {
  align-items: flex-start;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  float: none;
  gap: 10px;
  margin-bottom: 0;
  min-height: 0;
  padding: 4px 0;
  padding-right: 0;
  width: auto;
}

.quiz-content-shell .option_margin > div > [class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
  width: auto;
}

.quiz-content-shell .option_margin .quet-answ-img-correct,
.quiz-content-shell .option_margin .quet-answ-img-incorrect {
  color: var(--sp-color-heading);
  flex: 0 0 24px;
  text-align: left;
}

.quiz-content-shell .option_margin > div > .col-xs-1.quet-answ-img-correct,
.quiz-content-shell .option_margin > div > .col-xs-1.quet-answ-img-incorrect,
.quiz-content-shell .option_margin > div > .col-sm-1.quet-answ-img-correct,
.quiz-content-shell .option_margin > div > .col-sm-1.quet-answ-img-incorrect,
.quiz-content-shell .option_margin > div > .col-md-1.quet-answ-img-correct,
.quiz-content-shell .option_margin > div > .col-md-1.quet-answ-img-incorrect,
.quiz-content-shell .option_margin > div > .col-lg-1.quet-answ-img-correct,
.quiz-content-shell .option_margin > div > .col-lg-1.quet-answ-img-incorrect {
  flex-basis: 28px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.quiz-content-shell .option_margin .col-xs-4,
.quiz-content-shell .option_margin .col-sm-4,
.quiz-content-shell .option_margin .col-md-4,
.quiz-content-shell .option_margin .col-lg-4,
.quiz-content-shell .option_margin .col-xs-5,
.quiz-content-shell .option_margin .col-sm-5,
.quiz-content-shell .option_margin .col-md-5,
.quiz-content-shell .option_margin .col-lg-5 {
  flex: 1 1 auto;
  min-width: 0;
}

.quiz-content-shell .quiz-action-row {
  align-items: center;
  border-top: 1px solid rgba(216, 229, 225, 0.9);
  display: grid;
  gap: 18px;
  grid-template-columns: 90px repeat(4, minmax(110px, max-content));
  justify-content: space-between;
  margin: 20px 0 0;
  padding-top: 18px;
}

.quiz-content-shell .quiz-action-row > [class*="col-"] {
  float: none;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  width: auto;
}

.quiz-content-shell #workspace-outer {
  align-items: center;
  border-top: 1px solid rgba(216, 229, 225, 0.9);
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  justify-content: space-between;
  margin: 22px 0 0;
  max-width: 100%;
  padding-top: 16px;
}

.quiz-content-shell #workspace-outer > [class*="col-"] {
  flex: 0 0 auto;
  float: none;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  width: auto;
}

.quiz-content-shell #workspace-outer > [class*="col-"]:first-child {
  align-items: center;
  column-gap: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(20px, max-content));
  justify-content: flex-start;
  margin-right: auto;
}

.quiz-content-shell .quiz-feedback-col {
  align-items: center;
  column-gap: 14px;
  display: grid;
  grid-template-columns: repeat(2, min-content);
  grid-template-rows: auto auto;
  justify-content: center;
  min-height: 48px;
  row-gap: 4px;
}

.quiz-content-shell .likebadge,
.quiz-content-shell .unlikebadge {
  color: var(--sp-color-text-muted);
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  left: auto;
  position: static;
  right: auto;
  top: auto;
  vertical-align: middle;
}

.quiz-content-shell .unlikebadge {
  margin-left: 0;
}

.quiz-content-shell .icon_size {
  display: inline-block;
  font-size: 23px;
  margin-left: 0;
  vertical-align: middle;
}

.quiz-content-shell .likebadge {
  grid-column: 1;
  grid-row: 1;
}

.quiz-content-shell .unlikebadge {
  grid-column: 2;
  grid-row: 1;
}

.quiz-content-shell .like_btn {
  grid-column: 1;
  grid-row: 2;
}

.quiz-content-shell .dislike_btn {
  grid-column: 2;
  grid-row: 2;
}

.quiz-content-shell .toolbar-text {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #2f8f2a;
  display: flex;
  font-size: 0.96rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1.4;
  min-height: 0;
  padding: 0;
  text-align: center;
}

.quiz-content-shell .toolbar-text:hover {
  color: #1f6d1c;
  text-decoration: underline;
}

.quiz-content-shell .pagination {
  margin-bottom: 0;
  margin-top: 16px;
}

.quiz-content-shell .quiz-options-grid {
  display: grid;
  gap: 14px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.quiz-content-shell .quiz-option-item {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: 28px minmax(0, 1fr) 22px;
  min-height: 44px;
}

.quiz-content-shell .quiz-option-prefix {
  color: var(--sp-color-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
  padding-top: 1px;
  text-align: right;
}

.quiz-content-shell .quiz-option-label {
  align-items: flex-start;
  color: var(--sp-color-text);
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  gap: 10px;
  line-height: 1.65;
  margin: 0;
}

.quiz-content-shell .quiz-option-label input[type="radio"],
.quiz-content-shell .quiz-option-label input[type="checkbox"] {
  margin: 4px 0 0;
  position: static;
}

.quiz-content-shell .quiz-option-text {
  flex: 1 1 auto;
  min-width: 0;
}

.quiz-content-shell .quiz-option-text > *:first-child {
  margin-top: 0;
}

.quiz-content-shell .quiz-option-text > *:last-child {
  margin-bottom: 0;
}

.quiz-content-shell .quiz-option-feedback {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  padding-top: 2px;
}

.quiz-content-shell .quiz-option-feedback .option-image {
  height: 16px;
  margin: 0;
  width: 16px;
}

.quiz-content-shell .quiz-action-row {
  align-items: center;
  border-top: 1px solid rgba(216, 229, 225, 0.9);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 22px 0 0;
  padding-top: 16px;
}

.quiz-content-shell .quiz-feedback-col {
  align-items: flex-start;
  column-gap: 12px;
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: repeat(2, minmax(20px, max-content));
  justify-content: flex-start;
}

.quiz-content-shell .quiz-vote-group {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  min-width: 28px;
}

.quiz-content-shell .quiz-vote-group .likebadge,
.quiz-content-shell .quiz-vote-group .unlikebadge {
  display: block;
  line-height: 1;
  min-height: 14px;
  text-align: center;
}

.quiz-content-shell .quiz-vote-group .icon_size {
  line-height: 1;
}

.quiz-content-shell .quiz-action-link {
  flex: 0 1 auto;
}

.quiz-content-shell .quiz-action-link-wide {
  margin-left: auto;
}

.quiz-content-shell .toolbar-text {
  white-space: nowrap;
}

@media (max-width: 991px) {
  .quiz-content-shell .question_div > .col-xs-12 {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

.quiz-content-shell .question_div > .col-xs-12 > .control-label,
.quiz-content-shell .question_div > .col-xs-12 > .col-sm-11,
.quiz-content-shell .question_div > .col-xs-12 > .col-sm-9 {
    grid-column: auto;
  }

  .quiz-content-shell .question_div > .col-xs-12 > .control-label {
    text-align: left;
  }

  .quiz-content-shell .option_margin > div {
    width: auto;
  }

  .quiz-content-shell .quiz-options-grid {
    gap: 12px 18px;
  }

  .quiz-content-shell .quiz-action-row {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .quiz-content-shell #workspace-outer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .quiz-content-shell .quiz-action-link-wide {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .quiz-content-shell .question_div {
    padding: 22px 18px 16px;
  }

  .quiz-content-shell .questionSpacing_ .form-control-static,
  .quiz-content-shell .form-control-static {
    font-size: 1.04rem;
  }

  .quiz-content-shell .quiz-options-grid {
    grid-template-columns: 1fr;
  }

  .quiz-content-shell .quiz-action-row {
    gap: 14px;
  }

  .quiz-content-shell #workspace-outer {
    gap: 14px;
  }

  .quiz-content-shell .quiz-feedback-col {
    justify-content: flex-start;
  }
}

.content-pager {
  align-items: center;
  border-top: 1px solid var(--sp-color-border);
  margin: 0;
  padding: 22px 30px 30px;
}

.content-pager .btn {
  width: 100%;
}

.nav-tabs {
  border-bottom: 1px solid var(--sp-color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 10px;
}

.nav-tabs > li {
  float: none;
  margin-bottom: 0;
}

.nav-tabs > li > a,
.blog-tab .nav > li > a,
.t-tab .nav > li > a {
  background: #fff;
  border: 1px solid var(--sp-color-border);
  border-radius: 999px;
  color: var(--sp-color-text-muted);
  font-size: 0.94rem;
  font-weight: 700;
  margin: 0;
  padding: 10px 16px;
  transition: all 0.2s ease;
}

.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus,
.blog-tab .nav-tabs > li > a:hover,
.t-tab .nav-tabs > li > a:hover {
  background: rgba(0, 137, 123, 0.08);
  border-color: rgba(0, 137, 123, 0.18);
  color: var(--sp-color-primary);
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus,
.blog-tab .nav-tabs > li.active > a,
.t-tab .nav-tabs > li.active > a {
  background: rgba(255, 112, 67, 0.12);
  border-color: rgba(255, 112, 67, 0.22);
  color: var(--sp-color-accent);
}

.tab-content > .tab-pane,
.blog-tab .tab-content,
.t-tab .tab-content {
  animation: fadeInContent 0.2s ease;
}

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

.form-horizontal .form-group,
.form-group {
  margin-bottom: 20px;
}

.form-horizontal .control-label,
.control-label {
  color: var(--sp-color-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding-top: 12px;
}

.input-group {
  border-radius: var(--sp-radius-sm);
}

.input-group .form-control {
  position: relative;
  z-index: 2;
}

.input-group-addon {
  background: var(--sp-color-surface-muted);
  border: 1px solid var(--sp-color-border);
  color: var(--sp-color-text-muted);
  font-weight: 700;
}

.help-block,
.text-danger,
label.error {
  color: var(--sp-color-accent) !important;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 6px;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

select.form-control {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--sp-color-primary) 50%),
    linear-gradient(135deg, var(--sp-color-primary) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-repeat: no-repeat;
  background-size:
    6px 6px,
    6px 6px;
  padding-right: 36px;
}

.table-responsive {
  background: #fff;
  border: 1px solid var(--sp-color-border);
  border-radius: 18px;
  box-shadow: var(--sp-shadow-sm);
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  background: transparent;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 0;
}

.table > thead > tr > th {
  background: linear-gradient(
    180deg,
    rgba(0, 137, 123, 0.08) 0%,
    rgba(0, 137, 123, 0.03) 100%
  );
  border-bottom: 1px solid var(--sp-color-border);
  color: var(--sp-color-heading);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 14px 16px !important;
  text-transform: uppercase;
}

.table > tbody > tr {
  transition: background-color 0.15s ease;
}

.table > tbody > tr:nth-child(even) {
  background: rgba(241, 247, 245, 0.6);
}

.table > tbody > tr:hover {
  background: rgba(0, 137, 123, 0.05);
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th {
  color: var(--sp-color-text);
  font-size: 0.96rem;
  padding: 14px 16px !important;
}

.table > tbody > tr > td.text-center a,
.table > tbody > tr > th.text-center a {
  align-items: center;
  border-radius: 999px;
  color: var(--sp-color-primary);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.table > tbody > tr > td.text-center a:hover,
.table > tbody > tr > th.text-center a:hover {
  background: rgba(255, 112, 67, 0.12);
  color: var(--sp-color-accent);
}

.pagination,
.simple-pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 0;
}

.pagination > li,
.simple-pagination li {
  display: inline-flex;
}

.pagination > li > a,
.pagination > li > span,
.simple-pagination li a,
.simple-pagination li span {
  background: #fff;
  border: 1px solid var(--sp-color-border);
  border-radius: 999px !important;
  color: var(--sp-color-text-muted);
  font-weight: 700;
  min-width: 42px;
  padding: 9px 14px;
  text-align: center;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.simple-pagination li a:hover {
  background: rgba(0, 137, 123, 0.08);
  border-color: rgba(0, 137, 123, 0.18);
  color: var(--sp-color-primary);
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.simple-pagination li.active span,
.simple-pagination li.active a {
  background: var(--sp-color-primary);
  border-color: var(--sp-color-primary);
  color: #fff;
}

.alert {
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow: var(--sp-shadow-sm);
  padding: 16px 18px;
}

.alert-success {
  background: rgba(0, 137, 123, 0.1);
  border-color: rgba(0, 137, 123, 0.16);
  color: var(--sp-color-primary-dark);
}

.alert-info {
  background: rgba(34, 164, 220, 0.1);
  border-color: rgba(34, 164, 220, 0.16);
  color: #0f5f7d;
}

.alert-warning {
  background: rgba(255, 193, 7, 0.14);
  border-color: rgba(255, 193, 7, 0.18);
  color: #7a5a00;
}

.alert-danger {
  background: rgba(220, 76, 100, 0.11);
  border-color: rgba(220, 76, 100, 0.16);
  color: #8f1f33;
}

.modal-dialog {
  margin-top: 80px;
}

.modal-content {
  border: 0;
  border-radius: 22px;
  box-shadow: 0 24px 48px rgba(20, 35, 45, 0.2);
}

.modal-header {
  background: linear-gradient(
    180deg,
    rgba(0, 137, 123, 0.06) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  padding: 20px 24px 16px;
}

.modal-title {
  color: var(--sp-color-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.modal-body {
  color: var(--sp-color-text);
  padding: 18px 24px;
}

.modal-footer {
  padding: 16px 24px 22px;
}

.panel-footer {
  background: rgba(241, 247, 245, 0.7);
  border-top: 1px solid var(--sp-color-border);
}

#question-palet .panel-body,
#question-palet .panel-footer {
  color: var(--sp-color-text);
}

#question-palet .q-button {
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  min-width: 48px;
}

.btn-default {
  background: #fff;
  border-color: var(--sp-color-border);
  color: var(--sp-color-text);
}

.btn-default:hover,
.btn-default:focus {
  background: rgba(0, 137, 123, 0.08);
  border-color: rgba(0, 137, 123, 0.2);
  color: var(--sp-color-primary);
}

.btn-info {
  background: #e9f6fb;
  border-color: #b9e3f3;
  color: #15627f;
}

.btn-danger {
  background: #fff1f3;
  border-color: #f4c3cb;
  color: #af2840;
}

.btn-sm {
  min-height: 34px;
  padding: 7px 12px;
}

.form-control {
  background: #fff;
  border: 1px solid var(--sp-color-border);
  border-radius: var(--sp-radius-sm);
  box-shadow: none;
  color: var(--sp-color-text);
  min-height: 44px;
  padding: 10px 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: rgba(0, 137, 123, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 137, 123, 0.12);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  min-height: 42px;
  padding: 10px 20px;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-success,
.btn-green {
  background: var(--sp-color-primary);
  border-color: var(--sp-color-primary);
  color: #fff;
}

.btn-success:hover,
.btn-success:focus,
.btn-green:hover,
.btn-green:focus {
  background: var(--sp-color-primary-dark);
  border-color: var(--sp-color-primary-dark);
  color: #fff;
}

.btn-warning,
.btn-primary,
#news_letter button,
.bttn {
  background: var(--sp-color-accent) !important;
  border-color: var(--sp-color-accent) !important;
  color: #fff !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-primary:hover,
.btn-primary:focus,
#news_letter button:hover,
.bttn:hover {
  background: var(--sp-color-accent-dark) !important;
  border-color: var(--sp-color-accent-dark) !important;
}

.table > thead > tr > th {
  border-bottom: 1px solid var(--sp-color-border);
  color: var(--sp-color-heading);
  font-weight: 700;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  border-top-color: var(--sp-color-border);
  vertical-align: middle;
}

.quiz-result-page {
  margin: 28px auto 36px;
  max-width: 1060px;
}

.quiz-result-shell .content-hero-panel {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 30px 32px 24px;
}

.quiz-result-hero-copy {
  min-width: 0;
}

.quiz-result-kicker {
  color: var(--sp-color-primary);
  font-size: 0.92rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 8px !important;
  text-transform: uppercase;
}

.quiz-result-shell .header_text {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin-bottom: 8px;
  white-space: normal;
}

.quiz-result-score {
  color: var(--sp-color-heading);
  font-size: 1.25rem !important;
  font-weight: 800;
  line-height: 1;
  margin: 0 !important;
}

.quiz-result-summary-btn {
  background: var(--sp-color-primary) !important;
  border-color: var(--sp-color-primary) !important;
  border-radius: 999px !important;
  font-weight: 700;
  padding: 12px 22px !important;
  white-space: nowrap;
}

.quiz-result-summary-btn:hover,
.quiz-result-summary-btn:focus {
  background: var(--sp-color-primary-dark) !important;
  border-color: var(--sp-color-primary-dark) !important;
}

.quiz-result-article {
  padding: 30px 32px 34px !important;
}

.quiz-result-meta-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 30px;
}

.quiz-result-meta-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e3ebf6;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(18, 38, 63, 0.05);
  min-width: 0;
  padding: 18px 18px 16px;
}

.quiz-result-label {
  color: var(--sp-color-text-muted);
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.quiz-result-value {
  color: var(--sp-color-heading);
  display: block;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.quiz-result-section + .quiz-result-section {
  margin-top: 28px;
}

.quiz-result-section .quickpanelhead,
.quiz-result-section .quiz_head {
  border-radius: 16px 16px 0 0 !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
  padding: 12px 18px !important;
  text-align: center;
}

.quiz-result-section h3.quickpanelhead.quiz_head {
  font-size: 18px !important;
}

.quiz-result-chart-wrap {
  background: #fff;
  border: 1px solid #e3ebf6;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 22px rgba(18, 38, 63, 0.06);
  overflow: hidden;
  padding: 18px 20px 12px;
}

.quiz-result-chart {
  height: 560px;
  width: 100%;
}

.quiz-result-table-wrap {
  background: #fff;
  border: 1px solid #e3ebf6;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 22px rgba(18, 38, 63, 0.06);
  overflow: hidden;
}

.quiz-result-table {
  margin-bottom: 0;
}

.quiz-result-table > tbody > tr > td {
  background: #fff;
  border-color: #e4ebf3;
  color: var(--sp-color-text);
  padding: 16px 18px !important;
  vertical-align: top;
}

.quiz-result-band {
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.5;
  width: 34%;
}

.quiz-result-band-green {
  color: #54803f !important;
}

.quiz-result-band-amber {
  color: #d99510 !important;
}

.quiz-result-band-red {
  color: #d73737 !important;
}

.quiz-summary-page {
  margin: 28px auto 36px;
  max-width: 1100px;
}

.quiz-summary-shell {
  margin-top: 0;
}

.quiz-summary-hero {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 26px 30px 20px;
}

.quiz-summary-hero-copy {
  min-width: 0;
}

.quiz-summary-shell .header_text {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  margin-bottom: 10px;
  white-space: normal;
}

.quiz-summary-score {
  color: var(--sp-color-text-muted);
  font-size: 1rem !important;
  margin: 0 !important;
}

.quiz-summary-score strong {
  color: var(--sp-color-heading);
}

.quiz-summary-hero-actions .btn {
  border-radius: 999px !important;
  font-weight: 700;
  padding: 12px 22px !important;
  white-space: nowrap;
}

.quiz-summary-hero-actions .btn-primary {
  background: var(--sp-color-primary) !important;
  border-color: var(--sp-color-primary) !important;
}

.quiz-summary-hero-actions .btn-primary:hover,
.quiz-summary-hero-actions .btn-primary:focus {
  background: var(--sp-color-primary-dark) !important;
  border-color: var(--sp-color-primary-dark) !important;
}

.quiz-summary-shell .quiz-content-article {
  padding-top: 24px;
}

.quiz-summary-shell .question_div {
  margin-bottom: 22px;
}

.quiz-summary-shell .form-horizontal {
  margin-bottom: 0;
}

.result-summary-page {
  margin: 28px auto 36px;
  max-width: 1100px;
}

.result-summary-shell .content-hero-panel {
  align-items: flex-end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px 30px 22px;
}

.result-summary-hero-copy {
  min-width: 0;
}

.result-summary-shell .header_text {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  white-space: normal;
}

.result-summary-subtitle {
  color: var(--sp-color-text-muted);
  font-size: 0.9rem !important;
  margin: 8px 0 0 !important;
}

.result-summary-hero-stats {
  display: flex;
  gap: 14px;
}

.result-summary-stat {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e3ebf6;
  border-radius: 16px;
  min-width: 180px;
  padding: 14px 16px;
  text-align: center;
}

.result-summary-stat-label {
  color: var(--sp-color-text-muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.result-summary-stat-value {
  color: var(--sp-color-heading);
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.result-summary-article {
  padding: 28px 30px 34px !important;
}

.result-summary-section + .result-summary-section {
  margin-top: 26px;
}

.result-summary-section-title {
  font-size: 1.15rem !important;
  margin-bottom: 16px;
}

.result-summary-table-wrap,
.result-summary-chart-wrap {
  background: #fff;
  border: 1px solid #e3ebf6;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(18, 38, 63, 0.06);
  overflow: hidden;
}

.result-summary-chart-wrap {
  padding: 18px;
}

.result-summary-table {
  margin-bottom: 0;
}

.result-summary-table > thead > tr.info > th {
  background: #c9e4f1 !important;
  border-color: #d8e7ef;
  color: var(--sp-color-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 14px 16px !important;
  text-transform: uppercase;
}

.result-summary-table > tbody > tr > td,
.result-summary-table > tfoot > tr > th {
  padding: 16px !important;
}

.result-summary-table > tfoot > tr.warning > th {
  background: #fff8df !important;
  border-color: #e9dfb8;
}

.result-summary-band {
  font-weight: 700;
  width: 34%;
}

.result-summary-band-green {
  color: #54803f;
}

.result-summary-band-amber {
  color: #d99510;
}

.result-summary-band-red {
  color: #d73737;
}

@media (max-width: 991px) {
  .result-summary-shell .content-hero-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-summary-hero-stats {
    width: 100%;
  }

  .result-summary-stat {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .result-summary-shell .content-hero-panel,
  .result-summary-article {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .result-summary-hero-stats {
    flex-direction: column;
  }

  .result-summary-band {
    width: auto;
  }
}

@media (max-width: 991px) {
  .quiz-result-page {
    margin-top: 22px;
  }

  .quiz-result-shell .content-hero-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .quiz-summary-hero {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .quiz-result-shell .content-hero-panel,
  .quiz-result-article {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .quiz-result-meta-grid {
    grid-template-columns: 1fr;
  }

  .quiz-result-chart {
    height: 380px;
  }

  .quiz-result-band {
    width: auto;
  }

  .quiz-summary-hero,
  .quiz-summary-shell .quiz-content-article {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.modal-header,
.modal-footer {
  border-color: var(--sp-color-border);
}

.footer.fill_footer,
.fill_footer {
  display: block;
  margin-top: 34px;
}

.footer-shell {
  margin: 0 auto;
  max-width: var(--sp-content-width);
  padding: 0 20px 48px;
  width: 100%;
}

.footer.footer_text,
.footer_text {
  align-items: center;
  background: #fff;
  border: 1px solid var(--sp-color-border);
  border-top: 4px solid var(--sp-color-accent);
  border-radius: 18px;
  color: var(--sp-color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-space-4);
  justify-content: space-between;
  margin-bottom: 0;
  min-height: 64px;
  padding: 18px 24px;
}

.footer.footer_text p,
.footer_text p {
  color: var(--sp-color-text-muted);
  float: none !important;
  margin: 0;
}

.footer-copy {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.5;
}

.footer-powered {
  display: inline-flex;
  font-size: 0.86rem;
  gap: 6px;
  line-height: 1.5;
}

.footer-credit {
  color: var(--sp-color-primary-dark);
  font-weight: 700;
}

.login-wrap {
  margin-top: var(--sp-space-9);
  max-width: 440px;
  padding: 32px 28px 28px;
}

.login-logo {
  margin-bottom: var(--sp-space-5);
}

.login-logo img,
.login-wrap .logo {
  max-width: 136px;
  width: 100%;
}

.form-signin {
  max-width: 100%;
  padding: 0;
}

.form-signin .form-signin-heading {
  color: var(--sp-color-text-muted);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 var(--sp-space-6);
}

.form-signin .form-control + .form-control {
  margin-top: var(--sp-space-4);
}

.check-custom,
.form-signin .checkbox {
  color: var(--sp-color-text-muted);
}

.check-custom .checkmark {
  background: #fff;
  border-color: var(--sp-color-border);
  border-radius: 6px;
}

.check-custom:hover input ~ .checkmark {
  background: var(--sp-color-surface-muted);
}

.login-wrap .btn-green {
  border-radius: 999px;
  margin-top: var(--sp-space-2);
}

.signin-utility-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  row-gap: 10px;
}

.signin-utility-col {
  display: flex;
  min-height: 24px;
}

.signin-utility-col-left {
  align-items: center;
  justify-content: flex-start;
}

.signin-utility-col-right {
  align-items: center;
  justify-content: flex-end;
}

.signin-utility-row .checkbox.check-custom {
  margin: 0;
}

.signin-forgot-link {
  color: var(--sp-color-primary);
  display: inline-flex;
  font-weight: 600;
  text-decoration: none;
}

.signin-forgot-link:hover,
.signin-forgot-link:focus {
  color: var(--sp-color-primary-dark);
  text-decoration: none;
}

.close {
  opacity: 0.6;
}

.close:hover,
.close:focus {
  opacity: 1;
}

.our-prog-title,
.sidebar-title,
.quickpanelhead,
.quiz_head {
  border-radius: var(--sp-radius-md);
  box-shadow: none;
  font-weight: 700;
  letter-spacing: -0.01em;
}

input:focus,
button:focus,
select:focus,
textarea:focus,
a:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 112, 67, 0.18);
  outline: 2px solid transparent;
}

@media (max-width: 1199px) {
  .toggle-btn {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .header-desktop-bar {
    display: none !important;
  }

  .header-shell {
    min-height: 72px;
    padding-right: 76px;
  }

  .header-shell .navbar-brand {
    height: 48px;
  }

  #bs-example-navbar-collapse-1.header-collapse {
    background: #fff;
    border-left: 1px solid var(--sp-color-border);
    box-shadow: -16px 0 36px rgba(20, 35, 45, 0.12);
    display: none;
    height: 100vh;
    max-width: 380px;
    overflow-y: auto;
    padding: 88px 24px 28px;
    position: fixed;
    right: 0;
    top: 0;
    width: min(100vw, 380px);
    z-index: 1000;
  }

  #bs-example-navbar-collapse-1.header-collapse.open {
    display: block !important;
  }

  #bs-example-navbar-collapse-1 .main-nav,
  #bs-example-navbar-collapse-1 .main-nav .navbar-nav {
    display: block;
    width: 100%;
  }

  #bs-example-navbar-collapse-1 .main-nav {
    margin-bottom: 16px;
  }

  #bs-example-navbar-collapse-1 .main-nav .nav-item {
    display: block;
    width: 100%;
  }

  #bs-example-navbar-collapse-1 .main-nav .nav-link {
    border-bottom: 1px solid rgba(21, 35, 45, 0.08);
    border-radius: 0;
    display: block;
    font-size: 1rem !important;
    margin: 0;
    padding: 14px 0 !important;
    text-align: left;
  }

  #bs-example-navbar-collapse-1 .main-nav .phone-icon {
    border-radius: 16px;
    height: 52px;
    justify-content: flex-start;
    margin-top: 12px;
    padding-left: 18px;
    width: 100%;
  }

  #bs-example-navbar-collapse-1 .header-actions {
    align-items: stretch;
    display: flex !important;
    flex-direction: column;
    gap: 18px;
    margin-top: 0 !important;
    width: 100%;
  }

  #bs-example-navbar-collapse-1 .header-actions > li {
    display: block;
    width: 100%;
  }

  #bs-example-navbar-collapse-1 .social-icon {
    margin: 0 !important;
    position: static !important;
    text-align: left !important;
    width: auto !important;
  }

  #bs-example-navbar-collapse-1 .social-icon ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
  }

  #bs-example-navbar-collapse-1 .social-icon ul li {
    display: inline-flex;
    width: auto;
  }

  #bs-example-navbar-collapse-1 .social-icon ul li a {
    height: 42px;
    width: 42px;
  }

  #bs-example-navbar-collapse-1 .login-btn,
  #bs-example-navbar-collapse-1 .login-btn-new,
  #bs-example-navbar-collapse-1 .dropdown-toggle .login-btn {
    justify-content: center;
    min-height: 48px;
    width: 100%;
  }

  #bs-example-navbar-collapse-1 .user-dropdown {
    border-radius: 14px;
    box-shadow: none;
    margin-top: 10px;
    position: static;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .main_container {
    padding-top: var(--sp-space-5);
    padding-bottom: var(--sp-space-6);
  }

  .main_body {
    padding: var(--sp-space-5);
  }

  .main_body > .row,
  #bigCallout {
    row-gap: 22px;
  }

  .main_body > .row > aside.col-md-3,
  #bigCallout > aside.col-md-3,
  .main_body > .row > section.col-md-9,
  .main_body > .row > .col-md-9,
  #bigCallout > section.col-md-9,
  #bigCallout > .col-md-9 {
    padding-left: 15px;
    padding-right: 15px;
  }

  h1,
  .h1 {
    font-size: 1.95rem;
  }

  h2,
  .h2 {
    font-size: 1.65rem;
  }

  .toggle-btn {
    display: block;
  }

  .header-shell {
    min-height: 78px;
    padding-right: 70px;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .header-desktop-bar {
    display: none !important;
  }

  #bs-example-navbar-collapse-1.header-collapse.open {
    display: block !important;
  }

  .header-shell .navbar-brand {
    height: 54px;
  }

  .header-collapse {
    background: #fff;
    border-left: 1px solid var(--sp-color-border);
    box-shadow: -16px 0 36px rgba(20, 35, 45, 0.12);
    display: none;
    height: 100vh;
    max-width: 360px;
    overflow-y: auto;
    padding: 96px 22px 28px;
    position: fixed;
    right: 0;
    top: 0;
    width: min(88vw, 360px);
    z-index: 1000;
  }

  .header-collapse.open {
    display: block !important;
  }

  .header-shell-public .header-collapse,
  #bs-example-navbar-collapse-1.header-collapse {
    justify-content: flex-start;
  }

  .main-nav,
  .header-shell-public .navbar-nav,
  .main-nav .navbar-nav {
    align-items: stretch;
    display: block;
    width: 100%;
  }

  .main-nav .navbar-nav .nav-item,
  .header-shell-public .navbar-nav .nav-item,
  #header .navbar-nav li {
    display: block;
    width: 100%;
  }

  .main-nav .navbar-nav .nav-item .nav-link,
  .header-shell-public .navbar-nav .nav-link,
  #header .navbar-nav li > a.nav-link {
    border-radius: 14px;
    display: block;
    margin-bottom: 6px;
    padding: 14px 16px;
    text-align: left;
  }

  .main-nav .navbar-nav .nav-item .nav-link.phone-icon,
  .header-shell-public .navbar-nav .nav-link.phone-icon,
  .phone-icon {
    height: 48px;
    justify-content: flex-start;
    padding-left: 16px;
    width: 100%;
  }

  .header-actions {
    align-items: stretch;
    display: block;
    width: 100%;
  }

  .header-shell-app .main-nav {
    margin-bottom: 18px;
  }

  #header .navbar-nav.header-actions,
  #header .navbar-nav.navbar-right {
    float: none !important;
    margin-top: 18px;
    width: 100%;
  }

  .header-actions > li {
    display: block;
    width: 100%;
  }

  .social-icon {
    margin-bottom: 16px;
    position: static !important;
    text-align: left !important;
    width: auto !important;
  }

  .mobile-social {
    margin-top: 18px;
  }

  .social-icon ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .login-btn,
  #header .nav > li > a.login-btn-new {
    justify-content: center;
    width: 100%;
  }

  #header .navbar-nav li.dropdown .user-dropdown {
    border-radius: 14px;
    box-shadow: none;
    margin-top: 10px;
    position: static;
    width: 100%;
  }

  .main_body > .row > aside > .panel:first-child,
  #bigCallout > aside > .panel:first-child {
    position: static;
  }

  .content-shell .header_text {
    font-size: 2rem;
    max-width: none;
  }

  .content-shell .content-article,
  .content-shell .page,
  .content-hero-panel,
  .content-pager {
    padding-left: 22px;
    padding-right: 22px;
  }

  .form-horizontal .control-label,
  .control-label {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .container {
    padding-left: var(--sp-space-4);
    padding-right: var(--sp-space-4);
  }

  .main_body {
    padding: var(--sp-space-4);
  }

  .main_body > .row,
  #bigCallout {
    row-gap: 18px;
  }

  .breadcrumb_background,
  .breadcrumb.breadcrumb_background {
    border-radius: 18px;
    display: block;
    padding: 12px 14px;
  }

  button.breadcrumb-back-control {
    height: 44px;
    margin: 0 0 10px;
    padding: 0 16px 0 10px;
  }

  .breadcrumb_background > li,
  .breadcrumb.breadcrumb_background > li {
    display: inline;
  }

  .main_body section > .panel:first-child,
  .main_body section > .page-header_,
  .main_body section > .page-header {
    padding: 18px 18px;
  }

  .header_text {
    font-size: 1.55rem;
  }

  .content-shell {
    border-radius: 18px;
  }

  .content-hero-panel {
    padding: 22px 18px 14px;
  }

  .content-shell .header_text {
    font-size: 1.72rem;
  }

  .content-shell .content-article,
  .content-shell .page,
  .content-pager {
    padding: 18px 18px 22px;
  }

  .content-shell .content-article p,
  .content-shell .page p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .table-responsive {
    border-radius: 14px;
  }

  .header-actions {
    gap: 12px;
  }

  .nav-tabs,
  .pagination,
  .simple-pagination {
    gap: 8px;
  }

  .nav-tabs > li > a,
  .blog-tab .nav > li > a,
  .t-tab .nav > li > a,
  .pagination > li > a,
  .pagination > li > span,
  .simple-pagination li a,
  .simple-pagination li span {
    font-size: 0.9rem;
    padding: 9px 12px;
  }

  .table > thead > tr > th,
  .table > tbody > tr > td,
  .table > tbody > tr > th,
  .table > tfoot > tr > td,
  .table > tfoot > tr > th {
    padding: 12px 12px !important;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .well,
  .main_body,
  .login-wrap,
  .t-tab .tab-content {
    border-radius: var(--sp-radius-sm);
  }

  .footer.footer_text,
  .footer_text {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 18px;
  }

  .footer-shell {
    padding: 0 16px 32px;
  }

  .login-wrap {
    margin-top: var(--sp-space-7);
    padding: 24px 20px;
  }

  .header-shell {
    min-height: 72px;
  }

  .header-shell .navbar-brand {
    height: 48px;
  }

  .header-collapse {
    max-width: none;
    padding: 86px 16px 24px;
    width: 100vw;
  }
}

@media (max-width: 1366px) {
  #header {
    padding: 10px 0 8px;
  }

  #header .toggle-btn {
    display: block;
  }

  #header .desktop-only {
    display: none !important;
  }

  #header .mobile-only {
    display: block !important;
  }

  #header .header-desktop-bar,
  #header .mobile-social {
    display: none !important;
  }

  #header .header-shell,
  #header .header-shell-app {
    align-items: center !important;
    min-height: 72px;
    padding-right: 84px;
  }

  #header .header-shell .navbar-brand {
    height: 46px;
    margin-right: auto;
  }

  #account-mobile-drawer.header-collapse {
    background: #fff;
    border-left: 1px solid var(--sp-color-border);
    box-shadow: -16px 0 36px rgba(20, 35, 45, 0.14);
    display: none !important;
    height: 100vh;
    max-width: 380px;
    overflow-y: auto;
    pointer-events: none;
    padding: 86px 24px 28px;
    position: fixed;
    right: 0;
    top: 0;
    width: min(88vw, 380px);
    z-index: 1000;
  }

  #account-mobile-drawer.header-collapse.open {
    display: block !important;
    pointer-events: auto;
  }

  #account-mobile-drawer .main-nav,
  #account-mobile-drawer .main-nav .navbar-nav {
    display: block !important;
    width: 100%;
  }

  #account-mobile-drawer .main-nav {
    margin: 0 0 18px !important;
  }

  #account-mobile-drawer .main-nav .nav-item,
  #account-mobile-drawer .main-nav .navbar-nav > li {
    display: block;
    margin: 0;
    width: 100%;
  }

  #account-mobile-drawer .main-nav .nav-link,
  #account-mobile-drawer .main-nav .navbar-nav > li > a.nav-link {
    border-bottom: 1px solid rgba(21, 35, 45, 0.08);
    border-radius: 0;
    display: block;
    font-size: 0.98rem !important;
    letter-spacing: 0.04em;
    margin: 0 !important;
    padding: 14px 0 !important;
    text-align: left;
  }

  #account-mobile-drawer .main-nav .phone-icon {
    align-items: center;
    border-radius: 999px;
    display: inline-flex !important;
    height: 46px !important;
    justify-content: center;
    margin-top: 14px !important;
    min-width: 64px !important;
    padding: 0 18px !important;
    width: auto !important;
  }

  #account-mobile-drawer .header-actions,
  #header #account-mobile-drawer .navbar-nav.header-actions,
  #header #account-mobile-drawer .navbar-nav.navbar-right {
    align-items: flex-start !important;
    display: flex !important;
    flex-direction: column;
    float: none !important;
    gap: 18px;
    margin: 0 !important;
    width: 100%;
  }

  #account-mobile-drawer .header-actions > li {
    display: block;
    margin: 0;
    width: auto;
  }

  #account-mobile-drawer .social-icon {
    margin: 0 !important;
    position: static !important;
    text-align: left !important;
    width: auto !important;
  }

  #account-mobile-drawer .social-icon ul {
    align-items: center;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin: 0;
  }

  #account-mobile-drawer .social-icon ul li {
    display: inline-flex;
    margin: 0;
    width: auto;
  }

  #account-mobile-drawer .social-icon ul li a {
    height: 42px;
    width: 42px;
  }

  #account-mobile-drawer .dropdown,
  #account-mobile-drawer .dropdown > a,
  #account-mobile-drawer .login-btn,
  #account-mobile-drawer .login-btn-new,
  #account-mobile-drawer .dropdown-toggle .login-btn {
    width: auto !important;
  }

  #account-mobile-drawer .login-btn,
  #account-mobile-drawer .login-btn-new,
  #account-mobile-drawer .dropdown-toggle .login-btn {
    justify-content: center;
    min-height: 46px;
    min-width: 184px;
    padding-left: 18px;
    padding-right: 18px;
  }

  #account-mobile-drawer .user-dropdown {
    border-radius: 14px;
    box-shadow: none;
    margin-top: 10px;
    min-width: 220px;
    position: static;
    width: auto;
  }

  .app-subnav-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .app-subnav .navbar-header {
    display: none;
  }

  .app-subnav ._containerfluid,
  .app-subnav .navbar-collapse {
    border-radius: 20px;
    overflow-x: visible;
    overflow-y: visible;
    scrollbar-width: none;
  }

  .app-subnav ._containerfluid::-webkit-scrollbar,
  .app-subnav .navbar-collapse::-webkit-scrollbar {
    display: none;
  }

  .app-subnav .nav.navbar-nav {
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    min-width: 0;
    padding: 8px 12px;
    position: relative;
    z-index: 3;
  }

  .app-subnav .nav.navbar-nav > li {
    align-self: flex-start;
    flex: 0 0 auto;
    position: relative;
  }

  .app-subnav .nav.navbar-nav > li > a {
    font-size: 0.84rem !important;
    padding: 10px 14px !important;
    white-space: nowrap;
  }

  .app-subnav .nav.navbar-nav > li.open {
    flex: 1 0 100%;
    max-width: 100%;
  }

  .app-subnav .nav.navbar-nav > li.open > a {
    display: inline-flex;
    margin-bottom: 8px;
  }

  .app-subnav .dropdown-menu {
    left: 0;
    margin-top: 8px;
    min-width: 0;
    position: static;
    top: auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  #header .header-shell,
  #header .header-shell-app {
    min-height: 66px;
    padding-right: 74px;
  }

  #header .header-shell .navbar-brand {
    height: 40px;
  }

  #account-mobile-drawer.header-collapse {
    max-width: none;
    padding: 82px 18px 24px;
    width: 100vw;
  }

  .app-subnav-shell {
    padding-left: 10px;
    padding-right: 10px;
  }

  .app-subnav .nav.navbar-nav {
    padding: 8px 10px;
  }
}
