/*----------Background svg fallback----------*/
/*----------Dark mode----------*/
/*-----Theming-----*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap");
body {
  --theme-color: $primary;
}
body.theme-towers {
  --theme-color: #3B2D7B;
}
body.theme-thorpe {
  --theme-color: #D4761A;
}
body.theme-dlp {
  --theme-color: #236BC9;
}
body.theme-wds {
  --theme-color: #A98B6A;
}
body.theme-chessington {
  --theme-color: #E30713;
}
body.theme-europa {
  --theme-color: #FDC329;
}
body.theme-phantasialand {
  --theme-color: #901216;
}

/*-----Debug-----*/
/*-----iPhone X-----*/
/*----------Webkit safe area (iPhones with notches)----------*/
button {
  -webkit-appearance: none;
  appearance: none;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  transition: 0.3s ease background-color;
  font-family: "Barlow", sans-serif;
  background-color: #0F1118;
  color: white;
  overflow: hidden;
}

/*-----Type-----*/
h1,
h2,
h3,
h4,
h5,
p,
strong,
a {
  color: currentColor;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}

.bg-gradient {
  width: 100%;
  height: 300px;
  opacity: 0.5;
  transition: 1.5s ease all;
  position: absolute;
  z-index: -1;
  background-color: var(--theme-color);
  overflow: hidden;
}
.bg-gradient span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #0f1118 0%, rgba(15, 17, 24, 0) 100%);
  z-index: 10;
}
.bg-gradient:before {
  content: "";
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: white;
  position: absolute;
  animation: spin 50s linear infinite;
  filter: blur(100px);
  mix-blend-mode: overlay;
}

.destination-header {
  margin-bottom: 1.25rem;
  padding-top: 1.875rem;
}
@media (min-width: 770px) {
  .destination-header {
    padding-top: 2.5rem;
  }
}
@media (min-width: 770px) {
  .destination-header {
    padding-top: 3.125rem;
  }
}
.destination-header .title {
  margin: 0;
  font-size: 40px;
  text-wrap: balance;
  width: calc(100% - 2.5rem);
  max-width: 100%;
}
.destination-header .hours {
  font-weight: 600;
  margin-top: 0.625rem;
}
.destination .attractions {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  backdrop-filter: blur(50px);
  padding-left: 0.625rem;
  overflow: hidden;
}
.destination .attractions .attraction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem;
  padding-left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.destination .attractions .attraction-name {
  font-weight: 600;
}
.destination .attractions .attraction .pill {
  mix-blend-mode: darken;
}
.destination .attractions .attraction.down {
  order: 999 !important;
}
.destination .attractions .attraction.closed {
  order: 1000 !important;
}
.destination .attractions .attraction.low {
  background-image: linear-gradient(-90deg, rgba(25, 135, 84, 0.25) 0%, rgba(25, 135, 84, 0) 50%, rgba(25, 135, 84, 0) 100%);
}
.destination .attractions .attraction.medium {
  background-image: linear-gradient(-90deg, rgba(220, 53, 69, 0.25) 0%, rgba(220, 53, 69, 0) 50%, rgba(220, 53, 69, 0) 100%);
}
.destination .attractions .attraction.high {
  background-image: linear-gradient(-90deg, rgba(255, 193, 7, 0.25) 0%, rgba(255, 193, 7, 0) 50%, rgba(255, 193, 7, 0) 100%);
}

.pill {
  padding: 0.3125rem 0.625rem;
  flex-shrink: 0;
  margin-left: 0.625rem;
  font-weight: 600;
}

@media (min-width: 770px) {
  .tab-panels {
    padding-left: 300px;
  }
}
@media (min-width: 993px) {
  .tab-panels {
    padding-left: 400px;
  }
}
.tab-panels .tab-panel {
  transition: 0.3s ease all;
}
.tab-panels .tab-panel:not(.active) {
  display: none;
}

.scrollable {
  overflow-x: auto;
  height: calc(100dvh);
}

/*-----Main-----*/
.container {
  width: 520px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  padding-bottom: 4.75rem;
}
@media (min-width: 770px) {
  .container {
    width: 800px;
  }
}
.container .cred {
  font-size: 12px;
  text-align: center;
  padding: 0 0 20px 0;
}

/*-----Parks menu-----*/
.menu {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 1001;
  border-radius: 10px 10px 0 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  color: white;
  width: 600px;
  max-width: calc(100% - 20px);
  left: 50%;
  transform: translate(-50%, 0);
}
@media (min-width: 770px) {
  .menu {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 300px;
    bottom: auto;
    border-radius: 0 10px 10px 0;
  }
}
@media (min-width: 993px) {
  .menu {
    width: 400px;
  }
}
.menu .menu-top {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}
.menu .menu-top button {
  cursor: pointer;
  margin: 0;
  font-family: var(--font-primary);
}
.menu .menu-top .menu-toggle {
  overflow: auto;
  flex-grow: 1;
  border: none;
  background-color: transparent;
  color: currentColor;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}
@media (max-width: 768px) {
  .menu .menu-top .menu-toggle {
    padding-left: 30px;
    background: url("../images/icon-up.svg") left center no-repeat;
  }
}
@media (min-width: 770px) {
  .menu .menu-top .menu-toggle {
    pointer-events: none;
  }
}
.menu .menu-top .menu-toggle span {
  position: absolute;
  left: -1000em;
}
.menu .menu-top .refresh button {
  background: var(--page-background);
  text-indent: -1000em;
  overflow: hidden;
  width: 36px;
  height: 36px;
  background-image: url("../images/icon-refresh.svg");
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  transition: 0.3s ease all;
  border-radius: 100%;
}
.menu .menu-top .refresh button:hover {
  transform: rotate(-10deg);
}
.menu .menu-top .refresh button.refreshing {
  animation: refreshing 2s forwards 1;
}
.menu .menu-bottom {
  overflow: auto;
  max-height: 0;
  transition: 0.3s ease all;
}
@media (min-width: 770px) {
  .menu .menu-bottom {
    max-height: calc(var(--vh, 1vh) * 100 - 100px);
  }
  @supports (min-height: 100dvh) {
    .menu .menu-bottom {
      max-height: calc(100dvh - 100px);
    }
  }
}
.menu .menu-bottom .cred {
  font-size: 14px;
  text-align: center;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}
.menu .menu-bottom .cred > div {
  opacity: 0.5;
}
.menu .menu-bottom .cred .last-updated {
  display: block;
}
.menu .menu-bottom .cred .last-updated > div {
  display: none;
}
.menu .menu-bottom .cred .last-updated > div:first-child {
  display: inline-block;
}
.menu .menu-bottom .cred img {
  max-width: 100%;
  margin: 0 auto;
}
.menu .menu-bottom .cred .amogl-cred img {
  margin-top: 10px;
}
.menu.menu-open .menu-toggle {
  background: url("../images/icon-down.svg") left center no-repeat;
}
.menu.menu-open .menu-bottom {
  max-height: calc(var(--vh, 1vh) * 100 - 100px);
}
@supports (min-height: 100dvh) {
  .menu.menu-open .menu-bottom {
    max-height: calc(100dvh - 100px);
  }
}

.park-group {
  margin: 0 20px 20px 20px;
}
.park-group .parks-title {
  display: block;
  margin: 10px 0 10px 15px;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.5;
}

.tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  white-space: nowrap;
}
.tabs li {
  transition: 0.3s ease all;
}
.tabs li + li {
  margin-top: 10px;
}
.tabs li .tab {
  transition: 0.3s ease all;
  font-weight: 600;
  padding: 14px 15px 16px 15px;
  display: block;
  line-height: 1;
  border-radius: 100px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-size: 1rem;
}
.tabs li .tab.active {
  background-color: var(--theme-color);
}

.tab-panels .tab-panel {
  transition: 0.3s ease all;
}
.tab-panels .tab-panel:not(.active) {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

body:not(.loading) .tab-panel .scrollable:after {
  content: "";
  display: block;
  width: 140px;
  height: 82px;
  background: url("../images/logo-white.svg") center no-repeat;
  margin: 0 auto 2em auto;
}

@keyframes refreshing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(720deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animateInUp {
  0% {
    transform: translate(0, 50px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes scale {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(-5deg);
  }
  40% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  80% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

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