.red-standard-theme--red-sphere {
  --red-shell-paper: #fffdf7;
  --red-shell-ink: #171629;
  --red-shell-accent: #6048e8;
  --red-shell-rule: rgba(23, 22, 41, 0.24);
}

.red-standard-theme--red-sphere .signal-header,
.red-standard-theme--red-sphere .services-header,
.red-standard-theme--red-sphere .choice-header,
.red-standard-theme--red-sphere .radisson-header,
.red-standard-theme--red-sphere .redcms-header {
  display: none !important;
}

.red-sphere-shell {
  position: relative;
  z-index: 80;
  width: 100%;
  color: var(--red-shell-ink);
  border-bottom: 1px solid var(--red-shell-ink);
  background: var(--red-shell-paper);
  font-family: var(--font-space-grotesk), "Avenir Next", sans-serif;
}

.red-sphere-shell--signal {
  --red-shell-paper: #f5f0e6;
  --red-shell-accent: #ef3f50;
}

.red-sphere-shell--services {
  --red-shell-paper: #ffcf3e;
  --red-shell-accent: #6048e8;
}

.red-sphere-shell--choice {
  --red-shell-paper: #f7efe4;
  --red-shell-accent: #ee617d;
}

.red-sphere-shell--radisson {
  --red-shell-paper: #fffdf8;
  --red-shell-accent: #6048e8;
}

.red-sphere-shell--redcms {
  --red-shell-paper: #e9f0df;
  --red-shell-ink: #172132;
  --red-shell-accent: #315bf5;
}

.red-sphere-shell__inner {
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) auto minmax(13rem, 1fr);
  align-items: center;
  min-height: 5.5rem;
  padding-inline: clamp(1.25rem, 4vw, 4.5rem);
}

.red-sphere-shell__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  width: max-content;
}

.red-sphere-shell__mark {
  position: relative;
  display: block;
  flex: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: #42c9d4;
}

.red-sphere-shell__mark::before,
.red-sphere-shell__mark::after {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 21%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateY(-50%);
}

.red-sphere-shell__mark::before {
  right: 86.5%;
}

.red-sphere-shell__mark::after {
  left: 86.5%;
}

.red-sphere-shell__mark i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64%;
  aspect-ratio: 1;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: #ee617d;
  transform: translate(-50%, -50%);
}

.red-sphere-shell__mark i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid #fffdf7;
  border-radius: 50%;
  background: var(--red-shell-accent);
  transform: translate(-50%, -50%);
}

.red-sphere-shell__type {
  display: grid;
  gap: 0.1rem;
  line-height: 1;
}

.red-sphere-shell__type strong {
  font-family: var(--font-newsreader), Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: bolder;
  letter-spacing: 0;
}

.red-sphere-shell__type small {
  font-size: 0.62rem;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.68;
}

.red-sphere-shell__label {
  justify-self: center;
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.red-sphere-shell__navigation {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: clamp(1.1rem, 2vw, 1.8rem);
  font-size: 0.92rem;
  font-weight: 760;
}

.red-sphere-shell__link,
.red-sphere-shell__trigger {
  min-height: 2.8rem;
  padding: 0.55rem 0;
  border-bottom: 2px solid transparent;
}

.red-sphere-shell__link:hover,
.red-sphere-shell__link:focus-visible,
.red-sphere-shell__link.is-active,
.red-sphere-shell__trigger:hover,
.red-sphere-shell__trigger:focus-visible,
.red-sphere-shell__trigger.is-active {
  border-color: var(--red-shell-accent);
}

.red-sphere-shell__group {
  position: relative;
}

.red-sphere-shell__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  cursor: pointer;
  background: transparent;
  font: inherit;
}

.red-sphere-shell__trigger > span {
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.red-sphere-shell__trigger[aria-expanded="true"] > span {
  transform: rotate(45deg);
}

.red-sphere-shell__submenu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  z-index: 120;
  width: min(31rem, calc(100vw - 2rem));
  border: 1px solid var(--red-shell-ink);
  background: var(--red-shell-paper);
  box-shadow: 8px 8px 0 var(--red-shell-accent);
}

.red-sphere-shell__submenu-heading {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--red-shell-rule);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.red-sphere-shell__submenu-list {
  display: grid;
}

.red-sphere-shell__case-link {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.75rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--red-shell-rule);
  transition: background-color 140ms ease, color 140ms ease;
}

.red-sphere-shell__case-link > span {
  font-family: var(--font-newsreader), Georgia, serif;
  font-size: 1.3rem;
}

.red-sphere-shell__case-link > strong {
  font-size: 1rem;
}

.red-sphere-shell__case-link > i {
  font-style: normal;
}

.red-sphere-shell__case-link:hover,
.red-sphere-shell__case-link:focus-visible,
.red-sphere-shell__case-link.is-active {
  color: #fffdf7;
  background: var(--red-shell-ink);
}

.red-sphere-shell__overview {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  font-size: 0.76rem;
  font-weight: 760;
}

.red-sphere-shell__mobile {
  display: none;
  justify-self: end;
}

.red-sphere-shell__mobile-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.75rem;
  color: inherit;
  cursor: pointer;
  background: transparent;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 760;
}

.red-sphere-shell__mobile-trigger > span,
.red-sphere-shell__mobile-trigger > span::before,
.red-sphere-shell__mobile-trigger > span::after {
  display: block;
  width: 1.1rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.red-sphere-shell__mobile-trigger > span {
  position: relative;
}

.red-sphere-shell__mobile-trigger > span::before {
  position: absolute;
  top: -0.32rem;
}

.red-sphere-shell__mobile-trigger > span::after {
  position: absolute;
  top: 0.32rem;
}

.red-sphere-shell__mobile-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 120;
  border-top: 1px solid var(--red-shell-rule);
  border-bottom: 1px solid var(--red-shell-ink);
  background: var(--red-shell-paper);
  box-shadow: 0 8px 0 var(--red-shell-accent);
}

.red-sphere-shell__mobile-panel nav {
  display: grid;
  padding: 0.8rem clamp(1.25rem, 4vw, 4.5rem) 1.1rem;
}

.red-sphere-shell__mobile-link {
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--red-shell-rule);
  font-size: 1rem;
  font-weight: 740;
}

.red-sphere-shell__mobile-link.is-active {
  color: var(--red-shell-accent);
}

.red-sphere-shell__mobile-link--child {
  padding-left: 1.15rem;
}

.red-sphere-shell__mobile-label {
  padding: 1.1rem 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

@media (max-width: 1100px) {
  .red-sphere-shell__inner {
    grid-template-columns: 1fr auto;
  }

  .red-sphere-shell__label {
    display: none;
  }

  .red-sphere-shell__navigation {
    display: none;
  }

  .red-sphere-shell__mobile {
    display: block;
  }
}

@media (max-width: 540px) {
  .red-sphere-shell__inner {
    min-height: 4.75rem;
  }

  .red-sphere-shell__mark {
    width: 2.45rem;
    height: 2.45rem;
  }

  .red-sphere-shell__type strong {
    font-size: 1.42rem;
  }

  .red-sphere-shell__type small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .red-sphere-shell__trigger > span,
  .red-sphere-shell__case-link {
    transition: none;
  }
}
