@charset "UTF-8";
:root {
  --active-sidebar: #fff700;
  --bs-blue: #0d6efd;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-900: #212529;
  --bs-warning: #ffc107;
  --bs-light: #f8f9fa;
  --bs-light-rgb: 248, 249, 250;
}

html {
  -webkit-tap-highlight-color: transparent;
  height: -webkit-fill-available;
  min-height: 100vh;
}

html,
body {
  height: 100%;
  width: 100vw;
}

body {
  margin: 0;
}
@media (max-width: 992px) {
  body {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@supports (-webkit-touch-callout: none) {
  body {
    /* The hack for Safari */
    height: -webkit-fill-available;
  }
}
main {
  flex: 1;
}

#map {
  --heightHeader: calc(var(--header-height, 76px) + var(--custom-info-height));
  position: fixed;
  top: calc(var(--header-height) + var(--custom-info-height));
  bottom: 0;
  left: 0;
  right: 0;
  min-height: calc(100% - var(--heightHeader, 76px));
  height: calc(100% - var(--heightHeader, 76px));
  background: var(--bs-white);
}
@media (max-width: 991px) {
  #map {
    --heightHeader: calc(
      var(--header-height) + var(--watch-partner, 0px) +
        var(--custom-info-height)
    );
  }
}
@media (max-width: 991px) {
  #map {
    top: auto;
  }
}

@media (max-width: 991px) {
  .bg-dark {
    display: none;
  }
}
.map-container {
  overflow: hidden;
}

.maptiler-element {
  position: absolute;
  left: 20px;
  bottom: 5px;
  z-index: 999;
}

.leaflet-control-attribution a svg {
  display: none !important;
}

.site-locator {
  overscroll-behavior: contain;
  overflow: hidden;
}

.leaflet-control-locate-heading svg {
  will-change: transform;
  transition: transform 0.05s linear;
  transform-origin: center center;
}

.leaflet-control-container .leaflet-top,
.leaflet-control-container .leaflet-bottom {
  will-change: transform;
}

.icon {
  display: flex;
  border-radius: 50%;
  background-color: var(--bs-white);
}

.leaflet-marker-icon span {
  font-family: "Oswald", sans-serif;
}

.icon-flights {
  border: 2px solid var(--bs-white);
}

@keyframes border-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(255, 255, 255);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}
.icon-flights.animation {
  animation: border-pulse 1.5s infinite;
}

.icon-current {
  border: 2px solid var(--bs-white);
  animation: border-pulse 1.5s infinite;
}

.information-row,
.information-children {
  cursor: pointer;
  gap: 10px;
  padding: 10px;
}
.information-row .icon,
.information-children .icon {
  min-width: 35px;
  width: 35px;
  height: 35px;
  border: 1px solid var(--bs-gray-400);
  transition: border 0.5s ease-out;
}
.information-row:hover:not([data-layer-id=show-all-layers]),
.information-children:hover:not([data-layer-id=show-all-layers]) {
  background-color: var(--bs-gray-100);
}
.information-row:hover:not([data-layer-id=show-all-layers]) .icon,
.information-children:hover:not([data-layer-id=show-all-layers]) .icon {
  box-shadow: inset 0px 0px 13px -5px rgb(139, 220, 255);
  border: 1px solid var(--bs-blue);
}
.information-row:hover:not([data-layer-id=show-all-layers]) .information-row-name,
.information-children:hover:not([data-layer-id=show-all-layers]) .information-row-name {
  color: var(--bs-gray-900);
}

.information-row {
  cursor: inherit;
}

.leaflet-marker-icon:not(.leaflet-control-locate-heading) svg {
  width: 24px;
  height: 24px;
}

.information-row-icon svg {
  width: 24px;
  height: 24px;
}

.icon-accessible-toilet > * {
  border: 1px solid var(--bs-white);
}

.leaflet-marker-icon:not(.icon-hole):not(.leaflet-control-locate-location) {
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.icon-twitter svg {
  width: 20px !important;
  height: 20px !important;
}

.leaflet-control-locate-heading {
  border: 0 !important;
  box-shadow: none !important;
}

.info-level-2 {
  margin-left: 20px;
}

.info-level-2 .icon {
  min-width: 30px;
  width: 30px;
  height: 30px;
}
.info-level-2 .icon svg {
  width: 20px;
  height: 20px;
}

.information-row-arrow .icon-minus {
  display: none;
}
.information-row-arrow svg {
  width: 15px;
  height: 15px;
  fill: #212529;
}

.active-information-row .icon-minus {
  display: block;
}
.active-information-row .icon-plus {
  display: none;
}

.icon-usa svg,
.icon-eur svg {
  width: 30px !important;
  height: 30px !important;
}

.icon-hole {
  background-color: transparent;
}
.icon-hole span {
  box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 1px 1px;
  margin: auto;
  width: 24px !important;
  height: 24px !important;
}

.sidebar {
  position: fixed;
  bottom: 0;
  z-index: 1002;
  width: 100%;
  max-width: 500px;
  margin-bottom: 5px;
  border-radius: 10px;
  background-color: rgba(57, 57, 57, 0.8);
  line-height: 80%;
  text-align: center;
}
@media (max-width: 430px) {
  .sidebar .menu-text {
    font-size: 9px;
  }
}
@media (max-width: 600px) {
  .sidebar {
    max-width: 100%;
    border-radius: 0;
    margin-bottom: 0;
    left: 0;
  }
}
.sidebar .sidebar-location {
  display: var(--has-touch-screen);
}

.menu-item {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  cursor: pointer;
  padding: 10px;
  color: var(--bs-white);
  align-items: center;
  font-size: 80%;
  align-self: center;
  transition: color 0.5s ease-out;
}
@media (max-width: 430px) {
  .menu-item {
    padding: 5px;
  }
}
.menu-item svg {
  pointer-events: none;
  width: 35px;
  height: 35px;
  fill: var(--bs-white);
  transition: fill 0.5s ease-out;
}
@media (max-width: 450px) {
  .menu-item svg {
    width: 25px;
    height: 25px;
  }
}
@media (hover: hover) {
  .menu-item:hover svg {
    transition: fill 0.4s ease-in;
    fill: var(--bs-warning);
  }
  .menu-item:hover .menu-text {
    transition: color 0.4s ease-in;
    color: var(--bs-warning);
  }
}

.menu-text {
  word-wrap: break-word;
}

.fullscreen-is-active {
  overflow: hidden;
}
.fullscreen-is-active .sidebar-fullscreen-exit {
  display: flex;
}
@media (max-width: 992px) {
  .fullscreen-is-active .sidebar-fullscreen-exit {
    display: none;
  }
}
.fullscreen-is-active .sidebar-fullscreen-in {
  display: none;
}
.fullscreen-is-active #map {
  position: fixed;
  width: 100%;
  border: 0;
  height: 100%;
  z-index: 9;
}
@media (max-width: 992px) {
  .fullscreen-is-active #map {
    height: calc(100vh - 50px);
  }
}
@media (max-width: 991px) {
  .fullscreen-is-active .navbar {
    z-index: 999;
  }
}
@media (min-width: 992px) {
  .fullscreen-is-active .navbar {
    z-index: 0;
  }
}
.fullscreen-is-active .sidebar {
  position: fixed;
}
.fullscreen-is-active .maptiler-element {
  position: fixed;
  left: 10px;
  bottom: 5px;
}

.location-is-active .sidebar-location svg {
  fill: var(--bs-blue);
}
.location-is-active .sidebar-location .menu-text {
  color: var(--active-sidebar);
}

.parnter-quickbar-slider img {
  max-height: 38px;
}

.slider-wrapper-content {
  padding-right: 40px;
}

.slider-title {
  position: relative;
  border-radius: 0 10px 0 0;
  background-color: var(--main-color-bg, #393939);
  color: var(--app-font-color, #fff);
  font-size: 14px;
  height: 60px;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .slider-title {
    border-radius: 0;
  }
}

.close-slider {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.close-slider .icon {
  pointer-events: none;
  background: none;
  width: 30px;
  height: 30px;
  fill: var(--close-quickbar-popup, #fff);
}

.slider-content {
  overflow: auto;
  height: calc(100% - var(--sidebar-height));
}

.slider-content .account-inner {
  font-size: 90%;
  font-weight: 400;
}

.account-legal {
  color: var(--bs-gray-400);
  font-size: 90%;
}
.account-legal a {
  color: inherit;
}

.button-close-slider {
  position: absolute;
  width: 30px;
  right: 5px;
  z-index: 999;
}

.title-slider {
  position: absolute;
  background: var(--main-color-bg);
  top: -26px;
  left: 0;
  width: auto;
  padding: 5px 15px 0 10px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.parnter-quickbar-slider {
  margin-left: auto;
  margin-right: 0;
}

.logo-slider img {
  max-height: 38px;
}

.logo-slider img {
  max-height: 60px;
  max-width: 120px;
}

.lat-lng {
  position: absolute;
  top: 76px;
  left: 0;
  padding: 5px 10px;
  background: #fff;
  z-index: 999999;
}

.partner-logo {
  max-height: 21px;
}

.icon-quickbar {
  max-height: 35px;
}

.leaflet-popup-content-wrapper {
  max-width: 320px;
}

.popup-content h3 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
}
.popup-content tbody th {
  font-weight: normal;
}
.popup-content .table > :not(caption) > * > * {
  padding: 0.1rem 0.3rem;
}
.popup-content thead > tr > :nth-child(1),
.popup-content tbody > tr > :nth-child(1) {
  padding: 0.1rem 0rem;
}
.popup-content .top-five-country span {
  width: 15px;
  height: 15px;
}

.leaflet-popup p {
  margin: 0;
}
.leaflet-popup .card {
  border: 0;
}
.leaflet-popup .card-title {
  font-size: 1rem;
  font-weight: bold;
}
.leaflet-popup .popup-content h4 {
  font-size: 0.9rem;
  font-weight: bold;
}
.leaflet-popup .card-text {
  font-size: 100%;
}
.leaflet-popup table {
  margin-bottom: 0 !important;
}

.popup-info .player-popup {
  line-height: 120%;
}
.popup-info .player-status-info span {
  display: inline-block;
  text-transform: lowercase;
}
.popup-info .player-status-info span:first-letter {
  text-transform: uppercase;
}

.leaflet-popup-content {
  margin: 13px 24px 13px 18px !important;
}

.leaflet-popup-content:has(.card-img), .leaflet-popup-content:has(.card-video), .leaflet-popup-content:has(.social-links-wrappers) {
  margin: 13px 18px !important;
}

.group-popup {
  font-family: "Oswald", sans-serif;
}
.group-popup .leaflet-popup-content {
  min-width: 240px !important;
  max-width: 240px !important;
}

.leaflet-popup:not(.group-popup) {
  font-family: "Inter", sans-serif !important;
}

.leaflet-popup-content {
  margin: 13px 18px;
}

.card-img-top {
  margin-top: -15px;
  margin-left: -19px;
  margin-right: -19px;
  min-width: 320px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card-img {
  margin-top: -14px;
  margin-left: -19px;
  margin-right: -19px;
  min-width: 320px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 180px;
  background-repeat: no-repeat !important;
  background-position: 100% 100% !important;
  background-size: 100% 100% !important;
}

.card-video {
  margin-top: -14px;
  margin-left: -19px;
  margin-right: -19px;
  min-width: 320px;
}
.card-video video {
  min-width: 100%;
  min-height: 180px;
  -o-object-fit: fill;
     object-fit: fill;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}

.card-leaflet .card-body .card-livestream {
  /**
   * Override video margins
   */
  margin-top: 0px;
  margin-left: 0px;
  /**
   * Move fullscreen/minimize due to location of close button
   */
  /**
   * Remove rounded corners on bottom of livestream player
   */
  /**
   * Remove the max-height constraint for fullscreen
   */
}
.card-leaflet .card-body .card-livestream .fp-ui .fp-fullscreen,
.card-leaflet .card-body .card-livestream .fp-ui .fp-fullscreen-exit {
  position: absolute;
  top: 10px;
  left: 10px;
  right: auto;
  bottom: auto;
}
.card-leaflet .card-body .card-livestream .card-img {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.card-leaflet .card-body .card-livestream .is-fullscreen {
  max-height: 100vh !important;
  max-width: 100vw !important;
}
.card-leaflet .card-body .card-livestream .is-fullscreen video {
  max-height: 100vh !important;
  max-width: 100vw !important;
  height: 100%;
  width: 100%;
}
.card-leaflet .livestream-partner-logo img {
  max-height: 30px;
  max-width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.leaflet-container a.leaflet-popup-close-button {
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.leaflet-container a.leaflet-popup-close-button span {
  display: block;
  margin-top: -3px;
}

.img-full-popup {
  margin-left: -19px;
  margin-right: -19px;
  margin-top: -19px;
  border-radius: 10px 10px 0 0;
  width: 320px;
}

.video-full-popup {
  position: relative;
  padding-bottom: var(--aspect-ratio-video-popup, 56.25%);
  margin-bottom: -7px;
}
.video-full-popup iframe {
  position: absolute;
  border-radius: 12px;
  width: 320px;
  top: -14px;
  left: -19px;
  height: var(--height-video-popup, 180px);
}

.sidebar-flags svg {
  fill: var(--active-sidebar);
}
.sidebar-flags .menu-text {
  color: var(--active-sidebar);
}

.flags-is-removed .sidebar-flags svg {
  fill: var(--bs-white);
}
.flags-is-removed .sidebar-flags .menu-text {
  color: var(--bs-white);
}

.favorite {
  display: none;
}

.favorite-player-on-map {
  background-color: #f7a001 !important;
}
.favorite-player-on-map svg {
  fill: var(--bs-white);
}
.favorite-player-on-map .first {
  display: none;
}
.favorite-player-on-map .favorite {
  display: block;
}

.leading-player-on-map {
  background-color: var(--leading-group-color) !important;
}
.leading-player-on-map .first {
  display: none;
}
.leading-player-on-map .favorite {
  display: none;
}
.leading-player-on-map .leading-player {
  display: block;
}
.leading-player-on-map.favorite-player-on-map {
  background-color: #f7a001 !important;
}
.leading-player-on-map.leading-player-fave {
  background-color: #f7a001 !important;
}

.players-headshot {
  overflow: hidden;
  justify-content: space-evenly;
  gap: 5px;
  margin: 0 -7px 15px;
  background: #fff;
}
.players-headshot .player-wrapper {
  position: relative;
  border: 2px solid var(--player-wrapper-border, #5e5e5e);
  border-radius: 50%;
  width: 100px;
  overflow: hidden;
}
.players-headshot .player-wrapper svg {
  fill: #5e5e5e;
  width: 100%;
  height: 100%;
}
.players-headshot .player-wrapper .player-shadow {
  box-shadow: inset 2px -22px 14px 3px #c3ddc0;
}
.players-headshot .inactive-player {
  filter: opacity(0.5);
}

.popup-flight .players-headshot {
  border-radius: 0;
}
.popup-flight h3 {
  margin: auto 0;
}
.popup-flight .social-links-highlights {
  justify-content: space-evenly;
}
.popup-flight .player-name-wrapper .flag-icon {
  min-width: 21px;
  height: 21px;
}

.player-popup .player-wrapper {
  width: 150px;
  height: 150px;
}

.leaflet-popup-content .players-headshot .player-wrapper::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.leaflet-popup-content .players-headshot .player-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.leaflet-popup-content .players-headshot svg {
  position: absolute !important;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -49%);
}

.popup-info .players-headshot {
  border-radius: 0;
  gap: 0;
}
.popup-info .player-2 {
  height: 100px;
  width: 100px;
}
.popup-info .player-3 {
  height: 85px;
  width: 85px;
}
.popup-info .player-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}

.leading-player {
  display: none;
}

.flight-player-dots {
  vertical-align: middle;
}
.flight-player-dots .flag-icon {
  display: flex;
}
.flight-player-dots.flight-player-dots-border th {
  position: relative;
}
.flight-player-dots.flight-player-dots-border th .flight-dot-icon {
  position: absolute;
  top: 0;
  left: -15px;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  fill: var(--player-wrapper-border);
}

.location-button, .back-to-home,
.reload-site,
.show-multi-course-layers,
.geofencing-button {
  display: var(--has-touch-screen);
  background: var(--bs-white);
  border: 0;
  margin-top: 0;
  left: 0;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
}
.location-button svg, .back-to-home svg,
.reload-site svg,
.show-multi-course-layers svg,
.geofencing-button svg {
  width: 18px;
  height: 18px;
}

.back-to-home,
.reload-site,
.show-multi-course-layers,
.geofencing-button {
  display: flex;
}

.geofencing-button svg {
  width: 35px;
  height: 35px;
}

.slider {
  width: 100%;
  margin: auto;
  position: fixed;
  height: 70%;
  z-index: 1001;
  left: 50%;
  bottom: 0;
  opacity: 0;
  background: var(--bs-white);
  transform: translate(-50%, 100%);
  transition: transform 0.2s linear, opacity 0.2s linear;
  will-change: auto;
}
.slider h3 {
  margin: 0;
}
@media (min-width: 601px) {
  .slider {
    height: 80%;
    max-height: 650px;
    max-width: 500px;
    border-radius: 0 10px 10px 10px;
  }
}

.active-slider {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  will-change: auto;
  bottom: 5px;
}
@media (max-width: 600px) {
  .active-slider {
    min-width: 100%;
    bottom: 0;
  }
}
.active-slider .sidebar-info svg {
  fill: var(--active-sidebar);
}
.active-slider .sidebar-info .menu-text {
  color: var(--active-sidebar);
}

.fullscreen-is-active .map-container {
  position: fixed;
  top: 0;
  height: 100%;
  min-width: 100%;
  z-index: 9;
}

.switch-container {
  display: flex;
}

.switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}
.switch input {
  display: none;
}

.swich-slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}
.swich-slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: 0.4s;
  width: 26px;
}

input:checked + .swich-slider {
  background-color: #66bb6a;
}

input:checked + .swich-slider:before {
  transform: translateX(26px);
}

.swich-slider.round {
  border-radius: 34px;
}
.swich-slider.round:before {
  border-radius: 50%;
}

.active-slider-menu svg {
  transition: fill 0.4s ease-in;
  fill: var(--bs-warning);
}
.active-slider-menu .menu-text {
  transition: color 0.4s ease-in;
  color: var(--bs-warning);
}

.round-number {
  margin-left: 5px;
}

.projected-cut {
  margin-left: -12px;
  margin-right: -12px;
  padding-left: 14px;
  background-color: var(--main-color-bg) !important;
  color: var(--bs-white);
}

.slider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 99999;
  max-width: 500px;
  display: var(--hide-quickbar, block);
}

.leaflet-top.leaflet-right {
  display: var(--hide-control, block);
}

.small-font {
  font-size: 90%;
}

.site-locator .ads-row {
  min-height: 50px;
}

.distance-to-place {
  font-size: 12px;
  font-weight: bold;
  text-align: end;
}

.top-section-info-clear > div {
  padding: 5px 10px;
}

.top-section-info {
  background-color: var(--bs-gray-200);
  border-bottom: 1px solid var(--bs-gray-300);
  position: sticky;
  top: 0;
  z-index: 9;
}
.top-section-info .information-row-icon {
  display: none;
}
.top-section-info .top-section-info-sort {
  padding-left: 10px;
}
.top-section-info .list-sort {
  padding: 0 20px 0 2px;
  background-position: right 2px center;
  background-color: transparent;
  border: 0;
}
@media (max-width: 380px) {
  .top-section-info {
    font-size: 14px;
  }
  .top-section-info select {
    font-size: 14px;
  }
  .top-section-info .information-row-name {
    line-height: 100%;
    text-align: right;
  }
}

.auto-results-wrapper.auto-is-active {
  position: relative;
  margin-top: 10px;
}

.auto-results-wrapper {
  border: 0;
}

.loupe:before {
  top: 17px;
  bottom: auto;
}

.auto-clear {
  top: 12px;
  bottom: auto;
}

#auto-search-players-results {
  height: var(--slider-height);
  scrollbar-gutter: stable;
}

.players-is-active .slider-content {
  overflow: hidden;
}

.auto-search-wrapper input {
  padding: 10px 12px;
}

.auto-footer {
  position: absolute;
  height: 32px;
  width: 100%;
  top: 0;
  background-color: red;
  color: #fff;
  padding: 5px 10px;
}

.auto-head {
  top: 0;
  text-transform: uppercase;
  align-items: center;
  color: var(--app-font-color, #fff);
  background-color: var(--main-color-bg);
  font-size: 90%;
}

.auto-pr {
  padding-right: var(--touch-screen-players) !important;
}

.auto-row {
  position: relative;
}
.auto-row .auto-group {
  order: 1;
}
.auto-row .auto-country {
  order: 3;
}
.auto-row .auto-player-name {
  order: 2;
}
.auto-row .auto-tee {
  order: 4;
}
.auto-row .auto-thru {
  order: 5;
}
.auto-row .auto-fav {
  order: 6;
}
.auto-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 5px;
  bottom: 0;
  background-color: var(--course-color);
}

.auto-search-wrapper input {
  margin: 10px auto 0 auto;
  width: calc(100% - 20px);
  display: flex;
}

.auto-clear {
  top: 11px;
  right: 8px;
}

.auto-search-wrapper ul li {
  padding: 0;
  font-size: 90%;
}

.auto-search-wrapper .border-top {
  border-color: var(--bs-gray-400) !important;
}

.prevent-close {
  cursor: auto !important;
}

[data-id-flightnumber] {
  cursor: pointer !important;
}

#auto-search-practice-rounds-results {
  height: var(--slider-height);
  scrollbar-gutter: stable;
}

.auto-practice-search-wrapper input {
  padding: 10px 12px;
}

.auto-practice-search-wrapper input {
  margin: 10px auto 0 auto;
  width: calc(100% - 20px);
  display: flex;
}

.auto-practice-search-wrapper ul li {
  padding: 0;
  font-size: 90%;
}

.auto-practice-search-wrapper ul li {
  cursor: pointer;
  margin: 0;
  overflow: hidden;
  padding: 10px;
  position: relative;
}

.auto-practice-search-wrapper .border-top,
.auto-practice-search-wrapper .border-bottom {
  border-color: var(--bs-gray-400) !important;
}

.practice-player-popup {
  margin-right: 4px !important;
}

.auto-practice-search-wrapper.auto-is-active {
  position: relative;
  margin-top: 10px;
}

.auto-practice-search-wrapper ul {
  list-style: none;
  margin: 0 !important;
  overflow: auto;
  padding: 0;
}

.information-search {
  position: relative;
  padding-top: 5px;
  margin: 0 5px 0;
}
.information-search > input:focus {
  outline: 1px solid #858585;
}
.information-search [aria-expanded=true] {
  z-index: 10;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
  box-shadow: -3px 9px 21px -17px rgb(66, 68, 90);
}
.information-search .result-place {
  position: absolute;
  top: 41px;
  width: var(--info-width);
  background: #fff;
  z-index: 9;
  border: 1px solid #ced4da;
  border-top: 0;
  max-height: var(--info-height);
  overflow-y: auto;
  overflow-x: hidden;
}
.information-search .result-item {
  border-top: 1px solid #f1f1f1;
  cursor: pointer;
}

.clear-search-information,
.clear-search-locator {
  position: absolute;
  top: 8px;
  right: 5px;
  z-index: 999;
  margin: 0;
  padding: 0;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border: 0;
  cursor: pointer;
}
.clear-search-information:before,
.clear-search-locator:before {
  content: var(--close-button);
  line-height: 100%;
  display: block;
  top: 0;
}

.clear-search-locator {
  top: 18px;
  right: 15px;
}

.active-menu {
  background: #ff9797;
}

.leaflet-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  right: 0;
}

.multi-course-layers {
  display: flex;
  max-width: 600px;
  margin: 20px auto 0;
  background: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.multi-course-wrapper {
  display: flex;
  flex-flow: row wrap;
  pointer-events: none;
  gap: 15px;
  margin: auto;
  padding: 0 50px;
  justify-content: center;
}
@media (max-width: 730px) {
  .multi-course-wrapper {
    flex-direction: column;
    gap: 0px;
  }
}

.button-layer {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 10px;
  color: #000;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  border-left: 1px solid var(--color-button-layer);
  border-left-width: 30px;
  transition: all 0.3s ease;
}
.button-layer:hover {
  background: #fff;
}

.boda-box {
  cursor: pointer;
  height: 100%;
  left: 0;
  border: 20px solid red;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  z-index: 999;
}

.accordion {
  width: 100%;
  background-color: var(--bs-white);
  border: none;
  outline: none;
  text-align: left;
  padding: 15px 10px;
  font-size: 18px;
  color: var(--bs-blue);
  border-bottom: 1px solid var(--bs-gray-500);
  cursor: pointer;
  transition: background-color 0.2s linear;
}

.accordion:after {
  content: "↓";
  float: right;
}

.accordion.is-open:after {
  content: "↑";
}

.accordion:hover,
.accordion.is-open {
  background-color: var(--bs-gray-200);
}

.accordion-content {
  background-color: var(--bs-white);
  border-left: 1px solid whitesmoke;
  border-right: 1px solid whitesmoke;
  padding: 0 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}

.accortion-list {
  margin-left: -13px;
}

.accortion-list svg {
  width: 16px;
  height: 16px;
  margin-bottom: 4px;
  fill: var(--bs-gray-700);
}

.popup-info {
  position: fixed;
  background: #fff;
  color: var(--bs-gray-900);
  width: calc(100% - 20px);
  height: -moz-max-content;
  height: max-content;
  max-width: 500px;
  top: 0;
  bottom: 0;
  left: 10px;
  right: 10px;
  z-index: 1;
  margin: auto;
  opacity: 0;
  border-radius: 12px;
  padding: 10px 15px;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}

.active-popup .popup-info {
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
}

.popup-info .popup-header {
  font-weight: 600;
  margin-bottom: 10px;
}
.popup-info .popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  border: 0;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: #fff;
}

.holes-played {
  margin-right: 10px;
}

.player-popup {
  font-size: 13px;
  font-family: "Oswald", sans-serif;
}
.player-popup .player-fullname {
  line-height: 100%;
}
.player-popup table .flag-icon {
  width: 15px;
  height: 15px;
}
.player-popup .player-popup-wrapper {
  position: relative;
  padding-top: 10px;
  margin-top: -10px;
}
.player-popup .player-popup-wrapper .table-head-scroing {
  height: 100%;
  color: inherit;
}
.player-popup .player-popup-wrapper td {
  min-width: 28px !important;
  height: 21px;
}
.player-popup .player-popup-wrapper .rounds-row:not(.d-none) td {
  height: 22px;
}
.player-popup .popup-player-table-short {
  width: 40px;
}

.player-image {
  margin: auto;
  max-width: 200px;
}
.player-image svg {
  fill: #dedede;
  width: 100%;
  height: auto;
}
.player-image img {
  height: 150px;
}

.player-teetime {
  line-height: 16.9px;
}

.more-then-one-player .group-partner-popup {
  display: flex;
  align-items: center;
}

.number-of-players-2 .popup-flights-scoring {
  min-height: 79px;
}

.player-fullname {
  font-weight: bold;
  font-size: 16px;
}

.popup-flight {
  --table-height: 85px;
}
.popup-flight .popup-player-scoring {
  overflow: auto;
  overflow-y: hidden;
  margin: 0;
  min-height: var(--table-height);
}
.popup-flight .popup-flights-scoring {
  min-height: var(--table-height);
}
.popup-flight .rounds-row {
  border-color: transparent;
}
.popup-flight .rounds-row td:first-child {
  background: #fff;
}
.popup-flight .scoring-table {
  min-height: 67.2px;
}
.popup-flight .popup-player-scoring {
  padding-bottom: 2px;
}
@media (hover: none) {
  .popup-flight .popup-player-scoring {
    padding-top: 8px;
    padding-bottom: 9px;
  }
}
.popup-flight .leaderboard-color {
  width: 22px;
  height: 22px;
  margin: -2px;
}
.popup-flight .table-head-scroing {
  height: 100%;
}
.popup-flight .table-head-scroing td {
  min-width: 28px;
  padding: 0;
}
.popup-flight .table-head-scroing {
  color: inherit;
}
.popup-flight .table-head-scroing td {
  min-width: 28px;
}
.popup-flight .table-head-scroing td:first-child {
  min-width: 22px;
  background: #fff;
}

.player-popup-wrapper {
  overflow: hidden;
}
.player-popup-wrapper .group_partner {
  max-width: 132px;
}
.player-popup-wrapper .round-number {
  margin-left: auto;
  margin-right: 10px;
}
.player-popup-wrapper .popup-player-scoring {
  overflow: auto;
  overflow-y: hidden;
  margin: 0;
}
.player-popup-wrapper .popup-player-scoring .table-head-scroing td {
  min-width: 22px;
}
.player-popup-wrapper .popup-player-scoring .table-head-scroing td:first-child {
  background: #fff;
}
.player-popup-wrapper .leaderboard-color {
  width: 22px;
  height: 22px;
  margin: -2px;
}
.player-popup-wrapper .rounds-row {
  height: 22px;
  border-color: transparent;
}
.player-popup-wrapper .rounds-row td:first-child {
  background: #fff;
}
.player-popup-wrapper .popup-player-info {
  margin-top: 10px;
  min-height: 74px;
}
.player-popup-wrapper .popup-player-scoring {
  margin-top: 11px;
}
@media (hover: none) {
  .player-popup-wrapper .popup-player-scoring {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.player-popup-wrapper .flag-icon {
  min-width: 21px;
  min-height: 21px;
}
.player-popup-wrapper .popup-flights-scoring .flag-icon {
  min-width: 15px;
  min-height: 15px;
}

.round-number-wrapper {
  height: 30px;
  width: 35px;
  position: relative;
}

.group-round-number-popup {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  right: -5px;
  top: -6px;
  gap: 4px;
  flex-direction: row;
  padding: 5px;
  border-radius: 15px;
  border: 1px solid transparent;
}
.group-round-number-popup.active-round {
  background-color: #fff;
  border: 1px solid #c1c1c1;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
.group-round-number-popup .inactive-round-popup {
  background: #d8d8d8;
}

.round-number-popup {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #c1c1c1;
  color: var(--bs-white);
  font-size: 1rem;
  font-weight: bold;
}

.popup-info .more-then-one-player .social-links-wrappers {
  margin-left: auto;
}
.popup-info.active-player-popup .more-then-one-player .social-links-wrappers {
  margin-left: inherit;
}

.highlights-logo {
  margin-right: -10px;
}
.highlights-logo img {
  display: block;
  margin: 2px auto 4px;
  max-height: 50px;
}
.highlights-logo svg {
  width: 25px;
  height: 25px;
  margin: auto;
  display: block;
}

.highlights-row {
  font-size: 90%;
  align-items: center;
}

.highlights-row:hover,
.program-row:hover:not([data-show-on-map=false]) {
  cursor: pointer;
  background-color: var(--bs-gray-200);
}

.highlights-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-title-wrapper {
  position: relative;
}
.card-title-wrapper h3 {
  margin-top: 6px;
}

.social-links-wrappers {
  cursor: pointer;
}

.social-links-highlights {
  width: 100%;
  height: 30px;
  justify-content: space-between;
  align-items: center;
  margin-right: 15px;
  left: 0;
  z-index: 5;
  padding-right: 45px;
  background-color: #fff;
}
.social-links-highlights svg {
  width: 24px;
  height: 24px;
  fill: #888;
  transition: fill 500ms linear;
}
.social-links-highlights svg:hover {
  fill: #3f3f3f;
}

.copy-link {
  cursor: pointer;
}

.h-copy svg {
  pointer-events: none;
}

.share-content {
  z-index: 9;
  height: 30px;
}
.share-content svg {
  pointer-events: none;
  width: 30px;
  height: 30px;
  fill: #888;
}

.player-on-range {
  max-height: 150px;
  overflow: auto;
}
.player-on-range img,
.player-on-range svg {
  height: 25px;
}

.hole-info {
  color: #192267;
}
.hole-info-par strong {
  font-size: 0.9rem;
}
.hole-info-avg {
  color: var(--bs-gray-500);
}

.card-leaflet {
  box-shadow: none;
  width: 100%;
}
@media (min-width: 768px) {
  .card-leaflet {
    max-width: 300px;
  }
}
.card-leaflet .card-body {
  padding: 0;
}
.card-leaflet .card-body p {
  margin-top: 5px;
}
.card-leaflet .card-body p:empty {
  margin-top: 0;
}
.card-leaflet .card-body a {
  color: #fff;
}
.card-leaflet .card-body video {
  max-width: 300px;
  width: 100%;
  max-height: 170px;
}
.card-leaflet .popup-content {
  font-size: 110%;
  border-top: 1px solid var(--bs-gray-300);
  padding-top: 10px;
}
.card-leaflet .popup-content h4 {
  text-transform: uppercase;
}
.card-leaflet .popup-content thead th {
  font-weight: bold;
}
.card-leaflet .popup-content .top-five-country span {
  width: 19px;
  height: 19px;
}

.card-twitter a {
  color: #1d9bf0 !important;
  text-decoration: none;
}
.card-twitter a:hover {
  text-decoration: underline;
}
.card-twitter .title {
  padding-top: 3px;
  margin-left: -10px;
}
.card-twitter .logo {
  border-radius: 50%;
}
.card-twitter .video {
  max-width: 300px;
  width: 100%;
}
.card-twitter .social-links-highlights {
  min-width: 250px;
  margin-top: 12px;
  margin-bottom: -3px;
}

.twitter-logo {
  margin: -15px 0 -10px;
}

.card-button {
  margin-top: 5px;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 11px;
  font-size: 1rem;
  line-height: 100%;
  background-color: var(--card-color-back, #000);
  color: var(--card-color-text, #fff) !important;
  transition: box-shadow ease 0.5s;
}
.card-button:hover {
  box-shadow: 0px 10px 12px -11px rgb(66, 68, 90);
}

.card-img-wrapper {
  max-height: 180px;
  position: relative;
}
.card-img-wrapper .card-button {
  position: absolute;
  bottom: 10px;
  right: -10px;
}

.liveview-toggle {
  width: 60px;
  height: 34px;
  background-color: #cfcfcf;
  border-radius: 34px;
  position: absolute;
  cursor: pointer;
  bottom: 10px;
  border: 2px solid var(--liveview-color, #6f6f6f);
  left: -10px;
  padding: 0;
}
.liveview-toggle:disabled {
  cursor: default;
}
.liveview-toggle .thumb {
  content: "";
  position: absolute;
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 3px;
  background-color: #e20074;
  border-radius: 50%;
  transition: transform 0.3s, background-color 0.3s;
}
.liveview-toggle[aria-pressed=true] .thumb {
  transform: translateX(25px);
}

.programme-header {
  background-color: #c1c1c1 !important;
  color: var(--bs-white);
  text-align: center;
}

.callendar-button {
  max-width: 30px;
  margin-left: auto;
  cursor: pointer;
}
.callendar-button svg {
  border: 0;
  width: 30px;
  height: 30px;
  fill: gray;
}

.partner-logo-programme {
  text-align: center;
}
@media (max-width: 480px) {
  .partner-logo-programme {
    padding: 0;
  }
}
.partner-logo-programme img {
  max-height: 41px;
}
@media (max-width: 460px) {
  .partner-logo-programme img {
    max-width: 60px;
  }
}

.programme-wrapper {
  width: 100%;
  vertical-align: baseline;
}

.dev-data-locator {
  font-size: 11px;
  padding: 2px 5px;
  background-color: #fff;
  position: fixed;
  bottom: 2px;
  left: 2px;
  z-index: 999;
}

.leaflet-bottom.leaflet-right {
  bottom: 18px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
}
@media (max-width: 780px) {
  .leaflet-bottom.leaflet-right {
    bottom: 80px;
  }
}
@media (max-width: 430px) {
  .leaflet-bottom.leaflet-right {
    bottom: 65px;
  }
}

.leaflet-control-attribution {
  visibility: hidden;
  right: 15px;
  position: fixed;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 300px !important;
  height: auto !important;
  padding: 8px;
  z-index: -1;
  padding-right: 30px;
  padding-left: 10px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  align-items: center;
}
@media (max-width: 599px) {
  .leaflet-control-attribution {
    overflow: visible;
  }
}
@media (max-width: 768px) {
  .leaflet-control-attribution {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media (min-width: 769px) {
  .leaflet-control-attribution {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media (max-width: 600px) {
  .leaflet-control-attribution {
    flex-wrap: wrap;
    line-height: 100%;
  }
}

.bottom-left-logo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background: var(--bs-white);
}

.extra-icon {
  cursor: pointer;
}
.extra-icon svg {
  pointer-events: none;
}

.icon-home {
  padding-left: 10px;
}
@media (max-width: 932px) {
  .icon-home {
    padding-left: 0;
  }
}
.icon-home svg {
  display: inline-block;
  fill: rgba(255, 255, 255, 0.5);
  width: 120px;
  height: 30px;
}

@media (max-width: 932px) {
  .eventhub-text {
    display: none;
  }
}
@media (max-width: 600px) {
  .leaflet-bottom .leaflet-control {
    margin-bottom: 0;
  }
}

@media (max-width: 932px) {
  .home-eventhubhq {
    width: 40px;
  }
}

.content-information {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.content-information.leaflet-control {
  margin: 0 6px -5px;
}
.content-information.extra-icon {
  margin: 0;
}

.home-eventhubhq {
  bottom: 10px;
}
@media (max-width: 780px) {
  .home-eventhubhq {
    bottom: 80px;
  }
}
@media (max-width: 430px) {
  .home-eventhubhq {
    bottom: 60px;
  }
}

.icon-infor {
  margin-right: 7px;
}
@media (max-width: 430px) {
  .icon-infor {
    margin-top: 8px;
  }
}
.icon-infor.information-active svg {
  fill: #333;
}
.icon-infor svg {
  display: inline-block;
  fill: rgba(255, 255, 255, 0.7);
  width: 25px;
  height: 25px;
}

.twitter-tweet {
  margin: -13px auto !important;
  min-height: 250px;
}

blockquote {
  display: none;
}

.leaflet-popup-content:has(.twitter-tweet) {
  --scrollbar-bg: #cfd8dc;
  --thumb-bg: #90a4ae;
  margin: 11px 0 !important;
  overflow-y: auto;
  max-height: 360px;
}

.twitter-wrapper {
  --scrollbar-bg: #cfd8dc;
  --thumb-bg: #90a4ae;
  margin: 11px 0 !important;
  overflow-y: auto;
  max-height: 360px;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.timeline-wrapper {
  padding: 0px;
  border-radius: 12px;
  margin: 5px;
}

.timeline-item {
  background: #fff;
  border-radius: 3px;
  padding: 12px;
  margin: 0 auto;
  max-width: 472px;
  min-height: 200px;
}

.animated-background {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #eeeeee;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 800px 104px;
  height: 96px;
  position: relative;
}

.background-masker {
  background: #fff;
  position: absolute;
  box-sizing: border-box;
}

.background-masker.header-top,
.background-masker.header-bottom,
.background-masker.subheader-bottom {
  top: 0;
  left: 40px;
  right: 0;
  height: 10px;
}

.background-masker.header-left,
.background-masker.subheader-left,
.background-masker.header-right,
.background-masker.subheader-right {
  top: 10px;
  left: 40px;
  height: 8px;
  width: 10px;
}

.background-masker.header-bottom {
  top: 18px;
  height: 6px;
}

.background-masker.subheader-left,
.background-masker.subheader-right {
  top: 24px;
  height: 6px;
}

.background-masker.header-right,
.background-masker.subheader-right {
  width: auto;
  left: 300px;
  right: 0;
}

.background-masker.subheader-right {
  left: 230px;
}

.background-masker.subheader-bottom {
  top: 30px;
  height: 10px;
}

.background-masker.content-top,
.background-masker.content-second-line,
.background-masker.content-third-line,
.background-masker.content-second-end,
.background-masker.content-third-end,
.background-masker.content-first-end {
  top: 40px;
  left: 0;
  right: 0;
  height: 6px;
}

.background-masker.content-top {
  height: 20px;
}

.background-masker.content-first-end,
.background-masker.content-second-end,
.background-masker.content-third-end {
  width: auto;
  left: 380px;
  right: 0;
  top: 60px;
  height: 8px;
}

.background-masker.content-second-line {
  top: 68px;
}

.background-masker.content-second-end {
  left: 420px;
  top: 74px;
}

.background-masker.content-third-line {
  top: 82px;
}

.background-masker.content-third-end {
  left: 300px;
  top: 88px;
}

.signature-wrapper {
  display: flex;
  justify-content: flex-end;
  margin: 0 !important;
  max-width: 150px;
  max-height: 100px;
}

.signature-logo-full {
  width: 100%;
}
@media (max-width: 1045px) {
  .signature-logo-full {
    display: none;
  }
}

.signature-logo-icon {
  width: 100%;
  display: none;
}
@media (max-width: 1045px) {
  .signature-logo-icon {
    display: block;
  }
}

.geofencing-button {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.geofencing-information {
  position: absolute;
  top: 76px;
  z-index: 1000;
  background-color: #fff;
  padding: 2px 10px;
  font-size: 0.8rem;
  overflow-y: auto;
  max-width: 400px;
  cursor: pointer;
}
@media (max-width: 540px) {
  .geofencing-information {
    width: calc(100% - 55px);
  }
}

.you-are-in-more {
  max-height: 250px;
  overflow-y: auto;
}

.template-information {
  border-top: 1px solid #ccc;
}

[data-show-route=true] .route-wrapper {
  height: 26px;
  display: flex !important;
}
[data-show-route=true] .route-distance {
  height: 26px;
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
}
[data-show-route=true] .route-button {
  text-decoration: none;
  line-height: 16px;
}
[data-show-route=true] .popup-flight .route-wrapper,
[data-show-route=true] .mp-wrapper .route-wrapper {
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

.animation-content {
  height: 21px;
}
.animation-content .animation-title {
  height: 7px;
  margin: 10px auto 5px 0;
  width: 50%;
  animation: loader 1s infinite ease-in-out;
}
.animation-content .animation-row {
  height: 7px;
  width: 100%;
  animation: loader 1s infinite ease-in-out;
}
@keyframes loader {
  0% {
    background-color: rgba(165, 165, 165, 0.1);
  }
  50% {
    background-color: rgba(165, 165, 165, 0.3);
  }
  100% {
    background-color: rgba(165, 165, 165, 0.1);
  }
}

.route-button {
  text-wrap: nowrap;
  background-color: transparent;
  color: var(--bs-blue) !important;
  border: 0;
  font-size: 14px;
  line-height: 100%;
}
.route-button svg {
  width: 15px;
  height: 15px;
}

.active-route {
  position: relative;
}
.active-route::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -2px;
  margin: auto;
  width: 40px !important;
  height: 40px !important;
  animation: pulse-route 1.5s infinite;
  border-radius: 50%;
}
.active-route.icon-flights::before {
  width: 42px !important;
  height: 42px !important;
  left: -6px;
  top: -6px;
}

.icon-hole.active-route {
  position: relative;
}
.icon-hole.active-route::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -3px;
  margin: auto;
  width: 40px !important;
  height: 40px !important;
  animation: pulse-route 2s infinite;
  border-radius: 50%;
}

@keyframes pulse-route {
  0% {
    box-shadow: 0 0 0 0 rgb(255, 255, 255);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}
.popup-route {
  --height-popup-route: calc(
    var(--header-height, 0px) + var(--custom-info-height, 0px) +
      var(--squads-wrapper-height, 0px)
  );
  z-index: 1999;
  position: absolute;
  background-color: #fff;
  top: calc(var(--height-popup-route) + 10px);
  left: 0;
  right: 0;
  margin: auto;
  max-width: 320px;
  border-radius: 10px;
}
@media (max-width: 993px) {
  .popup-route {
    top: calc(var(--height-popup-route) + var(--watch-partner, 0px) + 10px);
  }
}
.popup-route .popup-route-content {
  margin: 10px;
}
.popup-route .icon-route-close {
  border-radius: 5px;
  padding: 5px;
}
.popup-route button {
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: block;
  display: flex;
  justify-content: center;
  margin: auto;
  min-height: 35px;
  min-width: 35px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10001;
}
.popup-route button svg {
  height: 25px;
  width: 25px;
}
.popup-route .popup-route-content {
  line-height: 120%;
}

.popup-route-place-name {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 195px;
  line-height: 19px;
}

.end-route-button {
  background-color: var(--popup-route-color-button);
  color: #fff;
  margin-left: auto;
  border-radius: 10px;
  display: block;
  border: 1px solid #ced4da;
  align-content: center;
  padding: 5px 12px;
}

.activation-iframe {
  width: 100%;
  height: 100%;
}

.activation-content .slider-content {
  overflow: hidden;
}

.notification {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  left: 0;
  right: 0;
  border: 1px solid #ced4da;
  cursor: pointer;
  margin: auto;
  overflow: hidden;
}
.notification .notification-info {
  font-size: 16px;
  margin: 10px;
  width: 100%;
  min-height: 48px;
  max-height: 90px;
  overflow: hidden;
}
.notification .notification-logo {
  min-width: 100px;
  max-width: 100px;
  padding: 5px;
  align-items: center;
  display: flex;
}
.notification .notification-logo .partner-logo {
  max-width: 100px;
  max-height: 60px;
}
.notification .notification-logo img {
  margin: auto;
}
.notification button {
  position: absolute;
  cursor: pointer;
  display: block;
  right: 0;
  top: 0;
  min-width: 35px;
  min-height: 35px;
  background-color: transparent;
  border: none;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}
.notification button svg {
  width: 25px;
  height: 25px;
}

.notification-container {
  --height-notification-desctop: calc(
    var(--header-height, 0px) + var(--custom-info-height, 0px)
  );
  position: absolute;
  width: 100%;
  max-width: 460px;
  z-index: 2000;
  padding: 0 5px;
  top: calc(var(--height-notification-desctop, 76px) + 4px);
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 991px) {
  .notification-container {
    --height-notification: calc(
      var(--header-height, 0px) + var(--watch-partner, 0px) +
        var(--custom-info-height, 0px)
    );
    top: calc(var(--height-notification, 76px) + 6px);
  }
}
.notification-container .icon-notification {
  padding: 5px;
  border-radius: 5px;
}
.notification-container.notification-is-open {
  height: auto;
}
.notification-container.notification-is-open .icon-notification {
  background-color: transparent;
}

.notification-container:empty {
  display: none;
}

.notification-show-all::after {
  content: "show all";
  text-transform: uppercase;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -20px;
  width: 80px;
  height: 20px;
  margin: auto;
  font-size: 12px;
  background-color: #f1f1f1;
  display: flex;
  border-radius: 0 0 5px 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.notification-show-all.notification-is-open {
  display: flex;
  flex-direction: column-reverse;
}
.notification-show-all.notification-is-open.notification-show-all::after {
  content: "hide all";
}
.notification-show-all.notification-is-open .notification {
  position: relative;
}
.notification-show-all.notification-is-open .notification:not(:last-child) {
  margin-top: 5px;
}

.notification-title {
  position: relative;
  margin-bottom: 4px;
  line-height: 110%;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-right: 22px;
  padding-bottom: 2px;
  max-height: 38px;
  font-size: 14px;
  overflow: hidden;
}

.notification-text {
  position: relative;
  line-height: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 14px;
}

.notification-animation {
  position: relative;
  animation: slide-down 300ms ease-out forwards;
}
.notification-animation .notification-wrapper {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fade-in 1.2s linear forwards;
}
.notification-animation:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -250px;
  width: 250px;
  height: 250px;
  background: rgb(255, 255, 255);
  filter: blur(35px);
  box-shadow: rgb(195, 195, 195) 0 0 10px 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  animation: move-ball 800ms linear forwards;
  z-index: 3;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes move-ball {
  from {
    transform: translateY(-50%) translateX(0);
  }
  to {
    transform: translateY(-50%) translateX(calc(var(--browser-with, 150vw) + 320px));
  }
}
@keyframes slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.sidebar-fullscreen-in {
  position: relative;
}

.popup-teaser {
  position: absolute;
  top: -60px;
  width: 200px;
  padding: 10px;
  right: 6px;
  font-size: 13px;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  text-align: left;
  line-height: 17px;
}
.popup-teaser .popup-close-teaser {
  position: absolute;
  top: 2px;
  right: 0;
  border: 0;
  background: transparent;
}
.popup-teaser .popup-close-teaser span {
  display: block;
  color: #585858;
  line-height: 100%;
  font-size: 16px;
  font-family: Tahoma, Verdana, sans-serif;
}
.popup-teaser:after, .popup-teaser:before {
  top: 100%;
  right: 25px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
@media (max-width: 450px) {
  .popup-teaser:after, .popup-teaser:before {
    right: 26px;
  }
}
@media (max-width: 430px) {
  .popup-teaser:after, .popup-teaser:before {
    right: 12px;
  }
}
.popup-teaser:after {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.bigscreen .group-popup h3 {
  font-size: var(--group-popup-title-font, 1rem) !important;
}
.bigscreen .group-popup .leaflet-popup-content {
  min-width: calc(var(--group-popup-width, 400px) - 40px) !important;
  font-size: var(--group-popup-font, 160%);
}
.bigscreen .group-popup .leaflet-popup-content-wrapper {
  min-width: var(--group-popup-width, 400px) !important;
}
.bigscreen [data-practice-id] table {
  font-size: var(--group-popup-practice-font, 160%);
}
.bigscreen [data-practice-id] .top-five-country {
  height: 100%;
}
.bigscreen [data-practice-id] .top-five-country .flag-icon {
  align-items: center;
  justify-content: center;
  display: flex;
}
.bigscreen .practice-area {
  font-size: var(--group-popup-practice-font, 130%);
}
.bigscreen .practice-area .row-item .col-10 {
  padding-left: 0;
  padding-right: 0;
}

.crowdcloud-logo .circle-wrapper .circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--circle-color-crowdcloud);
  border: 1px solid #c9c9c9;
  margin-right: 3px;
}
.crowdcloud-logo svg {
  width: 60px;
  max-height: 30px;
}

.active-crowdcloud::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid rgba(var(--color-crowdcloud-place), 0.4);
  border-top-color: rgba(var(--color-crowdcloud-place), 1);
  border-left-color: rgba(var(--color-crowdcloud-place), 1);
  border-right-color: rgba(var(--color-crowdcloud-place), 1);
  animation: crowdcloud-spin 4s linear infinite;
}
.active-crowdcloud.icon-hole::after {
  inset: 2px;
}

@keyframes crowdcloud-spin {
  to {
    transform: rotate(360deg);
  }
}
[data-popup-place-type=hole] .crowdcloud-logo {
  position: absolute;
  right: 0;
  top: 0;
}

.crowdcloud-btn {
  position: absolute;
  width: 60px;
  height: 32px;
  background-color: #ccc;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  top: calc(var(--header-height) + var(--custom-info-height, 0px) + 10px);
  left: 5px;
  padding: 0;
  overflow: hidden;
  z-index: 100;
}
@media (max-width: 991px) {
  .crowdcloud-btn {
    top: calc(var(--header-height) + var(--watch-partner, 0px) + var(--custom-info-height) + 10px);
  }
}
.crowdcloud-btn.crowdcloud-active .crowdcloud-switch-thumb {
  transform: translateX(28px);
}
.crowdcloud-btn .crowdcloud-switch-thumb {
  width: 24px;
  height: 24px;
  background-color: #e20074;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 1;
}
.crowdcloud-btn .crowdcloud-switch-thumb svg {
  width: 18px;
  height: 18px;
  z-index: 2;
  position: relative;
}

.active-promo-buzz {
  animation: promo-buzz-pulse 1.5s infinite;
}

@keyframes promo-buzz-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--color-promo-buzz-place), 1);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}
.team-selection {
  position: sticky;
  top: 0;
  z-index: 1;
  cursor: pointer;
}

.team-usa {
  background: #c81414;
  color: #fff;
}
.team-usa.is-active {
  background: #a10a0a;
}

.team-eur {
  background: #003c82;
  color: #fff;
}
.team-eur.is-active {
  background: #02245d;
}

.team-points {
  background: var(--team-color);
  color: #fff;
  text-align: center;
  min-width: 55px;
  line-height: 80%;
}

.team-points-first .team-points {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.team-points-second .team-points {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.team-leader-up {
  --team-leader-up: 1.3rem;
  font-size: var(--team-leader-up);
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 430px) {
  .team-leader-up {
    --team-leader-up: 1rem;
  }
}

.team-thru {
  --team-leader-thru: 0.9rem;
  font-size: var(--team-leader-thru);
  font-weight: 700;
  color: #b3b3b3;
}
@media (max-width: 430px) {
  .team-thru {
    --team-leader-thru: 0.7rem;
  }
}

.color-standing {
  color: #fff;
  padding: 1px 2px;
  width: 50px;
  margin: auto;
  font-weight: 400;
}

.color-usa {
  background: #c81414;
}

.color-eur {
  background: #003c82;
}

.color-as {
  background: #898989;
}

.color-reverse-usa {
  color: #c81414;
  font-size: 16px;
}

.color-reverse-eur {
  color: #003c82;
  font-weight: bold;
  font-size: 16px;
}

.border-team-usa {
  border: 3px solid #c81414;
}

.border-team-eur {
  border: 3px solid #003c82;
}

.border-team-fake {
  border: 3px solid #000;
}

.color-reverse-as {
  color: #898989;
  font-weight: bold;
  font-size: 16px;
}

.cursor-pointer {
  cursor: pointer;
}

.green-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #a3a3a3;
}

.green-dot-active {
  background: greenyellow;
  border: 1px solid #6cb300 !important;
}

.mach-player-image img {
  display: block;
  margin: auto;
}
.mach-player-image svg {
  min-width: 50px;
  min-height: 50px;
}

.mach-player-icon svg {
  width: 25px !important;
  height: 25px !important;
}

.flag-icon-match {
  width: 25px;
  height: 25px;
}

.app-type-tennis .flag-icon-match {
  width: 21px;
  height: 16px;
  border-radius: 3px;
}

.squads-wrapper {
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 255px;
  font-size: 17px;
  font-weight: bold;
  line-height: 100%;
  box-shadow: 0px 9px 15px 0px rgba(66, 68, 90, 0.2);
  margin: auto;
  border-radius: 7px;
}

.team-color {
  color: #383838;
  padding: 2px 9px;
}

.squads-logo {
  order: 2;
  --logo-width: 40;
  --logo-height: 50;
  order: 2;
  margin: -5px -15px -10px;
}
.squads-logo img {
  width: 40px;
  height: 50px;
}

.team-name {
  margin-bottom: -2px;
}

.leaderboards-head {
  background-color: #a3a3a3;
  color: #fff;
}

@media (max-width: 400px) {
  .flag-eur span {
    width: 20px;
    height: 20px;
  }
}

.team-person {
  line-height: 120%;
}
@media (max-width: 460px) {
  .team-person {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .flag-usa span {
    width: 20px;
    height: 20px;
  }
}

.center-xy {
  display: flex;
  justify-content: center;
  align-self: center;
}

.mp-head img {
  max-width: 130px;
}

.mp-body {
  font-size: 1.1rem;
}
.mp-body .col-flag {
  padding-right: 0;
  margin-left: -7px;
  margin-bottom: 5px;
}
.mp-body .col-players {
  line-height: 100%;
}
.mp-body .color-standing {
  font-size: 2rem;
  letter-spacing: -2px;
}
.mp-body .team-thru {
  font-size: 1.2rem;
}
.mp-body .team-leader-up {
  line-height: 180%;
}

.mp-wrapper {
  font-size: 16px;
}
.mp-wrapper h5 {
  font-weight: 700;
  font-size: 13px;
}

.mp-player {
  margin-bottom: 5px;
}

.mp-round-name {
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.mp-hole {
  text-transform: capitalize;
  margin-top: 3px;
  font-size: 13px;
}

.player-row-information {
  font-size: 12px;
  background: #e8e8e8;
}
.player-row-information svg {
  width: 20px;
  height: 20px;
}
.player-row-information .first-section {
  margin-right: -10px;
}
@media (max-width: 352px) {
  .player-row-information {
    flex-direction: column;
  }
  .player-row-information .first-section {
    margin-bottom: -7px;
    margin-right: 0;
  }
  .player-row-information .second-section {
    margin-bottom: -3px;
  }
}
.player-row-information .green-dot {
  margin-bottom: 1px;
  width: 15px;
  height: 15px;
}

.player-col {
  display: flex;
  line-height: 100%;
  padding: 7px 0;
  align-items: center;
  gap: 3px;
}
.player-col:nth-child(1) {
  gap: 6px;
}

.mp-player-wrapper {
  display: flex;
}
.mp-player-wrapper img {
  max-width: 100px;
}
.mp-player-wrapper .player-shadow {
  position: relative;
  width: 80px !important;
  height: 80px !important;
}

/*# sourceMappingURL=styles.css.map*/