html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* OPVERRIDES */ 
.modal-content {
  background-color: #78faae !important;
  color: #0e3a2f !important;
}
.modal-header {
  border-bottom: 0;
}

@font-face {
  font-family: 'SKODANext-Regular';
  src: url('/fonts/SKODANext-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'SKODANext-Light';
  src: url('/fonts/SKODANext-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'SKODANext-Bold';
  src: url('/fonts/SKODANext-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'SKODANext-Italic';
  src: url('/fonts/SKODANext-Italic.ttf') format('truetype');
}
@font-face {
  font-family: 'SKODANext-Black';
  src: url('/fonts/SKODANext-Black.ttf') format('truetype');
}
@font-face {
  font-family: 'SKODANext-Thin';
  src: url('/fonts/SKODANext-Thin.ttf') format('truetype');
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: #0e3a2f;
  font-family: 'SKODANext-Regular';
  color: #fff;
}
body.app-style {
  height: 100dvh !important;
  margin-bottom: 0 !important;
}

.logo {
  z-index: 2;
  position: fixed;
  top: 0;
  left:0;
  width: 100%;
  height: 100px;
  text-align: center;
  img {
    height: 18px;
    margin-top: 41px;
  }
  background: transparent;
  &.solid {background: #407676;}
}

.app-main {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  /*:first-child {*/
  /*  margin-top: 48px;*/
  /*}*/
  .grow {
    flex-grow: 1;
  }
  padding-bottom: 16px;
}

.map-main {
  width: 100dvw;
  height: 100dvh !important;
  #map {
    width: 100dvw;
    height: 100% !important;
  }
  .swiper {
    max-width: 100%;
    position: fixed !important;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
}



.main-margin {
  margin-top: 100px;
}

.start-logo {
  display: flex;
  margin-top: 100px;
  overflow: hidden;
  text-align: center;
  margin-left: -3%;
  width: 103%;
  flex-grow: 1;
  align-items: center;
  img {
    width: 106% !important;
  }
}
.start-bottom-logo{
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 500px) {
  .app-main {
    flex-direction: row;
  }
  .start-logo {
    overflow: hidden;
    margin-top: 0;
    text-align: center;
    width: 50%;
    margin-left: 0 !important;
    img {
      width: 100% !important;
    }
  }
  .connect {
    width: 50%;
  }
}

.grow {
  height: 100%;
}

.register-logo {
  display: flex;
  margin-top: 100px;
  text-align: center;
  padding: 0 20px;
  width: 100%;
  align-items: center;
  img {
    width: 100%;
  }
}

.col-profile-bg {
  margin-top: -100px;
  height: 100dvw;
  background-size: cover;
  background-position: center;
}
.profile-pic-bg {
  margin-top: -100px;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100dvw;
}
.profile-pic-overlay {
  position: absolute;
  top: 0;
  height: 100%;
  backdrop-filter: blur(8px);
  width: 100dvw;
}
.confirm-logo {
  position: relative;
  z-index: 2;
  /*transform: translateY(-50%);*/
  margin-top: -100px;
  font-size: 64px;
  font-family: 'SKODANext-Black';
  color: #78faae;
  line-height: 50px;
  
}
.horiz-rider {
  position: relative;
  border-bottom: 2px white solid;
  height: 55px;
  img {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
  }
  
}
.strava-data {
  position: absolute;
  bottom: 1px;
  font-family: 'SKODANext-Italic';
}
.name {
  font-size: 36px;
}
.location {
  margin-top: 8px;
  font-size: 18px;
}
.buttons {
  margin-top: 48px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.mapboxgl-popup-content {
  background-color: #0e3a2f;
  color: #78faae;
  font-weight: bold;
  border-radius: 4px;
  padding: 8px;
  text-transform: uppercase;
  text-align: center;
}

.mapboxgl-popup-tip {
  border-top-color: #0e3a2f !important; /* för popups ovanför punkten */
  border-bottom-color: #0e3a2f !important; /* för popups under punkten */
}

.page-main  {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}




.highlighted {
  background-color: #78faae;
  color: #0e3a2f;
  padding: 0 4px;
}

.bracketed {
  position: relative;
  display: inline-block;
  padding: 0 6px;
}

.bracketed::before,
.bracketed::after {
  content: "";
  position: absolute;
  width: 15px;  /* längd på hörnstrecket */
  height: 15px;
  border: 3px solid #78faae;
}

.bracketed::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.bracketed::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* BUTTONS */
.button-light {
  font-family: "SKODANext-Light";
}
.button-bold {
  font-family: "SKODANext-Bold";
}
.icon-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #0e3a2f;
  cursor: pointer;
  border: none;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.icon-button .icon {
  flex: 0 0 auto;          /* Ikonen får aldrig växa eller krympa */
  height: 20px;
}

.icon-button .text {
  flex: 1 1 auto;           /* Texten får ta all extra plats */
  overflow: hidden;
  text-overflow: ellipsis;  /* Klipp text om den blir för lång */
  white-space: nowrap;
  color: #78faae;
}
.icon-button.bordered-button {
  padding: 6px 6px;
  border: 1px solid #78faae !important;
}
.icon-button:disabled,
.icon-button[disabled] {
  opacity: 0.5;                  /* lite genomskinlig */
  cursor: not-allowed;           /* tydlig inaktiv känsla */
  border-color: #78faae80;       /* ljusare kant (20% opacity) */
}

.icon-button:disabled .text,
.icon-button[disabled] .text {
  color: #78faae80;              /* blekare text */
}

.icon-button:disabled .icon,
.icon-button[disabled] .icon {
  filter: grayscale(100%) brightness(1.4); /* gör ikonen lite blekare */
}

/* INPUTS */

.input-wrapper {
  position: relative;
  display: block;
  width: 100%;
}

.input-wrapper::before,
.input-wrapper::after {
  content: "";
  position: absolute;
  width: 15px;   /* längden på hörnstrecken */
  height: 15px;
  border: 3px solid #78faae;
  pointer-events: none;
}

.input-wrapper::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.input-wrapper::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.custom-input {
  background-color: #186148;
  color: #78faae;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  caret-color: #78faae;
  box-sizing: border-box;
  width: 100%;
}

.custom-input:focus {
  outline: none;
}

/* Wrapper för hakarna */
.corner-select {
  position: relative;
  display: inline-block;
  padding: 2px; /* plats så hakarna syns */
  background: transparent; /* wrappen har ingen bakgrund */
}

/* Hakar */
.corner-select::before,
.corner-select::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #78faae;
  pointer-events: none;
}
.corner-select::before {
  top: 0; left: 0;
  border-right: none; border-bottom: none;
}
.corner-select::after {
  bottom: 0; right: 0;
  border-left: none; border-top: none;
}

/* Själva selecten */
.corner-select__field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  font: inherit;
  color: #78faae;
  background: #186148;      /* nu får selecten bakgrunden */
  padding: 10px 36px 10px 12px;
  min-width: 220px;
  line-height: 1.4;
  cursor: pointer;

  /* egen pil */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2378faae'><path d='M4 6l4 4 4-4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px 12px;
}

/* Fokus */
.corner-select__field:focus-visible {
  box-shadow: 0 0 0 2px #78faae55;
}

/* Disabled */
.corner-select__field:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* (valfritt) Fullbredd-variant */
.corner-select--full { display:block; width:100%; }
.corner-select--full .corner-select__field { width:100%; min-width: 0; }

/* (valfritt) Dropdownens färger – stöds olika i browsers */
.corner-select__field option {
  color: #0e3a2f;
  background: #78faae;
}

/* PROGRESS */
.trap {
  width: 10px;
  height: 40px;
  background: #125e41;               /* valfri fyllningsfärg */
  clip-path: polygon(
          0 0,
          10px 4px,
          10px 33.3px,
          0 40px
  );
  display: inline-block;             /* så de kan stå på rad */
  /*margin-right: 4px;                 !* avstånd mellan pelare *!*/
}
.trap.active {
  background: #78faae;
}
/*.trap:first-child {*/
/*  margin-left: 10px;*/
/*}*/

.trap.trap--rot30 {
  transform: rotate(35deg);
  transform-origin: center;
}


/* (valfritt) flex-rad för många */
.trap-row {
  display: flex;
  gap: 6px;
  padding-left: 10px;
  padding-right: 10px;
}




/* Gemensamt: sätt bild via CSS-variabel för smidig återanvändning */
.left-media {
  /*--hero-img: url('https://dgalywyr863hv.cloudfront.net/pictures/athletes/8685568/2630307/3/large.jpg'); !* <-- byt bild här *!*/
  /*background-image: var(--hero-img);*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* < lg: bilden som kvadrat och max halva skärmen hög */
.left-media {
  width: 100%;
  aspect-ratio: 1 / 1;   /* kvadrat */
  max-height: 50vh;      /* max halva skärmen */
}
.left-media-md {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.left-media-register {
  padding: 0 30px;
}

@media (min-width: 768px) {
  .left-media-md {
    height: 100%;
    min-height: 100vh;    /* täck hela viewport-höjden */
  }
  /* Valfritt: gör högerkolumnens innehåll centrerat vertikalt */
  .content-wrap {
    min-height: 100vh;
  }
}

/* ≥ lg: bilden täcker hela vänstra halvan, ingen upprepning */
@media (min-width: 992px) {
  .left-media {
    height: 100%;
    min-height: 100vh;    /* täck hela viewport-höjden */
  }
  /* Valfritt: gör högerkolumnens innehåll centrerat vertikalt */
  .content-wrap {
    min-height: 100vh;
  }
}

.hamb {
  position: fixed;
  top:-6px;
  left: 20px;
  img {
    height: 28px;
  }
}

.register {
  width: 100%;
  padding: 0 20px;
}

.form-item {
  text-align: start;
  width: 100%;
  margin-top: 10px;
  .form-label {
    font-family: SKODANext-Italic;
    text-transform: uppercase;
    margin-bottom: 0;
  }
}


.custom-checkbox {
  /* ta bort standardutseende */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* storlek och form */
  width: 20px;
  height: 20px;
  border: 2px solid #78faae; /* ramfärg */
  border-radius: 0px;        /* hörnradie */

  /* bakgrund när den är omarkerad */
  background-color: #0e3a2f;

  cursor: pointer;
  position: relative;
}

.custom-checkbox:checked {
  /* bakgrund när markerad */
  background-color: #78faae;
  border-color: #78faae;
}

.custom-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 12px;
  border: solid #0e3a2f; /* färg på krysset */
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check-wrapper {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  .check {
    flex-grow: 0;
  }
  .text {
    flex-grow: 1;        
    font-family: 'SKODANext-Italic';
    font-size: 12px;
  }
}

.field-validation-error {
  color: red;
}

.fetching {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #78faae;
  padding: 10px;
}

/* USER DASHBOARD */ 

.dt-user-stats {
  position: absolute;
  bottom: 30px;
  left:30px;
}

.user-stats {
  display: flex;
  flex-direction: row;
  padding-top: 16px;
  gap: 32px;
  .data {
    display: flex;
    font-size: 16px;
    flex-direction: column;
    .label {
      text-transform: uppercase;
      font-family: SKODANext-Thin;
    }
    .value {
      display: flex;
      font-family: SKODANext-Light;
      flex-direction: row;
      align-items: start;
      justify-items: start;
      .unit {
        font-size: 10px;
      }
    }
  }
}

.biggest-ride {
  img {
    padding-top: 12px;
    max-width: 100%;
    max-height: 300px;
  }
}

/* OVERLAY */
.overlay {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 400px;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 4;
  background-color: #0e3a2f;  /* ljusgrön bakgrund */
  box-shadow: 0 0 6px 2px #78faae;
}

.overlay .content {
  margin: 5px;
  background-color: #0e3a2f;   /* ljusgrön bakgrund */
  color: #78faae;              /* textfärg */
  position: relative;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  img {
    max-width: 100%;
  }
  img.rwm {
    width: 100px; 
    margin-top: -40px;
  }
  img.cts {
    width: 60%;
  }
}
@media (min-width: 992px) {
  @media (min-width: 992px) {
    .overlay {
      top: 50%;
      left: 50%;
      right: auto;
      bottom: auto;
      max-width: 250px;              /* ingen fast max-bredd */
      margin: 0;
      transform: translate(-50%, calc(-50% + 50px));
      position: fixed;              /* behåll fixed så den ligger över */
      width: auto;                  /* storlek styrs av innehållet */
      height: auto;                 /* samma här */
    }

    .overlay .content {
      width: auto;                  /* innehållet styr */
      height: auto;
      margin: 5px;                  /* behåll marginal inuti */
    }
  }
}

/* Hörnmarkeringar */
.overlay .content::before,
.overlay .content::after {
  content: "";
  position: absolute;
  width: 12px;      /* storlek på hörnmarkering */
  height: 12px;
  border: 2px solid #78faae;  /* mörkgrön kant */
}

.overlay .content::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.overlay .content::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* SWIPE */

.swipe-carousel {
  position: relative;
  overflow-x: hidden;     /* vi klipper bara i X-led */
  overflow-y: visible;    /* låt höjden vara naturlig */
  width: 100%;
  max-width: 800px;       /* demo */
  margin: 0 auto;
  user-select: none;
  touch-action: pan-y;    /* sidan kan scrolla vertikalt */
  transition: height 250ms ease; /* mjuk höjdövergång vid panelbyte */
}

.swipe-track {
  display: flex;          /* bredd = antal paneler * 100% */
  transform: translateX(0);
  transition: transform 300ms ease;
  will-change: transform;
}
.swipe-track.dragging { transition: none; cursor: grabbing; }

.pane {
  flex: 0 0 100%;         /* exakt containerbredd */
  /* ingen fast höjd -> anpassa efter innehåll */
  box-sizing: border-box;
  padding: 24px;
  color: #fff;
  font: 600 18px system-ui;
}
.pane--a { background: #186148; }
.pane--b { background: #0e3a2f; }

/* Pager under carouseln (syns alltid) */
.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px auto 0;
  width: 100%;
  max-width: 800px; /* matcha carouseln om du vill */
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #78faae55;
}
.dot.active { background: #78faae; }

/* END SWIPE */

/* MAP DATA */

.corner-box-wrapper {
  flex: 0 0 100%;         /* exakt containerbredd */
  /* ingen fast höjd -> anpassa efter innehåll */
  box-sizing: border-box;
  padding: 0 20px;
  .wrapper-caption {
    font-family: SKODANext-Black;
    text-align: center;
    font-size: 18px;
    color: #78faae;
  }
}

.corner-box {
  background-color: #25654cbb; 
  color: #78faae;
  position: relative;          /* Behövs för att placera hörnmarkeringarna */
  /* ingen fast höjd -> anpassa efter innehåll */
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* Övre vänstra hörnet */
.corner-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid #78faae;
  border-left: 2px solid #78faae;
}

/* Nedre högra hörnet */
.corner-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #78faae;
  border-right: 2px solid #78faae;
}

.data {
  position: static;
  color: white;
  font-size: 8px;
  display: flex;
  flex-direction: column;
  font-family: SKODANext-Light;
  text-transform: uppercase;
  gap: 0;
  .caption {}
  .value-wrapper {
    display: flex;
    flex-direction: row;
    .val {
      font-size: 26px;
      line-height: 26px;
    }
    .unit {
      font-size: 16px;
      line-height: 16px;
    }
  }
}

/* END MAP DATA */

/* MENU */

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: #0e3a2f;
  color: #78faae;
  font-family: SKODANext-Light;
  font-size: 42px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  a, a:hover, a:focus, a:visited {
    color: #78faae !important;
    text-decoration: none;
  }
  #close-menu {
    position: absolute;
    right: 20px;
    top: 20px;
    height: 20px;
    width: 36px;
  }
}

/* END MENU */

/* LEADERBOARDS */ 

.leaderboard-wrapper {
  align-items: start;
  align-items: start;
  width: 100%;
  .title {
    font-family: SKODANext-Black;
    font-size: 36px;
    text-align: start;
  }
  .lb-selectors {
    display: flex;
    flex-direction: row;
    gap: 8px;
    .lb-btn {
      border: 1px solid #78faae;
      color: #78faae;
      padding: 4px 8px;
      text-transform: uppercase;
      cursor: pointer;
      &.active {
        background-color: #78faae33;
      }
    }
  }
  .leaderboard {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 24px;
    margin-top: 16px;
    overflow: scroll;
    .your-team {
      display: flex;
      gap: 4px;
      align-items: center;
    }
    .leaderboard-item {
      --bg: #0e3a2f;          /* bakgrund + fade-botten */
      --fg: #78faae;

      display: flex;
      align-items: center;
      width: 100%;
      max-width: 100%;
      background: var(--bg);
      color: var(--fg);
      padding: 4px 0;
      gap: 12px;               /* valfritt mellanrum */
      box-sizing: border-box;
      &.you {
        color: white;
      }
    }

    /* 45px fast, högerjusterad, får inte krympa */
    .leaderboard-item .place {
      flex: 0 0 52px;
      text-align: right;
      font-variant-numeric: tabular-nums; /* snyggare siffror */
      font-family: SKODANext-Bold;
      color: white;
      padding-right: 8px;
      border-right: 1px solid #78faae;
    }

    /* 80px fast, högerjusterad, får inte krympa */
    .leaderboard-item .score {
      flex: 0 0 80px;                /* alltid 80px bred */
      display: flex;
      flex-direction: row;           /* spans i rad */
      justify-content: flex-end;     /* tryck till höger */
      align-items: flex-start;       /* justera till toppen */
      gap: 2px;                      /* litet mellanrum mellan value och unit */
      font-family: SKODANext-Bold;
    }

    .leaderboard-item .score .value {
      font-weight: bold;             /* valfritt: gör siffrorna tydligare */
    }

    .leaderboard-item .score .unit {
      font-size: 0.75em;              /* lite mindre text för enheten */
    }

    /* mitten får ta resten, ingen radbrytning + fade i högerkant */
    .leaderboard-item .team {
      flex: 1 1 auto;
      min-width: 0;                 /* VIKTIGT i flex för att overflow ska funka */
      position: relative;
      white-space: nowrap;
      overflow: hidden;
      /* om du vill, även ellipsis under fadet: */
      text-overflow: clip;          /* eller 'ellipsis' om du vill se … */
      font-family: SKODANext-Thin;
    }

    /* gradient-fade mot bakgrundsfärgen */
    .leaderboard-item .team::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 28px;                  /* hur bred fade du vill ha */
      height: 100%;
      pointer-events: none;
      background: linear-gradient(to right, transparent, var(--bg));
    }
    /*.leaderboard-item, .leaderboard-item-trophy, .ad-item {*/
    /*  cursor: pointer;*/
    /*  display: flex;*/
    /*  padding-right: 8px;*/
    /*  align-items: center;*/
    /*  gap: 16px;*/
    /*  align-self: stretch;*/
    /*  !*border-radius: 4px;*!*/
    /*  !*background: #FFF;*!*/
    /*  color: #78faae;*/
    /*  flex-basis: 100%;*/
    /*  .crown {*/
    /*    position: absolute;*/
    /*    top: 7px;*/
    /*  }*/
    /*  .place {*/
    /*    position: relative;*/
    /*    display: flex;*/
    /*    width: 50px;*/
    /*    !*padding: 31px 18px;*!*/
    /*    flex-direction: column;*/
    /*    justify-content: center;*/
    /*    align-items: center;*/
    /*    align-self: stretch;*/
    /*    !*background: #D6D5D1;*!*/
    /*    color: white;*/
    /*    font-weight: 700;*/
    /*    border-right: 1px solid #78faae;*/
    /*    !*border-top-left-radius: 4px;*!*/
    /*    !*border-bottom-left-radius: 4px;*!*/
    /*    !*&._1 { background: #EEAF0B; color: white;}*!*/
    /*    !*&._2 { background: #8B9699; color: white;}*!*/
    /*    !*&._3 { background: #C46C3B; color: white;}*!*/
    /*    .trophy {*/
    /*      position: absolute;*/
    /*      top: 0;*/
    /*      background-color: blue;*/
    /*      background: url('/images/icons/trophy_gold.svg') center no-repeat;*/
    /*      height: 24px;*/
    /*      width: 100%;*/
    /*      margin-top: -24px;*/
    /*    }*/
    /*  }*/
    /*  .team {*/
    /*    display: flex;*/
    /*    !*width: 210px;*!*/
    /*    flex-direction: column;*/
    /*    align-items: flex-start;*/
    /*    flex-basis: 66%;*/
    /*    white-space: nowrap;*/
    /*    overflow: hidden;*/
    /*    !*margin: 16px 0;*!*/
    /*    gap: 8px;*/
    /*    !*color: black;*!*/
    /*    .name {*/
    /*      font-weight: 500;*/
    /*    }*/
    /*  }*/
    /*  .agency {*/
    /*    display: flex;*/
    /*    flex-direction: row;*/
    /*    gap: 4px;*/
    /*    img {*/
    /*      max-height: 16px;*/
    /*      max-width: 16px;*/
    /*    }*/
    /*  }*/
    /*  .score {*/
    /*    display: flex;*/
    /*    !*color: black;*!*/
    /*    margin-left: auto;*/
    /*    text-align: center;*/
    /*    text-transform: uppercase;*/
    /*    font-size: 12px;*/
    /*    .value {*/
    /*      font-size: 24px;*/
    /*      font-weight: 700;*/
    /*    }*/
    /*  }*/
    /*}*/
    .ad-item {
      background: none;
      cursor: pointer;
      .flash {
        background: none;
        position: relative;
        display: flex;
        width: 50px;
        padding: 11px 18px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        font-weight: 700;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
      }
      .ad-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        color: white;
        font-weight: 500;
      }
    }
    .leaderboard-item-trophy {
      background: none;
      .place {
        background: none;
        padding: 0;
        margin-bottom: -8px;
      }
    }
  }
}

/* END LEADERBOARD */