* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  max-height: 100%;
}

html, body {
  font-family: "Euclid Circular B", sans-serif;
  font-size: 16px;
  line-height: 130%;
  color: #000;
}

.img--contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.img--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

[data-star-rating] .gl-star-rating--stars {
  gap: 4px;
}

.container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.rate--full {
  color: #127042;
}
.rate--full .rating-stats-item__number span:first-child {
  background: #127042;
  max-width: 100%;
}
.rate--small {
  color: #4450D5;
}
.rate--small .rating-stats-item__number span:first-child {
  background: #4450D5;
}
.rate--middle {
  color: #32BB78;
}
.rate--middle .rating-stats-item__number span:first-child {
  background: #32BB78;
}

.title {
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
}
@media screen and (max-width: 991px) {
  .title {
    font-size: 32px;
    line-height: 120%;
  }
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 30px;
    line-height: 39px;
  }
}

.subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}
@media screen and (max-width: 991px) {
  .subtitle {
    font-size: 18px;
    line-height: 120%;
  }
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 14px;
    line-height: 18px;
  }
}

.text {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 12px;
    line-height: 15px;
  }
}

.text-center {
  text-align: center;
}

.img--mob {
  display: none;
}
@media screen and (max-width: 767px) {
  .img--mob {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .img--mob + .img--pc {
    display: none;
  }
}

.map {
  padding: 30px 0 70px;
  background: #fff;
}
.map-action {
  margin: 64px auto 0;
  padding: 23px 400px 30px 30px;
  background: #32BB78;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  max-width: 970px;
  color: #fff;
  text-align: left;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
@media screen and (max-width: 991px) {
  .map-action {
    min-height: 610px;
    padding: 23px 40px 30px;
  }
}
.map-action::after {
  position: absolute;
  bottom: 0;
  right: 70px;
  background: url("../img/phone.png") center/contain no-repeat;
  content: "";
  width: 241px;
  height: 420px;
}
@media screen and (max-width: 991px) {
  .map-action::after {
    display: none;
  }
}
.map-action__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 39px;
}
@media screen and (max-width: 991px) {
  .map-action__title {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .map-action__title {
    font-size: 22px;
    line-height: 28px;
  }
}
.map-action__description {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}
@media screen and (max-width: 991px) {
  .map-action__description {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .map-action__description {
    font-size: 14px;
    line-height: 18px;
    margin-top: 20px;
  }
}
.map-action__block {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  padding: 30px;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  max-width: 420px;
}
.map-action__block::after {
  background: #1D965C;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  z-index: -1;
  border-radius: 24px;
}
@media screen and (max-width: 991px) {
  .map-action__block {
    margin-top: auto;
  }
  .map-action__block br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .map-action__block {
    padding: 25px 20px;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
  }
}
.map-action__block::before {
  display: none;
  content: "";
  background: url("../img/phone-mob.png") center/contain no-repeat;
  width: 123px;
  height: 213px;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .map-action__block::before {
    display: block;
  }
}
.map-action__block span {
  text-decoration: underline;
  text-underline-position: under;
}
.map-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  gap: 30px 90px;
}
@media screen and (max-width: 991px) {
  .map-partners {
    gap: 20px 40px;
  }
}
@media screen and (max-width: 767px) {
  .map-partners {
    gap: 30px 70px;
  }
}
.map-partners__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-partners__item:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -45px;
  height: 37px;
  width: 2px;
  content: "";
  background: #000;
  transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  .map-partners__item:not(:first-child)::before {
    left: -20px;
    height: 35px;
  }
}
@media screen and (max-width: 767px) {
  .map-partners__item:not(:first-child)::before {
    left: -35px;
  }
}
.map__title {
  max-width: 775px;
  margin: 42px auto 0;
  color: #32BB78;
}
@media screen and (max-width: 767px) {
  .map__title {
    margin-top: 52px;
    font-size: 24px;
    line-height: 125%;
  }
}
@media screen and (max-width: 575px) {
  .map__title {
    font-size: 30px;
    line-height: 39px;
  }
}
.map-block {
  margin-top: 20px;
}
.map-block__before {
  position: relative;
}
.map-block__before::before {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  content: "";
}
@media screen and (max-width: 1199px) {
  .map-block__before::before {
    display: block;
  }
}
.map-block__before.active::before {
  display: none;
}
.map-block__header {
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .map-block__header {
    max-width: 100vw;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 575px) {
  .map-block__header {
    height: 461px;
    overflow: auto;
  }
}
.map-block__img {
  display: none;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
  position: relative;
}
.map-block__img.active {
  display: flex;
}
.map-block__elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map-block-element {
  position: absolute;
  z-index: 1;
  background-color: #1D965C;
  padding: 4px 10px 7px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  color: #fff;
  cursor: pointer;
  transition: all ease 0.4s;
}
.map-block-element::after {
  bottom: -8px;
  left: 50%;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%231D965C'/%3E%3Ccircle cx='7.9999' cy='8.00002' r='4.6' fill='%231D965C' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(-50%);
  z-index: 1;
  transition: all ease 0.4s;
  position: absolute;
}
.map-block-element:hover {
  background-color: #4450D5;
}
.map-block-element:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%234450D5'/%3E%3Ccircle cx='7.9999' cy='7.9999' r='4.6' fill='%234450D5' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
}
.map-block-element.active {
  background-color: #4450D5;
  cursor: revert;
}
.map-block-element.active::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%234450D5'/%3E%3Ccircle cx='7.9999' cy='7.9999' r='4.6' fill='%234450D5' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
}
.map-tabs {
  display: flex;
  align-items: center;
  border: 2px solid #32BB78;
  border-radius: 100px;
  overflow: hidden;
  width: max-content;
  margin: 30px auto 0;
}
@media screen and (max-width: 575px) {
  .map-tabs {
    max-width: 370px;
    width: 100%;
    flex-flow: row wrap;
    border-radius: 25px;
  }
}
.map-tabs__item {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  padding: 11px 31px;
  background-color: transparent;
  transition: all ease 0.4s;
  cursor: pointer;
  color: #32BB78;
}
@media screen and (max-width: 575px) {
  .map-tabs__item {
    width: 50%;
  }
}
.map-tabs__item.active {
  color: #fff;
  background-color: #32BB78;
  cursor: revert;
}
.map-tabs__item:hover {
  background-color: #32BB78;
  color: #fff;
}
.map-tabs__item:not(:last-child) {
  border-right: 2px solid #32BB78;
}
@media screen and (max-width: 575px) {
  .map-tabs__item:not(:last-child) {
    border-right: none;
  }
}
@media screen and (max-width: 575px) {
  .map-tabs__item:nth-child(4n+3), .map-tabs__item:nth-child(4n+1) {
    border-right: 2px solid #32BB78;
  }
}
@media screen and (max-width: 575px) {
  .map-tabs__item:nth-child(1), .map-tabs__item:nth-child(2) {
    border-bottom: 2px solid #32BB78;
  }
}
.map__description {
  max-width: 833px;
  margin: 24px auto 0;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .map__description {
    font-size: 12px;
  }
  .map__description br {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .map__description {
    margin-top: 66px;
    font-size: 14px;
    line-height: 18px;
  }
}
.map__alert {
  margin: 30px auto 0;
  color: #32BB78;
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  max-width: 637px;
}
@media screen and (max-width: 767px) {
  .map__alert {
    font-size: 20px;
    max-width: 400px;
  }
}
@media screen and (max-width: 575px) {
  .map__alert {
    margin-top: 66px;
    font-size: 22px;
    line-height: 28px;
    max-width: 320px;
  }
}

.vote {
  background: rgba(50, 187, 120, 0.1);
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .vote {
    padding: 30px 0 50px;
  }
}
.vote .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 575px) {
  .vote .container {
    gap: 43px;
  }
}
.vote-conditions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 470px));
  justify-content: center;
  gap: 30px;
  max-width: 970px;
  margin: 24px auto 0;
}
@media screen and (max-width: 991px) {
  .vote-conditions {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .vote-conditions {
    margin-top: 25px;
  }
}
.vote-conditions__info {
  border-radius: 24px;
  overflow: hidden;
  padding: 20px 20px 10px 30px;
  color: #fff;
  text-align: left;
  background: #32BB78;
}
@media screen and (max-width: 575px) {
  .vote-conditions__info {
    padding: 20px 30px 30px;
  }
}
.vote-conditions__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.vote-conditions__list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  list-style: none;
  counter-reset: list-counter;
}
.vote-conditions__list li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 71px;
  font-size: 20px;
  line-height: 26px;
  padding-top: 8px;
}
@media screen and (max-width: 575px) {
  .vote-conditions__list li {
    padding-left: 59px;
    font-size: 16px;
    line-height: 20px;
  }
}
.vote-conditions__list li::before {
  content: counter(list-counter);
  position: absolute;
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 100%;
  background: #1D965C;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  left: 0;
  top: 0;
}
@media screen and (max-width: 575px) {
  .vote-conditions__list li::before {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
.vote-conditions__block {
  margin-top: 28px;
  max-width: 341px;
  border-radius: 24px;
  background: #1D965C;
  padding: 25px 14px 28px 30px;
  font-size: 20px;
  line-height: 26px;
}
@media screen and (max-width: 575px) {
  .vote-conditions__block {
    margin-top: 15px;
    max-width: 310px;
    padding: 23px 25px 25px;
    font-size: 16px;
    line-height: 20px;
  }
}
.vote-conditions__text {
  margin-top: 26px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
@media screen and (max-width: 575px) {
  .vote-conditions__text {
    margin-top: 29px;
    line-height: 20px;
    font-size: 16px;
  }
}
.vote-conditions__img {
  border-radius: 24px;
  overflow: hidden;
  min-height: 499px;
}
@media screen and (max-width: 991px) {
  .vote-conditions__img {
    min-height: unset;
    height: 300px;
  }
}
.vote-conditions__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.vote-form {
  max-width: 970px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 991px) {
  .vote-form {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .vote-form {
    max-width: 370px;
  }
}
.vote-form__title {
  color: #32BB78;
  font-size: 30px;
  font-weight: 700;
  line-height: 39px;
}
@media screen and (max-width: 575px) {
  .vote-form__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: -40px;
  }
}
@media screen and (max-width: 991px) {
  .vote-form__img {
    display: none;
  }
}
.vote-form__img img {
  display: none;
}
.vote-form__img img.active {
  display: block;
}
.vote-form__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 22px 42px 70px 44px;
}
@media screen and (max-width: 991px) {
  .vote-form__content {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 575px) {
  .vote-form__content {
    padding: 23px 15px 59px;
    gap: 59px;
  }
}
.vote-form-block {
  position: relative;
}
.vote-form-block__text {
  border: 2px solid #32BB78;
  border-radius: 100px;
  padding: 3px 17px 7px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  .vote-form-block__text {
    padding: 3px 0 7px;
  }
}
.vote-form-block-stars {
  position: absolute;
  top: 41px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 6px 17px;
  background: #32BB78;
  border-radius: 100px;
  overflow: hidden;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  .vote-form-block-stars {
    top: calc(100% - 9px);
  }
}
.vote-form__button {
  border: 2px solid #32BB78;
  border-radius: 100px;
  padding: 3px 17px 7px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #32BB78;
  color: #fff;
  margin-top: 9px;
  cursor: pointer;
  transition: all ease 0.4s;
}
@media screen and (max-width: 575px) {
  .vote-form__button {
    margin-top: 0;
  }
}
.vote-form__button:hover {
  background-color: #fff;
  color: #32BB78;
}
.vote-thanks__title {
  color: #127042;
  max-width: 721px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .vote-thanks__title {
    font-size: 24px;
    line-height: 125%;
  }
}
@media screen and (max-width: 575px) {
  .vote-thanks__title {
    font-size: 25px;
    line-height: 32px;
  }
}
.vote-thanks__alert {
  margin: 20px auto 0;
  color: #000;
  max-width: 770px;
  font-size: 20px;
  line-height: 26px;
}
@media screen and (max-width: 575px) {
  .vote-thanks__alert {
    margin-top: 23px;
    max-width: 370px;
    font-size: 14px;
    line-height: 18px;
  }
}
.vote-thanks__description {
  margin: 26px auto 0;
  max-width: 720px;
}
@media screen and (max-width: 575px) {
  .vote-thanks__description {
    margin-top: 27px;
    font-size: 12px;
    line-height: 15px;
  }
}
.vote-thanks__button {
  border: 2px solid #E44545;
  color: #E44545;
  margin: 26px auto 0;
  border-radius: 100px;
  min-height: 50px;
  padding: 20px 12px;
  max-width: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .vote-thanks__button {
    padding: 15px 10px;
    font-size: 18px;
    min-height: 30px;
  }
}
@media screen and (max-width: 575px) {
  .vote-thanks__button {
    display: none;
  }
}

.rating {
  padding: 70px 0 80px;
}
@media screen and (max-width: 767px) {
  .rating {
    padding: 67px 0;
  }
}
.rating-stats {
  max-width: 970px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rating-stats-item {
  gap: 28px;
  display: grid;
  grid-template-columns: minmax(0, 272px) minmax(0, 1fr);
}
@media screen and (max-width: 991px) {
  .rating-stats-item {
    grid-template-columns: minmax(0, 210px) minmax(0, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .rating-stats-item {
    grid-template-columns: minmax(0, 170px) minmax(0, 1fr);
  }
}
.rating-stats-item__text {
  font-size: 30px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 39px;
}
@media screen and (max-width: 991px) {
  .rating-stats-item__text {
    font-size: 24px;
    line-height: 120%;
  }
}
@media screen and (max-width: 767px) {
  .rating-stats-item__text {
    font-size: 20px;
    line-height: 26px;
  }
}
.rating-stats-item__number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}
@media screen and (max-width: 991px) {
  .rating-stats-item__number {
    gap: 15px;
  }
}
@media screen and (max-width: 575px) {
  .rating-stats-item__number {
    gap: 10px;
  }
}
.rating-stats-item__number span:first-child {
  border-radius: 0 100px 100px 0;
  height: 35px;
  width: 0;
  transition: all ease 2.4s;
}
@media screen and (max-width: 767px) {
  .rating-stats-item__number span:first-child {
    height: 28px;
    width: 80%;
  }
}
.rating-stats-item__number span:last-child {
  font-size: 30px;
  font-weight: 500;
  line-height: 39px;
}
@media screen and (max-width: 991px) {
  .rating-stats-item__number span:last-child {
    font-size: 22px;
    line-height: 120%;
  }
}
@media screen and (max-width: 767px) {
  .rating-stats-item__number span:last-child {
    font-size: 20px;
    line-height: 26px;
  }
}
.rating__alert {
  border-radius: 24px;
  background: #32BB78;
  padding: 21px 40px 31px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 39px;
  max-width: 970px;
  margin: 70px auto 0;
}
@media screen and (max-width: 991px) {
  .rating__alert {
    margin-top: 30px;
    padding: 15px 25px;
    font-size: 22px;
    line-height: 120%;
  }
}
@media screen and (max-width: 767px) {
  .rating__alert {
    padding: 10px;
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  .rating__alert {
    margin-top: 70px;
    padding: 24px 16px 27px;
    font-size: 22px;
    line-height: 28px;
  }
}
.rating__description {
  margin: 32px auto 0;
  max-width: 833px;
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  .rating__description {
    margin-top: 26px;
    max-width: 348px;
    font-size: 14px;
    line-height: 18px;
  }
}
.rating__after {
  margin: 24px auto 0;
  max-width: 888px;
  padding-top: 25px;
  position: relative;
  font-weight: 400;
  display: none;
}
@media screen and (max-width: 575px) {
  .rating__after {
    padding-top: 30px;
    max-width: 338px;
    font-size: 12px;
    line-height: 15px;
  }
}
.rating__after::before {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  transform: translateX(-50%);
  background: #000;
  height: 2px;
  width: 169px;
}
@media screen and (max-width: 575px) {
  .rating__after::before {
    width: 70px;
  }
}

.popup-thanks {
  border-radius: 24px;
  background: #4450D5;
  padding: 25px 40px 30px;
  text-align: center;
  max-width: 430px;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .popup-thanks {
    max-width: calc(100% - 30px);
    padding: 15px 20px;
  }
}
.popup-thanks__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 39px;
}
@media screen and (max-width: 575px) {
  .popup-thanks__title {
    font-size: 22px;
    line-height: 130%;
  }
}
.popup-thanks__text {
  margin-top: 20px;
  font-size: 20px;
  line-height: 26px;
}
@media screen and (max-width: 575px) {
  .popup-thanks__text {
    font-size: 16px;
    line-height: 130%;
  }
}
.popup-thanks__button {
  cursor: pointer;
  border-radius: 24px;
  text-transform: uppercase;
  width: max-content;
  margin: 24px auto 0;
  min-width: 170px;
  min-height: 41px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #4450D5;
}

.fancybox__backdrop {
  background: rgba(50, 187, 120, 0.65) !important;
}

.f-button {
  color: #4450D5;
  top: -38px !important;
  right: 0 !important;
  background: none !important;
}
.f-button:focus, .f-button:active, .f-button:focus-visible {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

#map-action-span {
  cursor: pointer;
}
#map-action-span:hover {
  text-decoration: none;
}

/*# sourceMappingURL=style.css.map */
