.portal-main {
  min-height: calc(100vh - 220px);
}

.portal-flash-stack {
  position: relative;
  z-index: 20;
}

/* Full-bleed pages render flash cards before hero content; offset below sticky header/nav. */
.portal-flash-stack--overlay {
  padding-top: 148px;
}

@media (max-width: 991px) {
  .portal-flash-stack--overlay {
    padding-top: 122px;
  }
}

@media (max-width: 575px) {
  .portal-flash-stack--overlay {
    padding-top: 108px;
  }
}

.portal-footer {
  border-top: 1px solid rgba(25, 53, 45, 0.12);
  padding: 24px 0;
  font-size: 16px;
}

.portal-footer a {
  color: #1a4137;
}

.portal-status-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.portal-status-logo img {
  width: 112px;
  height: auto;
}

.auth-page-form {
  max-width: 620px;
}

.auth-page-form input,
.auth-page-form textarea,
.auth-page-form select {
  max-width: 100%;
  height: 62px;
}

.auth-page-form .input-group-meta label {
  display: block;
  margin-bottom: 8px;
}

.auth-page-form .nav-tabs .nav-link {
  cursor: pointer;
}

.auth-error {
  color: #8f1c1c;
  background: #fff5f5;
  border: 1px solid rgba(196, 58, 58, 0.22);
  border-radius: 8px;
  padding: 10px 12px;
}

.preloader-logo img {
  width: 140px;
}

.portal-preloader-text {
  margin-top: 16px;
  font-family: "ClashDisplay";
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #1a4137;
  font-size: 15px;
}

.portal-main-logo img {
  width: 124px;
}

.portal-mobile-logo img {
  width: 118px;
}

.portal-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0ed48f;
  box-shadow: 0 0 0 0 rgba(14, 212, 143, 0.6);
  animation: portalPulseDot 1.4s infinite ease-out;
}

@keyframes portalPulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 212, 143, 0.6);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(14, 212, 143, 0);
  }
}

.card {
  background: #fff;
  border: 1px solid rgba(25, 53, 45, 0.14);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 16px;
}

.card h1,
.card h2,
.card h3 {
  color: #19352d;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.muted {
  color: rgba(0, 0, 0, 0.55);
}

.err {
  color: #8f1c1c;
  border-color: rgba(196, 58, 58, 0.22);
  background: #fff5f5;
}

.portal-narrow .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  max-width: 460px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 14px;
  background: #fff;
  color: #000;
}

textarea {
  height: auto;
  padding: 12px 14px;
}

button {
  border: none;
}

button.primary,
.cta.primary {
  background: #1a4137;
  color: #fff;
  border: 1px solid #1a4137;
}

.cta {
  line-height: 46px;
  border-radius: 40px;
  border: 1px solid rgba(25, 53, 45, 0.35);
  padding: 0 22px;
  font-size: 16px;
  font-weight: 600;
}

.cta.ghost {
  background: #fff;
  color: #1a4137;
}

.cta.accent {
  background: #e6fd5a;
  color: #000;
  border-color: #e6fd5a;
}

.promo-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(25, 53, 45, 0.16);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 16px;
  background: #edf8eb;
}

.hero {
  border: 1px solid rgba(25, 53, 45, 0.16);
  border-radius: 22px;
  padding: 28px;
  margin-bottom: 18px;
  background: linear-gradient(155deg, #f4f8f2, #ffffff);
}

.hero-large {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
  align-items: end;
}

.hero-copy {
  display: grid;
  gap: 12px;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-logo .pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1f8c63;
}

.hero-visual {
  min-height: 240px;
  border-radius: 18px;
  border: 1px solid rgba(25, 53, 45, 0.14);
  background: linear-gradient(150deg, #dff4df, #f8fff5);
  position: relative;
}

.visual-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 14px;
  border: 1px solid rgba(25, 53, 45, 0.2);
  background: #fff;
  padding: 14px;
}

.visual-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1f8c63;
  display: inline-block;
}

.visual-lines {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.visual-lines span {
  display: block;
  height: 7px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(25, 53, 45, 0.26), rgba(25, 53, 45, 0.08));
}

.lead {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
}

.feature-stack {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 14px;
  border: 1px solid rgba(25, 53, 45, 0.14);
  border-radius: 18px;
  padding: 12px;
  background: #fff;
}

.feature-row.reverse .placeholder-img {
  order: 2;
}

.feature-row.reverse .feature-copy {
  order: 1;
}

.feature-copy {
  border: 1px solid rgba(25, 53, 45, 0.12);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.feature-copy p {
  margin: 0;
}

.placeholder-img {
  min-height: 220px;
  border-radius: 14px;
  border: 1px dashed rgba(25, 53, 45, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #f1f7ef, #f7fff4);
}

.placeholder-img.full-width {
  width: 100%;
  min-height: 320px;
  border-radius: 20px;
}

.auth-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.auth-card {
  display: grid;
  gap: 10px;
}

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

.instance-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  border: 1px solid rgba(25, 53, 45, 0.12);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
}

.instance-thumb {
  border-radius: 12px;
  border: 1px dashed rgba(25, 53, 45, 0.24);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f4f8f2;
}

.instance-main {
  display: grid;
  gap: 10px;
}

.instance-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.instance-id code {
  font-size: 14px;
}

.instance-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pill {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  background: #eef2f0;
}

.pill.ok {
  background: #d9f6e8;
  color: #1a6642;
}

.pill.live {
  background: #d8f3ff;
  color: #115a82;
}

.pill.off {
  background: #ffe8e8;
  color: #973737;
}

.instance-meta {
  display: grid;
  gap: 6px;
  font-size: 15px;
}

.instance-meta a {
  color: #1f5e59;
  word-break: break-all;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.shop-card {
  border: 1px solid rgba(25, 53, 45, 0.12);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
  display: grid;
  gap: 10px;
}

.shop-thumb {
  min-height: 160px;
}

.shop-title {
  font-size: 28px;
  margin: 0;
}

.shop-price {
  font-size: 26px;
  font-weight: 700;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
  gap: 14px;
}

.product-image {
  min-height: 280px;
}

.product-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.qty-input {
  width: 110px;
  max-width: 110px;
  margin-left: 8px;
  height: 44px;
  border-radius: 8px;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

@media (max-width: 960px) {
  .hero-large,
  .auth-shell,
  .product-hero {
    grid-template-columns: 1fr;
  }

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

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

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .placeholder-img,
  .feature-row.reverse .feature-copy {
    order: initial;
  }
}

@media (max-width: 620px) {
  .instance-card {
    grid-template-columns: 1fr;
  }

  .instance-thumb {
    min-height: 100px;
  }

  .shop-grid,
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 22px;
  }
}

.theme-main-menu .navbar .nav-link.active {
  color: #1ca161;
}

.theme-main-menu .signup-btn-one {
  border: none;
  background: transparent;
  padding: 0;
}


.splash .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.splash .pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00d084;
  box-shadow: 0 0 0 0 rgba(0, 208, 132, 0.6);
  animation: pulse 1.2s infinite ease-out;
}

body.portal-theme-dark {
  --portal-bg: #071311;
  --portal-bg-soft: #0d1d19;
  --portal-surface: #102520;
  --portal-surface-strong: #16332c;
  --portal-surface-alt: #193c33;
  --portal-border: rgba(161, 214, 191, 0.16);
  --portal-border-strong: rgba(161, 214, 191, 0.24);
  --portal-text: #edf7f2;
  --portal-muted: rgba(215, 229, 221, 0.74);
  --portal-accent: #67e0ac;
  --portal-accent-strong: #e6fd5a;
  --portal-danger: #ff9e9e;
  --portal-danger-bg: rgba(86, 25, 25, 0.88);
  --portal-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  background-color: var(--portal-bg);
  background-image:
    radial-gradient(circle at top left, rgba(26, 88, 68, 0.42), transparent 34%),
    radial-gradient(circle at top right, rgba(88, 224, 172, 0.09), transparent 24%),
    linear-gradient(180deg, #091512 0%, #071311 100%);
  background-attachment: fixed;
  color: var(--portal-text);
}

body.portal-theme-dark .main-page-wrapper,
body.portal-theme-dark .portal-main {
  background: transparent;
}

body.portal-theme-dark,
body.portal-theme-dark p,
body.portal-theme-dark li,
body.portal-theme-dark label,
body.portal-theme-dark td,
body.portal-theme-dark th,
body.portal-theme-dark .text-dark,
body.portal-theme-dark .text-lg,
body.portal-theme-dark .text-md,
body.portal-theme-dark .text-xl,
body.portal-theme-dark .serial,
body.portal-theme-dark .availability {
  color: var(--portal-text) !important;
}

body.portal-theme-dark h1,
body.portal-theme-dark h2,
body.portal-theme-dark h3,
body.portal-theme-dark h4,
body.portal-theme-dark h5,
body.portal-theme-dark h6,
body.portal-theme-dark .hero-heading,
body.portal-theme-dark .product-name,
body.portal-theme-dark .product-title {
  color: #f8fdfa;
}

body.portal-theme-dark a {
  color: #95ebc7;
}

body.portal-theme-dark a:hover {
  color: #d5ffe4;
}

body.portal-theme-dark .muted,
body.portal-theme-dark .opacity-50,
body.portal-theme-dark .portal-footer p,
body.portal-theme-dark .partner-logo-one p,
body.portal-theme-dark .product-info .rating li a,
body.portal-theme-dark .user-data-form p {
  color: var(--portal-muted) !important;
}

body.portal-theme-dark code {
  color: #cbffe3;
  background: rgba(103, 224, 172, 0.08);
  border: 1px solid rgba(103, 224, 172, 0.16);
  border-radius: 8px;
  padding: 2px 7px;
}

body.portal-theme-dark .light-bg,
body.portal-theme-dark .light-bg-deep,
body.portal-theme-dark .bg-two,
body.portal-theme-dark .cart-section.light-bg,
body.portal-theme-dark .inner-banner-two,
body.portal-theme-dark .hero-banner-two,
body.portal-theme-dark .block-feature-five.light-bg {
  background:
    linear-gradient(180deg, rgba(15, 34, 29, 0.96), rgba(10, 22, 19, 0.96)),
    radial-gradient(circle at top, rgba(103, 224, 172, 0.08), transparent 36%);
}

body.portal-theme-dark .text-feature-two,
body.portal-theme-dark .block-feature-six,
body.portal-theme-dark .fancy-banner-six {
  background:
    linear-gradient(160deg, rgba(13, 29, 25, 0.98), rgba(8, 17, 15, 0.98)),
    radial-gradient(circle at top right, rgba(230, 253, 90, 0.08), transparent 30%);
}

body.portal-theme-dark .inner-banner-one::after {
  background: rgba(5, 12, 10, 0.74);
}

body.portal-theme-dark .inner-banner-one .hero-heading,
body.portal-theme-dark .inner-banner-two .hero-heading {
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

body.portal-theme-dark .inner-banner-one .pager li,
body.portal-theme-dark .inner-banner-two .pager li,
body.portal-theme-dark .inner-banner-one .pager li a,
body.portal-theme-dark .inner-banner-two .pager li a {
  color: rgba(237, 247, 242, 0.82);
}

body.portal-theme-dark .theme-main-menu.menu-style-two .info-row,
body.portal-theme-dark .theme-main-menu.menu-style-two .inner-content,
body.portal-theme-dark .theme-main-menu.fixed .inner-content {
  background: rgba(7, 19, 17, 0.86);
  border: 1px solid var(--portal-border);
  box-shadow: var(--portal-shadow);
  backdrop-filter: blur(18px);
}

body.portal-theme-dark .theme-main-menu.menu-style-two .info-row {
  border-bottom: none;
}

body.portal-theme-dark .theme-main-menu .nav-item .nav-link,
body.portal-theme-dark .theme-main-menu.menu-style-two .greetings,
body.portal-theme-dark .theme-main-menu.menu-style-two .contact-info li a,
body.portal-theme-dark .theme-main-menu .login-btn-one a,
body.portal-theme-dark .theme-main-menu .signup-btn-one span {
  color: var(--portal-text);
}

body.portal-theme-dark .theme-main-menu .navbar .nav-link.active,
body.portal-theme-dark .theme-main-menu .nav-item:hover .nav-link,
body.portal-theme-dark .theme-main-menu .login-btn-one a:hover,
body.portal-theme-dark .theme-main-menu.menu-style-two .contact-info li a:hover {
  color: var(--portal-accent);
}

body.portal-theme-dark .theme-main-menu .signup-btn-one .icon,
body.portal-theme-dark .theme-main-menu .navbar-toggler,
body.portal-theme-dark .scroll-top {
  background: linear-gradient(135deg, #1e5f4d, #14362e);
  color: #fff;
}

body.portal-theme-dark .theme-main-menu .navbar-toggler::before,
body.portal-theme-dark .theme-main-menu .navbar-toggler::after,
body.portal-theme-dark .theme-main-menu .navbar-toggler span {
  background: #f8fdfa;
}

body.portal-theme-dark .theme-main-menu .navbar-collapse {
  background: rgba(9, 23, 20, 0.96);
  border: 1px solid var(--portal-border);
  border-radius: 22px;
}

body.portal-theme-dark .portal-footer {
  border-top-color: var(--portal-border);
  background: rgba(7, 19, 17, 0.8);
}

body.portal-theme-dark .portal-footer a {
  color: var(--portal-text);
}

body.portal-theme-dark .card,
body.portal-theme-dark .feature-row,
body.portal-theme-dark .feature-copy,
body.portal-theme-dark .instance-card,
body.portal-theme-dark .shop-card,
body.portal-theme-dark .product-img-tab-content,
body.portal-theme-dark .product-review-tab .tab-content,
body.portal-theme-dark .user-data-form .form-wrapper,
body.portal-theme-dark .cart-list-form .table-responsive,
body.portal-theme-dark .cart-total-section,
body.portal-theme-dark .coupon-form,
body.portal-theme-dark .card-style-five,
body.portal-theme-dark .card-style-six,
body.portal-theme-dark .card-style-seven,
body.portal-theme-dark .card-style-eight,
body.portal-theme-dark .card-style-sixteen,
body.portal-theme-dark .product-block-one,
body.portal-theme-dark .product-block-one .img-holder,
body.portal-theme-dark .product-info,
body.portal-theme-dark .product-review-tab,
body.portal-theme-dark .cart-total-table,
body.portal-theme-dark .fancybox,
body.portal-theme-dark .hero,
body.portal-theme-dark .visual-card {
  background: linear-gradient(180deg, rgba(17, 38, 33, 0.95), rgba(11, 25, 22, 0.98));
  border-color: var(--portal-border) !important;
  box-shadow: var(--portal-shadow);
}

body.portal-theme-dark .placeholder-img,
body.portal-theme-dark .instance-thumb,
body.portal-theme-dark .hero-visual {
  background: linear-gradient(135deg, rgba(24, 57, 49, 0.98), rgba(12, 28, 24, 0.98));
  border-color: var(--portal-border-strong) !important;
  color: var(--portal-muted);
}

body.portal-theme-dark .pill,
body.portal-theme-dark .stock-tag,
body.portal-theme-dark .theme-select-menu,
body.portal-theme-dark .product-img-tab .nav-link {
  background: rgba(17, 38, 33, 0.98);
  border: 1px solid var(--portal-border);
  color: var(--portal-text);
}

body.portal-theme-dark .pill.ok {
  background: rgba(31, 112, 76, 0.34);
  color: #a8f0ca;
}

body.portal-theme-dark .pill.live {
  background: rgba(23, 90, 128, 0.3);
  color: #a8dfff;
}

body.portal-theme-dark .pill.off {
  background: rgba(133, 49, 49, 0.28);
  color: #ffc0c0;
}

body.portal-theme-dark input,
body.portal-theme-dark textarea,
body.portal-theme-dark select,
body.portal-theme-dark .user-data-form .form-wrapper .input-group-meta input,
body.portal-theme-dark .coupon-form input,
body.portal-theme-dark .theme-select-menu,
body.portal-theme-dark .product-value {
  background: rgba(6, 16, 14, 0.92);
  border-color: rgba(161, 214, 191, 0.18);
  color: var(--portal-text);
}

body.portal-theme-dark input::placeholder,
body.portal-theme-dark textarea::placeholder {
  color: rgba(215, 229, 221, 0.42);
}

body.portal-theme-dark input:focus,
body.portal-theme-dark textarea:focus,
body.portal-theme-dark select:focus,
body.portal-theme-dark .theme-select-menu:focus,
body.portal-theme-dark .user-data-form .form-wrapper .input-group-meta input:focus {
  border-color: rgba(103, 224, 172, 0.54);
  box-shadow: 0 0 0 4px rgba(103, 224, 172, 0.12);
}

body.portal-theme-dark .btn-four,
body.portal-theme-dark .btn-six,
body.portal-theme-dark .btn-ten,
body.portal-theme-dark .btn-eleven,
body.portal-theme-dark .btn-seventeen,
body.portal-theme-dark .product-block-one .img-holder .cart-button,
body.portal-theme-dark button.primary,
body.portal-theme-dark .cta.primary {
  background: linear-gradient(135deg, #67e0ac, #2d9d74);
  border-color: transparent;
  color: #04100d;
}

body.portal-theme-dark .btn-six,
body.portal-theme-dark .btn-eleven,
body.portal-theme-dark .cta.ghost {
  background: rgba(17, 38, 33, 0.92);
  border: 1px solid var(--portal-border);
  color: var(--portal-text);
}

body.portal-theme-dark .btn-four:hover,
body.portal-theme-dark .btn-ten:hover,
body.portal-theme-dark .product-block-one .img-holder .cart-button:hover,
body.portal-theme-dark .cta.primary:hover {
  background: linear-gradient(135deg, #7cf0bd, #3db085);
  color: #04100d;
}

body.portal-theme-dark .btn-six:hover,
body.portal-theme-dark .btn-eleven:hover,
body.portal-theme-dark .btn-seventeen:hover,
body.portal-theme-dark .cta.ghost:hover {
  background: rgba(24, 57, 49, 0.98);
  color: #f8fdfa;
}

body.portal-theme-dark .product-block-one .img-holder .cart-icon,
body.portal-theme-dark .arrow-btn,
body.portal-theme-dark .section-btn .icon {
  background: rgba(7, 19, 17, 0.88);
  border: 1px solid var(--portal-border);
}

body.portal-theme-dark .product-block-one .price,
body.portal-theme-dark .shop-price,
body.portal-theme-dark .price span,
body.portal-theme-dark .product-info .price,
body.portal-theme-dark .main-count {
  color: var(--portal-accent-strong) !important;
}

body.portal-theme-dark .product-block-one .rating li,
body.portal-theme-dark .rating li {
  color: #ffd569;
}

body.portal-theme-dark .user-data-form .nav .nav-item .nav-link,
body.portal-theme-dark .product-review-tab .nav-tabs .nav-link {
  background: transparent;
  color: var(--portal-muted);
  border-color: transparent transparent var(--portal-border) transparent;
}

body.portal-theme-dark .user-data-form .nav .nav-item .nav-link.active,
body.portal-theme-dark .product-review-tab .nav-tabs .nav-link.active,
body.portal-theme-dark .product-img-tab .nav-link.active {
  color: var(--portal-text);
  background: rgba(17, 38, 33, 0.96);
  border-color: var(--portal-border);
}

body.portal-theme-dark table,
body.portal-theme-dark .table {
  color: var(--portal-text);
}

body.portal-theme-dark table thead,
body.portal-theme-dark .table thead {
  background: rgba(17, 38, 33, 0.98);
}

body.portal-theme-dark table th,
body.portal-theme-dark table td,
body.portal-theme-dark .table th,
body.portal-theme-dark .table td,
body.portal-theme-dark .cart-total-table th,
body.portal-theme-dark .cart-total-table td {
  border-color: var(--portal-border);
}

body.portal-theme-dark .remove-product {
  color: #ffc0c0;
  background: rgba(86, 25, 25, 0.78);
  border-radius: 999px;
}

body.portal-theme-dark .auth-error,
body.portal-theme-dark .err {
  color: var(--portal-danger);
  border-color: rgba(255, 158, 158, 0.2);
  background: var(--portal-danger-bg);
}

body.portal-theme-dark .promo-banner {
  background: rgba(18, 43, 36, 0.96);
  border-color: var(--portal-border);
}

body.portal-theme-dark .visual-lines span {
  background: linear-gradient(90deg, rgba(103, 224, 172, 0.34), rgba(103, 224, 172, 0.08));
}

body.portal-theme-dark .splash .logo,
body.portal-theme-dark .portal-preloader-text {
  color: var(--portal-text);
}

@media (max-width: 991px) {
  body.portal-theme-dark .theme-main-menu .navbar-collapse {
    margin-top: 16px;
    padding: 18px 20px;
  }
}

@media (max-width: 767px) {
  body.portal-theme-dark .inner-banner-one .hero-heading {
    background: rgba(10, 24, 21, 0.86);
    border: 1px solid var(--portal-border);
  }
}
