:root {
  --text-color: #444444;
  --base-color: transparent;
  --base-color-15: color-mix(in srgb, var(--base-color) 15%, transparent);
  --base-color-30: color-mix(in srgb, var(--base-color) 30%, transparent);
  --base-color-50: color-mix(in srgb, var(--base-color) 50%, transparent);
  --base-color-dark: color-mix(in srgb, var(--base-color), black 10%);
  --base-color-light: color-mix(in hsl, var(--base-color) 20%, white);
  --color-light-grey: #dddddd;
  --color-mid-grey: #aaaaaa;
  --color-dark-grey: #888888;
  --control-bar-height: 75px;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow: hidden;
}

body {
  position: fixed;
  top: 0;
  left: 0;
}

* {
  box-sizing: border-box;
}

.racemap {
  font-size: 0.8em;
  color: var(--text-color);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.racemap .inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--color-light-grey);
}
.racemap .map-container {
  position: relative;
  display: flex;
  flex: 1;
}
.racemap .map-container .logos .link-button {
  position: absolute;
  bottom: 23px;
  left: 3px;
  z-index: 50;
  padding: 0;
  color: white;
}
.racemap .map-container .logos .link-button img {
  width: 90px;
  height: 18px;
}
.racemap .map-container .logos .mapboxgl-ctrl-logo {
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.racemap .map-container .logos .sponsor-logos-container {
  position: absolute;
  bottom: 54px;
  left: 3px;
  width: calc(100% - 6px);
  z-index: 50;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.racemap .map-container .logos .sponsor-logos-container .sponsor-logo-button {
  cursor: pointer;
}
.racemap .map-container .logos .sponsor-logos-container .sponsor-logo-button img {
  max-width: 300px;
  max-height: 100px;
  object-fit: contain;
}
@media screen and (max-width: 750px) {
  .racemap .map-container .logos .sponsor-logos-container .sponsor-logo-button img {
    max-width: 192px;
    max-height: 64px;
  }
}
.racemap .map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
@media screen and (max-width: 750px) {
  .racemap .map {
    padding-bottom: var(--control-bar-height);
  }
}
.racemap .map-container-sizer {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 750px) {
  .racemap .map-container-sizer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    bottom: var(--control-bar-height);
  }
}
.racemap .map-scale-container {
  position: absolute;
  bottom: 30px;
  right: 10px;
  z-index: 20;
}
@media screen and (max-width: 750px) {
  .racemap .map-scale-container {
    bottom: 10px;
    right: 44px;
  }
}
@media screen and (max-width: 750px) {
  .racemap .mapboxgl-ctrl-bottom-right {
    z-index: 30;
  }
}
.racemap .map-ctrl-container {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 750px) {
  .racemap .map-ctrl-container {
    top: 10px;
    right: 10px;
  }
}
.racemap .mapboxgl-ctrl-group {
  border: 1px solid var(--base-color-dark);
  box-shadow: none;
}
.racemap .mapboxgl-ctrl-group button.follow-selected-button {
  width: 150px;
  font-weight: bold;
  color: #444444;
  color: var(--text-color);
}
.racemap .mapboxgl-ctrl-group:not(:empty) {
  box-shadow: none;
}
.racemap .mapstyle-ctrl {
  border-radius: 4px;
  border: 1px solid var(--base-color-dark);
  background: white;
}
.racemap .mapstyle-ctrl-main,
.racemap .mapstyle-ctrl-item {
  height: 30px;
  white-space: nowrap;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.racemap .mapstyle-ctrl-main.mapstyle-ctrl-main,
.racemap .mapstyle-ctrl-item.mapstyle-ctrl-main {
  font-weight: bold;
}
.racemap .mapstyle-ctrl-main:hover,
.racemap .mapstyle-ctrl-item:hover {
  background: rgba(0, 0, 0, 0.05);
}
.racemap .mapstyle-ctrl-main .mapstyle-ctrl-item-click,
.racemap .mapstyle-ctrl-item .mapstyle-ctrl-item-click {
  cursor: pointer;
  padding: 10px 10px;
  margin-left: -10px;
}
.racemap .mapstyle-ctrl-main .mapstyle-ctrl-item-click input,
.racemap .mapstyle-ctrl-item .mapstyle-ctrl-item-click input {
  cursor: pointer;
}
.racemap .mapstyle-ctrl-dropdown {
  border-radius: 0 0 4px 4px;
}
.racemap .mapstyle-ctrl.select-ctrl .mapstyle-ctrl-item {
  min-width: 100px;
}
.racemap .own-location-ctrl.following {
  background-color: var(--base-color);
}
.racemap .own-location-ctrl.following .mapboxgl-ctrl-icon {
  color: white;
}
.racemap .info-sheet {
  transform: translateZ(0);
  border-top: 1px solid var(--base-color-dark);
  background: var(--base-color);
  color: white;
  z-index: 100;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .racemap .info-sheet {
    background: var(--base-color-50);
    backdrop-filter: blur(10px) brightness(0.8);
    -webkit-backdrop-filter: blur(10px) brightness(0.8);
  }
}
.racemap .info-sheet .info-sheet-throbber {
  height: 5px;
  width: 50px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 10px;
}
.racemap .info-sheet .info-sheet-tab-bar {
  display: flex;
  justify-content: center;
  padding: 5px 15px;
  margin: 0 auto;
  max-width: 600px;
  height: 40px;
}
.racemap .info-sheet .info-sheet-tab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  margin: 0 5px;
  flex: 1;
  border: 1px solid white;
  border-radius: 4px;
}
.racemap .info-sheet .info-sheet-tab-button > img {
  width: 35px;
  height: 21px;
  opacity: 0.6;
}
.racemap .info-sheet .info-sheet-tab-button.active {
  border: 2px solid white;
  margin: 0 4px;
}
.racemap .info-sheet .info-sheet-tab-button.active > img {
  opacity: 1;
}
.racemap .info-sheet .svg-chart {
  touch-action: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
.racemap .info-sheet .info-section {
  max-width: 700px;
  padding: 10px 20px;
  margin: 0 auto;
}
.racemap .info-sheet .info-section p {
  margin: 0 0 10px 0;
}
@media screen and (min-width: 750px) {
  .racemap .info-sheet .info-section {
    display: flex;
    flex-direction: row;
  }
  .racemap .info-sheet .info-section .event-info {
    flex: 1;
  }
}
.racemap .info-sheet .info-section .event-logo {
  float: left;
  padding-right: 10px;
  padding-bottom: 10px;
}
.racemap .info-sheet .info-section .event-logo img {
  width: 64px;
  height: 64px;
  background-color: white;
}
@media screen and (min-width: 750px) {
  .racemap .info-sheet .info-section .event-logo {
    float: none;
  }
}
.racemap .info-sheet .info-section .event-name {
  font-weight: bold;
}
.racemap .info-sheet .starter-info-table {
  line-height: 1.2;
  width: 100%;
}
.racemap .info-sheet .starter-info-table .starter-info-content {
  position: relative;
}
.racemap .info-sheet .starter-info-table .starter-info-row {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  transition: 0.2s ease box-shadow, 0.2s ease background-color;
  z-index: 0;
}
.racemap .info-sheet .starter-info-table .starter-info-row.odd {
  background-color: rgba(255, 255, 255, 0.2);
}
.racemap .info-sheet .starter-info-table .starter-info-row.dragging {
  background-color: var(--base-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.racemap .info-sheet .starter-info-table .starter-info-row-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.racemap .info-sheet .starter-info-table .starter-info-row-handle {
  width: 30px;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  opacity: 0.6;
}
.racemap .info-sheet .starter-info-table .starter-info-row-handle:hover {
  opacity: 1;
}
.racemap .info-sheet .starter-info-table .starter-info-row-handle img {
  width: 25px;
  user-select: none;
  -webkit-user-drag: none;
}
.racemap .info-sheet .starter-info-table .starter-startnumber,
.racemap .info-sheet .starter-info-table .starter-value {
  font-size: 14px;
  font-weight: bold;
}
.racemap .info-sheet .starter-info-table .starter-desc {
  display: block;
}
.racemap .info-sheet .starter-info-table .starter-info-name-cell {
  display: block;
  padding-bottom: 3px;
}
.racemap .info-sheet .starter-info-table .starter-info-stats-cell {
  display: flex;
}
.racemap .info-sheet .starter-info-table .starter-info-distance-cell,
.racemap .info-sheet .starter-info-table .starter-info-speed-cell,
.racemap .info-sheet .starter-info-table .starter-info-target-cell {
  flex: 1;
  display: flex;
  justify-content: start;
  align-items: center;
}
.racemap .info-sheet .starter-info-table .starter-info-ascent-cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.racemap .info-sheet .starter-info-table starter-info-speed-cell .starter-desc {
  margin-top: -2px;
}
.racemap .info-sheet .starter-info-table .starter-info-gap-cell {
  padding-top: 3px;
}
.racemap .info-sheet .starter-info-table .starter-info-button-cell {
  width: 30px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.racemap .info-sheet .starter-info-table .starter-info-button-cell .button {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background: transparent;
  border-radius: 2px;
  border: 1px solid white;
  font-size: 16px;
  color: white;
  opacity: 0.6;
}
.racemap .info-sheet .starter-info-table .starter-info-button-cell .button:hover {
  opacity: 1;
}
@media screen and (min-width: 750px) {
  .racemap .info-sheet .starter-info-table .starter-info-row-content {
    flex-direction: row;
  }
  .racemap .info-sheet .starter-info-table .starter-info-name-cell {
    flex: 1;
    display: flex;
    align-items: center;
    padding-bottom: 0;
  }
  .racemap .info-sheet .starter-info-table .starter-info-stats-cell {
    flex: 2;
  }
  .racemap .info-sheet .starter-info-table .starter-info-gap-cell {
    flex: 1.7;
    display: flex;
    align-items: center;
    padding-top: 0;
  }
}
.racemap .info-sheet .control-button {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .racemap .info-sheet .starter-info-table {
    padding-left: 0;
    font-size: 0.9em;
  }
}
.racemap .control-button {
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.racemap .control-button:active {
  opacity: 0.6;
}
.racemap .control-button.play-button {
  font-size: 22px;
  width: 54px;
}
.racemap .control-button.control-button-disabled {
  cursor: default;
  opacity: 0.6;
}
.racemap .control-button-popup {
  position: absolute;
  width: 48px;
  bottom: 61px;
  z-index: 100;
  background-color: white;
  border: 1px solid var(--base-color-dark);
  border-bottom: none;
}
.racemap .control-button-popup .control-button {
  font-size: 16px;
}
.racemap .control-button-popup .control-button-active {
  color: var(--base-color);
}
.racemap .control-bar {
  display: flex;
  height: var(--control-bar-height);
  align-items: center;
  z-index: 300;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  border-top: 1px solid var(--base-color-dark);
  background: white;
  color: var(--text-color);
}
.racemap .control-bar .time-display {
  flex: 1;
  text-align: right;
  padding-right: 15px;
}
.racemap .control-bar .slider {
  position: relative;
  width: auto;
  flex: 1;
  margin: 0 15px;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.racemap .control-bar .slider .slider-tick-wrapper {
  position: relative;
  height: 30px;
  width: 100%;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.racemap .control-bar .slider .slider-tick-wrapper .slider-tick-primary {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 10px;
  width: 30px;
  height: 18px;
  border-left: 1px solid var(--color-dark-grey);
}
.racemap .control-bar .slider .slider-tick-wrapper .slider-tick-primary > span {
  background: white;
  padding: 0 3px;
}
.racemap .control-bar .slider .slider-tick-wrapper .slider-tick-sticky {
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 10px;
  width: 100px;
  height: 30px;
  border-left: 1px solid var(--color-dark-grey);
}
.racemap .control-bar .slider .slider-tick-wrapper .slider-tick-sticky > span {
  background: white;
  padding: 0 3px;
}
.racemap .control-bar .slider .slider-tick-wrapper .slider-tick-secondary {
  position: absolute;
  top: 24px;
  left: 0;
  height: 6px;
  border-left: 1px solid var(--color-dark-grey);
}
.racemap .control-bar .slider .slider-slider {
  position: relative;
  margin: 17px 0 13px 0;
  height: 4px;
  width: 100%;
  touch-action: none;
}
.racemap .control-bar .slider .slider-background {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 6px;
  z-index: 0;
  border-radius: 6px;
  background-color: var(--color-light-grey);
}
.racemap .control-bar .slider .slider-handle {
  position: absolute;
  cursor: pointer;
  border-radius: 4px;
  border: solid 2px var(--base-color);
  background-color: white;
  z-index: 2;
  width: 70px;
  height: 28px;
  margin-left: -9px;
  margin-top: -12px;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.racemap .control-bar .slider .slider-handle .slider-handle-arrow {
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--base-color);
  top: -7px;
}
.racemap .control-bar .slider .slider-track {
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 6px;
  z-index: 1;
  background-color: var(--base-color);
}
.racemap .control-bar .slider .slider-shade {
  position: absolute;
  top: 0;
  height: 4px;
  background-color: var(--base-color-30);
  border-radius: 6px;
}
.racemap .control-bar .time-label {
  margin: 0 10px;
  cursor: pointer;
}
.racemap .control-bar .speed-button-live {
  font-size: 18px;
  opacity: 1;
  color: var(--base-color);
}
@media screen and (max-width: 750px) {
  .racemap .control-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.racemap .search-button-container {
  pointer-events: all;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
}
.racemap .search-button-container .search-button {
  border-radius: 4px;
  border: 1px solid var(--base-color-dark);
  background: white;
  cursor: pointer;
  padding: 12px;
  font-size: 16px;
  margin: 10px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.racemap .search-button-container .search-button i {
  transform: translateX(4px) translateY(3px);
}
@media screen and (min-width: 750px) {
  .racemap .search-button-container.is-open .search-button {
    background-color: var(--base-color);
    color: white;
  }
}
.racemap .side-bar-container {
  top: 0;
  left: 0;
  height: 100%;
  background: white;
  z-index: 300;
  overflow: hidden;
  border-right: 1px solid var(--base-color-dark);
  transform: translateZ(0);
}
@media screen and (max-width: 750px) {
  .racemap .side-bar-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 50px;
    bottom: 0;
    background: white;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-right: none;
    z-index: 1000;
  }
}
@media screen and (max-width: 750px) {
  .racemap .side-bar-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    touch-action: none;
    backdrop-filter: brightness(1);
    -webkit-backdrop-filter: brightness(1);
    pointer-events: none;
  }
  .racemap .inner.side-bar-open .side-bar-backdrop {
    pointer-events: initial;
  }
}
.racemap .side-bar {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.racemap .side-bar .side-bar-search {
  display: flex;
}
.racemap .side-bar .side-bar-search form.search-form {
  border-radius: 4px;
  border: 1px solid var(--base-color-dark);
  background: white;
  width: auto;
  margin: 10px;
  position: relative;
  flex: 1;
}
.racemap .side-bar .side-bar-search form.search-form input {
  height: 40px;
  line-height: 16px;
  box-shadow: none;
  padding-left: 38px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 4px;
  width: 100%;
  border: none;
  outline: none;
}
.racemap .side-bar .side-bar-search form.search-form .search-icon {
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s;
}
.racemap .side-bar .side-bar-search form.search-form .settings-icon {
  position: absolute;
  top: 0;
  right: -40px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
}
.racemap .side-bar .side-bar-search form.search-form .settings-icon.settings-icon-open {
  color: var(--base-color);
}
.racemap .side-bar .side-bar-search form.search-form .clear-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
}
.racemap .side-bar .side-bar-search form.search-form .close-icon {
  display: none;
  position: absolute;
  top: 0;
  left: -40px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .racemap .side-bar .side-bar-search form.search-form {
    margin-left: 40px;
  }
  .racemap .side-bar .side-bar-search form.search-form .close-icon {
    display: block;
  }
}
.racemap .side-bar .settings-form {
  background: rgba(255, 255, 255, 0.87);
  min-height: 100%;
  border-top: 1px solid var(--base-color-30);
}
.racemap .side-bar .settings-form > div {
  display: flex;
  padding: 10px;
}
.racemap .side-bar .settings-form span,
.racemap .side-bar .settings-form select,
.racemap .side-bar .settings-form input {
  flex: 1;
}
.racemap .side-bar .close-button {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.racemap .side-bar .tag-multiselect {
  display: flex;
  padding: 5px 10px;
  align-items: start;
}
.racemap .side-bar .tag-multiselect .tag-multiselect-key {
  line-height: 30px;
  font-weight: 600;
  width: 100px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.racemap .side-bar .tag-multiselect .tag-multiselect-values {
  position: relative;
  flex: 1;
  margin-left: 5px;
  min-height: 30px;
}
.racemap .side-bar .tag-multiselect .tag-multiselect-values .tag-multiselect-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30px;
  padding: 5px;
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid var(--base-color-dark);
  border-radius: 4px;
  background-color: white;
}
.racemap .side-bar .tag-multiselect .tag-multiselect-values .tag-multiselect-input .tag-multiselect-item {
  display: inline-block;
  padding-right: 5px;
}
.racemap .side-bar .tag-multiselect .tag-multiselect-values .tag-multiselect-input .tag-multiselect-item.preview {
  color: lightgrey;
}
.racemap .side-bar .tag-multiselect .tag-multiselect-values .tag-multiselect-input .tag-multiselect-item.selected {
  border-radius: 3px;
  background-color: var(--base-color-30);
  padding: 3px 6px;
  margin-right: 5px;
}
.racemap .side-bar .tag-multiselect .tag-multiselect-values .tag-multiselect-scroller {
  position: absolute;
  top: 26px;
  left: 0;
  width: 100%;
  min-height: 30px;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--base-color-50);
  border-radius: 0 0 4px 4px;
  border-top: none;
  padding-top: 4px;
  z-index: 10;
  background-color: white;
}
.racemap .side-bar .tag-multiselect .tag-multiselect-values .tag-multiselect-scroller .tag-multiselect-item {
  line-height: 30px;
  padding: 0 5px;
  height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.racemap .side-bar .tag-multiselect .tag-multiselect-values .tag-multiselect-scroller .tag-multiselect-item.selected {
  background-color: var(--base-color-30);
}
.racemap .side-bar .tag-multiselect .tag-multiselect-values .tag-multiselect-scroller .tag-multiselect-item .tag-multiselect-item-count {
  color: #aaaaaa;
}
.racemap .side-bar .tag-multiselect .tag-multiselect-values i.fa-times {
  position: absolute;
  right: 20px;
  top: 0;
  z-index: 10;
  padding: 9px;
  padding-right: 5px;
  background-color: white;
}
.racemap .side-bar .tag-multiselect .tag-multiselect-values i.fa-caret-up,
.racemap .side-bar .tag-multiselect .tag-multiselect-values i.fa-caret-down {
  width: 16px;
  position: absolute;
  right: 9px;
  top: 0;
  z-index: 10;
  padding: 9px;
  padding-right: 5px;
  background-color: white;
}
.racemap .side-bar .sort-select {
  display: flex;
  padding: 5px 10px;
  align-items: start;
}
.racemap .side-bar .sort-select .sort-select-key {
  line-height: 30px;
  font-weight: 600;
  flex: 1;
}
.racemap .side-bar .sort-select .sort-select-values {
  display: flex;
  flex-direction: row;
  margin-left: 5px;
  min-height: 30px;
}
.racemap .side-bar .sort-select .sort-select-values .sort-select-value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
  color: #888888;
}
.racemap .side-bar .sort-select .sort-select-values .sort-select-value.active {
  color: var(--base-color);
}
.racemap .side-bar .side-bar-toolbar-button {
  display: flex;
  height: 42px;
  width: 42px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--base-color-50);
  cursor: pointer;
  font-weight: 600;
  margin: 10px;
  margin-left: 0;
  border-radius: 4px;
  text-align: center;
}
.racemap .side-bar .side-bar-toolbar-button.active {
  color: var(--base-color);
  border-width: 2px;
}
.racemap .side-bar .side-bar-toolbar-button.disabled {
  color: var(--color-mid-grey);
  border-color: 1px solid var(--color-mid-grey);
  cursor: inherit;
}
.racemap .side-bar .side-bar-toolbar-button:not(.disabled):hover {
  background-color: var(--base-color-30);
}
.racemap .side-bar .starter-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  border-top: 1px solid var(--base-color-30);
}
.racemap .side-bar .starter-list-header {
  display: flex;
  flex-direction: row;
  background-color: white;
  border-bottom: 1px solid white;
}
.racemap .side-bar .starter-list-header.open {
  border-bottom: 1px solid var(--base-color-30);
}
.racemap .side-bar .starter-list-group-header .starter-list-header-item {
  background-color: var(--base-color-15);
}
.racemap .side-bar .starter-list-header-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--base-color-30);
  padding: 0 10px;
}
.racemap .side-bar .starter-list-header-item .starter-list-header-item-label {
  font-weight: 600;
  flex: 1;
}
.racemap .side-bar .starter-list-header-item .starter-list-header-icon-button {
  cursor: pointer;
  font-size: 15px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.racemap .side-bar .starter-list-header-item .starter-list-header-icon-button.active {
  color: var(--base-color);
}
.racemap .side-bar .starter-list-header-item .starter-list-header-item-button {
  border: 1px solid var(--base-color-50);
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.racemap .side-bar .starter-list-header-item .starter-list-header-item-button.active {
  border-width: 2px;
}
.racemap .side-bar .starter-list-header-item .starter-list-header-item-button:hover {
  background-color: var(--base-color-30);
}
.racemap .side-bar .starter-list-header-item .starter-list-header-item-button + .starter-list-header-item-button {
  margin-left: 10px;
}
.racemap .side-bar .starter-list-header-item.starter-list-header-item-selected {
  color: var(--base-color);
}
.racemap .side-bar .starter-list-header-item .starter-list-header-item-info {
  display: inline-block;
  margin-left: 5px;
  color: var(--base-color-50);
  font-weight: normal;
  font-size: 0.9em;
}
.racemap .side-bar .starter-list-button {
  display: flex;
  height: 30px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--base-color-50);
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
  text-align: center;
  background-color: white;
  margin: 5px 10px;
}
.racemap .side-bar .starter-list-button.starter-list-button-disabled {
  color: var(--color-light-grey);
  border-color: var(--color-light-grey);
}
.racemap .side-bar .starter-list-button.active {
  border-width: 2px;
}
.racemap .side-bar .starter-list-button:hover {
  background-color: var(--base-color-30);
}
.racemap .side-bar .starter-list-filter {
  border-bottom: 1px solid var(--color-light-grey);
}
.racemap .side-bar .starter-list-item {
  display: flex;
  position: relative;
  height: 59px;
  padding: 5px 10px 5px 17px;
  flex-direction: row;
  align-items: center;
  line-height: 1.2em;
  cursor: pointer;
  overflow: hidden;
  border-bottom: 1px solid var(--color-light-grey);
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.87);
  user-select: text;
  -webkit-user-select: text;
}
.racemap .side-bar .starter-list-item:hover {
  background: var(--base-color-light);
}
.racemap .side-bar .starter-list-item > div {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  vertical-align: middle;
}
.racemap .side-bar .starter-list-item .starter-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.racemap .side-bar .starter-list-item .starter-name {
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
}
.racemap .side-bar .starter-list-item .starter-name .starter-name-content {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 5px;
}
@supports (-webkit-line-clamp: 2) {
  .racemap .side-bar .starter-list-item .starter-name .starter-name-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}
.racemap .side-bar .starter-list-item .starter-info {
  margin-top: 3px;
  font-size: 0.9em;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  white-space: nowrap;
}
.racemap .side-bar .starter-list-item .starter-info span {
  margin-right: 10px;
}
.racemap .side-bar .starter-list-item .starter-color {
  position: absolute;
  width: 7px;
  height: 100%;
  left: 0px;
  top: 0;
  border-right: 1px solid var(--color-light-grey);
}
.racemap .side-bar .starter-list-item .starter-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.racemap .side-bar .starter-list-item .starter-controls i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 15px;
  cursor: pointer;
  color: var(--color-dark-grey);
}
.racemap .side-bar .starter-list-item .starter-controls i:hover {
  color: var(--text-color);
}
.racemap .side-bar .starter-list-item .starter-controls i.fas.fa-star {
  color: var(--base-color);
}
.racemap .timing-overlay {
  position: absolute;
  z-index: 10000;
  width: 100vw;
  top: 0;
  left: 0;
  height: 100%;
  height: 100vh;
}
.racemap .timing-overlay .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.racemap .timing-overlay iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: white;
}

.mapboxgl-ctrl-group .mapboxgl-ctrl-compass-arrow {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E%3C/svg%3E");
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
}

.is_touch-yes .racemap .live-no .map {
  bottom: 49px;
}

@media screen and (max-width: 750px) {
  .racemap .primary {
    width: 100%;
    left: inherit;
    transition: transform 0.3s;
  }
}
@keyframes pulse-play {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
.racemap .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  flex: space-between;
  align-items: center;
  justify-content: center;
  opacity: 1;
  cursor: pointer;
}
.racemap .overlay.removed {
  opacity: 0;
  transition: opacity 0.3s;
}
.racemap .overlay .loading-indicator {
  font-size: 100px;
  text-align: center;
  color: var(--base-color);
  z-index: 100;
  padding: 100px;
}
.racemap .overlay .loading-indicator .fa-play {
  animation: pulse-play 0.8s infinite alternate ease-out;
}
.racemap .overlay .lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 128px;
  height: 128px;
}
.racemap .overlay .lds-ellipsis div {
  position: absolute;
  top: 54px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--base-color);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.racemap .overlay .lds-ellipsis div:nth-child(1) {
  left: 12px;
  animation: lds-ellipsis1 0.6s infinite;
}
.racemap .overlay .lds-ellipsis div:nth-child(2) {
  left: 12px;
  animation: lds-ellipsis2 0.6s infinite;
}
.racemap .overlay .lds-ellipsis div:nth-child(3) {
  left: 52px;
  animation: lds-ellipsis2 0.6s infinite;
}
.racemap .overlay .lds-ellipsis div:nth-child(4) {
  left: 90px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(38px, 0);
  }
}

.not-activated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  background-image: url(https://static-cdn.racemap.com/custom/not-activated.svg);
  opacity: 0.2;
  background-position: center;
  background-size: 400px;
  z-index: 10000;
  pointer-events: none;
}