.primary_btn {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.primary_btn {
  border: none;
  height: 40px;
}

.primary_btn {
  background: #00aabe;
  color: #333333;
}
.loading.primary_btn {
  pointer-events: none;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.loading.primary_btn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px -12px;
  border-radius: 50%;
  color: inherit;
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  animation: loadAnimation 1.6s infinite linear;
}

html {
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 100%;
  color: #ffffff;
  background: #282828;
  text-align: center;
  width: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  min-height: 100%;
  font-family: "Roboto Condensed", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
body.popup_opened {
  overflow: hidden;
}
body:not(:has(.submit_form[hidden])) .first_screen {
  display: none;
}
body:not(:has(.submit_form[hidden])) .back_btn {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
}
body:has(.showed) .first_screen > .projects_list {
  display: none;
}
body:has(.showed) .back_btn {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

input,
select,
textarea,
button,
a {
  outline: none !important;
}

a,
a:focus,
a:hover,
button:hover {
  text-decoration: none;
}

a {
  color: #00aabe;
}
a:not([href]) {
  pointer-events: none;
}

button {
  cursor: pointer;
  display: block;
}

img {
  max-height: none;
  border: none;
}

input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input,
textarea,
button {
  font-family: inherit;
  font-size: 100%;
}

.logo_block img {
  display: inline-block;
  vertical-align: top;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.error_hint {
  display: none;
  overflow: hidden;
  color: #ff0000;
  font-size: 87.5%;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 4px;
}

.field_block {
  position: relative;
  margin-top: 40px;
  text-align: left;
}
.field_block ::-webkit-input-placeholder {
  color: #666666;
}
.field_block :-moz-placeholder {
  color: #666666;
}
.field_block ::-moz-placeholder {
  color: #666666;
}
.field_block :-ms-input-placeholder {
  color: #666666;
}
.field_block input {
  width: 100%;
  border: none;
  background: #ffffff;
  color: #282828;
  -o-transition: all 50000s;
  -ms-transition: all 50000s;
  -moz-transition: all 50000s;
  -webkit-transition: all 50000s;
  transition: all 50000s;
  border-radius: 8px;
  padding: 15px;
}

.error .error_hint,
.error ~ .error_hint {
  display: block;
}

.check_btn {
  position: relative;
  display: inline-flex;
  vertical-align: top;
  max-width: 100%;
  text-align: left;
  align-items: center;
  cursor: pointer;
}
.check_btn input {
  padding: 0;
}
.check_btn:before {
  display: block;
  min-width: 20px;
  aspect-ratio: 1;
  border-top: 20px solid;
  border-radius: 4px;
  margin-right: 10px;
  content: "";
}
.check_btn:after {
  display: block;
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  border: solid #282828;
  border-width: 0 0 2px 2px;
  left: 5px;
  top: 7px;
  transform-origin: center;
  -webkit-transfrom-origin: center;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  opacity: 0;
}
.check_btn:has(input:checked):after {
  opacity: 1;
}
.check_btn.error:before {
  border-top-color: rgba(255, 0, 0, 0.4);
  background: #ffffff;
}

@keyframes loadAnimation {
  9% {
    box-shadow: none;
  }
  10% {
    box-shadow: -8px 0 0;
  }
  35% {
    box-shadow: -8px 0 0;
  }
  35.1% {
    box-shadow: -8px 0 0, 8px 0 0;
  }
  60% {
    box-shadow: -8px 0 0, 8px 0 0;
  }
  60.1% {
    box-shadow: -8px 0 0, 8px 0 0, 24px 0 0;
  }
  85% {
    box-shadow: -8px 0 0, 8px 0 0, 24px 0 0;
  }
  85.1% {
    box-shadow: none;
  }
  100% {
    box-shadow: none;
  }
}
.content {
  padding: 20px 15px;
  max-width: 480px;
  margin: 0 auto;
}
.content button:not([class*=iti]) {
  max-width: 100%;
  margin-top: 40px;
  width: 360px;
  padding: 15px;
  border-radius: 8px;
  font-weight: 700;
  color: #282828;
}
.content:has(.ticket_block) {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.content:has(.ticket_block) .back_btn {
  order: 2;
  font-size: 140%;
  text-decoration: underline;
}
.content:has(.ticket_block) .back_btn:before {
  display: none;
}

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

.submit_form {
  max-width: 360px;
  margin: 40px auto 0;
}
.submit_form button.loading {
  pointer-events: none;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.submit_form button.loading:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px -12px;
  border-radius: 50%;
  color: inherit;
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  animation: loadAnimation 1.6s infinite linear;
}

.project_name {
  font-size: 150%;
  font-weight: bold;
}

.error_message {
  position: fixed;
  background: #282828;
  top: 20px;
  right: 20px;
  max-width: 280px;
  text-align: left;
  border: 1px solid #ff0000;
  background: rgba(255, 0, 0, 0.4);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  animation: showErrorMessage 0.75s forwards;
}

.message_close {
  display: block;
  min-width: 48px;
  aspect-ratio: 1;
  margin-right: -15px;
  margin-top: -15px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.message_close:before, .message_close:after {
  display: block;
  content: "";
  border-top: 2px solid;
  width: 20px;
  transform-origin: center;
  -webkit-transfrom-origin: center;
}
.message_close:before {
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.message_close:after {
  margin-top: -2px;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.sub_projects {
  padding-top: 20px;
}
.sub_projects .projects_list {
  margin-top: -20px;
}
.sub_projects:not(.showed) {
  display: none;
}

.back_btn {
  cursor: pointer;
  margin-top: 20px;
  display: none;
}
.back_btn:before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 2px 0 0 2px;
  margin-right: 6px;
  transform-origin: center;
  -webkit-transfrom-origin: center;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

@keyframes showErrorMessage {
  from {
    transform: translate3d(320px, 0, 0);
    -moz-transform: translate3d(320px, 0, 0);
    -ms-transform: translate3d(320px, 0, 0);
    -webkit-transform: translate3d(320px, 0, 0);
    -o-transform: translate3d(320px, 0, 0);
  }
}
.ticket_block {
  background: #00aabe;
  margin: 40px auto;
  width: 200px;
  padding: 30px;
}

.ticket_label {
  color: #282828;
  font-size: 112.5%;
}

.ticket_number {
  font-size: 200%;
  margin-top: 20px;
}

.iti {
  display: block;
}
.iti .iti__selected-country {
  color: #282828;
  width: 90px;
  border-right: 1px solid #e5e5e5;
  padding-right: 10px;
  border-radius: 8px 0 0 8px;
}
.iti .iti__selected-country:after {
  display: block;
  border-style: solid;
  border-width: 3px 3px 0;
  width: 5px;
  height: 3px;
  content: "";
  border-color: #282828 transparent;
  margin-left: 4px;
}
@media (hover: hover) {
  .iti .iti__selected-country:hover {
    background: #f2f2f2;
  }
}
.iti .iti__selected-country-primary {
  background: transparent !important;
}
.iti .iti__selected-dial-code {
  margin-inline: auto;
}
.iti input {
  padding-left: 100px;
}
.iti .iti__arrow {
  display: none;
}
.iti .iti__country-list {
  border-radius: 8px;
  color: #282828;
}
.iti .iti__country-list::-webkit-scrollbar {
  width: 6px;
}
.iti .iti__country-list::-webkit-scrollbar-track {
  background: #e5e5e5;
  border-radius: 4px;
  margin-block: 4px;
}
.iti .iti__country-list::-webkit-scrollbar-thumb {
  background: #00aabe;
  border-radius: 4px;
}
.iti .iti__dropdown-content {
  border-radius: 8px;
}

.galaxsys_stand {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.galaxsys_stand .content {
  max-width: 720px;
  margin: 0;
  padding-block: clamp(20px, 10dvh, 100px);
}
.galaxsys_stand .logo_block img {
  width: auto;
  height: 48px;
}
@media (hover: hover) {
  .galaxsys_stand .check_btn:hover {
    color: #0068ff;
  }
}
.galaxsys_stand .check_btn:active {
  color: #0068ff;
}
.galaxsys_stand .content button:not([class*=iti]):hover {
  background: #0068ff;
  color: #ffffff;
}
.galaxsys_stand .ticket_block {
  background: #0068ff;
}
.galaxsys_stand .ticket_label {
  color: #ffffff;
}

.message_close {
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.check_btn, .back_btn {
  -o-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.content button:not([class*=iti]), .iti .iti__selected-country {
  -o-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.error_hint {
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.check_btn, .message_close, .back_btn {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.check_btn input {
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  visibility: hidden;
}

.check_btn:active, .back_btn:active {
  color: #00aabe;
}

.content button:active:not([class*=iti]) {
  background: #00aabe;
}

.message_close:active {
  opacity: 0.7;
}

@media (hover: hover) {
  .check_btn:hover, .back_btn:hover {
    color: #00aabe;
  }

  .content button:hover:not([class*=iti]) {
    background: #00aabe;
  }

  .message_close:hover {
    opacity: 0.7;
  }
}

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