* {
  box-sizing: border-box;
  margin: 0;
}

html, body {
  word-break: normal;
}

body {
  font-style: normal;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-family: TT Runs;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  position: relative;
  color: white;
  background-color: black;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
}

.title {
  color: #FFB600;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
  z-index: 1;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  padding: 0;
  margin: 0;
}

footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(24, 28, 30);
  padding-top: 20px;
}

.footer__direkt {
  padding-bottom: 10px;
  font-size: 12px;
}
.footer__direkt a {
  text-decoration: underline;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page_main .header {
  position: absolute;
  z-index: 1;
}
.page_main .main {
  padding-top: 0;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  flex-grow: 1;
  padding-top: 50px;
}

.section {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.wrapper {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 100%;
  width: 100%;
  padding: 0 15px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  padding: 16px;
  border: 1px solid rgb(215, 37, 40);
  color: white;
  background-color: #000;
  font-weight: 500;
  cursor: pointer;
}
.btn span {
  color: #fff;
  font-family: TT Runs;
  font-weight: 500;
}
.btn svg {
  fill: currentColor;
}
.btn:hover {
  color: #000;
  background-color: rgb(215, 37, 40);
}
.btn:hover span {
  color: currentColor;
}
.btn_light {
  color: #000;
  background-color: #FFB600;
}
.btn_light--small {
  max-width: 200px;
}
.btn_light span {
  color: currentColor;
}
.btn_light:hover {
  color: #FFB600;
  background-color: #000;
}
.btn_light:hover span {
  color: #fff;
}
.btn:disabled {
  pointer-events: none;
}
.btn_loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: inherit;
}
.btn_loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  -webkit-animation: loading-rotate 1.2s linear infinite;
          animation: loading-rotate 1.2s linear infinite;
  box-sizing: border-box;
}

.header {
  width: 100%;
  max-width: 100%;
  padding-top: 30px;
}
.header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo {
  max-width: 165px;
  display: block;
}
.header__menu {
  position: relative;
}
.header__menu-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
}
.header__menu-btn svg {
  fill: white;
}
.header__menu-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  padding-bottom: 10px;
  z-index: 1;
}
.header__menu-menu-inner {
  width: 345px;
  padding: 10px 0;
  background-color: #2F363A;
  border-radius: 25px 0 25px 0;
  overflow: hidden;
}
.header__menu-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #D72528;
  border-radius: 25px 0 25px 0;
}

.person {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  overflow: hidden;
}
.person svg {
  fill: #fff;
}
.person:hover svg {
  fill: rgb(215, 37, 40);
}

#fancybox-close {
  display: inline !important;
  top: -7px !important;
  right: 1px !important;
  width: 28px !important;
  height: 30px !important;
}

.fancybox-slide--html {
  padding: 65px 20px;
}

.fancybox-content {
  width: 100%;
  max-width: 89%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 40px;
  overflow: unset;
  background: var(--grey, #2F363A);
  border-radius: 35px 0px;
  border-bottom: 20px solid var(--red, #D72528);
  position: relative;
}
.fancybox-slide .choise .choise__btns .btn {
  width: 214px;
  border-radius: 30px;
  background: var(--grey, #2F363A);
  font-size: 16px;
}

.fancybox-slide .choise .choise__btns .btn_light {
  width: 214px;
  background: var(--red, #D72528);
  font-size: 16px;
  color: white;
}

.fancybox-slide .choise .choise__btns .btn:hover {
  color: white;
}

.fancybox-slide .choise {
  padding-top: 24px;
  padding-bottom: 24px;
}

.fancybox-content p {
  margin-bottom: 20px;
}

.fancybox-content .title {
  line-height: 40px;
  text-transform: initial;
  margin-bottom: 8px;
}

.fancybox-slide .choise .choise__btns .btn_light:hover {
  background: var(--grey, #2F363A) !important;
}

.fancybox-slide .choise .choise__btns .btn:hover {
  background: var(--red, #D72528);
}

.fancybox-slide--html .fancybox-close-small {
  color: transparent;
  width: 57px;
  height: 44px;
  background-image: url("assets/img/close_fancy.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--grey, #2F363A);
  border-radius: 20px 0px;
  z-index: 2;
  top: -55px;
  right: 0px;
  border-bottom: 2px solid var(--red, #D72528);
}

.fancybox-slide .fancybox-iframe {
  border-radius: 30px 0px;
  background: #2F363A;
  padding: 30px 20px;
}

.fancybox-slide .fancybox-content {
  border-radius: 57px 0px;
}

.fancybox-slide .fancybox-content .fancybox-button:hover {
  color: rgba(255, 255, 255, 0);
}

.fancybox-button {
  color: transparent;
  width: 57px;
  height: 44px;
  background-image: url("assets/img/close_fancy.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--grey, #2F363A);
  border-radius: 20px 0px;
  z-index: 2;
  top: -60px;
  right: -6px;
}

.fancybox-content .form__wrapper {
  border: none;
}

.popup-edit .fancybox-content {
  border-radius: 0 !important;
  padding: 40px 20px 20px !important;
}

.fancybox-slide--video {
  padding-left: 20px;
  padding-right: 20px;
}

.fancybox-slide--video .fancybox-content {
  max-height: 511px;
  max-width: 100%;
}

.form__wrapper {
  padding: 40px 25px;
  border: 2px solid #d72528;
  border-top-right-radius: 48px;
  border-top-left-radius: 48px;
  max-width: 600px;
}
.form__wrapper .container {
  padding: 0;
}

.form {
  width: 100%;
  max-width: 100%;
}

.form__row {
  margin-bottom: 26px;
}

.form__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.form__header .title {
  margin-bottom: 0;
}

.photo__dowload {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form__col--avatar {
  display: none;
}

.form__btns a {
  color: #FFB600;
}

.form__btns {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.form__btns div {
  margin-bottom: 5px;
}

.form__btns .btn {
  border-radius: 25px;
  background-color: #FFB600;
  font-size: 18px;
  margin-bottom: 11px;
  max-width: 236px;
}

.photo__dowload img {
  margin-bottom: 10px;
}

.photo__dowload p {
  font-size: 8px;
}

.label p {
  font-size: 12px;
  margin-bottom: 6px;
  color: #FFB600;
  width: 100%;
}

.label__checkbox {
  color: #FFB600;
}

.input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #FFB600;
  background-color: transparent;
  outline: none;
  padding: 6px;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.input-club {
  background-image: url("assets/img/account.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.video_player_main img {
  width: 100%;
  height: 100%;
  margin-bottom: 61px;
  filter: brightness(0.45) blur(2px);
}

.video_player_main:after {
  content: "";
  position: absolute;
  background-size: contain;
  width: 90px;
  height: 90px;
  left: 50%;
  transform: translateX(-50%);
  top: 42%;
  text-align: center;
  background-image: url("assets/img/play_video.svg");
  background-repeat: no-repeat;
}

.video_player_main_div {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
  height: 524px;
  border-bottom: 12px solid #D72528;
  display: block;
  border-radius: 60px 0px;
  background-size: cover !important;
  margin-bottom: 61px;
}

.reg-form .bxmaker-authuserphone-input-code__field input {
  color: black !important;
}

.table-result-switch-first {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 59px;
  background: #2F363A;
  border-radius: 60px 0 60px 0;
  border-bottom: 5px solid #D72528;
  overflow: hidden;
}

.table-result-switch-first .table-result-switch-active {
  width: 50%;
  padding-top: 20px;
  padding-bottom: 30px;
}

.table-result-switch-first .table-result-switch-active .table-result-switch-title {
  color: #FFD700;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.table-result-switch-first .table-result-switch-active .table-result-switch-desc {
  font-size: 22px;
  font-weight: 500;
  font-family: "TT Runs", serif;
  cursor: pointer;
}

.table-result-switch-first .table-result-switch-div .table-result-switch-title {
  color: #C0C0C0;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.table-result-switch-first .table-result-switch-div .table-result-switch-desc {
  font-size: 22px;
  font-weight: 500;
  font-family: "TT Runs", serif;
  cursor: pointer;
}

.table-result-switch-first .table-result-switch-div {
  width: 50%;
  padding-top: 20px;
  padding-bottom: 30px;
  background: var(--grey-80, #595E61);
}

.table-result-switch-first .table-result-switch-div:hover {
  cursor: pointer;
  transition: 0.3s;
  background: #2F363A;
}

.table-result-switch-first .table-result-switch-div:hover .table-result-switch-title {
  color: #FFD700;
}

@-webkit-keyframes loading-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loading-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 620px) {
  .container {
    padding: 0 20px;
  }
  .title {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .header__logo {
    max-width: 189px;
  }
  .card__img {
    height: 285px;
  }
  .section {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .form__wrapper {
    margin: 0 auto;
  }
  .fancybox-content {
    max-width: 95%;
  }
}
@media (min-width: 920px) {
  .header__logo {
    max-width: 252px;
  }
  .title {
    font-size: 50px;
    max-width: 100%;
    width: 100%;
    text-align: left;
  }
  .footer__direkt {
    padding-bottom: 20px;
    font-size: 14px;
  }
  .container {
    margin: 0 auto;
    max-width: 980px;
  }
  .form__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .form__col {
    max-width: 45%;
    width: 45%;
  }
  .photo__dowload--mobile {
    display: none;
  }
  .form__col--avatar {
    display: flex;
    justify-content: center;
  }
  .photo__dowload--desktops img {
    width: 381px;
    height: 381px;
  }
  .photo__dowload p {
    font-size: 14px;
  }
  .form__header {
    justify-content: center;
    text-align: center;
    margin-bottom: 48px;
  }
  .form__wrapper {
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
  }
  .fancybox-content {
    max-width: 728px;
  }
  .fancybox-slide--video .fancybox-content {
    max-width: 800px;
  }
}
@media (min-width: 1020px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1024px) {
  .header {
    padding-top: 40px;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    max-width: 356px;
  }
}
@media (min-width: 1440px) {
  .header {
    padding-top: 60px;
  }
}
@media (max-width: 1200px) {
  .main {
    padding-top: 0;
  }
  .fancybox-content {
    border-bottom: 10px solid var(--red, #D72528);
  }
  .fancybox-slide--html .fancybox-close-small {
    width: 35px;
    height: 31px;
    background-image: url("assets/img/close_fancy_mob.svg");
  }
}
@media (max-width: 1024px) {
  .video_player_main {
    height: 396px;
  }
}
@media (max-width: 920px) {
  .main {
    padding-top: 0;
  }
  .video_player_main img {
    margin-bottom: 0px;
    height: 100%;
  }
  .video_player_main_div {
    height: 100%;
  }
  .video_player_main:after {
    top: 34%;
  }
}
@media (max-width: 768px) {
  .video_player_main {
    height: 100%;
    background-position: center;
  }
  .table-result-switch-first .table-result-switch-title {
    font-size: 18px !important;
  }
  .table-result-switch-first .table-result-switch-desc {
    font-size: 14px !important;
  }
  .table-result-switch-first .table-result-switch-active {
    padding-top: 7px;
    padding-bottom: 6px;
  }
  .table-result-switch-first .table-result-switch-div {
    padding-top: 7px;
    padding-bottom: 6px;
  }
}
@media (max-width: 640px) {
  .table-result-switch-first {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .video_player_main:after {
    width: 68px;
    height: 68px;
    top: 27%;
  }
  .video_player:after {
    width: 68px;
    height: 68px;
  }
  .video_player_main_div:after {
    width: 42.651px;
    height: 42.651px;
  }
}
@media (max-width: 350px) {
  .table-result-switch-first .table-result-switch-title {
    font-size: 16px !important;
  }
  .table-result-switch-first .table-result-switch-desc {
    font-size: 12px !important;
  }
}