@charset "UTF-8";
@font-face {
  font-family: "Geometria";
  src: url("/fonts/mycity/geometria/Geometria.woff") format("woff"), url("/fonts/mycity/geometria/Geometria.eot") format("embedded-opentype"), url("/fonts/mycity/geometria/Geometria.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Geometria";
  src: url("/fonts/mycity/geometria/Geometria-Medium.woff") format("woff"), url("/fonts/mycity/geometria/Geometria-Medium.eot") format("embedded-opentype"), url("/fonts/mycity/geometria/Geometria-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Agavalanchec";
  src: url("/fonts/mycity/agavalanchec/agavalanchec.otf") format("otf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Agavalanchec";
  src: url("/fonts/mycity/agavalanchec/agavalanchec-bold.otf") format("otf");
  font-weight: 600;
  font-style: normal;
}
@keyframes from_left {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes from_right {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
@keyframes from_bottom {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes watch__button_from_left {
  0% {
    left: -100%;
  }
  100% {
    left: 2rem;
  }
}
@keyframes listen__button_from_right {
  0% {
    right: -100%;
  }
  100% {
    right: 2rem;
  }
}
@keyframes fade_from_top {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_from_bottom {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rating-load {
  0% {
    background-image: url(/images/mycity/icons/star-icon-stroke.svg);
  }
  100% {
    background-image: url(/images/mycity/icons/star-icon.svg);
  }
}
@keyframes rating-load-out {
  0% {
    background-image: url(/images/mycity/icons/star-icon.svg);
  }
  100% {
    background-image: url(/images/mycity/icons/star-icon-stroke.svg);
  }
}
@keyframes rating-number-load-in {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rating-number-load-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes load-progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  font-family: "Geometria", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}

html {
  font-size: 10px;
}

.page {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  min-height: 100vh;
  background-color: #fff;
  overflow: hidden;
}
.page__section {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 2rem;
  z-index: 2;
}
@media all and (min-width: 365px) {
  .page__section {
    padding: 10rem 2rem 9.5rem;
  }
}
.page__bg {
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page__bg-gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.page__bg-gradient_black-04 {
  background-color: rgba(0, 0, 0, 0.4);
}
.page__bg-gradient_black-05 {
  background-color: rgba(0, 0, 0, 0.5);
}
.page__bg-gradient_black-025 {
  background-color: rgba(0, 0, 0, 0.25);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 8rem;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
@media all and (min-width: 365px) {
  .header {
    height: 10rem;
  }
}
.header__row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 8.5rem;
  max-height: 4.8rem;
}
@media all and (min-width: 365px) {
  .header__logo {
    width: 12.5rem;
  }
}
.header__menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 2.5rem;
  height: 2.2rem;
}
.header__menu-btn-icon {
  width: 100%;
  height: 0.2rem;
  border-radius: 1px;
  background-color: #ffffff;
  position: relative;
}
.header__menu-btn-icon::before {
  content: "";
  display: block;
  width: 1.3rem;
  height: 0.2rem;
  border-radius: 1px;
  background-color: #ffffff;
  margin-left: auto;
  position: absolute;
  right: 0;
  bottom: 0.8rem;
}
.header__menu-btn-icon::after {
  content: "";
  display: block;
  width: 1.3rem;
  height: 0.2rem;
  border-radius: 1px;
  background-color: #ffffff;
  margin-right: auto;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
.header__icon {
  width: 3rem;
  height: 3rem;
}
.header__icon_back-arrow {
  width: 1.5rem;
  height: 1rem;
}
.header__icon_pencil {
  width: 2rem;
  height: 2rem;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 8rem;
  padding: 0 2rem 4rem;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  background-color: #ffffff;
}
@media all and (min-width: 365px) {
  .footer {
    height: 9.5rem;
    padding: 0 2rem 4.5rem;
  }
}

.btn {
  outline-width: 0;
}
.btn_primary {
  font-family: "tele2-displayserif", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  height: 4rem;
  padding: 1rem 3rem;
  border-radius: 1.6rem;
  background-color: #10AD6B;
  border: none;
  vertical-align: middle;
  min-width: 24rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}
@media all and (min-width: 365px) {
  .btn_primary {
    min-width: 28rem;
    height: 5rem;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
  }
}
.btn_round {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 50%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border: none;
}
@media all and (min-width: 365px) {
  .btn_round {
    width: 5.7rem;
    height: 5.7rem;
  }
}
.btn_cancel {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000000;
}
.btn_cancel .btn__icon {
  width: 1.2rem;
  height: 1.2rem;
}
@media all and (min-width: 365px) {
  .btn_cancel .btn__icon {
    width: 1.4rem;
    height: 1.4rem;
  }
}

.popup {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
  overflow: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  transition: all 0.1s linear 0.65s;
}
.popup__content {
  width: 100%;
  max-width: 30rem;
  background-color: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.7rem;
  font-size: 1.4rem;
  position: relative;
  transform: translateY(100%);
  bottom: 0;
  transition: transform 0.5s ease-out;
}
@media all and (min-width: 365px) {
  .popup__content {
    max-width: 35rem;
    font-size: 1.6rem;
  }
}
.popup__link {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #10AD6B;
}
@media all and (min-width: 365px) {
  .popup__link {
    font-size: 1.6rem;
  }
}
.popup__title {
  font-size: 2.8rem;
  line-height: normal;
  text-align: center;
  max-width: 30rem;
  color: #000000;
  margin-bottom: 3.5rem;
}
.popup__text {
  text-align: center;
  color: #686868;
}
.popup__link {
  margin-top: 1.5rem;
}
.popup .btn_primary {
  margin-top: 3.4rem;
}
.popup_active {
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.1s linear;
}
.popup_active .popup__content {
  transform: translateY(0);
  bottom: 4.5rem;
  transition: transform 0.65s ease 0.1s;
}
.popup_map_route-page .popup__content {
  padding: 3rem 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  height: 95vh;
  border-radius: 3rem 3rem 0 0;
}
.popup_map_route-page .popup__body {
  width: 100%;
}
.popup_map_route-page .btn_primary {
  width: 15rem;
  min-width: 15rem;
  height: 4rem;
  padding: 0.5rem;
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1rem;
}
.popup_map_route-page .popup__title {
  color: #10AD6B;
}
.popup_map_route-page .map {
  width: 100vw;
  height: calc(95vh - 9.8rem);
}
.popup_success-payment, .popup_payment-error {
  text-align: center;
}
.vertical-plug {
  font-size: 3.6rem;
  line-height: 4.3rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  display: none;
  position: absolute;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  color: #ffffff;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
@media all and (orientation: landscape) and (max-width: 1050px) and (min-aspect-ratio: 13/9) {
  .vertical-plug {
    display: flex;
  }
}

.link {
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: center;
  text-decoration-line: underline;
  color: #000000;
}
@media all and (min-width: 365px) {
  .link {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}

.title {
  text-transform: uppercase;
  font-family: "Agavalanchec", serif;
  font-weight: 400;
}
.title_main {
  font-family: "Agavalanchec", sans-serif;
  font-weight: 400;
}

.margin_top_25 {
  margin-top: 2.5rem;
}

.rating {
  width: 14rem;
  height: 16rem;
  position: absolute;
  left: 50%;
  top: 68%;
  transform: translate(-50%, -50%);
  z-index: 50;
}
@media all and (min-width: 365px) {
  .rating {
    width: 16rem;
    height: 18rem;
  }
}
@media all and (min-height: 750px) {
  .rating {
    width: 18rem;
    height: 20rem;
  }
}
.rating__field {
  display: none;
}
.rating__field#item-1:checked + .rating__item + div::before {
  opacity: 1;
  content: "1";
}
.rating__field#item-1 + .rating__item {
  width: 1.2rem;
  height: 1.2rem;
  top: 15%;
  right: 15%;
  transform: translate(50%, -50%);
  animation: rating-load 3.8s step-start;
}
.rating__field#item-1 + .rating__item + div::before {
  content: "1";
  opacity: 0;
  animation: rating-number-load-in 0.2s step-end, rating-number-load-out 0.2s step-end 3.6s;
}
.rating__field#item-2:checked + .rating__item + div::before {
  opacity: 1;
  content: "2";
}
.rating__field#item-2 + .rating__item {
  width: 1.4rem;
  height: 1.4rem;
  top: 38.3333%;
  right: 0;
  transform: translate(50%, -50%);
  animation: rating-load 3.4s step-start 0.2s;
}
.rating__field#item-2 + .rating__item + div::before {
  content: "2";
  opacity: 0;
  animation: rating-number-load-in 0.2s step-end 0.2s, rating-number-load-out 0.2s step-end 3.4s;
}
.rating__field#item-3:checked + .rating__item + div::before {
  opacity: 1;
  content: "3";
}
.rating__field#item-3 + .rating__item {
  width: 1.6rem;
  height: 1.6rem;
  top: 61.6666%;
  right: 0%;
  transform: translate(50%, -50%);
  animation: rating-load 3s step-start 0.4s;
}
.rating__field#item-3 + .rating__item + div::before {
  content: "3";
  opacity: 0;
  animation: rating-number-load-in 0.2s step-end 0.4s, rating-number-load-out 0.2s step-end 3.2s;
}
.rating__field#item-4:checked + .rating__item + div::before {
  opacity: 1;
  content: "4";
}
.rating__field#item-4 + .rating__item {
  width: 1.9rem;
  height: 1.9rem;
  top: 85%;
  right: 15%;
  transform: translate(50%, -50%);
  animation: rating-load 2.6s step-start 0.6s;
}
.rating__field#item-4 + .rating__item + div::before {
  content: "4";
  opacity: 0;
  animation: rating-number-load-in 0.2s step-end 0.6s, rating-number-load-out 0.2s step-end 3s;
}
.rating__field#item-5:checked + .rating__item + div::before {
  opacity: 1;
  content: "5";
}
.rating__field#item-5 + .rating__item {
  width: 2.2rem;
  height: 2.2rem;
  top: 100%;
  right: 50%;
  transform: translate(50%, -100%);
  animation: rating-load 2.2s step-start 0.8s;
}
.rating__field#item-5 + .rating__item + div::before {
  content: "5";
  opacity: 0;
  animation: rating-number-load-in 0.2s step-end 0.8s, rating-number-load-out 0.2s step-end 2.8s;
}
.rating__field#item-6:checked + .rating__item + div::before {
  opacity: 1;
  content: "6";
}
.rating__field#item-6 + .rating__item {
  width: 2.6rem;
  height: 2.6rem;
  top: 85%;
  left: 15%;
  transform: translate(-50%, -50%);
  animation: rating-load 1.8s step-start 1s;
}
.rating__field#item-6 + .rating__item + div::before {
  content: "6";
  opacity: 0;
  animation: rating-number-load-in 0.2s step-end 1s, rating-number-load-out 0.2s step-end 2.6s;
}
.rating__field#item-7:checked + .rating__item + div::before {
  opacity: 1;
  content: "7";
}
.rating__field#item-7 + .rating__item {
  width: 3rem;
  height: 3rem;
  top: 61.6666%;
  left: 0%;
  transform: translate(-50%, -50%);
  animation: rating-load 1.4s step-start 1.2s;
}
.rating__field#item-7 + .rating__item + div::before {
  content: "7";
  opacity: 0;
  animation: rating-number-load-in 0.2s step-end 1.2s, rating-number-load-out 0.2s step-end 2.4s;
}
.rating__field#item-8:checked + .rating__item + div::before {
  opacity: 1;
  content: "8";
}
.rating__field#item-8 + .rating__item {
  width: 3.1rem;
  height: 3.1rem;
  top: 38.3333%;
  left: 0;
  transform: translate(-50%, -50%);
  animation: rating-load 1s step-start 1.4s;
}
.rating__field#item-8 + .rating__item + div::before {
  content: "8";
  opacity: 0;
  animation: rating-number-load-in 0.2s step-end 1.4s, rating-number-load-out 0.2s step-end 2.2s;
}
.rating__field#item-9:checked + .rating__item + div::before {
  opacity: 1;
  content: "9";
}
.rating__field#item-9 + .rating__item {
  width: 3.4rem;
  height: 3.4rem;
  top: 15%;
  left: 15%;
  transform: translate(-50%, -50%);
  animation: rating-load 0.6s step-start 1.6s;
}
.rating__field#item-9 + .rating__item + div::before {
  content: "9";
  opacity: 0;
  animation: rating-number-load-in 0.2s step-end 1.6s, rating-number-load-out 0.2s step-end 2s;
}
.rating__field#item-10:checked + .rating__item + div::before {
  opacity: 1;
  content: "10";
}
.rating__field#item-10 + .rating__item {
  width: 3.7rem;
  height: 3.7rem;
  top: 0;
  right: 50%;
  transform: translate(50%, 0);
  animation: rating-load 0.2s step-start 1.8s;
}
.rating__field#item-10 + .rating__item + div::before {
  content: "10";
  opacity: 0;
  animation: rating-number-load-in 0.2s step-end 1.8s, rating-number-load-out 0.2s step-end 1.8s;
}
.rating__item {
  display: block;
  width: 2rem;
  height: 2rem;
  background-position: 100% 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/images/mycity/icons/star-icon-stroke.svg");
  transition: all 0.3s ease-out;
  position: absolute;
}
.rating__item + div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rating__item + div::before {
  content: "";
  display: block;
  color: #fff;
  font-size: 7.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rating__field:checked ~ .rating__item {
  background-image: url("/images/mycity/icons/star-icon.svg");
  transition: all 0.3s ease;
}

.accrued-points-page .page__section {
  background-color: #ffffff;
  z-index: 2;
}
.accrued-points-page__bg-img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media all and (min-width: 365px) and (min-height: 750px) {
  .accrued-points-page__bg-img {
    bottom: 0;
  }
}
@media all and (min-width: 760px) {
  .accrued-points-page__bg-img {
    bottom: -45%;
  }
}
.accrued-points-page__points {
  font-size: 5rem;
  line-height: 7rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 3;
}
@media all and (min-width: 365px) {
  .accrued-points-page__points {
    font-size: 7.2rem;
    line-height: 8.6rem;
  }
}

.artifact-page__header {
  background-color: #f5f5f5;
}
.artifact-page .header__menu-btn-icon {
  background-color: #10AD6B;
}
.artifact-page .header__menu-btn-icon::before {
  background-color: #10AD6B;
}
.artifact-page .header__menu-btn-icon::after {
  background-color: #10AD6B;
}
.artifact-page__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  margin-bottom: 2.5rem;
  max-height: 20rem;
}
@media all and (min-height: 650px) {
  .artifact-page__cover {
    max-height: 25rem;
  }
}
@media all and (min-height: 800px) {
  .artifact-page__cover {
    max-height: 30rem;
  }
}
.artifact-page__section {
  align-items: center;
  justify-content: center;
}
.artifact-page__paragraph {
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: center;
  color: #686868;
  max-width: 28rem;
}
@media all and (min-width: 365px) {
  .artifact-page__paragraph {
    max-width: 33.5rem;
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}
.artifact-page__score {
  font-size: 4.7rem;
  line-height: 6rem;
  text-align: center;
  color: #10AD6B;
  position: relative;
  z-index: 5;
}
@media all and (min-width: 365px) {
  .artifact-page__score {
    font-size: 6rem;
    line-height: 7.1rem;
    margin-bottom: 1rem;
  }
}

.final-page .page__section {
  padding: 9.3rem 2rem;
}
@media all and (min-width: 365px) {
  .final-page .page__section {
    padding: 11.3rem 2rem 11.5rem;
  }
}
@media all and (min-width: 365px) and (min-height: 700px) {
  .final-page .page__section {
    padding: 12.3rem 2rem 11.5rem;
  }
}
@media all and (min-height: 750px) {
  .final-page .page__section {
    padding: 14.3rem 2rem 11.5rem;
  }
}
.final-page .header__menu-btn-icon {
  background-color: #10AD6B;
}
.final-page .header__menu-btn-icon::before {
  background-color: #10AD6B;
}
.final-page .header__menu-btn-icon::after {
  background-color: #10AD6B;
}
.final-page__header {
  background-color: #F5F5F5;
}
.final-page__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.final-page__score {
  font-size: 3rem;
  line-height: 1;
  text-align: center;
  color: #000000;
}
@media all and (min-width: 365px) {
  .final-page__score {
    font-size: 5rem;
  }
}
.final-page__title {
  font-size: 2.2rem;
  line-height: 1;
  text-align: center;
  color: #10AD6B;
}
@media all and (min-width: 365px) {
  .final-page__title {
    font-size: 4.2rem;
  }
}
.final-page__desc {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  color: #686868;
  margin-top: 1rem;
}
@media all and (min-width: 365px) {
  .final-page__desc {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
}
.final-page__gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.5rem 0;
}
.final-page__gallery-card {
  display: block;
  width: 100%;
  height: 20rem;
  position: relative;
  overflow: hidden;
  border-radius: 3rem;
}
@media all and (min-height: 700px) {
  .final-page__gallery-card {
    height: 27rem;
  }
}
@media all and (min-height: 750px) {
  .final-page__gallery-card {
    height: 30rem;
  }
}
.final-page__gallery-card-title {
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  line-height: normal;
  text-align: left;
  color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  z-index: 4;
  padding: 2.5rem;
  text-align: center;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.3);
}
@media all and (min-width: 365px) {
  .final-page__gallery-card-title {
    font-size: 1.6rem;
  }
}
.final-page__gallery-card-bg-img {
  position: absolute;
  bottom: 0;
  right: 0;
  object-fit: cover;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.final-page__gallery-card-small {
  width: 5rem;
  height: 5rem;
  position: relative;
  margin-right: 2rem;
  border-radius: 1px;
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
}
.final-page__gallery-card-small:last-child {
  margin-right: 0;
}
.final-page__gallery-card-small::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.final-page__gallery-card-small .icon_share {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  right: 0.5rem;
}
@media all and (min-width: 365px) {
  .final-page__gallery-card-small .icon_share {
    bottom: 1.1rem;
    right: 0.6rem;
  }
}
.final-page__gallery-card .btn_share {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 5;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  text-decoration: underline;
  font-size: 1.4rem;
  color: #10AD6B;
}
@media all and (min-width: 365px) {
  .final-page__gallery-card .btn_share {
    font-size: 1.6rem;
  }
}
.final-page__gallery-card .btn_share .icon {
  margin-left: 1.6rem;
}
.final-page__gallery-preview {
  display: flex;
  align-items: center;
  width: 100vw;
  margin-top: 1rem;
  position: relative;
}
.final-page__gallery-preview-content {
  display: flex;
  width: 100vw;
  padding: 0 2rem;
  position: absolute;
  left: 0;
  top: 0;
  overflow: auto;
}

.main-page {
  display: flex;
  flex-direction: column;
}
.main-page__header .header__logo {
  position: relative;
  animation: from_left 0.6s ease forwards;
}
.main-page__header .header__menu-btn {
  position: relative;
  animation: from_right 0.5s ease forwards;
}
.main-page__section {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}
.main-page__bg-img {
  display: block;
  object-fit: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.main-page__text {
  z-index: 10;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 30rem;
  margin-bottom: 20vh;
  position: relative;
  bottom: -100%;
  animation: from_bottom 0.6s ease 1s forwards;
}
@media all and (min-width: 365px) and (min-height: 750px) {
  .main-page__text {
    margin-bottom: 16vh;
  }
}
@media all and (min-width: 750px) {
  .main-page__text {
    max-width: 50rem;
  }
}
.main-page__title {
  font-size: 2.8rem;
  line-height: 3.6rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
@media all and (min-width: 365px) {
  .main-page__title {
    font-size: 3.6rem;
    line-height: 4.3rem;
  }
}
@media all and (min-width: 576px) {
  .main-page__title {
    font-size: 4.8rem;
    line-height: 6.2rem;
  }
}

.personal-page__header {
  padding-top: 5rem;
  align-items: flex-start;
}
.personal-page__footer .btn_save {
  min-width: 22rem;
}
@media all and (min-width: 365px) {
  .personal-page__footer .btn_save {
    min-width: 26rem;
  }
}
.personal-page__footer .btn_cancel {
  background-color: #EB5757;
  border-color: #EB5757;
}
.personal-page__footer .footer__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.personal-page-edit .personal-page__name, .personal-page-edit .personal-page__phone {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #686868;
  text-align: center;
  padding-bottom: 0.5rem;
  outline: none;
  color: #10AD6B;
}
.personal-page-edit .personal-page__name {
  margin-top: 3rem;
}
.personal-page-edit .personal-page__name:-ms-input-placeholder {
  color: #686868;
}
.personal-page-edit .personal-page__name::-ms-input-placeholder {
  color: #686868;
}
.personal-page-edit .personal-page__name::-webkit-input-placeholder {
  color: #686868;
}
.personal-page-edit .personal-page__name:-moz-placeholder {
  color: #686868;
}
.personal-page-edit .personal-page__name::-moz-placeholder {
  color: #686868;
}
.personal-page-edit .personal-page__phone {
  margin-top: 2rem;
}
.personal-page-edit .personal-page__phone:-ms-input-placeholder {
  color: #686868;
}
.personal-page-edit .personal-page__phone::-ms-input-placeholder {
  color: #686868;
}
.personal-page-edit .personal-page__phone::-webkit-input-placeholder {
  color: #686868;
}
.personal-page-edit .personal-page__phone:-moz-placeholder {
  color: #686868;
}
.personal-page-edit .personal-page__phone::-moz-placeholder {
  color: #686868;
}
.personal-page-edit .personal-page__footer {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.personal-page__header {
  padding-top: 5rem;
  align-items: flex-start;
}
.personal-page__section {
  flex-direction: column;
  align-items: center;
}
.personal-page__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.personal-page__title {
  font-family: "tele2-displayserif";
  font-weight: normal;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  width: 19rem;
  margin-top: 1rem;
}
@media all and (min-width: 365px) {
  .personal-page__title {
    margin-top: 0;
    font-size: 2.8rem;
    width: 27rem;
  }
}
.personal-page__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25rem;
  height: 21.6rem;
  background-color: #EEEEEE;
  margin-top: 4rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%) translateY(-50%);
}
@media all and (min-width: 365px) {
  .personal-page__card {
    width: 30rem;
    height: 22rem;
    margin-top: 3.5rem;
  }
}
@media all and (min-width: 365px) and (min-height: 700px) {
  .personal-page__card {
    width: 33.5rem;
    height: 26.6rem;
    margin-top: 4.5rem;
  }
}
.personal-page__card::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.personal-page__avatar {
  object-fit: cover;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 6.5rem;
  transform: translateY(-50%);
  border: 3px solid #10AD6B;
}
@media all and (min-width: 365px) {
  .personal-page__avatar {
    left: 8rem;
    width: 14rem;
    height: 14rem;
  }
}
@media all and (min-width: 365px) and (min-height: 700px) {
  .personal-page__avatar {
    left: 8rem;
    width: 17.5rem;
    height: 17.5rem;
  }
}
.personal-page__name {
  font-family: "tele2-displayserif";
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 3.5rem;
  text-align: center;
  color: #10AD6B;
  font-weight: bold;
  margin-top: 0.8rem;
  max-width: 22rem;
}
@media all and (min-width: 365px) {
  .personal-page__name {
    font-size: 3.6rem;
    line-height: 5.1rem;
    max-width: 29rem;
  }
}
.personal-page__phone {
  font-family: "tele2_textsans";
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 2rem;
  text-align: center;
  color: #686868;
  margin-top: 0.8rem;
}
@media all and (min-width: 365px) {
  .personal-page__phone {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}
.personal-page__footer {
  align-items: flex-end;
  background-color: transparent;
}
.personal-page__footer .link {
  color: #ffffff;
}

.player-page {
  position: relative;
}
.player-page .page__section {
  z-index: 10;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}
.player-page__controls {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.player-page__btn {
  border: none;
}
.player-page__btn_rewind, .player-page__btn_camera {
  padding: 1.6rem 2.8rem;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 365px) {
  .player-page__btn_rewind, .player-page__btn_camera {
    padding: 2.2rem 3.5rem;
  }
}
.player-page__btn_rewind {
  border-radius: 0 2rem 2rem 0;
}
.player-page__btn_rewind .icon {
  width: 3rem;
  height: 2.6rem;
  position: relative;
  left: -0.5rem;
}
.player-page__btn_camera {
  border-radius: 2rem 0 0 2rem;
}
.player-page__btn_camera .icon {
  width: 3.5rem;
  height: 2.6rem;
  position: relative;
  right: -0.5rem;
}
.player-page__btn_play {
  width: 10rem;
  height: 10rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 365px) {
  .player-page__btn_play {
    width: 14rem;
    height: 14rem;
  }
}
.player-page__btn_play_paused::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background-position: 100% 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDIiIGhlaWdodD0iNDciIHZpZXdCb3g9IjAgMCA0MiA0NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTM4LjUxMiAyMi42MzU0TDQuNTAyNDIgMi44NzMwM0MzLjgzNTc1IDIuNDg1NjQgMyAyLjk2NjYxIDMgMy43Mzc2NVY0My4yNjIzQzMgNDQuMDMzNCAzLjgzNTc2IDQ0LjUxNDQgNC41MDI0MiA0NC4xMjdMMzguNTEyIDI0LjM2NDZDMzkuMTc1NSAyMy45NzkxIDM5LjE3NTUgMjMuMDIwOSAzOC41MTIgMjIuNjM1NFoiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iNSIvPgo8L3N2Zz4K");
}
.player-page__btn_play_active::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 4rem;
  background-color: transparent;
  border: 3px solid #ffffff;
  border-radius: 0.4rem;
  margin-right: 1rem;
}
.player-page__btn_play_active::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 4rem;
  background-color: transparent;
  border: 3px solid #ffffff;
  border-radius: 0.4rem;
}
.player-page__footer {
  background-color: transparent;
}
.player-page__footer .btn_open-map {
  font-family: "Tele2TextSansWebSHORT", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  height: 4.2rem;
  min-width: 24rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  border-radius: 2.1rem;
  font-size: 1.4rem;
}
@media all and (min-width: 365px) {
  .player-page__footer .btn_open-map {
    font-style: 1.6rem;
  }
}
.player-page__footer .btn_open-map .btn__icon {
  margin-right: 1.7rem;
}
.player-page .popup {
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.2s ease-out 0.65s;
}
.player-page .popup__content {
  transition: transform 0.65s ease;
}
.player-page .popup_map .popup__content {
  width: 100%;
  max-width: 100%;
  height: 95vh;
  background-color: #ffffff;
  box-shadow: -5px 0px 20px rgba(0, 0, 0, 0.3);
  border-radius: 3rem 3rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  transform: translateY(100%);
  bottom: 0;
  transition: transform 0.5s ease-out;
}
.player-page .popup_map .popup__header {
  font-size: 2.8rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.player-page .popup_map .popup__title {
  color: #10AD6B;
}
.player-page .popup_map .popup__body .map {
  width: 100vw;
  height: calc(95vh - 9.8rem);
}
.player-page .popup_map .popup__body .btn {
  width: 15rem;
  min-width: 15rem;
  height: 4rem;
  padding: 0.5rem;
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1rem;
}
.player-page .popup_active {
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.player-page .popup_active .popup__content {
  transform: translateY(0);
  transition: transform 0.65s ease 0.2s;
}

.second-poll-page .header {
  background-color: transparent;
}
.second-poll-page .header__menu-btn-icon {
  background-color: #ffffff;
}
.second-poll-page .header__menu-btn-icon::before, .second-poll-page .header__menu-btn-icon::after {
  background-color: #ffffff;
}
.second-poll-page .header__logo {
  position: relative;
  animation: from_left 0.6s ease forwards;
}
.second-poll-page .header__menu-btn {
  position: relative;
  animation: from_right 0.5s ease forwards;
}
.second-poll-page .page__section {
  z-index: 2;
}
.second-poll-page__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100vh - 8rem);
  width: 100%;
  margin-top: 8rem;
  padding-top: 3rem;
  padding-bottom: 11rem;
  overflow: auto;
}
@media all and (min-width: 365px) {
  .second-poll-page__container {
    height: calc(100vh - 10rem);
    margin-top: 10rem;
    padding-top: 3rem;
  }
}
.second-poll-page__desc {
  text-align: center;
  max-width: 28rem;
  margin-bottom: 3rem;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.4;
  opacity: 0;
  animation: fade_from_top 0.5s ease 0.5s forwards;
}
@media all and (min-width: 365px) {
  .second-poll-page__desc {
    max-width: 33.5rem;
    font-size: 1.6rem;
    margin-bottom: 5rem;
  }
}
.second-poll-page__card {
  width: 100%;
  width: 28rem;
  position: relative;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 3.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  border: 2px solid transparent;
  opacity: 0;
  animation: fade_from_bottom 0.5s ease 1s forwards;
  border-radius: 1rem;
  min-height: 6rem;
}
@media all and (min-width: 365px) {
  .second-poll-page__card {
    width: 33.5rem;
  }
}
.second-poll-page__card:first-child {
  margin-top: 0;
}
.second-poll-page__card_active {
  border: 2px solid #10AD6B;
  color: #10AD6B;
}
.second-poll-page__card_right {
  background-color: rgba(16, 173, 107, 0.6);
  border-color: rgba(16, 173, 107, 0.6);
  color: #ffffff;
}
.second-poll-page__card_right::before {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTYiIGN5PSIxNiIgcj0iMTUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIvPgo8cGF0aCBkPSJNNy4yNzI3MSAxNi43MjczTDEzLjA5MDkgMjMuMjcyN0wyNC43MjczIDEwLjE4MTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
}
.second-poll-page__card_wrong {
  background-color: rgba(235, 87, 87, 0.6);
  border-color: rgba(235, 87, 87, 0.6);
  color: #ffffff;
}
.second-poll-page__card_wrong::before {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTYiIGN5PSIxNiIgcj0iMTUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIvPgo8cGF0aCBkPSJNMTcuOTE5OSAxNi43MDczQzE3LjUyOTQgMTYuMzE2NyAxNy41Mjk0IDE1LjY4MzYgMTcuOTE5OSAxNS4yOTMxTDIyLjYwNTggMTAuNjA3QzIyLjk0MDkgMTAuMjcyMiAyMi45NDA5IDkuNzI4OTggMjIuNjA1OCA5LjM5NDE5QzIyLjI3MDggOS4wNTkxMSAyMS43MjgxIDkuMDU5MTEgMjEuMzkzMSA5LjM5NDE5TDE2LjcwNzIgMTQuMDgwM0MxNi4zMTY3IDE0LjQ3MDggMTUuNjgzNSAxNC40NzA4IDE1LjI5MyAxNC4wODAzTDEwLjYwNjggOS4zOTQxOUMxMC4yNzE4IDkuMDU5MTEgOS43MjkxOCA5LjA1OTExIDkuMzk0MTIgOS4zOTQxOUM5LjA1OTA2IDkuNzI4OTggOS4wNTkwNiAxMC4yNzIyIDkuMzk0MTIgMTAuNjA3TDE0LjA4MDMgMTUuMjkzMUMxNC40NzA4IDE1LjY4MzYgMTQuNDcwOCAxNi4zMTY4IDE0LjA4MDMgMTYuNzA3M0w5LjM5NDEyIDIxLjM5MzRDOS4wNTkwNiAyMS43MjgyIDkuMDU5MDYgMjIuMjcxNCA5LjM5NDEyIDIyLjYwNjFDOS41NjE2NSAyMi43NzM0IDkuNzgxMjEgMjIuODU3MiAxMC4wMDA1IDIyLjg1NzJDMTAuMjE5OCAyMi44NTcyIDEwLjQzOTMgMjIuNzczNCAxMC42MDY4IDIyLjYwNTlMMTUuMjkzIDE3LjkxOThDMTUuNjgzNSAxNy41MjkzIDE2LjMxNjcgMTcuNTI5MyAxNi43MDcyIDE3LjkxOThMMjEuMzkzMSAyMi42MDU5QzIxLjU2MDYgMjIuNzczNCAyMS43ODAyIDIyLjg1NzIgMjEuOTk5NCAyMi44NTcyQzIyLjIxODcgMjIuODU3MiAyMi40MzgzIDIyLjc3MzQgMjIuNjA1OCAyMi42MDU5QzIyLjk0MDkgMjIuMjcxMSAyMi45NDA5IDIxLjcyNzkgMjIuNjA1OCAyMS4zOTMxTDE3LjkxOTkgMTYuNzA3M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
}
.second-poll-page__footer {
  background-color: transparent;
}

.poll-page__header {
  background-color: #F5F5F5;
}
.poll-page__header .header__logo {
  position: relative;
  animation: from_left 0.6s ease forwards;
}
.poll-page__header .header__menu-btn {
  position: relative;
  animation: from_right 0.5s ease forwards;
}
.poll-page .header__menu-btn-icon {
  background-color: #10AD6B;
}
.poll-page .header__menu-btn-icon::before {
  background-color: #10AD6B;
}
.poll-page .header__menu-btn-icon::after {
  background-color: #10AD6B;
}
.poll-page__footer {
  background-color: transparent;
}
.poll-page .page__section {
  padding: 11rem 0 11rem;
  overflow: auto;
}
@media all and (min-width: 365px) {
  .poll-page .page__section {
    padding: 13rem 0 12.5rem;
  }
}
.poll-page__desc {
  text-align: center;
  max-width: 28rem;
  margin-bottom: 2rem;
  color: #10AD6B;
  font-size: 1.4rem;
  line-height: 1.4;
  opacity: 0;
  animation: fade_from_top 0.5s ease 0.5s forwards;
}
@media all and (min-width: 365px) {
  .poll-page__desc {
    max-width: 33.5rem;
    font-size: 1.6rem;
  }
}
.poll-page__card {
  width: 100%;
  width: 28rem;
  min-height: 11.5rem;
  position: relative;
  margin-top: 2rem;
  display: flex;
  align-items: flex-end;
  padding: 5rem 1.5rem 1.5rem;
  border: 2px solid transparent;
  opacity: 0;
  animation: fade_from_bottom 0.5s ease 1s forwards;
  border-radius: 1rem;
  overflow: hidden;
}
.poll-page__card::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 4;
  transition: all 0.1s ease-out;
}
.poll-page__card_right {
  border-color: rgba(16, 173, 107, 0.6);
  color: #ffffff;
  transition: all 0.1s ease-out;
}
.poll-page__card_right::before {
  background-color: rgba(16, 173, 107, 0.6);
  transition: all 0.1s ease;
}
.poll-page__card_right::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTYiIGN5PSIxNiIgcj0iMTUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIvPgo8cGF0aCBkPSJNNy4yNzI3MSAxNi43MjczTDEzLjA5MDkgMjMuMjcyN0wyNC43MjczIDEwLjE4MTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
  transition: all 0.1s ease;
}
.poll-page__card_wrong {
  border-color: rgba(235, 87, 87, 0.6);
  color: #ffffff;
  transition: all 0.1s ease-out;
}
.poll-page__card_wrong::before {
  background-color: rgba(235, 87, 87, 0.6);
  transition: all 0.1s ease;
}
.poll-page__card_wrong::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTYiIGN5PSIxNiIgcj0iMTUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIvPgo8cGF0aCBkPSJNMTcuOTE5OSAxNi43MDczQzE3LjUyOTQgMTYuMzE2NyAxNy41Mjk0IDE1LjY4MzYgMTcuOTE5OSAxNS4yOTMxTDIyLjYwNTggMTAuNjA3QzIyLjk0MDkgMTAuMjcyMiAyMi45NDA5IDkuNzI4OTggMjIuNjA1OCA5LjM5NDE5QzIyLjI3MDggOS4wNTkxMSAyMS43MjgxIDkuMDU5MTEgMjEuMzkzMSA5LjM5NDE5TDE2LjcwNzIgMTQuMDgwM0MxNi4zMTY3IDE0LjQ3MDggMTUuNjgzNSAxNC40NzA4IDE1LjI5MyAxNC4wODAzTDEwLjYwNjggOS4zOTQxOUMxMC4yNzE4IDkuMDU5MTEgOS43MjkxOCA5LjA1OTExIDkuMzk0MTIgOS4zOTQxOUM5LjA1OTA2IDkuNzI4OTggOS4wNTkwNiAxMC4yNzIyIDkuMzk0MTIgMTAuNjA3TDE0LjA4MDMgMTUuMjkzMUMxNC40NzA4IDE1LjY4MzYgMTQuNDcwOCAxNi4zMTY4IDE0LjA4MDMgMTYuNzA3M0w5LjM5NDEyIDIxLjM5MzRDOS4wNTkwNiAyMS43MjgyIDkuMDU5MDYgMjIuMjcxNCA5LjM5NDEyIDIyLjYwNjFDOS41NjE2NSAyMi43NzM0IDkuNzgxMjEgMjIuODU3MiAxMC4wMDA1IDIyLjg1NzJDMTAuMjE5OCAyMi44NTcyIDEwLjQzOTMgMjIuNzczNCAxMC42MDY4IDIyLjYwNTlMMTUuMjkzIDE3LjkxOThDMTUuNjgzNSAxNy41MjkzIDE2LjMxNjcgMTcuNTI5MyAxNi43MDcyIDE3LjkxOThMMjEuMzkzMSAyMi42MDU5QzIxLjU2MDYgMjIuNzczNCAyMS43ODAyIDIyLjg1NzIgMjEuOTk5NCAyMi44NTcyQzIyLjIxODcgMjIuODU3MiAyMi40MzgzIDIyLjc3MzQgMjIuNjA1OCAyMi42MDU5QzIyLjk0MDkgMjIuMjcxMSAyMi45NDA5IDIxLjcyNzkgMjIuNjA1OCAyMS4zOTMxTDE3LjkxOTkgMTYuNzA3M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  transition: all 0.1s ease;
}
@media all and (min-width: 365px) {
  .poll-page__card {
    width: 33.5rem;
    min-height: 13.5rem;
    padding: 8.2rem 1.5rem 1.5rem;
  }
  .poll-page__card_right::after {
    content: "";
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    position: absolute;
    z-index: 4;
    top: 2.5rem;
  }
  .poll-page__card_wrong::after {
    content: "";
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    position: absolute;
    z-index: 4;
    top: 2.5rem;
  }
}
.poll-page__card:first-child {
  margin-top: 0;
}
.poll-page__card-img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  margin-bottom: -0.1rem;
}
.poll-page__card-question {
  color: #ffffff;
  position: relative;
  z-index: 5;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
}
@media all and (min-width: 365px) {
  .poll-page__card-question {
    font-size: 1.6rem;
  }
}

.posters-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.posters-page .page__section {
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.posters-page__section {
  padding-top: 11rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 365px) {
  .posters-page__section {
    padding-top: 13rem;
  }
}
.posters-page__header {
  background-color: #F5F5F5;
}
.posters-page__title {
  text-align: center;
  max-width: 30rem;
  color: #10AD6B;
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-top: 2rem;
}
@media all and (min-width: 365px) {
  .posters-page__title {
    margin-top: 2rem;
  }
}
@media all and (min-width: 365px) and (min-height: 750px) {
  .posters-page__title {
    margin-top: 3rem;
  }
}
.posters-page__tabs {
  height: 8rem;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 2rem;
  background-color: #F5F5F5;
  position: relative;
  margin-top: auto;
}
@media all and (min-width: 365px) {
  .posters-page__tabs {
    height: 10rem;
    padding-bottom: 4rem;
  }
}
.posters-page__tab-content {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
}
.posters-page__tab {
  display: flex;
  justify-content: center;
  align-items: center;
}
.posters-page__tab-title {
  padding: 1.7rem 3.7rem;
  color: rgba(0, 128, 0, 0.5);
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
  border-top: 2px solid transparent;
}
@media all and (min-width: 365px) {
  .posters-page__tab-title {
    font-size: 1.6rem;
  }
}
.posters-page__tab input[type=radio] {
  display: none;
}
.posters-page__tab :checked + .posters-page__tab-title {
  border-color: #10AD6B;
  color: green;
}
.posters-page__tab :checked ~ .posters-page__tab-content {
  display: block;
}
.posters-page__carousel {
  width: 100vw;
  margin: 2.5rem 0;
  display: flex;
}
.posters-page__carousel-content {
  display: flex;
  width: 100vw;
  overflow: auto;
  padding-left: 1rem;
  position: relative;
}
.posters-page__carousel-slide {
  display: inline-flex;
  justify-content: center;
  background-color: #EEEEEE;
  border-radius: 2rem;
  margin-right: 1rem;
  height: 56vh;
  width: 80vw;
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-right: 1rem;
  flex-shrink: 0;
  max-width: 42rem;
}
.posters-page__carousel-slide:only-child {
  margin: 0 auto;
}
@media all and (min-width: 365px) {
  .posters-page__carousel-slide {
    height: 56vh;
    width: 80vw;
  }
}
@media all and (min-width: 365px) and (min-height: 750px) {
  .posters-page__carousel-slide {
    height: 61vh;
    width: 85vw;
  }
}
.posters-page__carousel-slide-title {
  font-size: 1.4rem;
  color: #ffffff;
  padding: 1.5rem 2rem;
  z-index: 2;
  height: 5rem;
  text-align: center;
  text-transform: none;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
}
@media all and (min-width: 365px) {
  .posters-page__carousel-slide-title {
    font-size: 1.6rem;
    height: 6rem;
  }
}
@media all and (min-width: 365px) and (min-height: 750px) {
  .posters-page__carousel-slide-title {
    font-size: 1.8rem;
    height: 7rem;
    padding: 2.5rem 2rem;
  }
}
.posters-page__carousel-slide-img {
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}

.quiz-page__header {
  background-color: #F5F5F5;
}
.quiz-page .header__menu-btn-icon {
  background-color: #10AD6B;
}
.quiz-page .header__menu-btn-icon::before {
  background-color: #10AD6B;
}
.quiz-page .header__menu-btn-icon::after {
  background-color: #10AD6B;
}
.quiz-page__footer {
  background-color: transparent;
}
.quiz-page .page__section {
  overflow: auto;
  padding-bottom: 11rem;
}
@media all and (min-width: 365px) {
  .quiz-page .page__section {
    padding-bottom: 12.5rem;
  }
}
.quiz-page__desc {
  font-size: 1.4rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  text-align: center;
  color: #10AD6B;
  position: relative;
  margin-top: 4rem;
  max-width: 28rem;
  z-index: 5;
}
@media all and (min-width: 365px) {
  .quiz-page__desc {
    font-size: 1.6rem;
    max-width: 33.5rem;
    margin-top: 6rem;
  }
  .quiz-page__desc::before {
    height: 14rem;
  }
}
.quiz-page__questions {
  margin-top: 4rem;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media all and (min-width: 365px) {
  .quiz-page__questions {
    margin-top: 5rem;
    font-size: 1.6rem;
  }
}
.quiz-page__question {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  padding: 1rem 2rem;
  text-align: center;
  margin-top: 2rem;
}
.quiz-page__question:first-child {
  margin-top: 0;
}
@media all and (min-width: 365px) {
  .quiz-page__question {
    margin-top: 3rem;
  }
}
@media all and (min-height: 700px) {
  .quiz-page__question {
    margin-top: 3.5rem;
  }
}

.rating-page .page__section {
  padding-left: 0;
  padding-right: 0;
  z-index: 4;
  justify-content: center;
}
.rating-page__header {
  background-color: transparent;
}
.rating-page__footer {
  background-color: transparent;
  z-index: 20;
}
.rating-page__text {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  width: 100%;
  max-width: 40rem;
}
.rating-page__title {
  font-size: 2.2rem;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media all and (min-width: 365px) and (min-height: 700px) {
  .rating-page__title {
    font-size: 2.8rem;
  }
}
.rating-page__description {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}
@media all and (min-width: 365px) and (min-height: 700px) {
  .rating-page__description {
    font-size: 1.6rem;
  }
}
.rating-page__bg-img {
  object-fit: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.rating-page .rating {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
}

.route-page .page__section {
  justify-content: center;
  align-items: center;
}
.route-page__header {
  padding-top: 3.5rem;
  align-items: flex-start;
  z-index: 10;
}
@media all and (min-width: 365px) {
  .route-page__header {
    padding-top: 5rem;
  }
}
.route-page__map .map {
  width: 100vw;
  height: 38vh;
  position: relative;
  top: -2rem;
}
@media all and (min-width: 365px) {
  .route-page__map .map {
    top: 1rem;
  }
}
@media all and (min-width: 365px) and (min-height: 700px) {
  .route-page__map .map {
    top: 4rem;
  }
}
.route-page__poster {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.route-page__poster-title {
  font-size: 1.6rem;
  line-height: 1.5;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  z-index: 2;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 4rem;
  padding-top: 5rem;
}
@media all and (min-width: 365px) {
  .route-page__poster-title {
    font-size: 2.4rem;
    padding-top: 8rem;
  }
}
.route-page__poster-content {
  background-color: #F2F2F2;
  position: relative;
  z-index: 2;
  width: 100vw;
  height: 31vh;
  border-radius: 0 0 2rem 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
}
@media all and (min-width: 365px) and (min-height: 600px) {
  .route-page__poster-content {
    height: 41vh;
  }
}
.route-page__poster-img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.route-page__poster .btn_primary {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: #F2F2F2;
  color: #10AD6B;
  z-index: 5;
}
.route-page__poster-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 3rem 2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media all and (min-width: 365px) {
  .route-page__poster-footer {
    padding: 3.5rem 2rem;
  }
}
@media all and (min-width: 365px) and (min-height: 750px) {
  .route-page__poster-footer {
    padding: 4rem 2rem;
  }
}
.route-page__poster-time, .route-page__poster-distance {
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.5;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 365px) {
  .route-page__poster-time, .route-page__poster-distance {
    font-size: 1.6rem;
  }
}
.route-page__poster-time .icon, .route-page__poster-distance .icon {
  margin-right: 0.5rem;
}
.route-page__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 22.4rem;
  max-height: 82vh;
  z-index: 100;
  transition: all 0.5s ease-out;
}
.route-page__footer_active {
  height: 82vh;
  transition: height 0.5s ease;
}
.route-page__footer-content {
  background-color: #ffffff;
  position: relative;
  width: 100vw;
  height: 100%;
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
  padding: 10rem 2rem;
}
.route-page__footer-buttons {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.route-page__footer-buttons .route-page__btn {
  width: 4rem;
  height: 4rem;
  position: relative;
  z-index: 10;
  background-color: tranparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
}
.route-page__footer-buttons .route-page__btn::before {
  content: "";
  display: flex;
  height: 3.5rem;
  width: 13rem;
  background-color: #F6F6F6;
  border-radius: 1rem;
  color: #10AD6B;
  font-size: 1.4rem;
  position: absolute;
  z-index: -1;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.route-page__footer-buttons .route-page__btn::before:last-child {
  margin-right: 0;
}
@media all and (min-width: 365px) {
  .route-page__footer-buttons .route-page__btn {
    font-size: 1.6rem;
  }
}
.route-page__footer-buttons .route-page__btn_watch .icon, .route-page__footer-buttons .route-page__btn_listen .icon {
  padding: 1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #10AD6B;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -0.25rem;
  animation: fade 0.8s ease forwards;
}
.route-page__footer-buttons .route-page__btn_watch .icon img, .route-page__footer-buttons .route-page__btn_listen .icon img {
  width: 2.1rem;
  height: 1.8rem;
}
.route-page__footer-buttons .route-page__btn_watch {
  margin-right: 1rem;
}
.route-page__footer-buttons .route-page__btn_watch::before {
  content: "Смотрите";
  top: 50%;
  left: -100vw;
  transform: translate(-100%, -50%);
  animation: watch__button_from_left 0.6s ease 0.8s forwards;
}
.route-page__footer-buttons .route-page__btn_watch .icon {
  position: relative;
  z-index: 1;
}
.route-page__footer-buttons .route-page__btn_watch_active::before {
  display: none;
}
.route-page__footer-buttons .route-page__btn_listen::before {
  content: "Слушайте";
  top: 50%;
  right: -100vw;
  transform: translate(100%, -50%);
  animation: listen__button_from_right 0.6s ease 0.8s forwards;
}
.route-page__footer-buttons .route-page__btn_listen .icon {
  position: relative;
  z-index: 1;
}
.route-page__footer-buttons .route-page__btn_listen .icon_play, .route-page__footer-buttons .route-page__btn_listen .icon_cancel {
  display: none;
  background-color: transparent;
}
.route-page__footer-buttons .route-page__btn_listen .progress {
  width: 100%;
  height: 1.6rem;
  margin: auto 0;
  transform: translateY(-50%);
  position: relative;
  top: 0;
  left: 0;
  background: url("/images/mycity/icons/audio-line.svg") left center repeat;
  z-index: 1;
}
.route-page__footer-buttons .route-page__btn_listen .progress .progress_loaded {
  width: 100%;
  height: 1.6rem;
  margin: auto 0;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/images/mycity/icons/audio-line-white.svg") left center repeat;
  z-index: 2;
  width: 0;
}
.route-page__footer-buttons .route-page__btn_listen .progress .progress_loaded_active {
  animation: load-progress 60s linear;
  will-change: width;
}
.route-page__footer-buttons .route-page__btn_listen_active {
  width: 27.5rem;
  height: 4rem;
  border-radius: 1rem;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  background-color: #10AD6B;
}
.route-page__footer-buttons .route-page__btn_listen_active + .route-page__btn_watch::before {
  display: none;
}
.route-page__footer-buttons .route-page__btn_listen_active::before {
  display: none;
}
.route-page__footer-buttons .route-page__btn_listen_active .icon {
  display: none;
  border-radius: 0;
  padding: 1.1rem;
}
.route-page__footer-buttons .route-page__btn_listen_active .icon_play {
  display: block;
  left: -1rem;
  top: -0.8rem;
}
.route-page__footer-buttons .route-page__btn_listen_active .icon_cancel {
  display: block;
  right: -1rem;
  top: -0.8rem;
}
.route-page__footer-buttons .route-page__btn_listen_active .progress {
  display: block;
}
.route-page__footer-buttons .route-page__btn_listen_active-and-play .icon_play {
  display: none;
}
.route-page__footer-buttons .route-page__btn_listen_active-and-play .btn_pause {
  display: none;
  width: 4rem;
  height: 4rem;
  padding: 1rem;
  position: relative;
  top: -0.8rem;
  left: -1rem;
  justify-content: center;
  align-items: center;
}
.route-page__footer-buttons .route-page__btn_listen_active-and-play .btn_pause_active {
  display: flex;
}
.route-page__footer-buttons .route-page__btn_listen_active-and-play .btn_pause_active::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 1.6rem;
  background-color: #ffffff;
  border-radius: 0.4rem;
  margin-right: 0.8rem;
}
.route-page__footer-buttons .route-page__btn_listen_active-and-play .btn_pause_active::after {
  content: "";
  display: block;
  width: 0.2rem;
  height: 1.6rem;
  background-color: #ffffff;
  border-radius: 0.4rem;
}
.route-page__footer-tabs {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  top: -6rem;
  margin-top: auto;
}
.route-page__footer-tab-content {
  display: none;
  position: absolute;
  top: 7vh;
  left: 0;
  font-size: 1.4rem;
  color: #686868;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  align-items: center;
  flex-direction: column;
  height: 24vh;
  overflow: auto;
  padding-bottom: 1rem;
}
@media all and (min-width: 365px) {
  .route-page__footer-tab-content {
    font-size: 1.6rem;
    height: 20vh;
  }
}
@media all and (min-width: 365px) and (min-height: 700px) {
  .route-page__footer-tab-content {
    top: 5vh;
    height: 18vh;
  }
}
@media all and (min-width: 365px) and (min-height: 750px) {
  .route-page__footer-tab-content {
    top: 5vh;
    height: 15vh;
  }
}
.route-page__footer-tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.route-page__footer-tab input[type=radio] {
  display: none;
}
.route-page__footer-tab :checked + .route-page__footer-tab-title {
  color: green;
}
.route-page__footer-tab :checked + .route-page__footer-tab-title::after {
  color: green;
}
.route-page__footer-tab :checked ~ .route-page__footer-tab-content {
  display: flex;
}
.route-page__footer-tab:last-child .route-page__footer-tab-title::after {
  display: none;
}
.route-page__footer-tab:first-child .route-page__footer-tab-title {
  margin-left: 1rem;
}
@media all and (min-width: 365px) {
  .route-page__footer-tab:first-child .route-page__footer-tab-title {
    margin-left: 1.6rem;
  }
}
.route-page__footer-tab-title {
  color: rgba(0, 128, 0, 0.5);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: bold;
}
.route-page__footer-tab-title::after {
  content: "|";
  font-weight: 400;
  margin: 0 1rem;
  color: green;
}
@media all and (min-width: 365px) {
  .route-page__footer-tab-title::after {
    margin-left: 1.4rem;
  }
}
@media all and (min-width: 365px) {
  .route-page__footer-tab-title {
    font-size: 1.4rem;
  }
}

.not-client-page {
  display: flex;
  flex-direction: column;
}
.not-client-page__bg-img {
  display: block;
  height: 54vh;
  margin-bottom: 1rem;
}
@media all and (min-height: 1000px) {
  .not-client-page__bg-img {
    height: 64vh;
  }
}
.not-client-page__header {
  position: relative;
  flex-shrink: 0;
}
.not-client-page__section {
  padding-bottom: 0;
  padding-top: 0;
  min-height: auto;
  flex-grow: 2;
}
.not-client-page__text {
  width: 98vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0) rotate(-5deg);
  padding: 2.5rem;
  background-color: #000000;
}
@media all and (min-height: 700px) {
  .not-client-page__text {
    bottom: 1rem;
  }
}
@media all and (min-height: 800px) {
  .not-client-page__text {
    bottom: 2rem;
  }
}
@media all and (min-height: 1000px) {
  .not-client-page__text {
    padding: 3rem 3rem 6rem;
  }
}
.not-client-page__title {
  color: #ffffff;
  font-size: 2rem;
  line-height: normal;
}
@media all and (min-width: 365px) {
  .not-client-page__title {
    font-size: 2.4rem;
  }
}
.not-client-page__description {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: normal;
  margin-top: 1rem;
}
@media all and (min-width: 365px) {
  .not-client-page__description {
    font-size: 1.4rem;
  }
}
.not-client-page__footer {
  flex-direction: column;
  height: 15.5rem;
  align-items: center;
  padding: 2rem 4rem 1.5rem;
  position: relative;
  flex-shrink: 0;
}
@media all and (min-width: 365px) {
  .not-client-page__footer {
    height: 19.5rem;
    padding: 3.3rem 6rem 1.5rem;
  }
}
.not-client-page__footer-title {
  font-family: "Tele2TextSansWebSHORT", sans-serif;
  font-size: 1.4rem;
  line-height: normal;
  color: #000000;
  font-weight: bold;
  width: 25.5rem;
}
@media all and (min-width: 365px) {
  .not-client-page__footer-title {
    font-weight: 1.8rem;
  }
}
.not-client-page__footer-desc {
  width: 25.5rem;
  font-size: 1.4rem;
  line-height: normal;
  margin-top: 1rem;
}
.not-client-page__footer .btn_primary {
  margin-top: 1rem;
  height: 5rem;
}

.quiz-page__question.selected{
    font-weight:bold;
}

/*# sourceMappingURL=styles.css.map */
