.header-copyright {
    display: flex;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    align-items: center;
    flex-shrink: 0;

    /* //styleName: Subtext Regular 14-20; */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
}

.header-copyright_info {
    background-color: var(--yellow-1);
    color: black;
}

.header-copyright_alert {
    background-color: var(--red-1);
    color: var(--white);
}

.header-copyright_message {
  background-color: var(--yellow-1);
  color: black;
}

.header-copyright_message-highlight-icerinks {
  border-radius: 4px;
  padding: 2px 8px;
  background: var(--icerinks-brand);
  color: var(--white);
  margin-left: 6px;
}

.header-copyright_message-highlight-playgrounds {
  border-radius: 4px;
  padding: 2px 8px;
  background: var(--red-1);
  color: var(--white);
  margin-left: 6px;
}

.header-copyright_instagram::before {
    content: '';
    background-image: url(/55945c14577e7f1b49bc.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.header {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
  position: relative;
}

.header__logo-link {
  position: absolute;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.header__logo {
    height: 32px;
}

.header__button-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--black);
  z-index: 1;
  /* //styleName: Small Regular 12-16; */
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0px;
  margin: 10px;
}

.header__button {
  height: 24px;
  width: 24px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  margin-right: 10px;
}

.header__button_right {
  margin-left: 10px;
  margin-right: 0;
}

.header__button-link:hover {
  text-decoration: underline;
}

.header__button_type_map {
    background-image: url(/8b9e16950182a3bcbad6.svg);
}

.header__button_type_list {
    background-image: url(/fd7d6b4339d6a886d4ce.svg);
}

.header__button_type_map-icerink {
    background-image: url(/7d73d64e2623f995fd94.svg);
}

.header__button_type_list-icerink {
    background-image: url(/2037c64d80ffb1f15c38.svg);
}

.header__button-text {
  display: none;
}

@media (min-width: 750px) {
  .header__button-text {
    display: block;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer__item {
  margin-top: 24px;
  margin-left: 0;
  color: var(--dark-2);
  /* //styleName: Small Regular 12-16; */
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
}

.footer__link {
  text-decoration: underline;
  color: var(--dark-2);
}

.footer__item:last-child {
  margin-bottom: 24px;
}

.footer__item:only-child {
  margin: 0;
}

.footer__flag {
  width: 16px;
  height: 16px;
  background-image: url(/89e77e06372189cf8482.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.button {
    transition: all 0.1s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: var(--yellow-1);
    border: 2px solid var(--dark-2);
    box-sizing: border-box;
    box-shadow: 0px 4px 0px var(--dark-2);
    border-radius: var(--border-radius-s);
    font-weight: 800;
    font-size: 21px;
    line-height: 28px;
    color: var(--dark-2);
}

.button:hover {
    cursor: pointer;
    background: var(--yellow-2);
}

.button:active {
    box-shadow: none;
    transform: translateY(4px);
}

.button_disabled {
    cursor: wait;
    opacity: 0.7;
    pointer-events: none;
}

.playground-preview {
    display: flex;
    flex-direction: column;
    position: relative;
}

.playground-preview__link {
    padding: 12px 24px;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--border-radius-s);
    width: 375px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
}

.playground-preview__link:hover .playground-preview__number {
  padding-left: 12px;
}

.playground-preview__image {
    height: 200px;
    width: 327px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: var(--border-radius-m);
}

.playground-preview__content {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

.playground-preview__title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.playground-preview__title {
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  /* //styleName: H4 Bold 20-24; */
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--dark-2);
}

.playground-preview__subtitle {
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    /* //styleName: Subtext Regular 14-20; */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--light-1);
}

.playground-preview__number {
    transition: padding 0.2s ease-in-out;
    position: absolute;
    top: 36px;
    left: 24px;
    padding: 4px 8px;
    background: var(--red-1);
    /* //styleName: H4 Bold 20-24; */
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--white);
}

.playground-preview__number_icerink {
  background: var(--icerinks-brand);
}

.playground-preview__number::after {
    content: '';
    position: absolute;
    height: 32px;
    width: 16px;
    right: -16px;
    top: 0;
    background-image: url(/61f4a1259a2280a57397.svg);
}

.playground-preview__number_icerink::after {
  width: 17px;
  right: -15px;
  background-image: url(/b5b4be9cbb31b8d212a6.svg);
}

.badge-new {
  display: flex;
  align-items: center;
  color: var(--red-1);
  margin-left: 8px;
  border-radius: 5px;
  height: 20px;
  padding: 0 5px;
  border: 1px solid var(--red-1);

  /* //styleName: Nano Regular 10-14; */
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0px;
  text-align: center;
}

.playgrounds {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat( auto-fit, 375px );
    max-width: 1125px;
    box-sizing: border-box;
}

.playgrounds_not-found {
    grid-column: 1 / 4;
    /* //styleName: Subtext Regular 14-20; */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;

    align-items: center;
    justify-content: center;
    display: flex;
    color: var(--light-1);
}

.tags {
    overflow: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    margin: -4px 0;
}

.tag {
  display: flex;
  flex-shrink: 0;
  padding: 4px 8px;
  box-sizing: border-box;
  background: var(--blue-1);
  border: 1px solid var(--blue-1);
  border-radius: var(--border-radius-s);
  /* //styleName: Small Regular 12-16; */
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
  margin: 4px;
  transition: border 0.2s ease-in-out;
}

.tag:hover {
  cursor: pointer;
  border: 1px solid var(--blue-2);
}

.tag_empty {
  background: transparent;
}

.tag_selected {
  background: var(--blue-2);
}

.tag_not-clickable:hover {
  cursor: default;
  border: 1px solid var(--blue-1);
}

body {
  margin: 0;
}

html {
  box-sizing: border-box;
}

html, body, #root {
  height: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

:root {
  --dark-1: #1D1E1F;
  --dark-2: #383C46;
  --light-1: #777777;
  --light-2: rgba(0, 0, 0, 0.04);
  --blue-1: rgba(224, 246, 255, 1);
  --blue-2: #94DBF7;
  --yellow-1: #FFCC00;
  --yellow-2: #FFE680;
  --red-1: #FF262F;
  --icerinks-brand: #00B5FF;
  --white: #FFFFFF;
  --black: #000000;
  --border-radius-s: 8px;
  --border-radius-m: 24px;
}

#root {
  height: 100%;
}

.page {
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page__content {
  flex-shrink: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 375px;
}

.page__content_header {
  padding: 0 14px;
}

.page__content_tagsmap {
  padding-bottom: 28px;
}

.page__content_seo-intro {
  margin-bottom: 20px;
  text-align: center;
}

.page__seo-title {
  margin: 0;
  color: #383C46;
  color: var(--dark-2);
  font-size: 32px;
  font-weight: 800;
  line-height: 38px;
}

.page__seo-title_visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page__seo-description {
  margin: 8px auto 0;
  max-width: 640px;
  color: #777777;
  color: var(--light-1);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.page__content-title-container {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.page__content-title-container_row {
  margin-bottom: 20px;
  align-items: center;
}

.page__content-title-container_row .page__content-title {
  transform: rotate(0);
}

.page__content-title-container_row .page__content-title-link:first-child {
  margin-right: 16px;
}


.page__content-title-container_icerinks {
  margin-top: 20px;
}

.page__content-title-link {
  text-decoration: none;
}

.page__content-title {
  margin: 0;
  border-radius: 4px;
  display: block;
  transform: rotate(-1deg);
  padding: 8px 16px;
  background: #FF262F;
  background: var(--red-1);
  color: #FFFFFF;
  color: var(--white);
  /* //styleName: H1 Extra 32-38; */
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 38px;
  letter-spacing: 0px;
  text-align: center;

  transition: all 0.1s linear;
  box-shadow: none;
}

.page__content-title:hover {
  transform: rotate(-1deg) scale(1.1);
}

.page__content-title_ice-rinks {
  background: #00B5FF;
}

.page__content-title_inactive {
  /* transform: rotate(0) scale(0.8) !important; */
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.04);
  background: var(--light-2);
  color: #777777;
  color: var(--light-1);

  /* //styleName: H4 Medium 20-24; */
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0px;
}

.page__content-title_inactive:hover {
  /* transform: rotate(-1deg) scale(1) !important; */
  background: #FF262F;
  background: var(--red-1);
  color: #FFFFFF;
  color: var(--white);
}

.page__content-title_inactive-icerinks {
  background: rgba(0, 0, 0, 0.04);
  background: var(--light-2);
  color: #777777;
  color: var(--light-1);


  /* //styleName: H4 Medium 20-24; */
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0px;
}

.page__content-title_inactive-icerinks:hover {
  background: #00B5FF;
  color: #FFFFFF;
  color: var(--white);
}

.page__separator {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  height: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid var(--light-2);
  margin: 56px auto;
}

.page__content_playgrounds {
  flex: 1 0 auto;
  margin: 16px auto 0;
  padding: 0;
}

.page__content_show-all-link {
  text-decoration: none;
  display: flex;
}

.page__content_show-all-button {
  width: 100%;
  margin: 16px auto 0;
}

.page__content_pagination {
  display: flex;
  align-items: center;
  flex-direction: column;
  grid-gap: 20px;
  gap: 20px;
  margin: 32px auto 0;
}

.page__content_previous-page {
  color: #383C46;
  color: var(--dark-2);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.page__content_load-more,
.page__content_show-all {
  margin: 0 24px;
}

.page__content_load-more {
  text-decoration: none;
}

.page__content_show-all {
  width: 100%;
}

.page__content_footer {
  margin: 16px auto;
}

.page__content_map {
  display: flex;
  text-align: center;
  min-height: 500px;
  height: 100%;
  width: 100%;
  justify-content: center;
  /* //styleName: Subtext Regular 14-20; */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
}

@media (min-width: 750px) {
  .page__content {
    max-width: 750px;
  }

  .page__content_footer {
    margin: 24px auto;
  }
}

@media (min-width: 1125px) {
  .page__content {
    max-width: 1125px;
  }

  .page__content_footer {
    margin: 32px auto;
  }
}

.ymaps-2-1-78-balloon {
  box-shadow: 0px 4px 32px 0px rgba(0,0,0,0.12157) !important;
  border-radius: 8px !important;
}

.ymaps-2-1-78-balloon__layout {
  display: flex;
  border-radius: 8px !important;
}

.ymaps-2-1-78-balloon__content {
  margin: 0;
  padding: 8px;
}

.ymaps-2-1-78-balloon-content__header {
  max-width: 250px;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
}

.ymaps-2-1-78-balloon__tail {
  display: none !important;
}

.ymaps-2-1-79-balloon {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.12) !important;
}

.ymaps-2-1-79-balloon__close {
  position: absolute;
  top: 0;
  right: 0;
}

.ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content {
  margin-right: 0 !important;
  padding: 0 !important;
}

.ymaps-2-1-79-balloon-content__header {
  margin: 0 !important;
}

.ymaps-2-1-79-balloon__close-button {
  opacity: 1 !important;
  width: 40px !important;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iMTAiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUgNS41TDE0LjUgNUwxMCA5LjVMNS41IDVMNSA1LjVMOS41IDEwTDUgMTQuNUw1LjUgMTVMMTAgMTAuNUwxNC41IDE1TDE1IDE0LjVMMTAuNSAxMEwxNSA1LjVaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K) center/60% no-repeat !important;
}

.map__background-image {
  height: 160px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.map__title {
  max-width: 250px;
  /* //styleName: Text Regular 16-22; */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0px;
}

.map__description {
  margin-top: 12px;
  max-width: 250px;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: left;
}

.map__content {
  color: #383C46;
  color: var(--dark-2);
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.map__link {
  margin-top: 8px;
  display: block;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: left;
  color: #383C46;
  color: var(--dark-2);
}

.ymaps-2-1-78-balloon__close {
  padding-right: 2;
}

