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

a {
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  line-height: 1;
}

button {
  background-color: transparent;
  cursor: pointer;
  text-wrap: nowrap;
}

input {
  background-color: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

:root {
  --font-family: "Inter", sans-serif;
}

:root {
  --container-size: 1440px;
}

body {
  background-color: #000;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: calc(var(--container-size) + 30px);
  width: 100%;
}

.hidden {
  display: none !important;
}

.fade-in {
  -webkit-animation: fadeIn 0.5s ease-in-out forwards;
          animation: fadeIn 0.5s ease-in-out forwards;
}

.fade-out {
  -webkit-animation: fadeOut 0.5s ease-in-out forwards;
          animation: fadeOut 0.5s ease-in-out forwards;
}

.wrapper {
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header {
  padding: 50px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-align: right;
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 1280px) {
  .header {
    display: none;
  }
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1280px) {
  .main {
    padding-top: 140px;
  }
}
.main__wrapper {
  padding: 32px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.06)), to(rgba(0, 0, 0, 0.12)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.12) 100%);
}
@media (max-width: 1280px) {
  .main__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__title {
  margin-bottom: 16px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}
.section__title span {
  font-style: italic;
  font-weight: 600;
}
.section__description {
  margin-bottom: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
.section--language {
  margin-top: 50px;
}
.section--language .list {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section--language .list__item-button {
  padding: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.section--language .list__item-button:hover {
  opacity: 0.65;
}
.section--language .list__item-button span {
  color: #fff;
}
.section--channel-link {
  max-width: 570px;
}
.section--checking-link {
  max-width: 630px;
  width: 100%;
}
.section--checking-link .section__title {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.section--checking-link .section__description {
  color: rgba(255, 255, 255, 0.3);
}
.section--about {
  min-width: 560px;
  padding: 24px;
}
@media (max-width: 1280px) {
  .section--about {
    max-width: 100% !important;
    width: 100%;
  }
}
@media (max-width: 585px) {
  .section--about {
    min-width: unset;
    padding: 0;
    margin-bottom: 24px;
  }
}
.section--about .section__title {
  font-size: 32px;
  text-align: left;
}
.section--about .section__profile {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.06);
}
.section--about .section__profile-image {
  max-width: 108px;
  width: 100%;
  border-radius: 100%;
}
.section--about .section__profile-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.section--about .section__profile-info::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.24);
}
.section--about .section__profile-nickname {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: right;
  color: #fff;
}
.section--about .section__profile-subtext {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.3);
}
.section--about .section__info {
  margin-top: 16px;
  padding-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.section--about .section__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.section--about .section__info-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.section--about .section__info-group #channel-link {
  text-align: left;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section--about .section__info-block {
  width: 100%;
  padding: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.section--about .section__info-value {
  position: relative;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: right;
  color: #fff;
}
.section--about .section__info-value::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.24);
}
.section--about .section__info-label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.24);
}
.section--welcome {
  max-width: 650px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1280px) {
  .section--welcome {
    max-width: 100%;
  }
}
.section--welcome .section__content {
  margin-bottom: 16px;
  padding-bottom: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
@media (max-width: 1280px) {
  .section--welcome .section__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section--welcome .section__content-profile {
  position: relative;
  padding: 15px;
  max-width: 286px;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#d82121), to(rgba(216, 33, 33, 0)));
  background: linear-gradient(180deg, #d82121 0%, rgba(216, 33, 33, 0) 100%);
  border-radius: 100%;
}
.section--welcome .section__content-profile::after {
  content: url("/img/welcome/youtube-logo.svg");
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section--welcome .section__content-image {
  width: 100%;
  border-radius: 100%;
}
.section--welcome .section__title {
  margin-bottom: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.3);
  text-align: left;
}
.section--welcome .section__nickname {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 42px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: right;
  color: #fff;
}
.section--welcome .section__button {
  width: 100%;
  padding: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.section--welcome .section__button:hover {
  opacity: 0.65;
}
.section--name {
  max-width: 570px;
}
.section--choose .section__title {
  font-size: 34px;
}
.section--choose .list {
  margin-top: 16px;
  padding-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
@media (max-width: 585px) {
  .section--choose .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section--choose .list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 150px;
          flex: 1 0 150px;
}
.section--choose .list__item-button {
  width: 100%;
  padding: 50px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.section--choose .list__item-button:hover {
  border: 1px solid rgba(244, 4, 8, 0.3);
}
.section--choose .list__item-button--active {
  border: 1px solid rgba(244, 4, 8, 0.611);
  background-color: rgba(244, 4, 8, 0.2);
}
.section--choose .list__item-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}
.section--choose .list__item-block {
  margin-top: 24px;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(244, 4, 7, 0.12);
}
.section--choose .list__item span {
  margin-top: 55px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}
.section--download {
  max-width: 700px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.section--download .section__description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.3);
}
.section--download .list {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.section--download .list__item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  list-style-type: decimal;
  list-style-position: inside;
}
.section--download .list__item span {
  font-style: italic;
  opacity: 0.65;
}
.section--download .section__password {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}
.section--download .section__link {
  width: 100%;
  padding: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.section--download .section__link:hover {
  opacity: 0.65;
}
.section--download .form__button {
  padding: 18px;
}
.section--finish {
  max-width: 610px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer {
  margin-top: auto;
  padding: 30px 15px;
}
@media (max-width: 1280px) {
  .footer {
    display: none;
  }
}
.footer__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
}

.form {
  padding-top: 16px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__input {
  padding: 18px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  outline: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.form__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.24);
}
.form__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.24);
}
.form__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.24);
}
.form__input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.24);
}
.form__input::placeholder {
  color: rgba(255, 255, 255, 0.24);
}
.form__input:focus {
  border-color: #fff;
}
.form__button {
  padding: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.form__button:hover {
  opacity: 0.65;
}
.form__error {
  margin-top: 12px;
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #fe3239;
}

.loader {
  margin: 0 auto;
  margin-bottom: 16px;
  height: 26px;
  max-width: 570px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.12);
}
.loader__progress {
  height: 100%;
  width: 60%;
  background-color: #fff;
  -webkit-animation: progress 3s ease-in-out forwards;
          animation: progress 3s ease-in-out forwards;
}

#channel-stats {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#channel-stats .section__info-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 115px;
          flex: 1 0 115px;
}

@-webkit-keyframes progress {
  0% {
    width: 0%;
  }
  50% {
    width: 60%;
  }
  100% {
    width: 100%;
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }
  50% {
    width: 60%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}