* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

body {
  position: relative;
  margin: 40px 20px;
  color: #1B1948;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  background-color: #EBEEF3;
}

h1 {
  margin: 0 0 40px 0;
  font-weight: 300;
  line-height: 1;
}
h1 strong {
  display: block;
  font-weight: 700;
}
h1 a {
  color: #1B1948;
  text-decoration: none;
}

.info-button {
  position: absolute;
  top: 20px;
  right: 0px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.info-button svg {
  width: 100%;
  height: 100%;
  fill: #1B1948;
}

.map-button {
  position: absolute;
  top: 18px;
  right: 40px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.map-button svg {
  width: 100%;
  height: 100%;
  fill: #1B1948;
}


h2 {
  font-size: 16px;
}

.filters {
  display: flex;
  flex-flow: row nowrap;
  margin: 8px 0 32px 0;
}
.filter {
  position: relative;
  width: 80px;
  height: 56px;
  margin-right: 14px;
  border-radius: 8px;
  background-color: #fff;
  color: #A8A7B7;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.filter--active {
  background-color: #445CFE;
  color: #fff;
}
.filter__icon {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translateX(-50%);
}
.filter__icon svg {
  width: 100%;
  height: 100%;
  fill: #A8A7B7;
}
.filter--active svg {
  fill: #fff;
}
.filter__text {
  position: absolute;
  top: 34px;
  left: 0;
  width: 100%;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}



.item {
  position: relative;
  width: 100%;
  margin: 8px 0 20px 0;
  padding: 18px 16px;
  background-color: #fff;
  border-radius: 8px;
}

.items .item {
  display: none;
}
.items .item--active {
  display: block;
}

.item__header {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 700;
}
.item__descripton {
  margin: 0 0 16px 0;
  font-size: 14px;
  opacity: 0.7;
}
.item__category {
  position: absolute;
  top: 18px;
  right: 40px;
  padding: 5px 8px;
  border-radius: 100px;
  background-color: #F7F7F9;
  font-size: 12px;
  line-height: 14px;
}
.item__map {
  position: absolute;
  top: 20px;
  right: 16px;
  width: 20px;
  height: 20px;
}
.item__map svg {
  width: 100%;
  height: 100%;
  fill: #445CFE;
}


.item__tag {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin: 6px 0;
}
.item__tag-content {
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  opacity: 0.5;
}
.item__tag-headline {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
  line-height: 16px;
}
.item__tag-headline svg {
  width: 100%;
  height: 100%;
  fill: #A8A7B7;
}


.info {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  padding: 40px 20px;
  background-color: #445CFE;
  color: #fff;
  opacity: 1;
  visibility: collapse;
  transform: scale(2);
  transition: all 0.2s ease-in-out;
}
.info--active {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.info h1 {
  color: #fff;
}

.info h2 {
  font-size: 14px;
}

.close {
  position: absolute;
  top: 60px;
  right: 20px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.close svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.info__text {
  margin: 4px 0 40px 0;
  line-height: 1.5;
}
.info__text strong {
  font-size: 14px;
  opacity: 0.6;
}
.info__text a {
  color: #fff;
}





.map__wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  background-color: #fff;
  opacity: 0;
  visibility: collapse;
  transform: scale(2);
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}
.map__wrap--active {
  z-index: 500;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: all;
}
.map {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 501;
  width: 100%;
  height: 100vh;
}
.map__close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 502;
  width: 34px;
  height: 34px;
  border-radius: 100px;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.map__close svg {
  width: 100%;
  height: 100%;
  fill: #1B1948;
}

.map__position {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 502;
  width: 34px;
  height: 34px;
  border-radius: 100px;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.map__position svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 66%;
  height: 66%;
  fill: #1B1948;
  transform: translate(-50%, -50%);
}


.gm-style-iw {
  min-width: 300px !important;
  max-width: 320px !important;
}
.gm-style-iw-d {
  min-width: 300px !important;
}
.map__item {
  padding: 0 12px 12px 0;
}
.map__item .item {
  margin: 0;
  padding: 0;
}
.map__item .item__map {
  display: none;
}
.map__item .item__category {
  top: 0;
  right: 0;
}




.links {

}
.link {
  position: relative;
  display: block;
  margin: 0 0 0 8px;
  padding: 8px 0;
  font-size: 16px;
  color: #1B1948;
}
.link::before {
  content: '';
  position: absolute;
  top: 16px;
  left: -8px;
  bottom: 15px;
  width: 2px;
  background-color: #1B1948;
  opacity: 0.4;
}
/*
.map-button {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
}
.map-button strong {
  display: inline-block;
  margin-left: 8px;
  text-decoration: underline;
}
*/
