.geo {
  color: #4f4f4f;
  position: relative;
  display: none;
  transition: opacity 0.4s 0.5s;
  opacity: 0;
  z-index: 1;
  min-width: 150px;
}
.header .geo__city {
  color: #4f4f4f;
}
.header .geo__city::after {
  border-top-color: #4f4f4f;
}
.header .geo__city:hover {
  color: #faaf00;
}
.header .geo__city:hover::after {
  border-top-color: #faaf00;
}
.site-is-ready .geo {
  opacity: 1;
  display: block;
}
.geo__container {
  position: relative;
  transition: opacity 0.4s;
  z-index: 1;
}
@media (min-width: 1200px) {
  .geo__container {
    min-width: 100px;
  }
}
.geo__city {
  color: #131313;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  padding: 10px;
  padding-left: 0;
  padding-right: 15px;
  background-color: inherit;
  border: none;
  transition: background-color 0.4s, color 0.4s;
  z-index: 1;
}
.geo__city::after {
  content: "";
  position: absolute;
  top: calc(50% + 3px);
  right: 0;
  width: 10px;
  height: 12px;
  border: 5px solid transparent;
  border-bottom: 6px solid transparent;
  border-top: 6px solid #131313;
  transform: translateY(-50%);
  z-index: 1;
}
.geo__city:hover {
  color: rgba(19, 19, 19, 0.6);
}
@media (max-width: 991px) {
  .front .geo__city {
    color: #131313;
  }
  .front .geo__city::after {
    border-top-color: #131313;
  }
}
.geo__popup {
  color: #131313;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 0;
  min-width: 340px;
  height: auto;
  min-height: 149px;
  padding: 32px 24px;
  padding-right: 40px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: box-shadow 0.4s, opacity 0.4s, height 0.4s 0.2s, width 0.4s 0.2s;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
.geo__popup--show {
  opacity: 1;
  pointer-events: all;
  z-index: 1;
  display: block;
}
@media (max-width: 1199px) {
  .geo__popup {
    left: auto;
    right: 0;
  }
}
@media (max-width: 991px) {
  .geo__popup {
    position: fixed;
    top: 70px;
    left: 15px;
    max-width: calc(100vw - 30px);
    min-width: 345px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.geo__caption {
  color: inherit;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .geo__caption {
    font-size: 18px;
  }
}
.geo__wrapper {
  display: flex;
  margin: 0 -10px;
}
.geo__step {
  position: absolute;
  width: auto;
  opacity: 1;
  display: none;
  transform: none;
  animation: hide 0.4s 0.3s ease-in-out forwards;
  pointer-events: none;
  z-index: 1;
}
.geo__step--active {
  opacity: 0;
  display: block;
  transform: none;
  pointer-events: all;
  animation: showup 0.6s 0.3s ease-in-out forwards;
}
.geo__step--first {
  width: 375px;
}
.geo__step--second {
  width: 286px;
}
.geo__close {
  position: absolute;
  top: 7px;
  right: 7px;
  border: none;
  background-color: transparent;
  z-index: 1;
}
.geo__close rect {
  transition: fill 0.4s;
}
.geo__close:hover rect {
  fill: rgba(19, 19, 19, 0.6);
}
.geo .geo__btn {
  font-size: 13px;
  min-width: 160px;
  margin: 0 10px;
}
.geo .geo__btn.btn--inverse {
  color: #131313;
  background-color: #ffffff;
  border: 1px solid rgba(19, 19, 19, 0.4);
  transition: border-color 0.4s;
}
.geo .geo__btn.btn--inverse:hover {
  border-color: #ec9100;
}
@media (max-width: 991px) {
  .geo .geo__btn {
    min-width: 150px;
  }
}
.geo__list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.geo .geo__item {
  padding-left: 0;
}
.geo .geo__item:not(:last-child) {
  margin-bottom: 16px;
}
.geo .geo__link {
  color: rgba(19, 19, 19, 0.6);
  font-size: 16px;
  line-height: 1.5;
  text-transform: none;
}
.geo .geo__link:hover {
  color: #ec9100;
}

@keyframes showup {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  60% {
    opacity: 0.7;
    transform: scale(0.9) translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes hide {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.8) translateX(40px);
  }
  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}
/*# sourceMappingURL=_maps/geo.css.map */
