.draw-container {
  position: absolute;
  z-index: 1000000;
  width: 100%;
  height: 44px;
  line-height: 44px;
  vertical-align: middle;
  background-color: var(--fm-col-primary-tint-3);
  display: grid;
  grid-template-columns: auto auto;
  cursor: default;
  align-items: center;
  top: 0;
}

.draw-container .grid-item .icon {
  position: relative;
  top: -1px;
  vertical-align: middle;
}

.draw-container .grid-item:first-child {
  padding-left: 16px;
  text-align: left;
}

.draw-container .grid-item:first-child p {
  font-family: LatoWebHeavy;
  display: inline-block;
  margin-left: 16px;
}

.draw-container .grid-item:first-child p span {
  text-transform: capitalize;
}

.draw-container .grid-item:nth-child(2) {
  text-align: center;
}

.draw-container .grid-item:last-child {
  text-align: right;
}

.draw-container .grid-item:last-child .cancel,
.draw-container .grid-item:last-child .save {
  cursor: pointer;
  display: inline-block;
}

.draw-container .grid-item:last-child .cancel {
  margin-right: 16px;
}

.draw-container .grid-item:last-child .save {
  background: var(--fm-col-primary);
  padding: 0 15px;
  margin-left: 20px;
}

.draw-container .grid-item:last-child .save:hover {
  background: var(--fm-col-primary-tint-2);
}

.draw-container .grid-item:last-child .save:active {
  background-color: #128db2;
  color: #fff;
}

.draw-container .grid-item:last-child p span {
  padding-bottom: 1px;
  border-bottom: 1px solid #333;
}

.cursor-tooltip {
  transform: translate(-9999px, -9999px);
  z-index: 9999;
  position: absolute;
  background: #333;
  color: #333;
  padding: 12px 16px;
  top: 0;
  left: 0;
  color: white;
  font-size: 12px;
  line-height: 18px;
  display: none;
}

.cursor-tooltip.visible {
  display: block;
}

.cursor-tooltip .arrow {
  position: absolute;
  width: 0;
  height: 0;
}

.cursor-tooltip .arrow.up {
  top: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #333;
}

.cursor-tooltip .arrow.left {
  left: -8px;
  transform: translate(0, -4px);
  top: 50%;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-right: 8px solid #333;
}

.waypoint-cursor-tooltip .icon {
  float: left;
}

.waypoint-cursor-tooltip {
  width: 200px;
  padding-left: 8px;
}

.waypoint-cursor-tooltip .icon {
  width: 36px !important;
  height: 36px !important;
}

.waypoint-cursor-tooltip .inner {
  width: 135px;
  float: right;
}

.button {
  overflow: visible;
  -webkit-font-smoothing: inherit;
  border: 0;
  cursor: pointer;
  display: block;
  height: 44px;
  outline: 0;
  position: relative;
  text-align: center;
  transition: all 200ms ease-out;
  width: 100%;
  font-size: var(--fm‐font‐s);
}

.button i {
  position: absolute;
  font-style: normal;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/* DEFAULT THEME */
.button.default {
  background-color: #1acafe;
  box-shadow: 0 1px rgb(18, 141, 178);
  color: #333;
}

.button.default.shadow-box {
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.button.default:hover {
  background-color: #8de5ff;
}

.button.default:active {
  background-color: #128db2;
  box-shadow: 0 1px #1acafe;
  color: #fff;
}

/* SUBTLE THEME */
.button.subtle {
  background-color: #0000;
  border-color: #0000;
  box-shadow: none;
  color: #999;
}

.button.subtle:hover {
  background-color: #ccc;
}

.button.subtle:active {
  background-color: #666;
}

.fm-btn-plain.round {
  width: 38px;
  height: 38px;
  background: var(--fm-col-shadow-tint-1);
  border-color: var(--fm-col-shadow-tint-1);
  padding: 0;
  display: inline-block;
  margin-right: 12px;
}

.fm-btn-plain.round svg {
  fill: white;
  border-color: var(--fm-col-shadow-tint-1);
}

.fm-btn-plain.fm-col-primary {
  background: var(--fm-col-primary);
  border-color: var(--fm-col-primary);
  box-shadow: 0 1px #0a5266;
}

.fm-btn-plain.white {
  background: white;
  border-color: white;
  width: 30px;
  height: 30px;
  margin: 0 auto;
}

.fm-btn-plain.white svg {
  width: 20px;
  height: 20px;
}

.fm-btn-plain.fm-col-primary:hover {
  background: var(--fm-col-primary-tint-2);
  border-color: var(--fm-col-primary-tint-2);
}

.fm-btn-plain.fm-col-primary:active {
  background: var(--fm-col-primary-shade-1);
  border-color: var(--fm-col-primary-shade-1);
}

.fm-btn-plain i {
  font-style: normal;
}

.admin-search {
  background: grey;
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
}

.admin-search-opened {
  display: block;
}

.admin-search-closed {
  display: none;
}

.admin-search .container {
  background: white;
  height: 500px;
  width: 500px;
  padding: 80px;
}

.admin-search .container input {
  width: 100%;
  height: 30px;
  margin-bottom: 30px;
}

.admin-search .container button {
  width: 100%;
  height: 40px;
  margin-bottom: 30px;
}

.half-closing-icon {
  background: red;
}

.sidebar .toggle-side-bar .half-closing-icon .left-arrow {
  left: auto; 
  right: -2px;
  position: absolute;
  top: 10px;
}

.ski-difficulty-stripe-route {
  width: 100%;
  position: relative;
}

.ski-difficulty-stripe-route .v {
  position: absolute;
  top: 32px;
  font-size: 14px;
  display: block;
  font-weight: bold;
}

.ski-difficulty-stripe-route .icon {
  position: absolute;
}

.ski-difficulty-stripe-route .route-easy-icon {
  fill: var(--fm-col-green) !important;
}

.ski-difficulty-stripe-route .route-moderate-icon {
  fill: var(--fm-col-yellow) !important;
}

.ski-difficulty-stripe-route .route-difficult-icon {
  fill: var(--fm-col-orange) !important;
}

.ski-difficulty-stripe-route .route-severe-icon {
  fill: var(--fm-col-red) !important;
}

.ski-difficulty-stripe-route .route-extreme-icon {
  fill: var(--fm-col-shadow) !important;
}

.ski-difficulty-stripe-route .bg {
  width: 48px;
  height: 48px;
  position: relative;
}

.ski-difficulty-stripe-route .line-block {
  position: relative;
  height: 48px;
}

.ski-difficulty-stripe-route .line {
  position: absolute;
  top: 24px;
  background: var(--fm-col-shadow);
  height: 2px;
  width: 100%;
}

.ski-difficulty-stripe-route .line-block {
  overflow: hidden;
}

.ski-difficulty-stripe-route .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% + 48px);
  height: 2px;
  width: 100vw;
}

.ski-difficulty-stripe-route.l-0-5 .line {
  background: var(--fm-col-green);
  width: 0;
}

.ski-difficulty-stripe-route.l-0-5 .line::after {
  background: var(--fm-col-green);
}

.ski-difficulty-stripe-route.l-1-5 .line {
  background: var(--fm-col-green);
  width: 0%;
}

.ski-difficulty-stripe-route.l-1-5 .line::after {
  background: var(--fm-col-green);
}

.ski-difficulty-stripe-route.l-2-5 .line {
  background: var(--fm-col-yellow);
  width: 20%;
}

.ski-difficulty-stripe-route.l-2-5 .line::after {
  background: var(--fm-col-yellow);
}

.ski-difficulty-stripe-route.l-3-5 .line {
  background: var(--fm-col-orange);
  width: 40%;
}

.ski-difficulty-stripe-route.l-3-5 .line::after {
  background: var(--fm-col-orange);
}

.ski-difficulty-stripe-route.l-4-5 .line {
  background: var(--fm-col-red);
  width: 60%;
}

.ski-difficulty-stripe-route.l-4-5 .line::after {
  background: var(--fm-col-red);
}

.ski-difficulty-stripe-route.l-5-5 .line {
  background: var(--fm-col-shadow);
  width: 80%;
}

.ski-difficulty-stripe-route.l-5-5 .line::after {
  background: var(--fm-col-shadow);
  display: none;
}

.ski-difficulty-stripe-route.l-7-5 .line,
.ski-difficulty-stripe-route.l-7-5 .line::after {
  background: var(--fm-col-shadow-tint-2);
}

.ski-difficulty-stripe-route.l-1-5 .v {
  color: var(--fm-col-green);
}

.ski-difficulty-stripe-route.l-2-5 .v {
  color: var(--fm-col-yellow);
}

.ski-difficulty-stripe-route.l-3-5 .v {
  color: var(--fm-col-orange);
}

.ski-difficulty-stripe-route.l-4-5 .v {
  color: var(--fm-col-red);
}

.ski-difficulty-stripe-route.l-5-5 .v {
  color: var(--fm-col-shadow);
}

.ski-difficulty-stripe-route.l-7-5 .v {
  color: var(--fm-col-shadow);
}

.ski-difficulty-stripe-route.l-1-5 .bg {
  left: 0%;
}

.ski-difficulty-stripe-route.l-2-5 .bg {
  left: 20%;
}

.ski-difficulty-stripe-route.l-3-5 .bg {
  left: 40%;
}

.ski-difficulty-stripe-route.l-4-5 .bg {
  left: 60%;
}

.ski-difficulty-stripe-route.l-5-5 .bg {
  left: 80%;
}

.progress-bar {
  height: 32px;
  width: 100%;
  background: var(--fm-col-shadow-tint-5);
}

.progress-line {
  height: 4px;
  background: #bfeacd;
}

.progress-bar.error .progress-line {
  background: #facccc;
}

.progress-line .value {
  height: 100%;
  width: 0%;
  background: #00ab39;
  transition: width 0.4s;
}

.progress-bar.error .value {
  background: #eb3434;
}

.progress-bar .p-body {
  padding: 0 16px;
  height: 28px;
  line-height: 28px;
}

.progress-bar .p-body .progress-info {
  color: #00ab39;
  float: left;
  font-size: 14px;
  font-weight: bold;
}

.progress-bar .p-body .error-info {
  color: #eb3434;
  float: left;
  font-size: 14px;
  font-weight: bold;
}

.progress-bar .cancel {
  float: right;
  cursor: pointer;
  color: var(--fm-col-shadow-tint-1);
  border-bottom: 1px solid var(--fm-col-shadow-tint-1);
  height: 23px;
  position: relative;
  font-size: var(--xxs-pattern-font-size);
}

.gpx-uploader-edit {
    background: #f9f9f9;
    border-style: dashed;
    border-color: #CCCCCC;
    border-width: 1px;
    cursor: pointer;
    margin: 10 0 10 0;
    padding: 16px;
    width: 100%;
}

.gpx-uploader-edit .edit-area .edit-info p {
    text-decoration: underline;
}
/* based on https://codepen.io/designil/pen/HGvcE */

@keyframes mapfront_spin {
  0% {
    background-position: 112px 0%;
  }

  100% {
    background-position: 0 0%;
  }
}

@keyframes mapback_spin {
  0% {
    background-position: 0 0%;
  }

  100% {
    background-position: 112px 0%;
  }
}
.globe {
  width: 64px;
  height: 64px;
  position: relative;
}
.front {
  width: 100%;
  height: 100%;
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
}

.back {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}

.mapfront,
.mapback {
  border: 2px solid white;
  border-radius: 75%;
  width: 85%;
  height: 85%;
  position: absolute;
  top: 7.5%;
  left: 7.5%;
  z-index: 4;
  background-repeat: repeat-x;
}

.mapfront {
  background-image: url(https://fatmap.com/assets/[object Module]);
  animation: mapfront_spin 3s linear infinite;
}

.mapback {
  background-image: url(https://fatmap.com/assets/[object Module]);
  animation: mapback_spin 3s linear infinite;
  opacity: 0.4;
}

:root {
  --tabs-height: 40px;
}

.tabs .tab {
  float: left;
  width: var(--tab-width);
  white-space: nowrap;
  text-align: center;
  min-height: var(--tabs-height);
  line-height: var(--tabs-height);
  box-sizing: border-box;
  color: var(--fm-col-shadow-tint-1);
  font-size: 14px;
  padding-top: 1px;
}

.tabs .tab svg {
  display: none;
}

.tabs .tab.active {
  border-bottom: 2px solid var(--fm-col-shadow);
  color: var(--fm-col-shadow);
  width: calc(var(--tab-width));
}

.tabs .tab.active svg {
  display: inline-block;
  margin-right: 2px;
}

.tabs .tab.activeSibling {
  width: calc(var(--tab-width));
}

.tabs .tab svg {
  position: relative;
  top: 6px;
}

:root {
  --tab-active-offset: 14px;
}

.tabs {
  min-height: 40px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.tabs .left-arrow,
.tabs .right-arrow {
  position: absolute;
  top: 0;
  height: 100%;
  width: 24px;
  z-index: 1;
  background-color: white;
}

.tabs .left-arrow.disabled,
.tabs .right-arrow.disabled {
  visibility: hidden;
}

.tabs .left-arrow {
  left: 0;
}

.tabs .right-arrow {
  right: 0;
}

.tabs .wrapper {
  height: 40px;
  position: absolute;
  width: 100%;
  overflow: hidden;
}

.tabs .wrapper .tabslist {
  height: 40px;
  position: absolute;
  background: white;
  width: 100vw;
  transition: transform 0.5s cubic-bezier(0.35, 0, 0.25, 1);
  transform: translate3d(0, 0, 0);
}

.tabs .tab {
  padding: 0 12px;
  float: left;
  white-space: nowrap;
  text-align: center;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  color: var(--fm-col-shadow-tint-1);
  font-size: 12px;
  padding-top: 1px;
}

.tabs .tab svg {
  display: none;
}

.tabs .tab.active {
  border-bottom: 2px solid var(--fm-col-shadow);
  color: var(--fm-col-shadow);
  cursor: default;
}

.tabs .tab.active svg {
  display: inline-block;
}

.tabs .tab svg {
  position: relative;
  top: 6px;
}

.tabs .tab svg path {
  fill: var(--fm-col-shadow);
}

.filter-list {
  position: absolute;
  z-index: 1;
  top: 0;
  background: white;
  width: 100%;
  padding-bottom: 25px;
}

.filter-list h3 {
  font-size: 16px;
  height: 48px;
  padding-left: 20px;
  line-height: 48px;
  font-family: LatoWebHeavy;
}

.filter-list .range-hanlder {
  height: 48px;
  width: 100%;
  position: relative;
  margin-bottom: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.filter-list i.disabled {
  opacity: 0.6;
}

.filter-list i.left {
  left: 16px;
}

.filter-list i.right {
  right: 16px;
}

.filter-list i {
  display: block;
  height: 48px;
  width: 48px;
  background-color: var(--fm-col-shadow);
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 0;
}

.filter-list i.active:active {
  background-color: white;
  border: 1px solid var(--fm-col-shadow);
}

.filter-list i.active:active svg {
  fill: var(--fm-col-shadow);
}

.filter-list i svg {
  fill: white;
  position: absolute;
  top: 12px;
  left: 12px;
}

.filter-list i path {
  fill: white !important;
}

.filter-list .value {
  font-family: LatoWebHeavy;
  width: 100%;
  text-align: center;
  font-size: 20px;
  height: 48px;
  line-height: 48px;
}

.filter-list .buttons button {
  height: 58px;
  border: none;
  width: 49.5%;
  font-size: var(--s-pattern-font-size);
  outline: none;
  color: var(--fm-col-shadow);
  margin: 0;
  float: left;
}

.filter-list .buttons button:last-child {
  float: right;
}

.filter-list .buttons button:active {
  color: white;
}

.tour-guide {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.routes {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.routes-header {
  height: 48px;
  font-size: 12px;
  position: relative;
  background: var(--fm-col-shadow-tint-5);
  z-index: "auto";
}

.routes-list {
  flex: 1;
  overflow: auto;
  background: var(--fm-col-shadow-tint-5);
}

.routes h2 {
  float: left;
  margin-left: 16px;
  font-size: var(--xs-pattern-font-size);
  color: var(--fm-col-primary-shade-3);
  font-weight: normal;
  height: 48px;
  line-height: 48px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

.routes .sort-icon {
  position: relative;
  float: right;
  margin-right: 16px;
  margin-left: -8px;
  top: 12px;
  cursor: pointer;
}

.routes .filter-radius-icon {
  position: relative;
  float: right;
  margin-right: 16px;
  top: 12px;
  cursor: pointer;
}
/* .routes-by-destination {
  background-color: green;
} */

.grouped-routes {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ftu-help {
  width: 400px;
  color: white;
  top: 56px;
  font-size: 14px;
  position: absolute;

  display: none;
}

.ftu-help .draw-help {
  height: 468px;
}

.settings-popup {
  border-radius: 22px;
  background-color: rgba(51, 51, 51, 0.9);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
}

.ftu-help.opened {
  display: block;
}

.ftu-help h3 {
  font-size: 14px;
}

.ftu-help .top {
  height: 46px;
  line-height: 46px;
  border-bottom: 1px solid white;
  padding-left: 52px;
}

.ftu-help .bottom {
  padding: 24px 20px 24px 52px;
}

.ftu-help .bottom .item {
  margin-bottom: 24px;
}

.ftu-help .bottom .item h3 {
  margin-bottom: 5px;
}

.ftu-help .bottom .item p {
  line-height: 1.5;
}

.ftu-help .bottom .text-icon {
  position: relative;
  font-size: 10px;
  border-radius: 2px;
  color: #333;
  display: inline-block;
  padding: 1px 4px;
  background: #fff;
  top: -1px;
  margin: 0 5px;
}

.ftu-help .top .icon {
  left: 16px;
  position: absolute;
  top: 10px;
}

.ftu-help .bottom .icon {
  top: 4px;
  margin-top: -8px;
  position: relative;
}

.ftu-map-popup {
  position: relative;
}

.ftu-map-popup h3 {
  font-size: 14px;
  border-radius: 22px;
  height: 44px;
  line-height: 44px;
  padding-left: 52px;
}

.ftu-map-popup h3 span {
  border-bottom: 1px solid white;
  cursor: pointer;
}

.ftu-map-popup .icon {
  height: 28px;
  width: 28px;
  left: 14px;
  top: 9px;
  position: absolute;
}

@keyframes loading_indicator_triangles {
  0% {
    transform: scale(0);
  }
  75% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes loading_indicator_middle {
  0% {
    transform: scaleX(1) scaleY(0);
  }
  75% {
    transform: scaleX(0) scaleY(1);
  }
  100% {
    transform: scaleX(0) scaleY(1);
  }
}

#loading_indicator {
  position: absolute;
  bottom: calc(var(--fm-gap-bottom) + 30px);
  left: 0px;
  transform: translateX(calc((100vw - 100%) / 2));
  transition: opacity 1s ease-in;
  opacity: 1;
}

#loading_indicator .frame {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  height: 18px;
  width: 24px;
}

#loading_indicator .frame div {
  position: absolute;
  animation-timing-function: linear;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

#loading_indicator .back,
.front-left,
.front-right {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 18px 12px;

  border-color: transparent transparent rgba(0, 0, 0, 0.3) transparent;
}

#loading_indicator .front-left,
.front-right {
  animation-name: loading_indicator_triangles;

  border-color: transparent transparent white transparent;
}

#loading_indicator .front-left {
  transform-origin: bottom left;
}

#loading_indicator .front-right {
  transform-origin: bottom right;
}

#loading_indicator .front-middle {
  height: 18px;
  width: 24px;
  animation-name: loading_indicator_middle;
  transform-origin: bottom center;
  background-color: white;
}

#loading_indicator p {
  color: white;
  font-size: var(--xxs-pattern-font-size);
  line-height: var(--xxs-pattern-line-height);
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 1);
}

.loading-screen-container {
  background: rgba(7, 6, 6, 0.8);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
}

.loading-screen-container p {
  color: #fff;
}

.hide-container {
  display: none;
}

.show-container {
  display: absolute;
}

.header-gradient {
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  pointer-events: none;
}

:root {
  --xxl-pattern-font-size: 2em;
  --xxl-pattern-line-height: 1.125;

  --xl-pattern-font-size: 1.5em;
  --xl-pattern-line-height: 1.125;

  --l-pattern-font-size: 1.25em;
  --l-pattern-line-height: 2;

  --fat-pattern-font-size: 1.25em;
  --fat-pattern-line-height: 1.5;

  --s-pattern-font-size: 1em;
  --s-pattern-line-height: 1.5;

  --xs-pattern-font-size: 0.875em;
  --xs-pattern-line-height: 1.5;

  --xxs-pattern-font-size: 0.75em;
  --xxs-pattern-line-height: 1.5;

  /* PRIMARY */
  --fm-col-primary: #1acafe;
  --fm-col-primary-shade-1: #128db2;
  --fm-col-primary-shade-2: #0a5166;
  --fm-col-primary-shade-3: #052833;
  --fm-col-primary-tint-1: #53d7fe;
  --fm-col-primary-tint-2: #8de5ff;
  --fm-col-primary-tint-3: #c6f2ff;
  --color-primary-050: #dcf7fe;

  /* SHADOW */
  --fm-col-shadow: #333333;
  --fm-col-shadow-tint-1: #666666;
  --fm-col-shadow-tint-2: #999999;
  --fm-col-shadow-tint-3: #cccccc;
  --fm-col-shadow-tint-4: #eaeaea;
  --fm-col-shadow-tint-5: #f9f9f9;
  --fm-col-shadow-shade-1: #000000;

  /* GREEN */
  --fm-col-green-shade-2: #004421;
  --fm-col-green-shade-1: #007739;
  --fm-col-green: #00aa52;
  --fm-col-green-tint-1: #40bf7d;
  --fm-col-green-tint-2: #80d5a9;
  --fm-col-green-tint-3: #bfead4;

  /* BLUE */
  --fm-col-blue-shade-2: #06315d;
  --fm-col-blue-shade-1: #0a56a2;
  --fm-col-blue: #0e7be8;
  --fm-col-blue-tint-1: #4a9cee;
  --fm-col-blue-tint-2: #87bdf4;
  --fm-col-blue-tint-3: #c3def9;

  /* RED */
  --fm-col-red-shade-2: #5e1c15;
  --fm-col-red-shade-1: #a53024;
  --fm-col-red: #eb4534;
  --fm-col-red-tint-1: #f07467;
  --fm-col-red-tint-2: #f5a29a;
  --fm-col-red-tint-3: #fad1cc;

  /* PURPLE */
  --fm-col-purple-shade-1: #952485;

  /* ORANGE */
  --fm-col-orange: #ff6f00;
  --fm-col-orange-shade-1: #b24d00;

  /* YELLOW */
  --fm-col-yellow: #feb200;
  --fm-col-yellow-shade-1: #b27d00;

  /* Highlight */
  --fm-col-highlight: #fff;

  /* ALTERNATIVE */
  --fm-col-alternative: #feb200;

  --fm-op-1: 0.2;
  --fm-op-2: 0.4;
  --fm-op-3: 0.6;
  --fm-op-4: 0.8;

  /* NEW STYLEGUIDE */
  /* https://app.zeplin.io/project/5c52d17f0063923541c04208/styleguide/colors */

  /* EXPLORE */
  /* -- COLORS */
  --color-explore-black: #0c0c0c;
  --color-explore-accent: #c78b00;
  --color-explore-accent-rgb: 199, 139, 0;

  /* PRIMARY */

  --primary-050: #dcf7fe;
  --primary-100: #c6f2ff;
  --primary-200: #8de5ff;
  --primary-300: #53d7fe;
  --primary-400: #3cd1fe;
  --primary-500: #1acafe;
  --primary-600: #00b0e5;
  --primary-700: #128db2;
  --primary-800: #0a5166;
  --primary-900: #052833;

  /* REDS */

  --red-050: #fce0e0;
  --red-100: #facccc;
  --red-200: #f59a9a;
  --red-300: #f06767;
  --red-400: #ed5252;
  --red-500: #eb3434;
  --red-600: #c72c2c;
  --red-700: #a32424;
  --red-800: #5e1414;
  --red-900: #2e0a0a;

  /* FONTS */
  --font-explore: "CeraPro", "LatoWeb", Sans-Serif;

  /* Black */

  --black-080: rgba(0, 0, 0, 0.8);
}

@charset "UTF-8";
@font-face {
  font-family: 'Notification';
  src: url(https://fatmap.com/assets/[object Module]);
  src: url(https://fatmap.com/assets/[object Module]#iefixs3g3t9) format("embedded-opentype"), url(https://fatmap.com/assets/[object Module]) format("woff"), url(https://fatmap.com/assets/[object Module]) format("truetype"), url(https://fatmap.com/assets/[object Module]#notification) format("svg");
  font-weight: normal;
  font-style: normal;
}

.notification-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999;
  width: 320px;
  padding: 0px 15px;
  max-height: calc(100% - 30px);
  overflow-x: hidden;
  overflow-y: auto;
}

.notification {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 15px 15px 58px;
  border-radius: 2px;
  color: #fff;
  background-color: #ccc;
  -webkit-box-shadow: 0 0 12px #999;
          box-shadow: 0 0 12px #999;
  cursor: pointer;
  font-size: 1em;
  line-height: 1.2em;
  position: relative;
  opacity: 0.9;
  margin-top: 15px;
}

.notification .title {
  font-size: 1em;
  line-height: 1.2em;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.notification:hover, .notification:focus {
  opacity: 1;
}

.notification-enter {
  visibility: hidden;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.notification-enter.notification-enter-active {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.notification-exit {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.notification-exit.notification-exit-active {
  visibility: hidden;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.notification:before {
  position: absolute;
  top: 50%;
  left: 15px;
  margin-top: -14px;
  display: block;
  font-family: 'Notification';
  width: 28px;
  height: 28px;
  font-size: 28px;
  text-align: center;
  line-height: 28px;
}

.notification-info {
  background-color: #2f96b4;
}

.notification-info:before {
  content: "\F05A";
}

.notification-success {
  background-color: #51a351;
}

.notification-success:before {
  content: "\F058";
}

.notification-warning {
  background-color: #f89406;
}

.notification-warning:before {
  content: "\F06A";
}

.notification-error {
  background-color: #bd362f;
}

.notification-error:before {
  content: "\F057";
}

.route-detail-view {
  background: #f4f5f7;
  height: 100%;
  overflow: auto;
  flex: 1;
}

.route-detail-view > .inner {
  height: 100%;
  background: white;
}

.route-detail-view .overview {
  background: #333;
}

.route-detail-view .atom-tabs-2 {
  padding: 8px 0 8px 0;
  height: 40px;
  line-height: 24px;
  background: white;
}

.route-detail-view .atom-tabs-2 .col {
  float: left;
  width: 50%;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.route-detail-view .atom-tabs-2 .col.active {
  color: var(--fm-col-shadow);
  cursor: default;
  position: relative;
}

.route-detail-view .atom-tabs-2 .col.active:after {
  content: "";
  height: 5px;
  width: 100%;
  background: var(--fm-col-shadow);
  position: absolute;
  left: 0;
  top: 27px;
}

.route-detail-view .atom-tabs-2 .col:last-child {
  border-right: none;
  color: var(--fm-col-shadow-tint-2);
}

.route-detail-view .atom-tabs-2 .col {
  float: left;
  width: 50%;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.route-detail-view .molecule-statistics-piste {
  position: relative;
  width: 288px;
  height: 184px;
}

.route-detail-view .red {
  fill: url(https://fatmap.com/assets/809c79c66fd995167231.css#fillRed);
}

.route-detail-view .molecule-statistics-piste .detail-overview {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  color: rgb(255, 217, 128);
}

.route-detail-view .molecule-statistics-piste .detail-overview .detail-lines {
  width: 100%;
  height: 100%;
}

.route-detail-view .molecule-statistics-piste .detail-overview-max-alt {
  position: absolute;
  top: 12px;
  right: 22px;
  width: 88px;
  text-align: center;
  font-size: var(--fat-pattern-font-size);
}

.route-detail-view .molecule-statistics-piste .detail-overview-alt-diff {
  position: absolute;
  top: 60px;
  right: 22px;
  width: 88px;
  text-align: center;
}

.route-detail-view .molecule-statistics-piste .detail-overview-alt-diff path {
  fill: rgb(255, 217, 128);
}

.route-detail-view .molecule-statistics-piste .detail-overview-min-alt {
  position: absolute;
  top: 114px;
  right: 22px;
  width: 88px;
  text-align: center;
  font-size: var(--fat-pattern-font-size);
}

.route-detail-view .molecule-statistics-piste .detail-overview-length {
  position: absolute;
  top: 68px;
  left: 54px;
  width: 88px;
  text-align: center;
  background: #333;
  transform: rotate(45deg);
  writing-mode: lr-tb;
  font-size: var(--fat-pattern-font-size);
}

.route-detail-view .white {
  fill: url(https://fatmap.com/assets/809c79c66fd995167231.css#fill);
}

.route-detail-view .green {
  fill: url(https://fatmap.com/assets/809c79c66fd995167231.css#fillGreen);
}

.route-detail-view .blue {
  fill: url(https://fatmap.com/assets/809c79c66fd995167231.css#fillBlue);
}

.route-detail-view .red {
  fill: url(https://fatmap.com/assets/809c79c66fd995167231.css#fillRed);
}

.route-detail-view .black {
  fill: url(https://fatmap.com/assets/809c79c66fd995167231.css#fillBlack);
}

.route-detail-view .grey {
  fill: url(https://fatmap.com/assets/809c79c66fd995167231.css#fillGrey);
}

.route-detail-view .yellow {
  fill: url(https://fatmap.com/assets/809c79c66fd995167231.css#fillYellow);
}

.route-detail-view .purple {
  fill: url(https://fatmap.com/assets/809c79c66fd995167231.css#fillPurple);
}

.route-detail-view .short-description {
  font-family: LatoWebHeavy;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 14px;
}

.route-detail-view .info {
  margin-bottom: 27px;
  margin-left: -15px;
  margin-right: -15px;
}

.route-detail-view .info .icon {
  position: relative;
  top: 6px;
  margin-right: 12px;
}

.route-detail-view .info .info-item {
  position: relative;
  height: 24px;
  margin-bottom: 8px;
  padding-left: 18px;
  padding-right: 4px;
}

.route-detail-view .info .info-item-back-country {
  margin-top: 14px;
  margin-bottom: -6px;
}

.route-detail-view .info .info-item-back-country .icon {
  top: 0;
}

.route-detail-view .info .info-item-back-country span {
  top: -6px;
}

.route-detail-view .info .info-item.info-item-exposure {
  margin-top: 14px;
  margin-bottom: 2px;
}

.route-detail-view .info .info-item .text-icon {
  position: relative;
  margin-left: 3px;
  margin-right: 15px;
}

.route-detail-view .info .info-item .value {
  float: right;
  font-weight: bold;
}

.route-detail-view .info .info-item span {
  position: relative;
  line-height: 1.5;
}

.route-detail-view .connections {
  margin-bottom: 35px;
}

.route-detail-view h4.offset {
  margin-top: 53px;
  margin-bottom: 26px;
}

.route-detail-view h4.details {
  margin-bottom: 14px;
}

.route-detail-view .connections h3 {
  margin-top: 40px;
}

.route-detail-view .connections .connections-item span {
  font-family: LatoWebHeavy;
  position: relative;
  top: -5px;
}

.route-detail-view .connections .connections-item {
  margin-bottom: 12px;
}

.route-detail-view .description {
  line-height: 1.5;
  padding-bottom: 20px;
}

.route-detail-view .description h3 {
  margin-bottom: 16px;
  margin-top: 35px;
}

.route-detail-view .description p {
  margin-bottom: 12px;
}

.route-detail-view button.route {
  margin-right: 10px;
  float: right;
}

.lift button.route,
.lift-detail-view .route {
  background: var(--fm-col-shadow-tint-1);
  border-color: var(--fm-col-shadow-tint-1);
}

.lift .route svg,
.lift-detail-view .route svg {
  fill: white;
}

.route-detail-view.lift-detail-view .content {
  padding-top: 30px;
}

.route-detail-view.lift-detail-view .info .info-item {
  padding-right: 15px;
}

.route-detail-view .location {
  float: right;
  margin-right: 8px;
}

.route-detail-view .share {
  position: absolute;
  top: 8px;
}

.route-detail-view .share span {
  position: relative;
  top: -5px;
  font-size: var(--xs-pattern-font-size);
  margin-left: 3px;
}

.route-detail-view .share .inner {
  position: relative;
  cursor: pointer;
}

.route-detail-view .share .icon {
  position: relative;
}

.route-detail-view .xxx {
  background: black;
  position: relative;
}

.route-detail-view .altitude-graph .panel .line {
  top: 12px;
  height: 100px;
}

.app.compact .route-detail-view .altitude-graph .panel .line,
.mobile-app .route-detail-view .altitude-graph .panel .line {
  height: calc(50vw - 50px);
}

.app.embed .route-detail-view .altitude-graph .panel .line {
  height: 100px;
}

.route-detail-view .altitude-graph .panel .max-height {
  position: relative;
  top: 5px;
  margin-bottom: 81px;
}

.app.compact .route-detail-view .altitude-graph .panel .max-height,
.mobile-app .route-detail-view .altitude-graph .panel .max-height {
  margin-bottom: calc(50vw - 65px);
}

.app.embed .route-detail-view .altitude-graph .panel .max-height {
  margin-bottom: 81px;
}

.points-interest-icon,
.solid-location-icon {
  position: relative;
  top: -3px;
  left: -4px;
}

.route-detail-view .content {
  padding: 50px 15px 60px 15px;
  position: relative;
  background: white;
}

.shared_custom_adventure .route-detail-view .content {
  padding-bottom: 150px;
}

.route-detail-view .level-name {
  position: absolute;
  color: white;
  font-size: 16px;
  top: 156px;
  left: 15px;
}

.route-detail-view .level-gradient {
  position: absolute;
  color: #ffd980;
  font-size: 20px;
  left: 20px;
  top: 82px;
}

.route-detail-view .level-gradient div {
  margin-left: 2px;
}

.route-detail-view .level-gradient span {
  font-size: 16px;
}

.route-detail-view .buttons {
  z-index: 1;
  position: absolute;
  top: -24px;
  right: 0;
}

.route-detail-view .activity-icon {
  position: absolute;
  z-index: 1;
  left: calc(50% - 36px);
  top: calc(50% - 36px);
  width: 72px;
  height: 72px;
}

.route-detail-view .activity-icon svg {
  width: 72px;
  height: 72px;
}

.difficulty-grades {
  position: relative;
}

.difficulty-grades .tooltip-wrapper {
  text-align: right;
}

.difficulty-grades .grade-header {
  height: 40px;
  line-height: 40px;
}

.content h4 {
  font-family: LatoWebHeavy;
  font-size: var(--s-pattern-font-size);
}

.difficulty-grades h4 {
  float: left;
}

.difficulty-grades .grade-item {
  position: relative;
  margin-bottom: 16px;
}

.difficulty-grades .grade-header .icon {
  position: relative;
  float: right;
  top: 7px;
  cursor: pointer;
}

.submit-form {
  background: #fff;
  text-align: center;
}

.submit-form input {
  width: 200px;
  margin: 0 5px;
  display: inline-block;
}

.fm-btn-plain.connection-button {
  width: 38px;
  height: 38px;
  background: var(--fm-col-shadow-tint-1);
  border-color: var(--fm-col-shadow-tint-1);
  padding: 0;
  display: inline-block;
  margin-right: 12px;
}

.fm-btn-plain.connection-button path {
  fill: #fff !important;
}

.route-detail-view .inner .photo-container .icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 60px;
  height: auto;
}

.content .stats-outer-container {
  margin: 14 0 14 0;
}

.content .headline {
  border-bottom: 4px solid #333;
  padding-bottom: 10px;
}

.content .sub-header {
  font-size: 12px;
}

.photo-x {
  position: relative;
}

.loading {
  text-align: center;
  top: -5px;
  position: relative;
}

.loading h4 {
  display: inline-block;
  color: #fff;
}

.route-detail-view .close-btn {
  cursor: pointer;
  text-align: center;
  background: var(--fm-col-primary-shade-1);
  line-height: 64px;
  height: 64px;
  position: absolute;
  bottom: 0;
  width: 288px;
  z-index: 1;
}

.route-detail-view .close-btn span {
  color: white;
}

.route.mobile-fly-through {
  position: absolute;
  top: -60px;
  left: 16px;
  border-radius: 50%;
}

.embed-restriction-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.embed-restriction-overlay .inner {
  text-align: center;
  color: white;
}

.embed-restriction-overlay .block {
  height: 200px;
  margin: 100px auto 0 auto;
  position: relative;
  width: 288px;
}

.embed-restriction-overlay .block .mobile-title {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.embed-restriction-overlay .explore-button {
  height: 56px;
  line-height: 56px;
  vertical-align: middle;
}

.embed-restriction-overlay .explore-button span {
  filter: drop-shadow(0 1px 2px rgb(0, 0, 0));
}

.embed-restriction-overlay .backToDestination {
  position: absolute;
  bottom: 0;
  width: 100%;
  filter: drop-shadow(0 1px 2px rgb(0, 0, 0));
}

.embed-restriction-overlay .block .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.embed-restriction-overlay .block .icon path {
  fill: white;
}

.gallery-container {
  position: absolute;
  width: 100vw;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  cursor: pointer;
}
.photo-panel {
  width: 100%;
}
.galery-closed-true {
  display: none;
}

.galery-closed-false {
  display: block;
}
.photo .image-gallery-slide .image-gallery-description {
  background: none;
  width: 100%;
  text-align: center;
  bottom: 0px;
}

.photo .show-false .image-gallery-description {
  display: none;
}

.photo .show-true .image-gallery-description {
  display: block;
}

.image-gallery-left-nav::before,
.image-gallery-right-nav::before {
  font-size: 40px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

.image-gallery-left-nav,
.image-gallery-right-nav {
  display: none;
}

.image-gallery-left-nav .image-gallery-svg,
.image-gallery-right-nav .image-gallery-svg {
  /* force over-writing default styles in library's css */
  height: 60px !important;
  width: 30px !important;
}

.image-gallery-bullets .image-gallery-bullet.active {
  border: none !important;
}

.photo:hover .image-gallery-left-nav,
.photo:hover .image-gallery-right-nav {
  display: block;
}

.photo .image-gallery-bullets .image-gallery-bullet {
  padding: 3px;
}

.photo .attribution-container a,
.photo .attribution-container p {
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

.photo .attribution-container .photo-title {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  font-style: black;
}

.photo .attribution-container p {
  display: inline;
  font-size: 12px;
}

.show-true .image-gallery-slide-wrapper .image-gallery-bullets {
  bottom: 80px;
}

.photo .image-gallery-fullscreen-button::before,
.image-gallery-play-button::before,
.image-gallery-left-nav::before,
.image-gallery-right-nav::before {
  color: white !important;
}

.image-gallery-icon{color:#fff;transition:all .3s ease-out;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:0;cursor:pointer;outline:none;position:absolute;z-index:4;filter:drop-shadow(0 2px 2px #1a1a1a)}@media(hover: hover)and (pointer: fine){.image-gallery-icon:hover{color:#337ab7}.image-gallery-icon:hover .image-gallery-svg{transform:scale(1.1)}}.image-gallery-icon:focus{outline:2px solid #337ab7}.image-gallery-using-mouse .image-gallery-icon:focus{outline:none}.image-gallery-fullscreen-button,.image-gallery-play-button{bottom:0;padding:20px}.image-gallery-fullscreen-button .image-gallery-svg,.image-gallery-play-button .image-gallery-svg{height:28px;width:28px}@media(max-width: 768px){.image-gallery-fullscreen-button,.image-gallery-play-button{padding:15px}.image-gallery-fullscreen-button .image-gallery-svg,.image-gallery-play-button .image-gallery-svg{height:24px;width:24px}}@media(max-width: 480px){.image-gallery-fullscreen-button,.image-gallery-play-button{padding:10px}.image-gallery-fullscreen-button .image-gallery-svg,.image-gallery-play-button .image-gallery-svg{height:16px;width:16px}}.image-gallery-fullscreen-button{right:0}.image-gallery-play-button{left:0}.image-gallery-left-nav,.image-gallery-right-nav{padding:50px 10px;top:50%;transform:translateY(-50%)}.image-gallery-left-nav .image-gallery-svg,.image-gallery-right-nav .image-gallery-svg{height:120px;width:60px}@media(max-width: 768px){.image-gallery-left-nav .image-gallery-svg,.image-gallery-right-nav .image-gallery-svg{height:72px;width:36px}}@media(max-width: 480px){.image-gallery-left-nav .image-gallery-svg,.image-gallery-right-nav .image-gallery-svg{height:48px;width:24px}}.image-gallery-left-nav[disabled],.image-gallery-right-nav[disabled]{cursor:disabled;opacity:.6;pointer-events:none}.image-gallery-left-nav{left:0}.image-gallery-right-nav{right:0}.image-gallery{-webkit-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0);position:relative}.image-gallery.fullscreen-modal{background:#000;bottom:0;height:100%;left:0;position:fixed;right:0;top:0;width:100%;z-index:5}.image-gallery.fullscreen-modal .image-gallery-content{top:50%;transform:translateY(-50%)}.image-gallery-content{position:relative;line-height:0;top:0}.image-gallery-content.fullscreen{background:#000}.image-gallery-content .image-gallery-slide .image-gallery-image{max-height:calc(100vh - 80px)}.image-gallery-content.left .image-gallery-slide .image-gallery-image,.image-gallery-content.right .image-gallery-slide .image-gallery-image{max-height:100vh}.image-gallery-slide-wrapper{position:relative}.image-gallery-slide-wrapper.left,.image-gallery-slide-wrapper.right{display:inline-block;width:calc(100% - 110px)}@media(max-width: 768px){.image-gallery-slide-wrapper.left,.image-gallery-slide-wrapper.right{width:calc(100% - 87px)}}.image-gallery-slide-wrapper.image-gallery-rtl{direction:rtl}.image-gallery-slides{line-height:0;overflow:hidden;position:relative;white-space:nowrap;text-align:center}.image-gallery-slide{left:0;position:absolute;top:0;width:100%}.image-gallery-slide.center{position:relative}.image-gallery-slide .image-gallery-image{width:100%;-o-object-fit:contain;object-fit:contain}.image-gallery-slide .image-gallery-description{background:rgba(0,0,0,.4);bottom:70px;color:#fff;left:0;line-height:1;padding:10px 20px;position:absolute;white-space:normal}@media(max-width: 768px){.image-gallery-slide .image-gallery-description{bottom:45px;font-size:.8em;padding:8px 15px}}.image-gallery-bullets{bottom:20px;left:0;margin:0 auto;position:absolute;right:0;width:80%;z-index:4}.image-gallery-bullets .image-gallery-bullets-container{margin:0;padding:0;text-align:center}.image-gallery-bullets .image-gallery-bullet{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:1px solid #fff;border-radius:50%;box-shadow:0 2px 2px #1a1a1a;cursor:pointer;display:inline-block;margin:0 5px;outline:none;padding:5px;transition:all .2s ease-out}@media(max-width: 768px){.image-gallery-bullets .image-gallery-bullet{margin:0 3px;padding:3px}}@media(max-width: 480px){.image-gallery-bullets .image-gallery-bullet{padding:2.7px}}.image-gallery-bullets .image-gallery-bullet:focus{transform:scale(1.2);background:#337ab7;border:1px solid #337ab7}.image-gallery-bullets .image-gallery-bullet.active{transform:scale(1.2);border:1px solid #fff;background:#fff}@media(hover: hover)and (pointer: fine){.image-gallery-bullets .image-gallery-bullet:hover{background:#337ab7;border:1px solid #337ab7}.image-gallery-bullets .image-gallery-bullet.active:hover{background:#337ab7}}.image-gallery-thumbnails-wrapper{position:relative}.image-gallery-thumbnails-wrapper.thumbnails-swipe-horizontal{touch-action:pan-y}.image-gallery-thumbnails-wrapper.thumbnails-swipe-vertical{touch-action:pan-x}.image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl{direction:rtl}.image-gallery-thumbnails-wrapper.left,.image-gallery-thumbnails-wrapper.right{display:inline-block;vertical-align:top;width:100px}@media(max-width: 768px){.image-gallery-thumbnails-wrapper.left,.image-gallery-thumbnails-wrapper.right{width:81px}}.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails,.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails{height:100%;width:100%;left:0;padding:0;position:absolute;top:0}.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail,.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail{display:block;margin-right:0;padding:0}.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail,.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail{margin-left:0;margin-top:2px}.image-gallery-thumbnails-wrapper.left,.image-gallery-thumbnails-wrapper.right{margin:0 5px}@media(max-width: 768px){.image-gallery-thumbnails-wrapper.left,.image-gallery-thumbnails-wrapper.right{margin:0 3px}}.image-gallery-thumbnails{overflow:hidden;padding:5px 0}@media(max-width: 768px){.image-gallery-thumbnails{padding:3px 0}}.image-gallery-thumbnails .image-gallery-thumbnails-container{cursor:pointer;text-align:center;white-space:nowrap}.image-gallery-thumbnail{display:inline-block;border:4px solid transparent;transition:border .3s ease-out;width:100px;background:transparent;padding:0}@media(max-width: 768px){.image-gallery-thumbnail{border:3px solid transparent;width:81px}}.image-gallery-thumbnail+.image-gallery-thumbnail{margin-left:2px}.image-gallery-thumbnail .image-gallery-thumbnail-inner{display:block;position:relative}.image-gallery-thumbnail .image-gallery-thumbnail-image{vertical-align:middle;width:100%;line-height:0}.image-gallery-thumbnail.active,.image-gallery-thumbnail:focus{outline:none;border:4px solid #337ab7}@media(max-width: 768px){.image-gallery-thumbnail.active,.image-gallery-thumbnail:focus{border:3px solid #337ab7}}@media(hover: hover)and (pointer: fine){.image-gallery-thumbnail:hover{outline:none;border:4px solid #337ab7}}@media(hover: hover)and (pointer: fine)and (max-width: 768px){.image-gallery-thumbnail:hover{border:3px solid #337ab7}}.image-gallery-thumbnail-label{box-sizing:border-box;color:#fff;font-size:1em;left:0;line-height:1em;padding:5%;position:absolute;top:50%;text-shadow:0 2px 2px #1a1a1a;transform:translateY(-50%);white-space:normal;width:100%}@media(max-width: 768px){.image-gallery-thumbnail-label{font-size:.8em;line-height:.8em}}.image-gallery-index{background:rgba(0,0,0,.4);color:#fff;line-height:1;padding:10px 20px;position:absolute;right:0;top:0;z-index:4}@media(max-width: 768px){.image-gallery-index{font-size:.8em;padding:5px 10px}}

.pie-segment {
  font-family: LatoWebHeavy;
  font-size: 12px;
}

.ski-difficulty-stripe-route {
  width: 100%;
  position: relative;
}

.ski-difficulty-stripe-route.level-stripe .bg {
  width: 48px;
  height: 48px;
  position: absolute;
  background: transparent;
}

.ski-difficulty-stripe-route.level-stripe .bg .circle {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: calc(50% + 1px);
  transform: translate(-50%, -50%);
}

.ski-difficulty-stripe-route.level-stripe .circle {
  background: var(--fm-col-shadow);
}

.ski-difficulty-stripe-route.level-stripe .line {
  background: var(--fm-col-shadow);
}

.ski-difficulty-stripe-route.level-stripe .v {
  min-width: 48px;
  top: 6px;
  color: var(--fm-col-shadow);
  text-align: center;
  text-transform: none;
  font-family: LatoWebHeavy;
}

.ski-difficulty-stripe-route.level-stripe.l-1-4 .v,
.ski-difficulty-stripe-route.level-stripe.l-1-4 .bg {
  left: 0%;
}

.ski-difficulty-stripe-route.level-stripe.l-2-4 .v,
.ski-difficulty-stripe-route.level-stripe.l-2-4 .bg {
  left: 25%;
}

.ski-difficulty-stripe-route.level-stripe.l-3-4 .v,
.ski-difficulty-stripe-route.level-stripe.l-3-4 .bg {
  left: 50%;
}

.ski-difficulty-stripe-route.level-stripe.l-4-4 .v,
.ski-difficulty-stripe-route.level-stripe.l-4-4 .bg {
  right: 0;
}

.ski-difficulty-stripe-route .label {
  line-height: 1.25;
  padding: 4px 0;
  position: relative;
  top: -20px;
  font-size: var(--xxs-pattern-font-size);
  display: inline-block;
  margin-bottom: -20px;
}
.tour-block {
  width: 288px;
  height: 310px;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 16px;
}

.tour-block .view-zoom {
  height: 280px;
  position: relative;
}

.tour-block .header {
  text-align: center;
  margin-bottom: 16px;
}

.tour-block .header svg {
  width: 72px;
  height: 72px;
}

.tour-block .zoom path,
.tour-block .tilt path {
  fill: var(--fm-col-primary) !important;
}

.tour-block .content h3 {
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 14px;
}

.tour-block .content p {
  line-height: 1.5;
  font-family: LatoWebLight;
}

.tour-block .message {
  text-align: center;
  color: var(--fm-col-primary);
  height: 56px;
  line-height: 56px;
  width: 100%;
  position: absolute;
  bottom: -8px;
}

.tour-block .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.tour-block .bottom button {
  width: 50%;
  height: 56px;
  display: inline-block;
  font-size: 14px;
}

.tour-block .bottom button.cancel {
  background-color: #118fb2;
  color: white;
}

.tour-block .bottom button:active {
  color: white;
}

.tour-block .viewer {
  position: absolute;
  bottom: 0;
}

.tour-block .viewer path {
  fill: white !important;
}

.tour-block .viewer .left,
.tour-block .viewer .center,
.tour-block .viewer .right {
  position: relative;
  width: 56px;
  height: 56px;
  float: left;
}

.tour-block .viewer .left {
  margin-left: -32px;
  cursor: pointer;
  text-align: right;
}

.tour-block .viewer .left.disabled,
.tour-block .viewer .right.disabled {
  visibility: hidden;
}

.tour-block .viewer .right {
  margin-right: -32px;
  cursor: pointer;
}

.tour-block .viewer .left svg,
.tour-block .viewer .right svg {
  margin-top: 16px;
}

.tour-block .viewer .center {
  width: 208px;
}
.tour-block .viewer .center ul {
  width: 48px;
  transform: translateY(-50%);
  margin: 0 auto;
  position: relative;
  top: 50%;
}

.tour-block .viewer .center li {
  width: 6px;
  height: 6px;
  list-style: none;
  border-radius: 50%;
  background-color: var(--fm-col-primary-shade-1);
  float: left;
  margin: 3px;
}

.tour-block .viewer .center li.current {
  background-color: var(--fm-col-primary);
}

.tour-block .basic-tick-icon path {
  fill: var(--fm-col-green) !important;
}

.tour-block .basic-tick-icon {
  display: none;
}

.tour-block.success .header svg,
.tour-block.success .header div {
  display: none;
}

.tour-block.success .header .basic-tick-icon {
  display: inline-block;
}

.tour-block p.green {
  display: none;
  color: var(--fm-col-green);
}

.tour-block.success p {
  display: none;
}

.tour-block.success p.green {
  display: block;
}

.tour-block p.tilt_master {
  display: none;
  text-align: center;
}

.tour-block.success p.tilt_master {
  display: block;
}

.round-destination-icon {
  width: 72px;
  height: 72px;
  display: inline-block;
  background: #1acafe;
  border-radius: 50%;
}

.tour-block .close-icon {
  z-index: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
}

.tour-block .close-icon path {
  fill: white !important;
}

.round-destination-icon path {
  fill: #052833;
}

.adventures-icon .a {
  -webkit-clip-path: url(https://fatmap.com/assets/809c79c66fd995167231.css#b);
          clip-path: url(https://fatmap.com/assets/809c79c66fd995167231.css#b);
}

.adventures-icon .b,
.adventures-icon .c {
  fill: transparent;
}

.adventures-icon .b {
  stroke: #0a5266;
  stroke-width: 3px;
}

.adventures-icon .c {
  stroke: #1acafe;
  stroke-width: 2px;
}

.adventures-icon .d {
  fill: transparent;
}

/*
! tailwindcss v3.1.8 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Helvetica Neue, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.\!visible {
  visibility: visible !important;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.top-0 {
  top: 0px;
}
.right-5 {
  right: 1.25rem;
}
.bottom-5 {
  bottom: 1.25rem;
}
.left-5 {
  left: 1.25rem;
}
.left-0 {
  left: 0px;
}
.top-4 {
  top: 1rem;
}
.bottom-0 {
  bottom: 0px;
}
.right-0 {
  right: 0px;
}
.top-\[-200px\] {
  top: -200px;
}
.left-1\/2 {
  left: 50%;
}
.top-1\/2 {
  top: 50%;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.order-4 {
  order: 4;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-\[-2px\] {
  margin-top: -2px;
  margin-bottom: -2px;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-24 {
  margin-right: 6rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mb-\[-9px\] {
  margin-bottom: -9px;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-\[-200px\] {
  margin-top: -200px;
}
.mt-12 {
  margin-top: 3rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-20 {
  height: 5rem;
}
.h-16 {
  height: 4rem;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.h-64 {
  height: 16rem;
}
.h-4 {
  height: 1rem;
}
.h-\[380px\] {
  height: 380px;
}
.h-\[540px\] {
  height: 540px;
}
.h-\[520px\] {
  height: 520px;
}
.w-full {
  width: 100%;
}
.w-\[92px\] {
  width: 92px;
}
.w-16 {
  width: 4rem;
}
.w-screen {
  width: 100vw;
}
.w-1\/2 {
  width: 50%;
}
.w-\[194px\] {
  width: 194px;
}
.w-4 {
  width: 1rem;
}
.w-48 {
  width: 12rem;
}
.w-8 {
  width: 2rem;
}
.w-64 {
  width: 16rem;
}
.w-72 {
  width: 18rem;
}
.w-\[360px\] {
  width: 360px;
}
.w-\[174px\] {
  width: 174px;
}
.w-\[80\%\] {
  width: 80%;
}
.w-\[640px\] {
  width: 640px;
}
.max-w-\[400px\] {
  max-width: 400px;
}
.max-w-xl {
  max-width: 36rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.shrink {
  flex-shrink: 1;
}
.grow {
  flex-grow: 1;
}
.translate-x-\[40px\] {
  --tw-translate-x: 40px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes fadeIn {

  0% {
    background-color: rgba(0,0,0,0);
  }

  50% {
    background-color: rgba(0,0,0,0);
  }
}
.animate-fade {
  animation: fadeIn 3s ease-in-out;
}
@keyframes slideIn {

  0% {
    margin-bottom: 200vh;
  }

  75% {
    margin-bottom: 200vh;
  }
}
.animate-slide {
  animation: slideIn 3s ease-in-out;
}
.cursor-pointer {
  cursor: pointer;
}
.resize-none {
  resize: none;
}
.resize {
  resize: both;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-20 {
  gap: 5rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-scroll {
  overflow: scroll;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded {
  border-radius: 0.25rem;
}
.border {
  border-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-t {
  border-top-width: 1px;
}
.border-skyblue-02 {
  --tw-border-opacity: 1;
  border-color: rgb(18 174 251 / var(--tw-border-opacity));
}
.border-gray-02 {
  --tw-border-opacity: 1;
  border-color: rgb(223 224 231 / var(--tw-border-opacity));
}
.border-strava {
  --tw-border-opacity: 1;
  border-color: rgb(252 82 0 / var(--tw-border-opacity));
}
.border-gray-01 {
  --tw-border-opacity: 1;
  border-color: rgb(119 122 140 / var(--tw-border-opacity));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-gray-03 {
  --tw-border-opacity: 1;
  border-color: rgb(236 236 241 / var(--tw-border-opacity));
}
.border-b-gray-02 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(223 224 231 / var(--tw-border-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-apple-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(52 120 246 / var(--tw-bg-opacity));
}
.bg-gray-04 {
  --tw-bg-opacity: 1;
  background-color: rgb(246 248 249 / var(--tw-bg-opacity));
}
.bg-skyblue-02 {
  --tw-bg-opacity: 1;
  background-color: rgb(18 174 251 / var(--tw-bg-opacity));
}
.bg-\[\#000000\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-strava {
  --tw-bg-opacity: 1;
  background-color: rgb(252 82 0 / var(--tw-bg-opacity));
}
.bg-strava-02 {
  --tw-bg-opacity: 1;
  background-color: rgb(201 65 0 / var(--tw-bg-opacity));
}
.bg-gray-03 {
  --tw-bg-opacity: 1;
  background-color: rgb(236 236 241 / var(--tw-bg-opacity));
}
.bg-black\/70 {
  background-color: rgb(28 28 28 / 0.7);
}
.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}
.bg-\[url\(\'\$\{heroImage\}\'\)\] {
  background-image: url('${heroImage}');
}
.bg-\[url\(\'\$\{linesBg\}\'\)\] {
  background-image: url('${linesBg}');
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.bg-right-top {
  background-position: right top;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.p-5 {
  padding: 1.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-3 {
  padding: 0.75rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-56 {
  padding-top: 14rem;
  padding-bottom: 14rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.pr-10 {
  padding-right: 2.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pb-32 {
  padding-bottom: 8rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-sans {
  font-family: Helvetica Neue, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.font-heavy {
  font-family: LatoWebHeavy;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.leading-normal {
  line-height: 1.5;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-tight {
  line-height: 1.25;
}
.leading-snug {
  line-height: 1.375;
}
.text-gray-02 {
  --tw-text-opacity: 1;
  color: rgb(223 224 231 / var(--tw-text-opacity));
}
.text-gray-01 {
  --tw-text-opacity: 1;
  color: rgb(119 122 140 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-primary {
  --tw-text-opacity: 1;
  color: rgb(14 1 58 / var(--tw-text-opacity));
}
.text-skyblue-02 {
  --tw-text-opacity: 1;
  color: rgb(18 174 251 / var(--tw-text-opacity));
}
.text-skyblue {
  --tw-text-opacity: 1;
  color: rgb(36 155 238 / var(--tw-text-opacity));
}
.text-red {
  --tw-text-opacity: 1;
  color: rgb(255 97 78 / var(--tw-text-opacity));
}
.text-warning {
  --tw-text-opacity: 1;
  color: rgb(255 51 51 / var(--tw-text-opacity));
}
.text-strava {
  --tw-text-opacity: 1;
  color: rgb(252 82 0 / var(--tw-text-opacity));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(28 28 28 / var(--tw-text-opacity));
}
.no-underline {
  text-decoration-line: none;
}
.opacity-80 {
  opacity: 0.8;
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hover\:border-skyblue:hover {
  --tw-border-opacity: 1;
  border-color: rgb(36 155 238 / var(--tw-border-opacity));
}
.hover\:bg-skyblue:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(36 155 238 / var(--tw-bg-opacity));
}
.hover\:bg-gray-03:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(236 236 241 / var(--tw-bg-opacity));
}
.hover\:bg-strava-02:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(201 65 0 / var(--tw-bg-opacity));
}
.hover\:text-gray-01:hover {
  --tw-text-opacity: 1;
  color: rgb(119 122 140 / var(--tw-text-opacity));
}
.hover\:opacity-50:hover {
  opacity: 0.5;
}
.focus\:border-skyblue:focus {
  --tw-border-opacity: 1;
  border-color: rgb(36 155 238 / var(--tw-border-opacity));
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:bg-gray-03:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(236 236 241 / var(--tw-bg-opacity));
}
.disabled\:bg-strava-02:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(201 65 0 / var(--tw-bg-opacity));
}
.disabled\:bg-gray-02:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(223 224 231 / var(--tw-bg-opacity));
}
.disabled\:text-gray-01:disabled {
  --tw-text-opacity: 1;
  color: rgb(119 122 140 / var(--tw-text-opacity));
}
@media (min-width: 640px) {

  .sm\:h-fit {
    height: -moz-fit-content;
    height: fit-content;
  }

  .sm\:w-\[440px\] {
    width: 440px;
  }

  .sm\:rounded-lg {
    border-radius: 0.5rem;
  }

  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 768px) {

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:justify-center {
    justify-content: center;
  }
}
@media (min-width: 1024px) {

  .lg\:relative {
    position: relative;
  }

  .lg\:z-10 {
    z-index: 10;
  }

  .lg\:order-1 {
    order: 1;
  }

  .lg\:mx-\[-36px\] {
    margin-left: -36px;
    margin-right: -36px;
  }

  .lg\:my-\[-112px\] {
    margin-top: -112px;
    margin-bottom: -112px;
  }

  .lg\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mb-\[-200px\] {
    margin-bottom: -200px;
  }

  .lg\:h-\[340px\] {
    height: 340px;
  }

  .lg\:h-\[640px\] {
    height: 640px;
  }

  .lg\:w-\[320px\] {
    width: 320px;
  }

  .lg\:w-\[900px\] {
    width: 900px;
  }

  .lg\:w-\[80\%\] {
    width: 80%;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:gap-2 {
    gap: 0.5rem;
  }

  .lg\:gap-36 {
    gap: 9rem;
  }

  .lg\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lg\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:pt-32 {
    padding-top: 8rem;
  }

  .lg\:pb-64 {
    padding-bottom: 16rem;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .lg\:leading-normal {
    line-height: 1.5;
  }
}
@media (min-width: 1280px) {

  .xl\:mx-\[-20px\] {
    margin-left: -20px;
    margin-right: -20px;
  }

  .xl\:my-\[-72px\] {
    margin-top: -72px;
    margin-bottom: -72px;
  }

  .xl\:h-\[380px\] {
    height: 380px;
  }

  .xl\:w-\[360px\] {
    width: 360px;
  }

  .xl\:w-\[1060px\] {
    width: 1060px;
  }

  .xl\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xl\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1536px) {

  .\32xl\:py-72 {
    padding-top: 18rem;
    padding-bottom: 18rem;
  }
}