.js_reg_auth {
  display: none !important;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__logo {
  width: 150px;
  height: auto;
  color: #5CC1CB;
}

.header__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-style: normal;
  line-height: normal;
  margin: 0;
}

.header__name:hover {
  color: #fff;
}

.header__auth a {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.header__auth svg {
  fill: #525252;
  width: 1.5rem;
  height: 1.5rem;
}

.header__content {
  border: 1px solid white;
  background: white;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  padding: 0.7rem 2rem;
  gap: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.header__content > div {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.header__content a:not(.header__name) {
  color: #525252;
  text-align: center;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.header__content a:not(.header__name):hover {
  text-decoration: underline !important;
  color: #525252;
}

.header__button {
  cursor: pointer;
  background: #f1f1f1;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  color: #555;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  font-size: 1.25rem;
  font-weight: 500;
}
.header__button:hover {
  border: 1px solid #f1f1f1;
  color: #f1f1f1;
  background: #5CC1CB;
}

.openModal {
  cursor: pointer;
}

.modal-overlay {
  backdrop-filter: blur(10px);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.modal-block {
  margin-top: 3rem;
  margin-bottom: 3rem;
  width: 100%;
  height: 100%;
  padding: 2rem 2rem 3rem;
  border-radius: 2.5rem;
  background: #EFEFEF;
  max-height: calc(100vh - 6rem);
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 40rem;
}
.modal-block.wide {
  max-width: 1200px;
}
.modal-block.liveProgramModal {
  max-width: 1200px;
}
.modal-block__pic {
  width: 100%;
}

.modal-block__head {
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-block__close {
  position: relative;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  overflow-y: hidden;
}

.modal-block__close::after, .modal-block__close::before {
  content: "";
  height: 0.2rem;
  width: 2rem;
  background-color: #5CC1CB;
  position: absolute;
}

.modal-block__close::before {
  transform: rotate(45deg);
}

.modal-block__close::after {
  transform: rotate(-45deg);
}

.modal-block__content {
  overflow-y: auto;
  position: relative;
  max-height: calc(100vh - 11rem);
}

.modal-block__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 1rem;
}

.modal-block p {
  color: #000;
  font-size: 1.3rem;
  font-weight: 400;
}

.js_reg_auth {
  display: none !important;
}

.auth-form {
  display: flex;
  justify-content: center;
}

.auth-form .bx-system-auth-form {
  width: 100%;
}

.auth-form label, .auth-form noindex, .auth-form .bx-auth-lbl, .auth-form .bx-auth-serv-icons {
  display: none;
}

.auth-form table {
  width: 100%;
}

.auth-form input[type=submit] {
  border-radius: 5rem;
  padding: 1rem 2rem 1rem;
  background: #5CC1CB;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  border: 3px solid #5CC1CB;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.auth-form input[type=submit]:hover {
  background: #fff;
  color: #5CC1CB;
  text-decoration: none;
}

.auth-form input:focus-visible {
  outline: none;
  border-color: #5CC1CB;
  border-style: solid;
}

.auth-form input[type=text], .auth-form input[type=password] {
  height: 2.5rem;
}

.auth-form tbody {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form tr:nth-child(5), .auth-form tr:nth-child(6), .auth-form tr:nth-child(7) {
  display: none;
}

.auth-form td {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-form .errortext {
  font-size: 1.5rem;
}

.auth-extras {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.my-registration {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  color: #000;
}

.my-registration:hover {
  color: #000;
}

@media screen and (min-width: 1540px) {
  .container {
    max-width: 1400px;
  }
}
@media screen and (max-width: 768px) {
  .header__content {
    flex-direction: column;
    gap: 1rem;
  }
}

/*# sourceMappingURL=template.css.map */
