*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 2.77778vw;
  line-height: 1.15;
  /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%;
  /* 2. Prevent adjustments of font size after orientation changes in iOS. */
}

body {
  font-size: 1.6rem;
  line-height: 2.7rem;
  font-family: Lato, sans-serif;
  background-color: #393939;
  color: #fff;
  font-weight: normal;
  height: auto;
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

body.stopped::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  background: #000;
  opacity: 0.35;
}

body > img {
  position: absolute;
}

.body--backdrop:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.2s;
}

button,
input,
select,
textarea,
input[type="button"] {
  background: none;
  color: inherit;
  border-radius: 0;
  border: none;
}

button,
input,
textarea,
input[type="button"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input,
textarea,
select {
  color: #000;
}

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

:disabled {
  cursor: not-allowed;
}

svg {
  display: inline-block;
  vertical-align: top;
}

a {
  color: #E72165;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:active {
  text-decoration: none;
}


a:active {
  color: #e93774;
  transition: color 0.2s;
}

/* Headings */
h1 {
  color: #fff;
  font-size: 2.4rem;
  line-height: 2.4rem;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: opacity 0.2s;
}

.content.hide {
  opacity: 1;
  visibility: visible;
}
.content.hide .play-loader__box {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.hide .chat__play {
  pointer-events: none;
}

.content.hide .chat__box {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}
.content.hide .chat__play {
  background: none;
  box-shadow: none;
}
.content.hide .chat__play--active {
  animation: none;
}
.content.hide .chat__play-svg {
  display: none;
}
.content.hide .chat__play::before {
}
.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}

.btn {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  text-align: center;
  background-color: #E72165;
  padding: 0;
  outline: none;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  transition: background-color 0.2s ease-in-out;
  border-radius: 3px;
  font-size: 1.9rem;
  line-height: 3.6rem;
  /* Added just for IE consistency. Must be deleted because of doubled DOM nodes, if IE text-moving is not imported */
}

.btn:hover {
  text-decoration: none;
}

.btn:active, .btn--active {
  color: #fff;
  background-color: #e93774;
}

.btn:focus, .btn:visited {
  outline: 0;
  text-decoration: none;
}

.btn:focus span, .btn:visited span {
  text-decoration: none;
}

.btn--important {
  color: #fff;
  background-color: #e93774;
}

.btn--important:active, .btn--important--active {
  color: #fff;
  background-color: #d23268;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transition: none;
}



.btn:disabled:active {
  color: #393939;
  background-color: #E72165;
}

input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.input {
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
}

.input.error .input__label {
  color: #f00;
}


.input.error .input__input {
  border: 2px solid #FF0000;
  box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.input.error input::-webkit-input-placeholder {
  color: #FF0000;
}

.input.error input::-webkit-input-placeholder {
  color: #FF0000;
}

.input.error input::-moz-placeholder {
  color: #FF0000;
}

.input.error input:-ms-input-placeholder {
  color: #FF0000;
}

.input.error input:-moz-placeholder {
  color: #FF0000;
}





.input.error .input__label:before {
  border-color: #f00;
}

.input.error .input__label:after {
  border-color: #f00;
}

.input.error .input__input {
  color: #f00;
  border-color: #f00;
}


.input__label {
  font-size: 1rem;
  line-height: 1.2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  cursor: default;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.input__label:before {
  content: '';
  display: flex;
  width: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-top-left-radius: 3px;
  height: 0.5rem;
  transform: translate(0, 50%);
  z-index: -1;
}

.input__label:after {
  content: '';
  display: flex;
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-top-right-radius: 3px;
  height: 0.5rem;
  transform: translate(0, 50%);
  z-index: -1;
}

.input__title {
  padding-left: 1px;
  padding-right: 1px;
}

.input__input {
  background: #FFFFFF;
  box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 0.8rem;
  width: 100%;
  height: 4.6rem;
  outline: none;
  padding: 0 1.9rem;
  display: flex;
  align-items: center;
  color: #393939;
}

.input__desc {
  cursor: default;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.2rem;
  color: rgba(253, 253, 253, 0.5);
  margin-top: 0.8rem;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 1.5rem 4rem;
}

.header__wrap {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.header-logo {
  font-size: 0;
  display: flex;
  flex-direction: column;
}

.header-logo__icon {
  height: 4.4rem;
  width: 11.5rem;
}

.header-logo__desc {
  font-size: 1rem;
  line-height: 1.2rem;
  margin-top: -0.5rem;
}

.header-message {
  position: relative;
  height: 1.6rem;
  width: 2.2rem;
}
.header-message svg {
  height: 1.6rem;
  width: 2.2rem;
}

.header-message__icon {
  height: 100%;
}

.header-message__count {
  position: absolute;
  font-family: Montserrat;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  width: 1.4rem;
  height: 1.4rem;
  background: #FFB904;
  bottom: -0.5rem;
  right: -0.7rem;
  border-radius: 50%;
}

@-webkit-keyframes message {
  0% {
    transform: translate(-50%, 50%) scale(0.8);
  }
  20% {
    transform: translate(-50%, 50%) scale(1);
  }
  40% {
    transform: translate(-50%, 50%) scale(0.8);
  }
  60% {
    transform: translate(-50%, 50%) scale(1);
  }
  80% {
    transform: translate(-50%, 50%) scale(0.8);
  }
  100% {
    transform: translate(-50%, 50%) scale(0.8);
  }
}

@keyframes message {
  0% {
    transform: translate(-50%, 50%) scale(0.8);
  }
  20% {
    transform: translate(-50%, 50%) scale(1);
  }
  40% {
    transform: translate(-50%, 50%) scale(0.8);
  }
  60% {
    transform: translate(-50%, 50%) scale(1);
  }
  80% {
    transform: translate(-50%, 50%) scale(0.8);
  }
  100% {
    transform: translate(-50%, 50%) scale(0.8);
  }
}

.main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  position: relative;
  height: 100vh;
  max-height: 100%;
  min-height: 450px;
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
}

.main__wrap {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
  align-items: center;
  padding-top: 1.7rem;
}

.footer {
  display: flex;
  flex-shrink: 0;
  bottom: 1.4rem;
  width: 100%;
  left: 0;
  position: absolute;
  z-index: 2;
}

.footer__wrap {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__content {
  margin: 0 auto;
  display: flex;
  align-items: center;
  opacity: 0.7;
}

.footer__icon {
  width: 1.8rem;
}

.footer__desc {
  margin-left: 0.4rem;
  font-family: "Lato", Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  line-height: 1rem;
}

.video-thumbs {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
}

.video-thumbs .btn--lg {
  width: 100%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.video-thumbs__content {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}

.video-thumbs__content--active .video-thumbs__overlay {
  opacity: 1;
}

.video-thumbs__content--active .video-thumbs__video {
  opacity: 1;
  transition: opacity 0.2s;
  z-index: 3;
}

.video-thumbs__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-thumbs__video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.2s;
  z-index: 3;
}

.video-thumbs__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.2s;
  z-index: 2;
}

.video-thumbs__overlay {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
}

.spinner {
  position: relative;
  width: 38px;
  z-index: 18;
  pointer-events: none;
}

.spinner__container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  -webkit-animation: spinner-linspin 1568.23529647ms linear infinite;
  animation: spinner-linspin 1568.23529647ms linear infinite;
}

.spinner__rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.spinner__left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 49%;
}

.spinner__right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 49%;
}

.spinner__circle {
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  border-color: #fff #fff transparent;
  border-radius: 50%;
  border-width: 6px;
}

.spinner__left .spinner__circle {
  left: 0;
  right: -100%;
  border-right-color: transparent;
  -webkit-animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.spinner__right .spinner__circle {
  left: -100%;
  right: 0;
  border-left-color: transparent;
  -webkit-animation: spinner-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: spinner-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

@-webkit-keyframes spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spinner-linspin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
  }
}

@keyframes spinner-easespin {
  12.5% {
    transform: rotate(135deg);
  }
  25% {
    transform: rotate(270deg);
  }
  37.5% {
    transform: rotate(405deg);
  }
  50% {
    transform: rotate(540deg);
  }
  62.5% {
    transform: rotate(675deg);
  }
  75% {
    transform: rotate(810deg);
  }
  87.5% {
    transform: rotate(945deg);
  }
  to {
    transform: rotate(1080deg);
  }
}

@-webkit-keyframes spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
  }
}

@keyframes spinner-left-spin {
  0% {
    transform: rotate(130deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(130deg);
  }
}

@-webkit-keyframes spinner-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
  }
}

@keyframes spinner-right-spin {
  0% {
    transform: rotate(-130deg);
  }
  50% {
    transform: rotate(5deg);
  }
  to {
    transform: rotate(-130deg);
  }
}

.chat {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  font-family: "Lato", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  justify-content: flex-end;
  padding-bottom: 7.5rem;
}


.chat__play {
  transform: scale(0);
  background: #FFB904;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  width: 8.6rem;
  height: 8.6rem;
  min-height: 8.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 4.5rem;
}
.chat__play--sm {
  margin-top: 0;
  opacity: 0;
  display:none;
}
.chat__play svg {
  margin-left: 0.5rem;
}
.chat__play::before {
  content: '';
  position: absolute;
  width: 8.6rem;
  height: 8.6rem;
  left: 0;
  top: 0;
  box-shadow: inset 0px 0px 4rem 3rem  rgba(255, 185, 4, 0.4);
  animation: started 1.5s infinite 0.5s;
  border-radius: 50%;
  z-index: -1;
}

@keyframes started {
  from {
  }
  to {
    transform: scale(1.4);
    opacity: 0;
  }
}

.chat__play--active {
  transform: scale(1);
  transition: transform 0.5s;
  -webkit-animation: pulse 1.5s infinite 0.5s;
          animation: pulse 1.5s infinite 0.5s;
}

.chat__desc {
  font-size: 1rem;
  line-height: 1.2rem;
  font-style: italic;
  margin-top: 0.5rem;
}
.chat__box {
  
}

.chat__list {
    padding: 4rem 2.5rem;
    backdrop-filter: blur(4px);
    background: rgba(61, 33, 33, 0.5);
    border-radius: 2.5rem;
}

.form .chat__list {
  opacity: 1;
  display: block;
  top: auto;
}
.form .chat__item {
  margin-bottom: 2.3rem;
}
.form .chat__item,
.chat__item {
  display: flex;
  margin-bottom: 4.5rem;
  position: relative;
  bottom: -1rem;
  opacity: 0;
  transition: all 0.2s;
}
.chat__item:last-child {
  transition: 0.2s all 0.2s;
}
.form--active .chat__item,
.chat__list--active .chat__item {
  bottom: 0;
  opacity: 1;
  top: auto;
}
.chat__item:last-child {
  margin-bottom: 0;
}
.chat__list {
  opacity: 0;
  position: absolute;
  top: 0;
}

.chat__list--active {
  opacity: 1;
  position: relative;
  top: auto;
}

.chat__list--read {
  opacity: 0;
}

.message {
  background: #FFFFFF;
  border-radius: 0px 12px 12px 12px;
  position: relative;
  padding: 0.8rem 4rem 1rem 1.5rem;
}

.message__text {
  font-family: Lato;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: 0.05em;
  color: #393939;
}
.message__avatar {
  min-width: 4.4rem;
  width: 4.4rem;
  height: 4.4rem;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  margin-right: 1.6rem;
}
.message__avatar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #35F760;
  border: 2px solid #FFFFFF;
}
.message__avatar-img {
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.message__name {
  position: absolute;
  left: 1.5rem;
  top: -2.6rem;
}

.message__time {
  position: absolute;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 2rem;
  letter-spacing: 0.05em;
  color: #C4C4C4;
  right: 1.1rem;
  bottom: 0.1rem;
  text-transform: uppercase;
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(0.95);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.95);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.95);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.95);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.95);
  }
}

.form {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  position: absolute;
  opacity: 0;
  padding: 1.5rem;
  z-index: -50;
}
.form--active {
  position: relative;
  opacity: 1;
  z-index: initial;
}

.form-step {
  position: absolute;
  opacity: 0;
  bottom: -1rem;
}

.form--active .form-step {
  position: relative;
  bottom: 0;
  opacity: 1;
  transition: 0.2s all 0.2s;
}

.form__title {
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2rem;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.form__content {
  border-radius: 5px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  max-width: 50rem;
  padding: 4rem 2.5rem;
  backdrop-filter: blur(4px);
  background: rgba(61, 33, 33, 0.5);
  border-radius: 2.5rem;
  padding-bottom: 2rem;
}

.form__lock {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  height: 1.1rem;
}

.form .btn {
  width: 100%;
  background: #FFB904;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
}
.form__desc {
  font-weight: 600;
  font-size: 1rem;
  line-height: 12px;
  text-align: center;
  color: rgba(253, 253, 253, 0.5);
  margin-top: 1.5rem;
}

.form .btn__icon {
  height: 0.6rem;
  display: inline-block;
  vertical-align: middle;
}


.form__icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 8px;
  margin-top: 1.2rem;
  width: 100%;
  max-width: 50rem;
}

.form__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  padding: 0 1.8rem 0.4rem;
  height: 12.7rem;
  background: rgba(61, 33, 33, 0.5);
}

.form__icon-img {
  margin: 0 auto 0.8rem;
  width: 4.5rem;
  height: 4.5rem;
}

.form__icon-img img {
  display: block;
  width: 100%;
  height: 100%;
  font-family: "object-fit: cover";
  object-fit: cover;
}

.form__icon-text {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5rem;
  text-align: center;
  color: #FFFFFF;
}

.form-step {

}

.form-step--active {
  padding-top: 1rem;
  max-height: 2000px;
  opacity: 1;
  display: block;
  transition: all 0.3s;
}

.form-loader {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-loader--2 .form-loader__progress {
  width: 50%;
}

.form-loader--2 .form-loader__marker:nth-child(2) circle {
  fill: #E72165;
}

.form-loader--2 .form-loader__marker:nth-child(2) path {
  fill: #fff;
}

.form-loader--3 .form-loader__progress {
  width: 83.3%;
}

.form-loader--3 .form-loader__marker:nth-child(3) circle {
  fill: #E72165;
}

.form-loader--3 .form-loader__marker:nth-child(3) path {
  fill: #fff;
}

.form-loader__progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
  z-index: -1;
  transform: translateY(-50%);
}

.form-loader__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 16.67%;
  background-color: #E72165;
  height: 100%;
  transition: width 0.3s;
}

.form-loader__number {
  font-size: 0.6rem;
  line-height: 0.8rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50% 50%;
  background-color: #fff;
  color: #000;
  text-align: center;
}

.form-loader__marker {
  font-size: 0;
  line-height: 0;
}

.form-loader__marker .form-loader__number {
  background-color: #E72165;
  color: #fff;
}

.form-loader__icon {
  height: 0.8rem;
}

.form-loader__icon--lg {
  height: 1.3rem;
}

.loader {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #3D3D3D;
  opacity: 0;
}

.loader--active {
  opacity: 1;
}

.loader--active .loader__loading {
  width: 100%;
  transition: width 5s linear;
}

.loader__loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #E72165;
}

.play-loader-svg {
  width: 8.6rem;
  height: 8.6rem;
  min-width: 8.6rem;
  min-height: 8.6rem;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-90deg);
}
.Sektor-circle {
  fill: none;
}
.play-loader-svg .Sektor {
  margin: 0;
}


@media (min-width: 550px) {
  html {
    font-size: 10px;
  }
}
@media (orientation: landscape) {
  .main {
    min-height: 600px;
  }
}