* {
  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", sans-serif;
  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: #00B6AA;
  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;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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;
}

.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;*/
  height: 50px;
  border: 1px solid #00C7B1;
  color: #00C7B1;
  background-color: #000;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.btn span {
  color: #fff;
}
.btn svg {
  fill: currentColor;
}
.btn:hover {
  color: #000;
  background-color: #00C7B1;
}
.btn:hover span {
  color: currentColor;
}
.btn_light {
  color: #000;
  background-color: #00B6AA;
}
.btn_light--small {
  max-width: 200px;
}
.btn_light span {
  color: currentColor;
}
.btn_light:hover {
  color: #00B6AA;
  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%;
  background: transparent;
  padding-top: 30px;
  /*	&-img {
  		width: 100%;
  		margin-bottom: 20px;
  		max-height: 136px;
  		height: 100%;
  		object-fit: cover;

  		&__top {
  			max-height: 83px;
  		}
  	}*/
}
.header .container {
  flex-direction: row;
  justify-content: space-between;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo {
  max-width: 165px;
  display: block;
}

.page_main .header {
  position: absolute;
  width: 100%;
  z-index: 10;
}
.page_main .header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 5.01%, rgba(0, 0, 0, 0) 80%);
}
.page_main .main {
  padding-top: 0;
}

.person {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  overflow: hidden;
  padding: 5px;
}
.person-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}
.person-icon {
  width: 100%;
  height: 100%;
}
.person svg {
  fill: #fff;
}
.person:hover svg {
  fill: #00B6AA;
}

.burger {
  display: flex;
  align-items: center;
  z-index: 100;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 5px;
}
.burger svg {
  fill: white;
}
.burger-active > svg {
  fill: white;
}
.burger:hover svg {
  fill: #00C7B1;
}

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

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

.menu-bg {
  width: 100%;
  height: 100%;
  /*display: none;*/
  visibility: hidden;
  background: transparent;
  z-index: 90;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  opacity: 0;
}

.menu__wrapper {
  max-width: 349px;
  width: 349px;
  background-color: transparent;
  position: absolute;
  top: 80px;
  right: 5px;
  z-index: 1005;
  padding-right: 10px;
  display: block;
}

.menu-bg .container {
  position: relative;
}

.menu {
  width: 100%;
  background-color: transparent;
  display: block;
}

.menu-active {
  /*display: block;*/
  visibility: visible;
  opacity: 1;
}

.menu-back {
  z-index: -1;
  width: 339px;
  height: 100%;
  position: absolute;
  background-color: #00C7B1;
  top: 10px;
  right: 0;
}

.menu li {
  padding: 16px 20px;
  font-weight: 800;
  font-size: 20px;
  background-color: #000000;
  border-top: 1px solid #00C7B1;
  border-left: 1px solid #00C7B1;
  border-right: 1px solid #00C7B1;
}

.menu li:last-child {
  border-bottom: 1px solid #00C7B1;
}

.acount-out {
  padding: 16px 20px;
  font-weight: 800;
  font-size: 20px;
  background-color: #000000;
  border-bottom: 1px solid #00C7B1;
  border-left: 1px solid #00C7B1;
  border-right: 1px solid #00C7B1;
  max-width: 339px;
  width: 339px;
}

.fancybox-content {
  width: 100%;
  max-width: 89%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 40px;
  overflow: unset;
  background-color: black;
  position: relative;
  border: 1px solid #00B6AA;
}
.fancybox-content::after {
  position: absolute;
  content: "";
  bottom: -12px;
  right: -10px;
  width: 100%;
  height: 100%;
  background-color: #00B6AA;
  z-index: -1;
}

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

.fancybox-slide--html .fancybox-close-small {
  color: transparent;
  width: 57px;
  height: 44px;
  background-image: url("assets/img/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000000;
  border: 1px solid #00B6AA;
  z-index: 2;
  top: -60px;
  right: -6px;
}

.fancybox-slide--html .fancybox-close-small::after {
  content: "";
  position: absolute;
  background-color: #00B6AA;
  width: 100%;
  height: 5px;
  bottom: -5px;
  right: -5px;
}

.fancybox-slide--html .fancybox-close-small::before {
  content: "";
  position: absolute;
  background-color: #00B6AA;
  width: 5px;
  height: 100%;
  top: 2px;
  right: -5px;
}

.fancybox-button {
  color: transparent;
  width: 57px;
  height: 44px;
  background-image: url("assets/img/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000000;
  border: 1px solid #00B6AA;
  z-index: 2;
  top: -60px;
  right: -6px;
}
.fancybox-button::after {
  content: "";
  position: absolute;
  background-color: #00B6AA;
  width: 100%;
  height: 5px;
  bottom: -5px;
  right: -5px;
}
.fancybox-button::before {
  content: "";
  position: absolute;
  background-color: #00B6AA;
  width: 5px;
  height: 100%;
  top: 2px;
  right: -5px;
}

.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: 450px;
  max-width: 100%;
}

.form__wrapper {
  padding: 40px 25px;
  border: 2px solid #00B6AA;
  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;
}

@-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;
  }
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .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: 620px;
  }
  .fancybox-slide--video .fancybox-content {
    max-width: 800px;
  }
}
@media (min-width: 1020px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    max-width: 356px;
  }
}
.reg-form .bxmaker-authuserphone-input-code__field input {
  color: black !important;
}