@font-face {
  font-family: 'Circe';
  src: local('Circe Light'), local('Circe-Light'),
      url(./fonts/Circe-Light.ttf) format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Circe Extra';
  src: local('Circe Extra Bold'), local('Circe-ExtraBold'),
      url(./fonts/Circe-ExtraBold.ttf) format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Circe';
  src: local('Circe Thin'), local('Circe-Thin'),
      url(./fonts/Circe-Thin.ttf) format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Circe';
  src: local('Circe'), local('Circe-Regular'),
      url(./fonts/Circe-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Circe';
  src: local('Circe Bold'), local('Circe-Bold'),
      url(./fonts/Circe-Bold.ttf) format('truetype');
  font-weight: bold;
  font-style: normal;
}


.header {
background-color: #fff;
}
.header__container {
height: 60px;
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
        justify-content: space-between;
-webkit-align-items: center;
        align-items: center;
position: relative;
}
.header__logo {
height: 100%;
margin-right: 42px;
}
.header__logo:last-child {
margin-right: 0;
}
.header__logo-container {
height: 40px;
}
.header__nav-list {
list-style: none;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
        align-items: center;
padding: 0;
margin: 0;
}
.header__nav-item {
position: relative;
height: 60px;
-webkit-align-items: center;
        align-items: center;
margin-right: 42px;
}
.header__nav-item:last-child {
margin-right: 0;
}
.header__nav-link {
font-family: Circe, sans-serif;
font-weight: bold;
font-size: 14px;
line-height: 16px;
text-decoration: none;
text-transform: uppercase;
box-sizing: border-box;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
        align-items: center;
height: 100%;
color: #363634;
}
.header__nav-link:before {
content: " ";
position: absolute;
height: 4px;
width: 100%;
left: 0;
bottom: 0;
transition: background-color 0.2s ease;
}
.header__nav-link:hover:before {
background-color: #F6F42E;
}

@media screen and (max-width: 768px) {
.header__nav {
  display: none;
}
}
@media screen and (max-width: 565px) {
.header__logo-container {
  height: 30px;
  margin-left: 16px;
}
.header__logo {
  margin-right: 30px;
}
.header__logo:last-child {
  margin-right: 0;
}
}
.container {
box-sizing: border-box;
width: 100%;
margin: 0 auto;
max-width: 1200px;
}

@media screen and (max-width: 1300px) {
.container {
  max-width: 1140px;
}
}
@media screen and (max-width: 1200px) {
.container {
  max-width: 960px;
}
}
@media screen and (max-width: 1024px) {
.container {
  max-width: 704px;
}
}
@media screen and (max-width: 767px) {
.container {
  max-width: 540px;
}
}
@media screen and (max-width: 565px) {
.container {
  max-width: 328px;
}
}
@media screen and (max-width: 360px) {
.container {
  max-width: 100%;
  padding: 0 16px;
}
}
.section-title {
font-style: normal;
font-weight: bold;
font-size: 46px;
line-height: 46px;
text-align: center;
color: #000;
}
.section-title_small {
font-size: 32px;
line-height: 42px;
}

@media screen and (max-width: 1024px) {
.section-title {
  font-size: 32px;
  line-height: 42px;
}
.section-title_small {
  font-size: 24px;
  line-height: 26px;
}
}
@media screen and (max-width: 565px) {
.section-title {
  font-size: 24px;
  line-height: 26px;
}
}
.decor-line {
position: relative;
z-index: 1;
}
.decor-line:before {
position: absolute;
content: " ";
background-color: #F0EE0E;
width: 100%;
height: 14px;
bottom: 16px;
left: 0;
z-index: -1;
}
.decor-line_small:before {
height: 11px;
bottom: 10px;
}

@media screen and (max-width: 1024px) {
.decor-line:before {
  height: 8px;
  bottom: 13px;
}

.decor-line_small:before {
  height: 7px;
  bottom: 9px;
}
}
@media screen and (565px) {
.decor-line:before {
  height: 6px;
  bottom: 9px;
}
}
.main .main__welcome {
margin-top: 60px;
}
.main .main__login {
margin-top: 42px;
}
.main .main__time-reaction {
margin-top: 120px;
}
.main .main__mobile-application {
margin-top: 120px;
}
.main .main__help-center {
margin-top: 24px;
}

@media screen and (max-width: 1024px) {
.main .main__welcome {
  margin-top: 42px;
}
.main .main__login {
  margin-top: 30px;
}
.main .main__time-reaction {
  margin-top: 80px;
}
.main .main__mobile-application {
  margin-top: 80px;
}
.main .main__help-center {
  margin-top: 16px;
}
}
@media screen and (max-width: 565px) {
.main .main__login {
  margin-top: 24px;
}
}
.welcome__title {
max-width: 600px;
margin: 0 auto;
}
.welcome__subtitle {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 18px;
text-align: center;
color: #000000;
margin: 8px auto 0;
max-width: 520px;
}

@media screen and (max-width: 1024px) {
.welcome__title {
  max-width: 452px;
  margin: 0 auto;
}
.welcome__subtitle {
  margin: 8px auto 0;
}
}
@media screen and (max-width: 565px) {
.welcome__title {
  max-width: 328px;
  margin: 0 auto;
}
.welcome__subtitle {
  max-width: 328px;
  margin: 8px auto 0;
}
}
.login {
box-sizing: border-box;
}
.login  .base-edit-validation{
  display: none !important;
}
.login .base-edit {
  box-shadow: none !important;
}
.login .login__container {
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
        justify-content: space-between;
}
.login .login__form-content {
background-color: #fff;
border-radius: 8px;
display: -webkit-flex;
display: flex;
max-width: 792px;
}
.login .login__form-img {
display: block;
border-radius: 8px;
width: 267px;
height: 100%;
}
.login .login__form {
padding: 40px 40px 0;
}
.login .login__form-field {
position: relative;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
        flex-direction: column;
padding: 10px 26px;
border: 1px solid #E8E8E8;
border-left: 4px solid #F0EE0E;
border-radius: 4px;
margin-bottom: 16px;
transition: border 0.2s ease;
}
.login .login__form-field:last-child {
margin-bottom: 0;
}
.login .login__form-field_red {
border: 1px solid #F34747;
border-left: 4px solid #F34747;
}
.login .login__show-password {
width: 30px;
height: 30px;
background: url(./images/form/eye-open.svg) no-repeat center;
position: absolute;
top: 50%;
padding: 0;
-webkit-transform: translateY(-50%);
        transform: translateY(-50%);
right: 15px;
border: none;
transition: background 0.15s ease;
}
.login .login__show-password:focus {
outline: none;
}
.login .login__show-password_active {
background: url(./images/form/eye-close.svg) no-repeat center;
}
.login .login__form-label {
position: absolute;
box-sizing: border-box;
width: 100%;
padding: 19px 26px;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
        transform: translateY(-50%);
font-size: 16px;
line-height: 20px;
color: #868686;
transition: all 0.2s ease;
}
.login .login__form-input {
margin-top: 16px;
padding: 0;
border: none;
font-size: 16px;
line-height: 20px;
color: #363634;
box-shadow: none;
}
.login .login__form-input:focus, .login .login__form-input:not(:focus):valid {
outline: none;
}
.login .login__form-input_fill + .login__form-label, .login .login__form-input:not(:focus):valid + .login__form-label {
padding: 0;
width: auto;
font-size: 12px;
line-height: 16px;
-webkit-transform: translateY(0);
        transform: translateY(0);
top: 10px;
left: 26px;
}

input:focus + .login__form-label, input:not(:focus):valid + .login__form-label {
  background: #000;
  padding: 0;
  width: auto;
  font-size: 12px;
  line-height: 16px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  top: 10px;
  left: 26px;
}

.login .base-edit-focus + .login__form-label {
padding: 0;
width: auto;
font-size: 12px;
line-height: 16px;
-webkit-transform: translateY(0);
        transform: translateY(0);
top: 10px;
left: 26px;
}

.login .base-edit-input {
border: none;
font-size: 16px;
line-height: 20px;
outline: none;
min-height: auto;
}
.login .base-edit-focus {
outline: none;
}

.login .login__submit-container {
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
        justify-content: space-between;
-webkit-align-items: center;
        align-items: center;
margin-top: 40px;
}
.login .login__forgot-password {
cursor: pointer;
font-size: 16px;
line-height: 24px;
color: #363634;
opacity: 0.5;
width: auto;
}
.login .login__forgot-password:hover {
color: #9B9B9A;
opacity: 1;
}
.login .login__info {
font-size: 12px;
line-height: 14px;
color: #000000;
opacity: 0.5;
margin-top: 24px;
}
.login .login__communication-content {
display: flex;
flex-direction: column;
justify-content: space-between;
list-style: none;
width: 100%;
max-width: 384px;
padding: 0;
margin: 0 0 0 24px;
}
.login .login__communication-item {
box-sizing: border-box;
padding: 28px 40px;
background-color: #fff;
border-radius: 8px;
margin-bottom: 16px;
display: -webkit-flex;
display: flex;
}
.login .login__communication-item:last-child {
margin-bottom: 0;
}
.login .login__communication-icon {
width: 60px;
height: 60px;
}
.login .login__communication-text {
margin-left: 24px;
}
.login .login__communication-title {
font-size: 10px;
line-height: 100%;
text-transform: uppercase;
margin: 0 0 12px;
}
.login .login__communication-info {
color: #444;
text-decoration: none;
font-weight: bold;
font-size: 16px;
line-height: 18px;
margin: 0 0 6px;
}
.login .login__communication-description {
margin: 0;
font-size: 12px;
line-height: 14px;
color: #000000;
opacity: 0.5;
max-width: 157px;
}
.login .login__communication-link {
color: #000000;
}

#chz-form {
  height: 236px;
}
#logo-chzCommunity {
    width: 100%;
    height: 30em;
    margin: 20px 0 57px;
}
@media screen and (max-width: 1024px) {
.login .login__container {
  display: block;
}
.login .login__form-content {
  overflow: hidden;
}
.login .login__form {
  padding: 30px 30px 0;
}
.login .login__communication-content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
          flex-direction: row;
  max-width: 100%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin: 16px 0 0 0;
}
.login .login__communication-item {
  padding: 24px;
  display: block;
  margin-bottom: 0;
  margin-right: 16px;
  width: 100%;
  max-width: 224px;
}
.login .login__communication-item:last-child {
  margin-right: 0;
}
.login .login__communication-text {
  margin: 24px 0 0 0;
}
.login .login__communication-icon {
  width: 53px;
  height: 53px;
}
}
@media screen and (max-width: 767px) {
.login .login__form-content {
  height: auto;
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.login .login__form-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
}
@media screen and (max-width: 565px) {
.login .login__form {
  padding: 24px 24px 0;
}
.login .login__info {
  margin: 16px 0 30px;
}
.login .login__submit-container {
  margin-top: 24px;
}
.login .login__form-img {
  height: 160px;
}
.login .login__communication-content {
  display: block;
}
.login .login__communication-item {
  max-width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
          flex-direction: row;
  margin: 0 0 16px;
}
.login .login__communication-text {
  margin: 0 0 0 24px;
}
}
@media screen and (max-width: 359px) {
.login .login__submit-container {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.login .login__button {
  width: 100%;
}
.login .login__forgot-password {
  margin-top: 15px;
}
#chz-form {
  height: 260px;
}
}
.button {
font-weight: bold !important;
font-size: 16px !important;
line-height: 20px !important;
text-align: center !important;
color: #363634 !important;
cursor: pointer !important;
padding: 14px 40px !important;
border: 1px solid rgba(54, 54, 52, 0.15) !important;
border-radius: 8px !important;
background-color: #FFFFFF !important;
display: inline-block;
text-decoration: none;
}
.button:hover {
background-color: #F7F7F7 !important;
}
.button:disabled {
background: linear-gradient(0deg, #F7F7F7, #F7F7F7), linear-gradient(0deg, #63666A, #63666A), #F6F42E !important;
color: #D1D1D0 !important;
border: none !important;
cursor: auto !important;
}
.button_yellow {
border: none !important;
background-color: #F6F42E !important;
color: #363634 !important;
}
.button_yellow:hover {
background-color: #F6F42E !important;
box-shadow: 0 5px 30px rgba(246, 244, 46, 0.5) !important;
}
.button_yellow:disabled,
.login .t-btn-disabled {
background: linear-gradient(0deg, #63666A, #63666A), #F6F42E !important;
box-shadow: none !important;
color: #fff !important;
cursor: default !important;
}

.time-reaction .time-reaction__title {
max-width: 600px;
margin: 0 auto;
}
.time-reaction .time-reaction__info-container {
display: -webkit-flex;
display: flex;
margin-top: 42px;
-webkit-justify-content: space-between;
        justify-content: space-between;
}
.time-reaction .time-reaction__info-list {
margin: 0;
padding: 0;
width: 100%;
list-style: none;
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
        justify-content: space-between;
}
.time-reaction .time-reaction__info-item {
position: relative;
box-sizing: border-box;
max-width: 384px;
width: 100%;
background-color: #fff;
border-radius: 8px;
padding: 40px 76px 40px 40px;
margin-right: 24px;
}
.time-reaction .time-reaction__info-item:last-child {
margin-right: 0;
}
.time-reaction .time-reaction__info-item_watch {
background: #F0EE0E url(./images/rupor.png) no-repeat bottom right;
margin-left: 24px;
}
.time-reaction .time-reaction__info-title {
font-weight: bold;
font-size: 16px;
line-height: 18px;
color: #000000;
margin: 0;
}
.time-reaction .time-reaction__info-title_watch {
font-size: 24px;
line-height: 26px;
max-width: 233px;
}
.time-reaction .time-reaction__info-description {
font-size: 12px;
line-height: 14px;
color: #000000;
opacity: 0.5;
margin: 0;
}
.time-reaction .time-reaction__info-number {
font-weight: 800;
font-size: 60px;
line-height: 100%;
color: #363634;
margin: 54px 0 0;
}
.time-reaction .time-reaction__word {
font-size: 12px;
line-height: 100%;
text-transform: uppercase;
margin-left: 10px;
}
.time-reaction .time-reaction__info-icon {
position: absolute;
top: 40px;
right: 40px;
width: 36px;
height: 36px;
}
.time-reaction .time-reaction__info-button {
margin-top: 24px;
}
.time-reaction .time-reaction__subtitle {
max-width: 452px;
margin: 60px auto 0;
font-weight: bold;
font-size: 32px;
line-height: 42px;
text-align: center;
}
.time-reaction .time-reaction__progress-bar {
margin-top: 42px;
}

@media screen and (max-width: 1024px) {
.time-reaction .time-reaction__title {
  max-width: 492px;
}
.time-reaction .time-reaction__info-container {
  margin-top: 30px;
}
.time-reaction .time-reaction__info-list {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.time-reaction .time-reaction__info-item {
  margin-right: 0;
  margin-bottom: 16px;
  padding: 24px 58px 24px 24px;
  max-width: 343px;
}
.time-reaction .time-reaction__info-item:last-child {
  margin-bottom: 0;
}
.time-reaction .time-reaction__info-item_watch {
  margin-left: 16px;
}
.time-reaction .time-reaction__info-icon {
  width: 34px;
  height: 34px;
  top: 24px;
  right: 24px;
}
.time-reaction .time-reaction__info-number {
  margin-top: 34px;
}
.time-reaction .time-reaction__subtitle {
  font-size: 24px;
  line-height: 26px;
  margin-top: 42px;
}
.time-reaction .time-reaction__progress-bar {
  margin-top: 25px;
}
}
@media screen and (max-width: 767px) {
.time-reaction .time-reaction__info-container {
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}
.time-reaction .time-reaction__info-list {
  -webkit-align-items: center;
          align-items: center;
}
.time-reaction .time-reaction__info-item {
  margin-bottom: 16px;
}
.time-reaction .time-reaction__info-item:last-child {
  margin-bottom: 16px;
}
.time-reaction .time-reaction__info-item_watch {
  margin-left: 0;
  padding-bottom: 56px;
  background-size: 110px;
}
.time-reaction .time-reaction__info-item_watch:last-child {
  margin-bottom: 0;
}
.time-reaction .time-reaction__info-number {
  margin-top: 28px;
}
.time-reaction .time-reaction__subtitle {
  font-size: 16px;
  line-height: 18px;
}
}
.progress-bar .progress-bar__info-list {
list-style: none;
display: -webkit-flex;
display: flex;
padding: 0;
margin: 0;
}
.progress-bar .progress-bar__item {
position: relative;
background-color: #fff;
border-radius: 16px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
padding: 20px 16px 16px;
max-width: 168px;
-webkit-transform: scale(0);
        transform: scale(0);
}
.progress-bar .progress-bar__item:first-child {
margin-left: 48px;
}
.progress-bar .progress-bar__item:nth-child(2) {
margin-left: 40px;
}
.progress-bar .progress-bar__item:nth-child(3) {
margin-left: 140px;
}
.progress-bar .progress-bar__item:nth-child(4) {
margin-left: auto;
}
.progress-bar .progress-bar__item:before {
position: absolute;
bottom: -6px;
background-color: #fff;
left: 50%;
-webkit-transform: translateX(-50%) rotate(45deg);
        transform: translateX(-50%) rotate(45deg);
content: " ";
width: 12px;
height: 12px;
}
.progress-bar .progress-bar__item-title {
font-weight: bold;
font-size: 16px;
line-height: 18px;
margin: 0;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
        align-items: center;
}
.progress-bar .progress-bar__item-description {
font-size: 12px;
line-height: 13px;
color: #000000;
opacity: 0.5;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
        align-items: center;
margin: 18px 0 0 0;
}
.progress-bar .progress-bar__icon-clock {
width: 16px;
height: 16px;
margin-right: 6px;
}
.progress-bar .progress-bar__emoji {
width: 27px;
height: 27px;
margin-left: 10px;
}
.progress-bar .progress-bar__line {
width: 0;
height: 34px;
background: linear-gradient(90deg, #F34747 0%, #F5A020 41.32%, #F0EE0E 83.22%);
border-radius: 8px;
margin-top: 20px;
}

.progress-bar_animation .progress-bar__item {
transition: -webkit-transform 0.2s ease;
transition: transform 0.2s ease;
transition: transform 0.2s ease, -webkit-transform 0.2s ease;
-webkit-transform: scale(1);
        transform: scale(1);
}
.progress-bar_animation .progress-bar__item:first-child {
transition-delay: 1.5s;
}
.progress-bar_animation .progress-bar__item:nth-child(2) {
transition-delay: 2s;
}
.progress-bar_animation .progress-bar__item:nth-child(3) {
transition-delay: 2.5s;
}
.progress-bar_animation .progress-bar__item:nth-child(4) {
transition-delay: 3s;
}
.progress-bar_animation .progress-bar__line {
transition: width 3.5s cubic-bezier(1, 0.01, 0.65, 1.04);
width: 100%;
}

@media screen and (max-width: 1024px) {
.progress-bar .progress-bar__item:first-child {
  margin-left: 0;
}
.progress-bar .progress-bar__item:nth-child(2) {
  margin-left: 33px;
}
.progress-bar .progress-bar__item:nth-child(3) {
  margin-left: 33px;
}
.progress-bar .progress-bar__line {
  margin-top: 16px;
}
}
@media screen and (max-width: 767px) {
.progress-bar {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.progress-bar .progress-bar__info-list {
  -webkit-flex-direction: column;
          flex-direction: column;
  max-width: 168px;
  width: 100%;
}
.progress-bar .progress-bar__item {
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 16px;
  width: 100%;
  transition: none;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.progress-bar .progress-bar__item:first-child {
  margin-left: 0;
}
.progress-bar .progress-bar__item:nth-child(2) {
  margin-left: 0;
}
.progress-bar .progress-bar__item:nth-child(3) {
  margin-left: 0;
}
.progress-bar .progress-bar__item:nth-child(4) {
  margin-left: 0;
  margin-bottom: 0;
}
.progress-bar .progress-bar__item:before {
  left: -6px;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
}
.progress-bar .progress-bar__item-title {
  font-size: 14px;
  line-height: 18px;
}
.progress-bar .progress-bar__item-description {
  margin-top: 16px;
}
.progress-bar .progress-bar__emoji {
  margin-left: auto;
}
.progress-bar .progress-bar__line {
  width: 34px;
  height: auto;
  margin-top: 0;
  margin-right: 42px;
  background: linear-gradient(180deg, #F34747 0%, #F5A020 41.32%, #F0EE0E 83.22%);
}
}
.mobile-application .mobile-application__container {
box-sizing: border-box;
position: relative;
background-color: #fff;
border-radius: 8px;
overflow: hidden;
height: 420px;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
        align-items: center;
}
.mobile-application .mobile-application__img {
position: absolute;
top: -420px;
right: -310px;
z-index: 1;
}
.mobile-application .mobile-application__info {
max-width: 388px;
text-align: center;
position: relative;
z-index: 2;
margin-left: 100px;
}
.mobile-application .mobile-application__title {
  text-decoration: none;
margin: 0;
}
.mobile-application .mobile-application__description {
font-weight: 350;
font-size: 14px;
line-height: 18px;
margin: 6px 0 0;
}
.mobile-application .mobile-application__link-container {
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
        justify-content: center;
margin-top: 24px;
}
.mobile-application .mobile-application__link {
border: 1px solid rgba(255, 255, 255, 0.2);
box-sizing: border-box;
box-shadow: 0 6px 29px rgba(0, 46, 69, 0.1);
border-radius: 6px;
background-color: #fff;
display: -webkit-flex;
display: flex;
padding: 12px 24px;
margin-right: 16px;
}
.mobile-application .mobile-application__link:last-child {
margin-right: 0;
}
.mobile-application .mobile-application__link:hover {
background-color: #f1f1f1;
}
.mobile-application .mobile-application__img-link {
width: 81px;
}

@media screen and (max-width: 1200px) {
.mobile-application .mobile-application__info {
  margin-left: 48px;
}
.mobile-application .mobile-application__img {
  width: 810px;
  top: -385px;
}
}
@media screen and (max-width: 1024px) {
.mobile-application .mobile-application__container {
  height: 300px;
}
.mobile-application .mobile-application__description {
  font-weight: 350;
  font-size: 12px;
  line-height: 14px;
}
.mobile-application .mobile-application__info {
  max-width: 288px;
}
.mobile-application .mobile-application__img {
  width: 509px;
  top: -250px;
  right: -150px;
}
.mobile-application .mobile-application__link {
  padding: 8px 16px;
}
.mobile-application .mobile-application__img-link {
  width: 51px;
}
}
@media screen and (max-width: 767px) {
.mobile-application .mobile-application__container {
  -webkit-flex-direction: column;
          flex-direction: column;
  padding: 42px 0 25px;
  height: auto;
}
.mobile-application .mobile-application__img {
  position: relative;
  width: 355px;
  margin-top: 40px;
  top: 0;
  right: -45px;
}
.mobile-application .mobile-application__info {
  margin-left: 0;
}
}
.help-center .help-center__container {
display: -webkit-flex;
display: flex;
}
.help-center .help-center__block {
text-align: center;
box-sizing: border-box;
padding: 40px;
background-color: #fff;
border-radius: 8px;
margin-right: 24px;
width: 100%;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
        flex-direction: column;
-webkit-align-items: center;
        align-items: center;
overflow: hidden;
}
.help-center .help-center__block:last-child {
margin-right: 0;
}
.help-center .help-center__description {
max-width: 388px;
margin: 6px 0 0;
font-weight: 350;
font-size: 14px;
line-height: 18px;
}
.help-center .help-center__title {
margin: 0;
}
.help-center .help-center__button {
margin-top: 24px;
}
.help-center .help-center__tablets-img {
margin-top: 52px;
width: 1012px;
}
.help-center .help-center__logo-img {
width: 157px;
height: 187px;
margin: 20px 0 57px;
}

@media screen and (max-width: 1024px) {
.help-center .help-center__block {
  margin-right: 16px;
}
.help-center .help-center__tablets-img {
  width: 593px;
  margin-top: 25px;
}
.help-center .help-center__logo-img {
  width: 92px;
  height: 117px;
  margin-top: 0;
  margin-bottom: 46px;
}
}
@media screen and (max-width: 767px) {
.help-center .help-center__container {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.help-center .help-center__block {
  margin-right: 0;
  margin-bottom: 16px;
  padding: 40px 9px;
}
.help-center .help-center__block:last-child {
  margin-bottom: 0;
}
}
.footer {
background-color: #63666A;
padding: 60px 0 60px;
margin-top: 120px;
}
.footer .footer__block {
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
        justify-content: space-between;
}
.footer .footer__block:nth-child(2) {
margin-top: 120px;
margin-bottom: 30px;
}
.footer .footer__channels {
display: -webkit-flex;
display: flex;
}
.footer .footer__social-networks-container {
margin-right: 40px;
}
.footer .footer__social-network-list {
list-style: none;
padding: 0;
margin: 10px 0 0;
display: -webkit-flex;
display: flex;
}
.footer .footer__social-network-list_named {
display: block;
margin: 0;
}
.footer .footer__social-network-item {
margin-right: 10px;
}
.footer .footer__social-network-item:last-child {
margin-right: 0;
}
.footer .footer__social-network-item_named {
margin-right: 0;
margin-top: 11px;
}
.footer .footer__social-network-link {
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
        align-items: center;
text-decoration: none;
}
.footer .footer__social-network-link:hover {
opacity: 0.7;
}
.footer .footer__social-network-description {
font-size: 12px;
line-height: 16px;
color: #FFFFFF;
margin-left: 10px;
max-width: 130px;
}
.footer .footer__subtitle {
font-size: 13px;
line-height: 24px;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
        align-items: center;
letter-spacing: 0.09em;
text-transform: uppercase;
color: #FFF;
margin: 0;
}
.footer .footer__support-list {
list-style: none;
padding: 0;
margin: 0;
}
.footer .footer__support-item {
margin: 10px 0 0;
}
.footer .footer__support-text {
text-decoration: none;
margin: 0;
font-size: 12px;
line-height: 16px;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
        align-items: center;
color: #F6F42E;
}
.footer .footer__support-text_number {
font-weight: bold;
}
.footer .footer__text-info {
font-weight: bold;
font-size: 12px;
line-height: 16px;
color: #FFFFFF;
max-width: 607px;
}
.footer .footer__application-link {
display: inline-block;
margin-right: 7px;
}
.footer .footer__application-link:last-child {
margin-right: 0;
}
.footer .footer__application-link:hover {
opacity: 0.7;
}
.footer .footer__application-img-link {
width: 130px;
height: 40px;
}
.footer .footer__politics {
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
        justify-content: space-between;
}
.footer .footer__copyright {
font-size: 12px;
line-height: 16px;
color: #FFFFFF;
opacity: 0.6;
margin: 0;
}
.footer .footer__politics-link {
font-size: 12px;
line-height: 16px;
-webkit-text-decoration-line: underline;
        text-decoration-line: underline;
color: #FFFFFF;
opacity: 0.6;
margin-right: 20px;
}
.footer .footer__politics-link:last-child {
margin-right: 0;
}
.footer .footer__politics-link:hover {
opacity: 0.4;
}

@media screen and (max-width: 1024px) {
.footer .footer__block {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.footer .footer__channels {
  margin-top: 35px;
}
.footer .footer__block:nth-child(2) {
  margin-top: 30px;
  margin-bottom: 30px;
}
.footer .footer__text-info {
  margin: 0;
}
.footer .footer__application-link-container {
  margin-top: 20px;
}
}
@media screen and (max-width: 767px) {
.footer {
  padding: 15px 10px;
}
.footer .footer__channels {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.footer .footer__logo {
  margin-top: 15px;
}
.footer .footer__logo:first-child {
  margin-top: 0;
}
.footer .footer__supports-container {
  margin-top: 20px;
}
.footer .footer__support-item {
  margin-top: 5px;
}
.footer .footer__politics {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.footer .footer__politics-container-links {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.footer .footer__politics-link {
  margin-top: 10px;
}
}
.page {
margin: 0;
padding: 0;
background-color: #F5F5F7;
font-family: "Circe", sans-serif;
}

.lds-ellipsis {
  display: flex;
  align-items: center;
  margin: auto;
  position: relative;
  width: 80px;
  height: 100%;
  
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #F5F5F7;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

@keyframes onAutoFillStart {  from {/**/}  to {/**/}}

input:-webkit-autofill {
  transition: background-color 50000s ease-in-out 0s;
  animation: onAutoFillStart;
}



