/* Codere MX — скин кросс-шаблона. Палитра со скриншотов codere.mx (21.09.2026): фон #262a30, панели #222529,
   карточки #363f47, лаймовый #89be3a (Acceder, заголовки), синий Regístrate, Roboto. */
:root {
  --bg: #262a30;
  --panel: #222529;
  --card: #363f47;
  --card-2: #3f4952;
  --line: rgba(255, 255, 255, .08);
  --txt: #fff;
  --muted: #b8bec6;
  --dim: #8a9099;
  --lime: #89be3a;
  --lime-h: #9bd44a;
  --lime-d: #79a834;
  --blue: #2b6ff2;
  --blue-h: #3d7ff7;
  --red: #e5484d;
  --gold: #f2c14e;
  --r: 12px;
  --rs: 8px;
  --font: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box
}

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.55;
  font-size: 15px
}

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

a {
  color: inherit;
  text-decoration: none
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
  font-weight: 700
}

p {
  margin: 0 0 .9em
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0)
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 999px;
  padding: 11px 26px;
  border: 0;
  cursor: pointer;
  transition: .18s;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.2
}

.btn--lime {
  background: var(--lime);
  color: #fff
}

.btn--lime:hover {
  background: var(--lime-h)
}

.btn--blue {
  background: var(--blue);
  color: #fff
}

.btn--blue:hover {
  background: var(--blue-h)
}

.btn--dark {
  background: var(--card);
  color: #fff
}

.btn--dark:hover {
  background: var(--card-2)
}

.btn--lg {
  padding: 16px 40px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase
}

.btn--lg svg {
  width: 22px;
  height: 22px
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--card);
  font-size: 13px;
  font-weight: 500;
  color: #fff
}

.chip.on {
  background: var(--lime)
}

/* header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--panel);
  height: 76px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line)
}

.topbar .wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none
}

.brand b {
  font-size: 32px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -.5px;
  line-height: 1
}

.brand small {
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--muted);
  border-left: 1px solid var(--dim);
  padding-left: 12px;
  line-height: 1.3;
  font-weight: 500
}

.tabs {
  display: flex;
  gap: 13px;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1
}

.tabs::-webkit-scrollbar {
  display: none
}

.tabs a {
  color: #fff;
  padding: 4px 0;
  border-bottom: 2px solid transparent
}

.tabs a:hover {
  color: var(--lime-h)
}

.tabs a.active {
  border-color: var(--lime)
}

.hacts {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none
}

.hacts .chev {
  width: 34px;
  height: 34px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.hacts .chev svg {
  width: 22px;
  height: 22px
}

.hacts .btn {
  padding: 10px 22px;
  font-size: 16px
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--card);
  border-radius: 8px;
  color: #fff;
  align-items: center;
  justify-content: center
}

.burger svg {
  width: 24px;
  height: 24px
}

.mobile-menu {
  display: none;
  background: var(--panel);
  padding: 8px 24px 16px;
  border-bottom: 1px solid var(--line)
}

.mobile-menu.open {
  display: block
}

.mobile-menu a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  text-transform: uppercase
}

.mobile-menu .btn {
  margin-top: 12px;
  width: 100%
}

main {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-bottom: 40px;
  min-width: 0
}

main>.wrap {
  width: 100%;
  min-width: 0
}

.mrail,
.rail,
.tscroll {
  min-width: 0;
  max-width: 100%
}

/* hero slider (brand banners) */
.hero {
  position: relative;
  background: #000
}

.hero .slide {
  position: relative;
  height: 560px;
  max-height: 56vw;
  overflow: hidden
}

.hero .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.hero .slide img.m {
  display: none
}

.hero .cta {
  position: absolute;
  left: 18%;
  bottom: 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center
}

.hero .cta small {
  font-size: 12px;
  color: #e6e6e6;
  line-height: 1.4;
  max-width: 340px
}

.hero .dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px
}

.hero .dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35)
}

.hero .dots i.on {
  background: var(--lime)
}

.hero .shadow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg))
}

.hero .thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: -20px;
  position: relative;
  z-index: 2;
  padding: 0 24px
}

.hero .thumbs a {
  width: 170px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: .8
}

.hero .thumbs a.on,
.hero .thumbs a:hover {
  border-color: var(--lime);
  opacity: 1
}

/* section title */
.stitle {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 18px
}

.stitle.left {
  text-align: left
}

.shead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px
}

.shead h2 {
  font-size: 24px;
  text-transform: uppercase
}

.shead .tools {
  display: flex;
  gap: 8px;
  align-items: center
}

.rnav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: var(--card);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.rnav:hover {
  background: var(--card-2)
}

.rnav svg {
  width: 18px;
  height: 18px
}

.more {
  color: var(--lime);
  font-weight: 500;
  font-size: 14px
}

/* Liga MX cards (brand) */
.sportbox {
  background: var(--panel);
  border-radius: 14px;
  padding: 22px 18px 18px
}

.mrail {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  padding-bottom: 4px
}

.mrail::-webkit-scrollbar {
  display: none
}

.mgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 8px
}

.mcard {
  flex: none;
  width: 326px;
  background: var(--card);
  border-radius: 10px;
  padding: 8px;
  scroll-snap-align: start
}

.mgrid .mcard {
  width: auto
}

.mcard .mh {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 2px 4px 8px
}

.mcard .mh img {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: -2px
}

.mcard .mh span {
  font-weight: 300
}

.mcard .tm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px 8px;
  font-size: 15px
}

.mcard .tm span {
  display: flex;
  align-items: center;
  gap: 8px
}

.mcard .tm img {
  width: 24px;
  height: 24px;
  object-fit: contain
}

.mcard .tm span:last-child {
  flex-direction: row-reverse;
  text-align: right
}

.mcard .odds {
  display: flex;
  gap: 6px
}

.mcard .odds a {
  flex: 1;
  background: var(--bg);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  transition: .15s
}

.mcard .odds a b {
  display: block;
  font-weight: 700
}

.mcard .odds a:hover {
  background: var(--lime)
}

/* best games (brand: 4 square tiles) */
.bestbox {
  background: var(--panel);
  border-radius: 14px;
  padding: 22px;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  width: 100%
}

.best {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 8px
}

.tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--card);
  cursor: pointer
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s
}

.tile:hover img {
  transform: scale(1.05)
}

.tile .nm {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  background: linear-gradient(rgba(0, 0, 0, .75), transparent);
  opacity: 0;
  transition: .2s
}

.tile .ov {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .2s;
  background: rgba(0, 0, 0, .35)
}

.tile .ov i {
  width: 64px;
  height: 64px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.tile .ov i svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 3px
}

.tile:hover .nm,
.tile:hover .ov {
  opacity: 1
}

.tile .tg {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--lime);
  z-index: 2
}

.tg--live {
  background: var(--red) !important
}

.tg--live::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  margin-right: 5px;
  animation: bl 1.2s infinite
}

@keyframes bl {
  50% {
    opacity: .3
  }
}

.tile .prov {
  position: absolute;
  left: 8px;
  bottom: 8px;
  font-size: 10px;
  font-weight: 500;
  background: rgba(0, 0, 0, .6);
  padding: 3px 7px;
  border-radius: 4px;
  opacity: 0;
  transition: .2s
}

.tile:hover .prov {
  opacity: 1
}

.rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 2px 10px;
  scrollbar-width: none
}

.rail::-webkit-scrollbar {
  display: none
}

.rail .tile {
  flex: none;
  width: calc((100% - 70px)/6);
  min-width: 150px;
  scroll-snap-align: start
}

.ggrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px
}

.cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px
}

.provs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.provs span {
  padding: 9px 16px;
  border-radius: 8px;
  background: var(--panel);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted)
}

/* SEO 3 columns (brand) */
.seo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #e8e8e8
}

.seo h2,
.seo h3 {
  color: var(--lime);
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 500
}

.seo h3 {
  font-size: 30px;
  margin-top: 22px
}

.seo a {
  color: var(--lime);
  text-decoration: underline
}

.seo ul {
  padding-left: 20px
}

.seo .links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px
}

.seo .links a {
  text-decoration: underline
}

/* generic */
.card {
  background: var(--panel);
  border-radius: var(--r);
  padding: 20px 22px
}

.card--raise {
  background: var(--card)
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: s
}

.step {
  background: var(--panel);
  border-radius: var(--r);
  padding: 22px
}

.step::before {
  counter-increment: s;
  content: counter(s);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px
}

.step b {
  display: block;
  font-size: 17px;
  margin-bottom: 6px
}

.step p {
  color: var(--muted);
  margin: 0;
  font-size: 14px
}

.promo {
  background: var(--panel);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.promo .art {
  aspect-ratio: 1800/600;
  background: var(--card);
  overflow: hidden
}

.promo .art img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.promo .body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1
}

.promo .k {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--lime)
}

.promo h3 {
  font-size: 22px
}

.promo p {
  color: var(--muted);
  font-size: 14px;
  margin: 0
}

.promo ul {
  margin: 4px 0 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--muted)
}

.promo .btn {
  align-self: flex-start;
  margin-top: auto
}

.club {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.club div {
  background: var(--panel);
  border-radius: var(--r);
  padding: 20px 16px;
  text-align: center;
  border-top: 4px solid var(--lime)
}

.club div:nth-child(2) {
  border-color: var(--gold)
}

.club div:nth-child(3) {
  border-color: #c9d1d9
}

.club div:nth-child(4) {
  border-color: #000
}

.club b {
  display: block;
  font-size: 22px;
  margin-bottom: 6px
}

.club small {
  color: var(--muted);
  font-size: 13px
}

.stat {
  background: var(--panel);
  border-radius: var(--r);
  padding: 18px;
  text-align: center
}

.stat b {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--lime)
}

.stat small {
  color: var(--muted);
  font-size: 13px
}

.article {
  max-width: 1020px;
  color: #e2e2e2;
  font-size: 15px
}

.article h2 {
  font-size: 26px;
  margin: 26px 0 10px;
  color: var(--lime);
  font-weight: 500
}

.article h3 {
  font-size: 19px;
  margin: 18px 0 8px
}

.article ul {
  padding-left: 20px
}

.article a {
  color: var(--lime);
  text-decoration: underline
}

.faq details {
  background: var(--panel);
  border-radius: var(--rs);
  padding: 0 18px;
  margin-bottom: 8px
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
  padding: 14px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px
}

.faq summary::after {
  content: "+";
  font-size: 20px;
  color: var(--lime)
}

.faq details[open] summary::after {
  content: "–"
}

.faq p {
  color: var(--muted);
  padding-bottom: 14px;
  margin: 0
}

.cta-band {
  background: linear-gradient(90deg, #2f4d16, #89be3a);
  border-radius: var(--r);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.cta-band h2 {
  font-size: 26px;
  text-transform: uppercase
}

.cta-band p {
  margin: 4px 0 0;
  color: #eef7e2
}

.note {
  font-size: 12px;
  color: var(--dim);
  margin-top: 10px
}

.page-head {
  text-align: center;
  padding: 28px 0 0
}

.page-head h1 {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 8px
}

.page-head p {
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto
}

.tscroll {
  overflow-x: auto
}

.ptable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px
}

.ptable th,
.ptable td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left
}

.ptable th {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.tables {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px
}

.table {
  background: var(--panel);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer
}

.table .img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative
}

.table img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.table .lv {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px
}

.table .lv::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  margin-right: 5px;
  animation: bl 1.2s infinite
}

.table .body {
  padding: 10px 12px 12px
}

.table b {
  display: block;
  font-size: 14px
}

.table small {
  display: block;
  color: var(--muted);
  font-size: 12px
}

.table .meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px
}

.table .meta span {
  background: var(--card);
  padding: 3px 8px;
  border-radius: 4px
}

.table .meta .lim {
  color: var(--lime);
  font-weight: 500
}

.phone {
  width: 220px;
  margin: 0 auto;
  border: 8px solid #3a3f46;
  border-radius: 32px;
  background: #000;
  padding: 14px 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5)
}

.phone .scr {
  background: var(--panel);
  border-radius: 18px;
  padding: 10px;
  font-size: 12px
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #000;
  color: #fff;
  border: 1px solid #444;
  font-size: 13px;
  line-height: 1.1
}

.store small {
  display: block;
  font-size: 10px;
  color: var(--muted)
}

.store svg {
  width: 22px;
  height: 22px
}

.status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500
}

.status.ok {
  background: var(--lime)
}

.status.no {
  background: var(--card)
}

.review {
  background: var(--panel);
  border-radius: var(--rs);
  padding: 14px 16px
}

.review .rh {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 13px
}

.review .stars {
  color: var(--gold);
  letter-spacing: 2px
}

.review p {
  margin: 0;
  font-size: 14px;
  color: #e2e2e2
}

.review .reply {
  margin-top: 10px;
  padding: 10px 12px;
  border-left: 3px solid var(--lime);
  background: var(--card);
  font-size: 13px;
  border-radius: 0 8px 8px 0
}

.rating {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center
}

.rating .big b {
  font-size: 54px;
  line-height: 1;
  display: block;
  font-weight: 700;
  color: var(--lime)
}

.rating .bars div {
  display: grid;
  grid-template-columns: 32px 1fr 44px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  margin-bottom: 6px
}

.rating .bars i {
  display: block;
  height: 10px;
  border-radius: 5px;
  background: var(--card);
  overflow: hidden
}

.rating .bars i b {
  display: block;
  height: 100%;
  background: var(--gold);
  font-size: 0
}

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none
}

.toc a {
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--panel);
  font-size: 13px
}

.legal h2 {
  font-size: 18px;
  margin: 24px 0 8px
}

.legal p,
.legal li {
  color: #e2e2e2;
  font-size: 14px
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px
}

.tools-grid .card b {
  display: block;
  margin-bottom: 6px
}

.tools-grid .card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0
}

.pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.pay span {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--panel);
  font-weight: 500;
  font-size: 13px
}

/* footer */
.site-footer {
  background: var(--panel);
  padding: 36px 0 100px;
  border-top: 1px solid var(--line)
}

.fwrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px
}

.fwrap h4 {
  margin: 0 0 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted)
}

.fwrap a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #d6d6d6
}

.fwrap a:hover {
  color: var(--lime)
}

.fwrap p {
  font-size: 13px;
  color: var(--muted)
}

.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red);
  font-weight: 700;
  font-size: 12px;
  margin-right: 10px
}

.fbottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--dim);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px
}

.permits {
  font-size: 12px;
  color: var(--dim);
  margin-top: 8px
}

/* fab */
.fab {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translate(-50%, 120%);
  width: min(600px, 100% - 32px);
  background: linear-gradient(90deg, #1f3a10, #3f6f18);
  color: #fff;
  border: 1px solid rgba(137, 190, 58, .5);
  border-radius: 999px;
  padding: 8px 8px 8px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
  transition: transform .3s;
  z-index: 70
}

.fab.show {
  transform: translate(-50%, 0)
}

.fab b {
  font-size: 14px;
  flex: 1;
  font-weight: 500
}

.fab .btn {
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 700
}

.fab-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  animation: pulse 1.8s infinite
}

.fab-ic svg {
  width: 20px;
  height: 20px
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(137, 190, 58, .6)
  }

  70% {
    box-shadow: 0 0 0 10px rgba(137, 190, 58, 0)
  }
}

@media (max-width:1540px) {
  .brand small {
    display: none
  }

  .hacts .chev {
    display: none
  }
}

@media (max-width:1180px) {
  .tabs {
    font-size: 13px;
    gap: 12px
  }

  .hacts .btn {
    padding: 10px 20px;
    font-size: 15px
  }

  .best {
    grid-template-columns: repeat(2, 1fr)
  }

  .seo {
    grid-template-columns: 1fr 1fr
  }

  .seo h2,
  .seo h3 {
    font-size: 30px
  }

  .rail .tile {
    width: calc((100% - 42px)/4)
  }

  .club,
  .grid4 {
    grid-template-columns: 1fr 1fr
  }

  .fwrap {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:920px) {
  .topbar {
    height: 64px
  }

  .tabs,
  .hacts .chev {
    display: none
  }

  .burger {
    display: inline-flex
  }

  .brand b {
    font-size: 26px
  }

  .hero .slide {
    height: auto;
    max-height: none;
    aspect-ratio: 1
  }

  .hero .slide img.d {
    display: none
  }

  .hero .slide img.m {
    display: block
  }

  .hero .cta {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    width: 90%
  }

  .hero .thumbs {
    display: none
  }

  .stitle {
    font-size: 22px
  }

  .shead h2 {
    font-size: 20px
  }

  .grid2,
  .grid3,
  .steps {
    grid-template-columns: 1fr 1fr
  }

  .rating {
    grid-template-columns: 1fr
  }

  .site-footer {
    padding-bottom: 110px
  }
}

@media (max-width:560px) {
  .hacts .btn {
    padding: 8px 14px;
    font-size: 13px
  }

  .grid2,
  .grid3,
  .steps,
  .grid4,
  .club,
  .fwrap,
  .seo {
    grid-template-columns: 1fr
  }

  .best {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0
  }

  .bestbox {
    padding: 16px 12px
  }

  .seo h2,
  .seo h3 {
    font-size: 26px
  }

  .rail .tile {
    width: calc((100% - 28px)/3);
    min-width: 120px
  }

  .mcard {
    width: 280px
  }

  .page-head h1 {
    font-size: 24px
  }

  .btn--lg {
    padding: 12px 24px;
    font-size: 16px
  }

  .cta-band {
    padding: 22px
  }

  .cta-band h2 {
    font-size: 20px
  }

  .fab {
    padding: 6px 6px 6px 10px
  }

  .fab b {
    font-size: 12px
  }

  .fab-ic {
    width: 30px;
    height: 30px
  }
}