.pokeratlas-calendar-shell {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1360px;
  padding: 100px 60px;
  width: 100%;
}

@media screen and (max-width: 1360px) {
  .pokeratlas-calendar-shell {
    padding-left: .9375rem;
    padding-right: .9375rem;
  }
}

.pokeratlas-calendar-title {
  margin-bottom: 16px;
  text-align: center;
}

.pokeratlas-calendar-title h2 {
  margin: 0;
  color: #010202;
  font-family: bilo, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
  text-transform: uppercase;
}

.pokeratlas-calendar-frame {
  background: #fff;
  position: relative;
}

.pokeratlas-calendar-shell.is-loading .pokeratlas-calendar-frame {
  pointer-events: none;
}

.pokeratlas-calendar-loader {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.72);
  display: none;
  inset: 0;
  justify-content: center;
  position: absolute;
  z-index: 20;
}

.pokeratlas-calendar-shell.is-loading .pokeratlas-calendar-loader {
  display: flex;
}

.pokeratlas-calendar-loader-spinner {
  animation: pokeratlas-spin .8s linear infinite;
  border: 3px solid rgba(70, 149, 152, 0.22);
  border-radius: 999px;
  border-top-color: #469598;
  display: block;
  height: 44px;
  margin-top: 140px;
  width: 44px;
}

@keyframes pokeratlas-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.pokeratlas-calendar-toolbar {
  align-items: center;
  background: #010202;
  display: flex;
  justify-content: space-between;
  min-height: 88px;
  padding: 24px 40px;
}

.pokeratlas-calendar-month-nav {
  background: transparent;
  border: 0;
  color: #469598;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  height: 44px;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
  width: 44px;
}

.pokeratlas-calendar-month-nav-icon {
  display: inline-block;
  height: 9px;
  position: relative;
  width: 9px;
}

.pokeratlas-calendar-month-nav-icon:before {
  border-left: 2px solid #469598;
  border-top: 2px solid #469598;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}

.pokeratlas-calendar-month-nav.is-prev .pokeratlas-calendar-month-nav-icon:before {
  transform: rotate(-45deg);
}

.pokeratlas-calendar-month-nav.is-next .pokeratlas-calendar-month-nav-icon:before {
  transform: rotate(135deg);
}

.pokeratlas-calendar-month-nav:hover,
.pokeratlas-calendar-month-nav:focus {
  color: #469598;
}

.pokeratlas-calendar-filter-form {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 548px;
  max-width: 100%;
}

.pokeratlas-calendar-select {
  border-bottom: 2px solid #469598;
  display: inline-flex;
  margin: 0;
  padding-bottom: 4px;
  position: relative;
}

.pokeratlas-calendar-select:after {
  border-left: 2px solid #469598;
  border-top: 2px solid #469598;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  pointer-events: none;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-64%) rotate(225deg);
}

.pokeratlas-calendar-select-trigger {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: bilo, sans-serif;
  font-size: 30px;
  font-weight: 700;
  justify-content: center;
  line-height: 32px;
  margin: 0;
  min-width: 0;
  padding: 0 28px 0 0;
  text-align: center;
}

.pokeratlas-calendar-select-trigger:hover,
.pokeratlas-calendar-select-trigger:focus,
.pokeratlas-calendar-select-trigger:active,
.pokeratlas-calendar-select.is-open .pokeratlas-calendar-select-trigger {
  color: #fff;
}

.pokeratlas-calendar-select-trigger:focus {
  outline: none;
}

.pokeratlas-calendar-select-menu {
  background: #010202;
  border: 1px solid #469598;
  display: none;
  left: 50%;
  min-width: calc(100% + 24px);
  padding: 8px 0;
  position: absolute;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  z-index: 10;
}

.pokeratlas-calendar-select.is-open .pokeratlas-calendar-select-menu {
  display: block;
}

.pokeratlas-calendar-select-option {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: bilo, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  padding: 8px 20px;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

.pokeratlas-calendar-select-option:hover,
.pokeratlas-calendar-select-option:focus,
.pokeratlas-calendar-select-option.is-active {
  background: #469598;
  color: #fff;
}

.pokeratlas-calendar-head {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 2px;
}

.pokeratlas-calendar-head-mobile {
  display: none;
}

.pokeratlas-calendar-head-cell {
  align-items: center;
  background: #f2f2f2;
  color: #363539;
  display: flex;
  font-family: bilo, sans-serif;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 0;
  padding: 24px 0;
  text-align: center;
}

.pokeratlas-calendar-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 2px;
}

.pokeratlas-calendar-cell {
  background: #f2f2f2;
  min-height: 165px;
  padding: 32px 8px 24px;
  position: relative;
}

.pokeratlas-calendar-cell.is-outside-month {
  background: #fff;
}

.pokeratlas-calendar-cell-link {
  color: inherit;
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.pokeratlas-calendar-cell-link.is-empty {
  cursor: default;
  min-height: 100%;
}

.pokeratlas-calendar-mobile-trigger {
  display: none;
}

.pokeratlas-calendar-date-number {
  color: #363539;
  display: inline-block;
  font-family: bilo, sans-serif;
  font-size: 10px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  padding: 5px 0 0 5px;
}

.pokeratlas-calendar-cell.is-today .pokeratlas-calendar-date-number {
  align-items: center;
  background: #469598;
  color: #fff;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  min-width: 20px;
  padding: 0;
}

.pokeratlas-calendar-events {
  display: grid;
  gap: 4px;
}

.pokeratlas-calendar-event {
  align-items: flex-start;
  background: #005457;
  border-radius: 8px;
  color: #fff;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  min-height: 24px;
  padding: 4px 8px;
  text-decoration: none;
  width: 100%;
}

.pokeratlas-calendar-event:hover,
.pokeratlas-calendar-event:focus,
.pokeratlas-calendar-mobile-detail-event:hover,
.pokeratlas-calendar-mobile-detail-event:focus {
  background: #010202;
  color: #fff;
}

.pokeratlas-calendar-event-label {
  display: block;
  flex: 1 1 auto;
  font-family: bilo, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
}

.pokeratlas-calendar-event-arrow {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
  margin-top: 1px;
  transform: translateY(-1px);
}

.pokeratlas-calendar-mobile-dots,
.pokeratlas-calendar-mobile-detail {
  display: none;
}

.pokeratlas-calendar-mobile-dot {
  background: #469598;
  border-radius: 999px;
  display: inline-block;
  height: 4px;
  width: 4px;
}

.pokeratlas-calendar-mobile-empty {
  color: #363539;
  font-family: bilo, sans-serif;
  font-size: 16px;
  margin: 0;
}

.pokeratlas-featured-shell {
  background: #010202;
  overflow: hidden;
  padding: 100px 60px;
  position: relative;
}

.pokeratlas-featured-header {
  padding-bottom: 40px;
  text-align: center;
}

.pokeratlas-featured-header h2 {
  margin: 0;
  color: #fff;
  font-family: bilo, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
  text-transform: uppercase;
}

.pokeratlas-featured-swiper {
  overflow: visible;
  position: relative;
}

.pokeratlas-featured-swiper .swiper-slide {
  height: auto;
}

.pokeratlas-slide-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pokeratlas-slide-image {
  aspect-ratio: 3 / 2;
  background: #c4c4c4;
  overflow: hidden;
}

.pokeratlas-slide-image img,
.pokeratlas-slide-image-placeholder {
  display: block;
  height: 100%;
  width: 100%;
}

.pokeratlas-slide-image img {
  object-fit: cover;
}

.pokeratlas-slide-content {
  align-items: center;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  min-height: 132px;
  padding: 24px 16px;
  text-align: center;
  width: 100%;
}

.pokeratlas-slide-content h3 {
  margin: 0;
  color: #363539;
  font-family: bilo, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
}

.pokeratlas-slide-meta {
  margin: 0;
  color: #363539;
  font-family: bilo, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: normal;
  width: 100%;
}

.pokeratlas-slide-meta span {
  margin: 0 4px;
}

.pokeratlas-slide-link {
  align-items: center;
  border-bottom: 1px solid #469598;
  color: #469598;
  display: inline-flex;
  font-family: bilo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  gap: 8px;
  line-height: 1;
  padding-bottom: 4px;
  text-decoration: none;
}

.pokeratlas-slide-link:hover,
.pokeratlas-slide-link:focus {
  color: #469598;
}

.pokeratlas-slide-link svg {
  flex: 0 0 auto;
  height: 11.681px;
  width: 11.681px;
}

.pokeratlas-featured-nav {
  pointer-events: none;
}

.pokeratlas-featured-nav.is-hidden {
  display: none;
}

.pokeratlas-featured-arrow {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 64px;
  margin: 0;
  padding: 0;
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  z-index: 4;
}

.pokeratlas-featured-prev {
  left: -40px;
}

.pokeratlas-featured-next {
  right: -40px;
}

.pokeratlas-featured-arrow.swiper-button-disabled {
  opacity: 0.5;
}

.pokeratlas-featured-empty {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: bilo, sans-serif;
  font-size: 20px;
}

.pokeratlas-token-special-one-off,
.pokeratlas-token-default {
  background: #005457;
  color: #fff;
}

.pokeratlas-token-recurring-1 {
  background: #469598;
  color: #363539;
}

.pokeratlas-token-recurring-2 {
  background: rgba(70, 149, 152, 0.6);
  color: #363539;
}

.pokeratlas-token-recurring-3 {
  background: rgba(70, 149, 152, 0.4);
  color: #363539;
}

.pokeratlas-token-recurring-4 {
  background: rgba(70, 149, 152, 0.2);
  color: #363539;
}

.pokeratlas-token-recurring-1 .pokeratlas-calendar-event-arrow,
.pokeratlas-token-recurring-2 .pokeratlas-calendar-event-arrow,
.pokeratlas-token-recurring-3 .pokeratlas-calendar-event-arrow,
.pokeratlas-token-recurring-4 .pokeratlas-calendar-event-arrow {
  color: #363539;
}

@media screen and (max-width: 770px) {
  .pokeratlas-calendar-shell {
    padding: 40px 0 0;
  }

  .pokeratlas-calendar-title {
    margin-bottom: 16px;
  }

  .pokeratlas-calendar-title h2 {
    font-size: 40px;
    line-height: 45px;
  }

  .pokeratlas-calendar-toolbar {
    min-height: 0;
    padding: 24px 16px;
  }

  .pokeratlas-calendar-filter-form {
    gap: 16px;
    width: auto;
  }

  .pokeratlas-calendar-select-trigger {
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
  }

  .pokeratlas-calendar-select-option {
    font-size: 18px;
  }

  .pokeratlas-calendar-head-desktop {
    display: none;
  }

  .pokeratlas-calendar-head-mobile {
    display: grid;
  }

  .pokeratlas-calendar-head-cell {
    min-height: 50px;
    padding: 8px 0;
  }

  .pokeratlas-calendar-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .pokeratlas-calendar-cell {
    align-items: stretch;
    display: flex;
    justify-content: center;
    min-height: 54px;
    padding: 8px 0 6px;
  }

  .pokeratlas-calendar-cell.is-selected {
    background: #469598;
  }

  .pokeratlas-calendar-cell-link {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    inset: auto;
    justify-content: flex-start;
    pointer-events: none;
    position: relative;
    width: 100%;
  }

  .pokeratlas-calendar-mobile-trigger {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: block;
    inset: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 2;
  }

  .pokeratlas-calendar-date-number {
    color: #363539;
    font-size: 12px;
    font-style: italic;
    font-weight: 500;
    line-height: 1;
    padding: 0;
  }

  .pokeratlas-calendar-cell.is-selected .pokeratlas-calendar-date-number {
    background: transparent;
    color: #fff;
  }

  .pokeratlas-calendar-cell.is-selected .pokeratlas-calendar-mobile-dot {
    background: #fff;
  }

  .pokeratlas-calendar-cell.is-today .pokeratlas-calendar-date-number {
    background: transparent;
    color: #469598;
    display: inline-block;
    height: auto;
    justify-content: flex-start;
    min-width: 0;
    padding: 0;
  }

  .pokeratlas-calendar-cell.is-today.is-selected .pokeratlas-calendar-date-number {
    color: #fff;
  }

  .pokeratlas-calendar-events {
    display: none;
  }

  .pokeratlas-calendar-mobile-dots {
    display: inline-flex;
    gap: 2px;
    margin-top: 0;
    min-height: 4px;
  }

  .pokeratlas-calendar-mobile-detail {
    align-items: flex-start;
    background: #f2f2f2;
    display: flex;
    gap: 16px;
    margin-top: 2px;
    padding: 24px;
  }

  .pokeratlas-calendar-mobile-detail-date {
    color: #000;
    font-family: bilo, sans-serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    width: 24px;
  }

  .pokeratlas-calendar-mobile-detail-events {
    display: grid;
    flex: 1 1 auto;
    gap: 8px;
  }

  .pokeratlas-calendar-mobile-detail-event {
    align-items: center;
    border-radius: 8px;
    display: flex;
    font-family: bilo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    line-height: 1;
    min-height: 42px;
    justify-content: space-between;
    padding: 12px 8px;
    text-decoration: none;
  }

  .pokeratlas-calendar-mobile-detail-event .pokeratlas-calendar-event-arrow {
    font-size: 18px;
    transform: translateY(-1px);
  }

  .pokeratlas-calendar-mobile-detail-event.pokeratlas-token-special-one-off,
  .pokeratlas-calendar-mobile-detail-event.pokeratlas-token-default,
  .pokeratlas-calendar-mobile-detail-event.pokeratlas-token-default:hover,
  .pokeratlas-calendar-mobile-detail-event.pokeratlas-token-recurring-1:hover,
  .pokeratlas-calendar-mobile-detail-event.pokeratlas-token-recurring-2:hover,
  .pokeratlas-calendar-mobile-detail-event.pokeratlas-token-recurring-3:hover,
  .pokeratlas-calendar-mobile-detail-event.pokeratlas-token-recurring-4:hover {
    color: #fff;
  }

  .pokeratlas-calendar-mobile-detail-event.pokeratlas-token-recurring-1,
  .pokeratlas-calendar-mobile-detail-event.pokeratlas-token-recurring-2,
  .pokeratlas-calendar-mobile-detail-event.pokeratlas-token-recurring-3,
  .pokeratlas-calendar-mobile-detail-event.pokeratlas-token-recurring-4 {
    color: #363539;
  }

  .pokeratlas-featured-shell {
    padding: 48px 35px;
  }

  .pokeratlas-featured-header {
    padding-bottom: 20px;
  }

  .pokeratlas-featured-header h2 {
    font-size: 40px;
    line-height: 45px;
  }

  .pokeratlas-featured-arrow {
    top: 50%;
  }

.pokeratlas-slide-content {
  min-height: 156px;
}
}

.pokeratlas-single-shell {
  padding: 0;
}

.pokeratlas-single-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}

.pokeratlas-single-media {
  aspect-ratio: 127.636 / 80.727;
  background: #d9d9d9;
  overflow: hidden;
  width: 100%;
}

.pokeratlas-single-media img,
.pokeratlas-single-media-placeholder {
  display: block;
  height: 100%;
  width: 100%;
}

.pokeratlas-single-media img {
  object-fit: cover;
}

.pokeratlas-single-media-placeholder {
  background: #d9d9d9;
}

.pokeratlas-single-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.pokeratlas-single-intro h1 {
  color: #010202;
  font-family: bilo, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 65px;
  margin: 0;
  text-transform: uppercase;
}

.pokeratlas-single-meta {
  color: #010202;
  font-family: bilo, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
}

.pokeratlas-single-meta-separator {
  margin: 0 10px;
}

.pokeratlas-single-copy {
  color: #363539;
  font-family: bilo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
}

.pokeratlas-single-copy p,
.pokeratlas-single-copy li {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.pokeratlas-single-copy > :first-child {
  margin-top: 0;
}

.pokeratlas-single-copy > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 770px) {
  .pokeratlas-single-shell {
    padding: 0;
  }

  .pokeratlas-single-container {
    gap: 24px;
  }

  .pokeratlas-single-intro h1 {
    font-size: 40px;
    line-height: 45px;
  }

  .pokeratlas-single-meta {
    font-size: 24px;
    line-height: 26px;
  }
}
