@charset "UTF-8";
/* НАСЫЩЕННОСТЬ|ЯРКОСТЬ VIOLET */
/* НАСЫЩЕННОСТЬ|ЯРКОСТЬ ORANGE */
/* НАСЫЩЕННОСТЬ|ЯРКОСТЬ RED */
/* НАСЫЩЕННОСТЬ|ЯРКОСТЬ GREEN */
/* НАСЫЩЕННОСТЬ|ЯРКОСТЬ ORANGE */
/* ОТСТУПЫ ДЛЯ ТАБЛИЦ */
* {
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  border: 0;
}

html {
  min-height: 100%;
}

body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #050B2E;
}

h1 {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-block-end: 0;
  margin-block-start: 0;
}

h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-block-end: 0;
  margin-block-start: 0;
}

a {
  color: #050B2E;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

a:visited {
  color: #050B2E;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

a:link {
  color: #050B2E;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

button:hover {
  cursor: pointer;
}

input {
  outline: 0;
}

textarea {
  outline: 0;
}

select:focus-visible {
  outline: 0;
}

dialog:focus-visible {
  outline: 0;
}

button:focus-visible {
  outline: 0;
}

a:focus-visible {
  outline: 0;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.3);
}

a:hover,
input[type=text],
input[type=button],
input[type=submit],
button {
  transition: 0.4s;
}

@keyframes cookie-look {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
body div#dialog > dialog.hint > div.container > p:first-of-type {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
}
body div#dialog > dialog.hint > div.container > div.content {
  margin-top: 16px;
}
body div#dialog > dialog.hint > div.container > div.content > p.titled {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  margin-top: 20px;
  color: #102089;
}
body div#dialog > dialog.hint > div.container > div.content > div {
  color: #3C4475;
  background-color: #F5F7FF;
  border-radius: 12px;
  padding: 10px 12px;
}
body div#dialog > dialog.hint > div.container > div.content > div + div {
  margin-top: 14px;
}
body div#dialog > dialog.hint > div.container > div.content ul {
  padding-left: 20px;
  list-style-type: "— ";
  margin-top: 4px;
}
body div#dialog > dialog.hint > div.container > div.content ul > li {
  padding-left: 4px;
}
body div#dialog > dialog.hint > div.container > div.content ul > li:not(:last-of-type) {
  margin-bottom: 4px;
}
body div#dialog > dialog.hint > div.container > div.content ol {
  margin-top: 4px;
  list-style-position: inside;
}
body div#dialog > dialog.hint > div.container > div.content ol > li:not(:last-of-type) {
  margin-bottom: 4px;
}
body div.cookie {
  z-index: 999;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
body div.cookie.animate > div {
  animation-name: cookie-look;
  animation-duration: 0.8s;
  animation-fill-mode: backwards;
}
body div.cookie > div {
  transform: scale(1);
  max-width: 1000px;
  padding: 20px 20px 14px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  margin: 0 auto;
  border-radius: 12px;
  background-color: #FFF;
  border: 2px solid #E8EBFC;
  box-shadow: 0 2px 10px #7686EF;
}
body div.cookie > div > h2 {
  margin-bottom: 18px;
  color: #050B2E;
  font-size: 24px;
  font-weight: 700;
}
body div.cookie > div > label {
  display: block;
  color: #2B43E3;
  vertical-align: middle;
  text-align: center;
  padding: 4px 0;
  margin: 6px 0;
  background-color: #F5F7FF;
  cursor: pointer;
}
body div.cookie > div > label.open:after {
  transform: scaleY(-1);
  transition-property: transform;
  transition-duration: 200ms;
}
body div.cookie > div > label.open + p.info {
  height: 100%;
  transition: height 0.2s linear;
  transition-delay: 0s;
}
body div.cookie > div > label:after {
  content: "▼";
  margin-left: 4px;
  display: inline-block;
  color: #2B43E3;
  font-size: 14px;
  line-height: 14px;
  transform: scaleY(1);
  transition-property: transform;
  transition-duration: 200ms;
}
body div.cookie > div > label:has(input:checked):after {
  transform: scaleY(-1);
}
body div.cookie > div > label > input {
  display: none;
}
body div.cookie > div > p {
  font-weight: 400;
  vertical-align: middle;
}
body div.cookie > div > p.info {
  overflow: hidden;
  transition: max-height 0.2s linear;
  transition-delay: 0s;
  height: 0;
}
body div.cookie > div:has(label > input:checked) .info {
  max-height: 70px;
}
@media screen and (max-width: 1199px) {
  body div.cookie > div:has(label > input:checked) .info {
    max-height: 150px;
  }
}
@media screen and (max-width: 599px) {
  body div.cookie > div:has(label > input:checked) .info {
    max-height: 250px;
  }
}
body div.cookie > div > div.buttons {
  margin-top: 12px;
}
body div.cookie > div > div.buttons > a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 12px;
  vertical-align: middle;
  width: 100px;
  text-align: center;
}
body div.cookie > div > div.buttons > a.agree {
  color: #FFF;
  background-color: #2B43E3;
  margin-right: 8px;
}
body div.cookie > div > div.buttons > a.agree:hover {
  background-color: #7686EF;
}
body div.cookie > div > div.buttons > a.agree:active {
  background-color: #102089;
}
body div.cookie > div > div.buttons > a.notAgree:hover {
  background-color: #E8EBFC;
  color: #3C4475;
}
body div.cookie > div > div.buttons > a.notAgree:active {
  background-color: #D1D7FA;
  color: #3C4475;
}
@media screen and (max-width: 899px) {
  body div.cookie > div {
    padding: 16px 16px 10px;
  }
  body div.cookie > div > h2 {
    margin-bottom: 14px;
    font-size: 20px;
  }
  body div.cookie > div > p {
    font-size: 14px;
  }
  body div.cookie > div > label {
    font-size: 14px;
  }
  body div.cookie > div > div.buttons {
    margin-top: 12px;
  }
  body div.cookie > div > div.buttons > a {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  body div.cookie > div {
    padding: 12px 14px 10px;
  }
  body div.cookie > div > h2 {
    margin-bottom: 14px;
    font-size: 18px;
  }
  body div.cookie > div > p {
    font-size: 12px;
  }
  body div.cookie > div > label {
    font-size: 12px;
  }
  body div.cookie > div > div.buttons {
    margin-top: 12px;
  }
  body div.cookie > div > div.buttons > a {
    padding: 4px 14px;
    font-size: 12px;
  }
}

dialog.loader {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 10%;
  height: 5px;
  filter: blur(1px);
  background: linear-gradient(90deg, transparent 0, #FF7200 45%, #FF7200 55%, transparent 100%);
}
dialog.loader::backdrop {
  opacity: 0;
}
dialog.loader.start {
  animation: load 3s ease-in-out infinite;
}
@keyframes load {
  from {
    left: 0;
  }
  50% {
    left: 90%;
  }
  to {
    left: 0;
  }
}

div#main:has(div#main > div.auth-form) {
  justify-self: center;
  justify-content: center;
}
div#main > div.auth-form > form {
  max-width: 360px;
  margin: 0 auto;
  padding: 30px 26px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(118, 134, 239, 0.22);
}
div#main > div.auth-form > form > div:first-of-type {
  margin-bottom: 24px;
}
div#main > div.auth-form > form > div:first-of-type > h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 26px;
  text-align: center;
}
div#main > div.auth-form > form > div:first-of-type > div.inputs > div:first-of-type {
  margin-bottom: 12px;
}
div#main > div.auth-form > form > div:first-of-type > div.inputs input {
  width: 100%;
}
div#main > div.auth-form > form > div:first-of-type > div.inputs a {
  display: block;
  text-align: right;
  margin-right: 8px;
  margin-top: 8px;
  color: #2B43E3;
}
div#main > div.auth-form > form > div:first-of-type > div.inputs a:hover {
  color: #7686EF;
}
div#main > div.auth-form > form > div:first-of-type > div.inputs a:active {
  color: #102089;
}
div#main > div.auth-form > form > input {
  display: inline-block;
  padding: 10px 12px;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  background-color: #2B43E3;
  color: #FFF;
}
div#main > div.auth-form > form > input:hover {
  background-color: #7686EF;
  color: #FFF;
}
div#main > div.auth-form > form > input:active {
  background-color: #102089;
  color: #FFF;
}
div#main > div.auth-form > form > div.other_enter {
  margin-top: 8px;
  text-align: center;
}
div#main > div.auth-form > form > div.other_enter > div.to_come_in {
  margin-top: 16px;
  margin-bottom: 12px;
}
div#main > div.auth-form > form > div.other_enter > div.social_block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  height: 40px;
}
div#main > div.auth-form > form > div.other_enter > div.social_block > a {
  flex: none;
  position: relative;
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
div#main > div.auth-form > form > div.other_enter > div.social_block > a::before {
  height: 40px;
  width: 40px;
  content: "";
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
}
div#main > div.auth-form > form > div.other_enter > div.social_block > a.VK::before {
  background-image: url("logo/socialnet/vk_one_tap.svg");
  background-size: 40px;
}
div#main > div.auth-form > form > div.other_enter > div.social_block > a.YA::before {
  border-radius: 20px;
  background-image: url("logo/socialnet/yandex.svg");
  background-size: 40px;
}
div#main > div.auth-form > form > p.back-auth, div#main > div.auth-form > form p.on-reg {
  margin-top: 14px;
  text-align: center;
}
div#main > div.auth-form > form > p.back-auth > a, div#main > div.auth-form > form p.on-reg > a {
  margin-right: 8px;
  margin-top: 8px;
  color: #2B43E3;
}
div#main > div.auth-form > form > p.back-auth > a:hover, div#main > div.auth-form > form p.on-reg > a:hover {
  color: #7686EF;
}
div#main > div.auth-form > form > p.back-auth > a:active, div#main > div.auth-form > form p.on-reg > a:active {
  color: #102089;
}
div#main:has(div#main > div.reg-form) {
  justify-self: center;
  justify-content: center;
}
div#main > div.reg-form > form {
  max-width: 360px;
  margin: 0 auto;
  padding: 30px 26px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(118, 134, 239, 0.22);
}
div#main > div.reg-form > form > div:first-of-type {
  margin-bottom: 24px;
}
div#main > div.reg-form > form > div:first-of-type > div.info {
  padding: 10px 14px 10px 14px;
  margin-bottom: 12px;
  border-radius: 12px;
  color: #FF6636;
  background-color: #FFF2E5;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  font-weight: 500;
}
div#main > div.reg-form > form > div:first-of-type > h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 26px;
  text-align: center;
}
div#main > div.reg-form > form > div:first-of-type > div.inputs > div:not(:last-of-type) {
  margin-bottom: 12px;
}
div#main > div.reg-form > form > div:first-of-type > div.inputs > div.login {
  margin-bottom: 0;
}
div#main > div.reg-form > form > div:first-of-type > div.inputs h5 {
  margin-bottom: 8px;
}
div#main > div.reg-form > form > div:first-of-type > div.inputs input {
  width: 100%;
}
div#main > div.reg-form > form > div:first-of-type > div.inputs a {
  display: block;
  text-align: right;
  margin-right: 8px;
  margin-top: 8px;
  color: #2B43E3;
}
div#main > div.reg-form > form > div:first-of-type > div.inputs a:hover {
  color: #7686EF;
}
div#main > div.reg-form > form > div:first-of-type > div.inputs a:active {
  color: #102089;
}
div#main > div.reg-form > form > div:first-of-type > div.inputs a.disabled {
  color: #D2D2D2;
}
div#main > div.reg-form > form > div:first-of-type > div.inputs a.disabled:hover, div#main > div.reg-form > form > div:first-of-type > div.inputs a.disabled:active {
  color: #D2D2D2;
}
div#main > div.reg-form > form > div:first-of-type > div.inputs select {
  width: 100%;
}
div#main > div.reg-form > form > div.consent {
  margin-bottom: 18px;
}
div#main > div.reg-form > form > div.consent > label {
  margin: 4px 0;
  display: inline-block;
  width: calc(100% - 24px);
  padding-right: 24px;
  position: relative;
}
div#main > div.reg-form > form > div.consent > label > a {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #2B43E3;
}
div#main > div.reg-form > form > div.consent > label > a:hover {
  color: #7686EF;
}
div#main > div.reg-form > form > div.consent > label > a:active {
  color: #102089;
}
div#main > div.reg-form > form > div.consent > label > label.checkbox {
  position: absolute;
  right: 0;
  top: calc(50% - 10px);
}
div#main > div.reg-form > form > input {
  display: inline-block;
  padding: 10px 12px;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  background-color: #2B43E3;
  color: #FFF;
}
div#main > div.reg-form > form > input:hover {
  background-color: #7686EF;
  color: #FFF;
}
div#main > div.reg-form > form > input:active {
  background-color: #102089;
  color: #FFF;
}
div#main > div.reg-form > form > input:disabled {
  filter: grayscale(1) opacity(0.2);
  cursor: auto;
}
div#main > div.reg-form > form > input:disabled:hover, div#main > div.reg-form > form > input:disabled:active {
  background-color: #2B43E3;
  color: #FFF;
}
div#main > div.reg-form > form > div.other_enter {
  margin-top: 8px;
  text-align: center;
}
div#main > div.reg-form > form > div.other_enter > div.to_come_in {
  margin-top: 16px;
  margin-bottom: 12px;
}
div#main > div.reg-form > form > div.other_enter > div.social_block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  height: 40px;
}
div#main > div.reg-form > form > div.other_enter > div.social_block > a {
  flex: none;
  position: relative;
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
div#main > div.reg-form > form > div.other_enter > div.social_block > a::before {
  height: 40px;
  width: 40px;
  content: "";
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
}
div#main > div.reg-form > form > div.other_enter > div.social_block > a.VK::before {
  background-image: url("logo/socialnet/vk_one_tap.svg");
  background-size: 40px;
}
div#main > div.reg-form > form > div.other_enter > div.social_block > a.YA::before {
  border-radius: 20px;
  background-image: url("logo/socialnet/yandex.svg");
  background-size: 40px;
}
div#main > div.reg-form > form > div.other_enter > div.social_block > a[disabled] {
  filter: grayscale(1) opacity(0.2);
  cursor: auto;
}
div#main > div.reg-form > form > p.back-auth {
  margin-top: 14px;
  text-align: center;
}
div#main > div.reg-form > form > p.back-auth > a {
  margin-right: 8px;
  margin-top: 8px;
  color: #2B43E3;
}
div#main > div.reg-form > form > p.back-auth > a:hover {
  color: #7686EF;
}
div#main > div.reg-form > form > p.back-auth > a:active {
  color: #102089;
}

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