/* ==========================================================================
   CoolBet Canada — Stylesheet
   Palette extracted from the original site CSS:
     body bg:          #013469 (deep navy)
     header top:       #003266
     header main/btm:  #043d7b
     site content:     #00325b
     footer bottom:    #033c79
     accent / link:    #f70 / #f2a737 (warm orange)
     CTA orange:       #fa5500 (hover #fc9448)
     CTA gradient:     #e06411 -> #aa2e2c
     Headings:         #fff, uppercase, 700 weight
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.3px;
  color: #ffffff;
  background-color: #013469;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #f2a737;
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: #ff7700;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 0.7em;
  line-height: 1.25;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  text-align: center;
  margin: 0 0 0.5em;
  letter-spacing: 0.4px;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-top: 2.5rem;
  position: relative;
  padding-bottom: 0.45em;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: #ff7700;
  border-radius: 2px;
}

h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  color: #ffb763;
  letter-spacing: 0.4px;
}

p {
  margin: 0 0 1.1rem;
}

main p,
main li {
  color: #e6edf5;
}

main strong {
  color: #ffffff;
  font-weight: 700;
}

main em {
  color: #ffd089;
  font-style: italic;
}

.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

main
  ul:not(.faq__list):not(.sports-grid):not(.toc__list):not(.footer-social):not(.primary-nav__list):not(
    .header-lang__list
  ) {
  margin: 0 0 1.5rem;
  padding-left: 0;
}

main
  ul:not(.faq__list):not(.sports-grid):not(.toc__list):not(.footer-social):not(.primary-nav__list):not(
    .header-lang__list
  )
  li,
main ol li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.6rem;
  list-style: none;
}

main
  ul:not(.faq__list):not(.sports-grid):not(.toc__list):not(.footer-social):not(.primary-nav__list):not(
    .header-lang__list
  )
  li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.85rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7700;
}

main ol {
  counter-reset: step;
  margin: 0 0 1.5rem;
  padding-left: 0;
}

main ol li {
  counter-increment: step;
}

main ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: #ff7700;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.7rem;
  border-radius: 28px;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease,
    background-color 0.15s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
  color: #fff;
}

.btn--register {
  background: #fa5500;
  color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
}

.btn--register:hover {
  background: #fc9448;
}

.btn--login {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--login:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.btn--cta {
  background: linear-gradient(180deg, #e06411 45%, #aa2e2c 100%);
  color: #fff;
  font-size: 1rem;
  padding: 0.95rem 2.4rem;
  border-radius: 30px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
  font-weight: 700;
}

.btn--cta:hover {
  background: linear-gradient(180deg, #dd3333 45%, #dd9933 100%);
  color: #fff;
}

.btn--inline {
  background: #fa5500;
  color: #fff;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 28px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
}

.btn--inline:hover {
  background: #fc9448;
}

.cta-block {
  text-align: center;
  margin: 2.5rem 0;
}

/* Header
   -------------------------------------------------------------------------- */
.site-header {
  background: #043d7b;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  height: 70px;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  max-height: 38px;
  width: auto;
}

.primary-nav {
  flex: 1;
}

.primary-nav__list {
  display: flex;
  gap: 0.2rem;
  justify-content: center;
}

.primary-nav__list a {
  display: block;
  padding: 0.55rem 1rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.primary-nav__list a:hover {
  color: #ffffff;
  background: #1e4b75;
}

.primary-nav__list a[aria-current="page"] {
  color: #ffffff;
  background: #1e4b75;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.header-lang-wrap {
  position: relative;
}

.header-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.header-lang:hover,
.header-lang[aria-expanded="true"] {
  border-color: #f2a737;
  background: rgba(255, 255, 255, 0.1);
}

.header-lang img {
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 1px;
}

.header-lang__list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: #043d7b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 0.4rem 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 200;
}

.header-lang-wrap:hover .header-lang__list,
.header-lang-wrap.is-open .header-lang__list {
  display: block;
}

.header-lang__list a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: background 0.15s ease;
}

.header-lang__list a:hover {
  background: #1e4b75;
}

.header-lang__list a[aria-current="page"] {
  background: #1e4b75;
  color: #ffd089;
}

.header-lang__list img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease;
}

@media (max-width: 991px) {
  .site-header__inner {
    height: 64px;
  }

  .site-logo img {
    max-height: 32px;
  }

  .primary-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: #043d7b;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    flex: none;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav__list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .primary-nav__list a {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .btn--register,
  .header-actions .btn--login {
    padding: 0.5rem 0.9rem;
    font-size: 0.78rem;
  }

  .header-lang {
    padding: 0.45rem 0.55rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 575px) {
  .header-actions .btn--login {
    display: none;
  }
}

/* Welcome / page-title section
   -------------------------------------------------------------------------- */
.welcome {
  padding: 3rem 0 2rem;
  background: #003266;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.welcome p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #d9e3ef;
}

/* Promo banner
   -------------------------------------------------------------------------- */
.promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  background: #043d7b;
  border: 1px solid #1e4b75;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(250, 85, 0, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.promo-banner__image {
  max-width: 200px;
  flex-shrink: 0;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

.promo-banner__content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.promo-banner__label {
  display: inline-block;
  background: #fa5500;
  color: #fff;
  padding: 0.28rem 0.8rem;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}

.promo-banner__value {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin: 0 0 1.1rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .promo-banner__image {
    max-width: 140px;
  }
}

/* Quick categories
   -------------------------------------------------------------------------- */
.quick-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 2rem 0;
}

.quick-categories__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  height: 65px;
  background: #043d7b;
  border: 1px solid #1e4b75;
  border-radius: 30px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.quick-categories__item:hover {
  transform: translateY(-2px);
  border-color: #f2a737;
  background: #1e4b75;
  color: #fff;
}

.quick-categories__item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .quick-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .quick-categories__item {
    font-size: 0.78rem;
    padding: 0 0.75rem;
  }
}

/* Game grid
   -------------------------------------------------------------------------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.game-grid a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #043d7b;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  position: relative;
}

.game-grid a:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: #fa5500;
  box-shadow: 0 8px 24px rgba(250, 85, 0, 0.3);
}

.game-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Sports grid
   -------------------------------------------------------------------------- */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  margin: 1rem 0 2.5rem;
}

.sports-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 0.5rem;
  background: #043d7b;
  border: 1px solid #1e4b75;
  border-radius: 6px;
  text-align: center;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
  list-style: none;
}

.sports-grid li::before {
  display: none;
}

.sports-grid li:hover {
  transform: translateY(-2px);
  border-color: #fa5500;
  background: #1e4b75;
}

.sports-grid img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.sports-grid span {
  font-weight: 700;
  font-size: 0.78rem;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .sports-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .sports-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sports-grid img {
    width: 40px;
    height: 40px;
  }

  .sports-grid span {
    font-size: 0.72rem;
  }
}

/* Article body
   -------------------------------------------------------------------------- */
.article {
  max-width: 880px;
  margin: 3rem auto 4rem;
  background: #00325b;
  padding: 2.5rem 2rem;
  border-radius: 6px;
  border: 1px solid #1e4b75;
}

.article > section {
  clear: both;
  margin-bottom: 1.5rem;
}

.article h2 {
  scroll-margin-top: 90px;
}

.article h3 {
  scroll-margin-top: 90px;
}

.hero-gallery {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0;
}

.hero-gallery img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #1e4b75;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.float-right,
img.float-right {
  float: right;
  width: 38%;
  max-width: 449px;
  margin: 0.4rem 0 1rem 1.5rem;
  border-radius: 6px;
  border: 1px solid #1e4b75;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.float-left,
img.float-left {
  float: left;
  width: 38%;
  max-width: 449px;
  margin: 0.4rem 1.5rem 1rem 0;
  border-radius: 6px;
  border: 1px solid #1e4b75;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .float-right,
  .float-left,
  img.float-right,
  img.float-left {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
  }
}

/* Tables — original navy alternating pattern */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0 2rem;
  font-size: 0.95rem;
  background: #002a56;
  border-radius: 6px;
  overflow: hidden;
}

table thead th {
  background: #1e4b75;
  color: #ffffff;
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

table tbody td {
  background: rgb(0 50 102);
  color: #e6edf5;
  padding: 0.85rem 1rem;
  vertical-align: top;
}

table tbody tr:nth-child(2n) td {
  background: #002a56;
}

@media (max-width: 600px) {
  table {
    font-size: 0.85rem;
  }

  table th,
  table td {
    padding: 0.6rem 0.7rem;
  }
}

/* Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #033c79;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  max-height: 38px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand__text {
  color: #c4d2e3;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social li {
  padding: 0;
  list-style: none;
}

.footer-social li::before {
  display: none;
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #c4d2e3;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.footer-social a:hover {
  color: #ffffff;
  border-color: #f2a737;
  background: rgba(250, 85, 0, 0.18);
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-heading::after {
  display: none;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav__label {
  color: #c4d2e3;
  font-size: 0.85rem;
  margin: 0;
}

.footer-nav a {
  color: #ffffff;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: #f2a737;
}

.footer-logos,
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logos img {
  max-height: 50px;
  max-width: 90px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.footer-logos img:hover {
  opacity: 1;
}

.footer-payments {
  gap: 0.85rem;
}

.footer-payments img {
  max-height: 19px;
  max-width: 75px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.copyright {
  color: #c4d2e3;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0;
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-partners img {
  max-height: 28px;
  max-width: 90px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}

.footer-partners img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Scroll-to-top
   -------------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fa5500;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(250, 85, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-2px);
  background: #fc9448;
}


/* =============================================================================
   MOBILE FIXES — burger right-aligned, flag dropdown on mobile,
   close cue (X), uniform CTA size
   ========================================================================= */
@media (max-width: 991px) {
  .menu-toggle {
    margin-left: auto;
    order: 100;
    position: relative;
    z-index: 1101;
  }
  .menu-toggle span {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .primary-nav {
    z-index: 1100;
  }
  /* Show language dropdown on mobile too */
  .header-lang-wrap,
  .header-lang {
    display: inline-flex !important;
  }
  .header-lang-wrap {
    margin-left: 0;
    order: 99;
    position: relative;
    z-index: 1102;
  }
  .header-lang {
    padding: 6px 8px;
    align-items: center;
  }
  .header-lang__list {
    right: 0;
    left: auto;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  /* Equal-sized header CTAs */
  .header-actions .btn--register,
  .header-actions .btn--login {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    line-height: 1.2;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .header-actions .btn--login {
    display: none;
  }
}
