* {
  font-family: "Manrope", sans-serif;
  line-height: 120%;
}

p, li, h1, h2, h3, h4, h5, h6, ol, ul, a {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: linear-gradient(90deg, rgb(8, 35, 76) 0%, rgb(20, 54, 101) 15%, rgb(26, 63, 114) 33%, rgb(23, 58, 107) 51%, rgb(8, 35, 76) 100%);
}

#main,
#part-1,
#part-2,
#part-1-online-25-02,
#part-1-sp-1,
#part-1-cryptogram,
#part-1-clin-1,
#part-2-sp-1,
#part-2-cryptogram,
#part-2-sp-2,
#part-2-sp-3,
#part-2-online-17-11 {
  display: none;
}

#main-mobile,
#part-1-mobile,
#part-2-mobile,
#part-1-online-25-02-mobile,
#part-1-sp-1-mobile,
#part-1-cryptogram-mobile,
#part-1-clin-1-mobile,
#part-2-sp-1-mobile,
#part-2-cryptogram-mobile,
#part-2-sp-2-mobile,
#part-2-sp-3-mobile,
#part-2-online-17-11-mobile {
  display: none;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #E5E5E5;
}
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #15499B;
  cursor: pointer;
}
*::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #E5E5E5;
}

@media screen and (min-width: 1540px) {
  .container {
    max-width: 1430px;
  }
}
.onlyD {
  display: none !important;
}

.onlyM {
  display: flex !important;
}

@media (min-width: 1200px) {
  .onlyD {
    display: flex !important;
  }
  .onlyM {
    display: none !important;
  }
}
.bg {
  position: fixed;
  min-width: 100%;
  z-index: -2;
  pointer-events: none;
  user-select: none;
}

.main-button, .voting-form-box .vote-form-box-button input, .auth-form input[type=submit] {
  border: none;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 8px 32px;
  color: white;
  background-color: #ED4700;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 300px;
  text-align: center;
}
.main-button:hover, .voting-form-box .vote-form-box-button input:hover, .auth-form input[type=submit]:hover {
  background-color: rgb(211.5, 63.3607594937, 0);
  color: white;
  text-decoration: none;
}
.main-button:focus, .voting-form-box .vote-form-box-button input:focus, .auth-form input[type=submit]:focus {
  outline-color: rgb(211.5, 63.3607594937, 0);
}
.main-button.disabled, .voting-form-box .vote-form-box-button input.disabled, .auth-form input.disabled[type=submit] {
  pointer-events: none;
  opacity: 0.7;
}

.anchor {
  position: absolute;
  top: -10vh;
}

section {
  position: relative;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  background-color: #15499B;
}
.header__points {
  font-weight: 700;
}
.header__content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}
.header__auth {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.header__auth svg {
  fill: white;
  width: 14px;
  height: 14px;
}
.header__link {
  color: white;
  font-size: 14px;
  transition: all 0.2s ease;
  background: none;
  border: none;
  appearance: none;
  position: relative;
}
.header__link::after {
  content: "";
  height: 2px;
  border-radius: 2px;
  width: 0;
  background-color: white;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transition: all 0.2s ease;
}
.header__link:hover {
  text-decoration: none;
  color: white;
}
.header__link:hover.header__link::after {
  width: 100%;
  left: 0;
}
.header__link:focus {
  outline: none;
}
.header__username {
  display: flex;
  gap: 8px;
  align-items: center;
  text-transform: initial;
}
.header__links, .header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.header__logo img {
  width: 140px;
}

.openModal {
  cursor: pointer;
}

.modal-overlay-custom {
  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: 16px;
  margin-bottom: 16px;
  width: 100%;
  height: 100%;
  padding: 25px 25px 30px;
  border-radius: 16px;
  background: #fff;
  max-height: calc(100vh - 32px);
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 30rem;
}
.modal-block.video {
  max-width: unset;
}
.modal-block.video .modal-block__section {
  padding-right: 0;
}
.modal-block.video .modal-block__section video {
  max-height: 80vh;
}
.modal-block__head {
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-block__head h3 {
  font-size: 24px;
  font-weight: 600;
  color: #15499B;
  margin: 0;
  line-height: 1;
}
.modal-block__content {
  overflow-y: auto;
  position: relative;
  max-height: calc(100vh - 64px);
  min-height: 250px;
}
.modal-block__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-block p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.cross {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  overflow-y: hidden;
}
.cross::after, .cross::before {
  content: "";
  height: 3px;
  border-radius: 2px;
  width: 24px;
  background-color: #15499B;
  position: absolute;
}
.cross::before {
  transform: rotate(45deg);
}
.cross::after {
  transform: rotate(-45deg);
}

.sidebar {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  top: 0;
  right: -100%;
  z-index: 900;
  opacity: 0;
  transition: opacity 0.5s ease, right 0s ease 0.5s;
}
.sidebar.active {
  opacity: 1;
  right: 0;
  transition: opacity 0.5s ease;
}
.sidebar.active .sidebar__block {
  right: 0;
}
.sidebar__header {
  display: flex;
  justify-content: flex-end;
}
.sidebar__block {
  transition: all 0.2s ease;
  background: #fff;
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 250px;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar__desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar__link {
  color: #15499B;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  margin: 0;
}
.sidebar__link:hover {
  color: rgb(17.9573863636, 62.4232954545, 132.5426136364);
  text-decoration: none;
}
.sidebar__link.active {
  pointer-events: none;
}
.sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.openSidebar {
  transition: all 0.2s ease;
  height: 18px;
  width: 28px;
  position: relative;
  cursor: pointer;
  display: none;
}
.openSidebar div {
  position: absolute;
  height: 2px;
  min-height: 2px;
  border-radius: 2px;
  background: white;
  width: 100%;
}
.openSidebar div:nth-child(1) {
  top: 0;
}
.openSidebar div:nth-child(2) {
  top: 8px;
}
.openSidebar div:nth-child(3) {
  bottom: 0;
}

.js_reg_auth {
  display: none !important;
}

.vote-answer-item input[type=checkbox] {
  visibility: visible !important;
  position: relative !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:focus-visible {
  outline: none;
  border-color: #15499B;
  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: 12px;
}
.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: 16px;
  font-weight: 400;
  line-height: 120%;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.auth-form .errortext {
  font-size: 1.5rem;
}

.auth-extras {
  display: flex;
  gap: 16px;
  margin-left: auto;
  margin-right: auto;
}

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

.voting-form-box {
  border: none;
  padding: 0;
}
.voting-form-box .vote-item-title span b {
  font-size: 14px;
  color: black;
  font-weight: 400;
}
.voting-form-box .vote-item-title span br {
  display: none;
}
.voting-form-box .vote-item-title .starrequired {
  color: #ED4700;
}
.voting-form-box .vote-item-vote {
  margin: 0 0 8px;
}
.voting-form-box .vote-item-vote input:not(input[type=radio]) {
  width: 100%;
}
.voting-form-box .vote-item-vote label {
  display: none;
}
.voting-form-box .vote-answer-item-radio label {
  display: unset;
}
.voting-form-box .vote-items-list {
  margin-top: 0;
}
.voting-form-box .vote-item-header {
  margin-bottom: 2px;
}
.hero {
  padding: 60px 0 80px;
}
.hero__content {
  display: flex;
  gap: 60px;
  align-items: center;
}
.hero__content:hover {
  text-decoration: none;
}
.hero__pic {
  width: 270px;
}
.hero__sub-name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
}
.hero__name {
  font-size: 64px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  .hero__pic {
    width: 200px;
  }
  .hero__content {
    gap: 40px;
  }
  .hero__sub-name {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .hero__name {
    font-size: 48px;
  }
  .openSidebar {
    display: flex;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 8px 0;
  }
  .header__content {
    gap: 8px;
  }
  .header__auth {
    gap: 4px 16px;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .header__nav {
    gap: 16px;
  }
  .main-button, .auth-form input[type=submit], .voting-form-box .vote-form-box-button input {
    padding: 8px 16px;
    font-size: 14px;
  }
  .modal-block {
    padding: 15px 15px 20px;
  }
  .modal-block__head h3 {
    font-size: 16px;
  }
  .hero {
    padding: 20px 0 40px;
  }
  .hero__pic {
    width: 100px;
  }
  .hero__content {
    gap: 20px;
  }
  .hero__sub-name {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .hero__name {
    font-size: 24px;
  }
}

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