@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; }

ul, li {
  list-style: none; }

a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit; }

input {
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit; }

:root {
  --body-color: #F2F2F2;
  --viewport-width: 1440px;
  --viewport-width-min: 320px;
  --container-offset: 10px;
  --text-color: #000;
  --accent-color: #ffbc00;
  --sep-color: #c5c5c5;
  --accept-color: #42efa1;
  --color-warn: #ecf237;
  --color-error: #ff0000;
  --layout-nav: 2; }

.password-toggle {
  position: relative; }
  .password-toggle__btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 40px;
    height: 40px;
    background: url("../img/icons/icon-eye-open.svg");
    background-position: center;
    background-repeat: no-repeat; }
  .password-toggle input {
    padding-right: 40px !important; }

.btn {
  appearance: unset;
  border: unset;
  background-color: unset;
  cursor: pointer;
  transition: 0.1s 0s ease; }
  .btn:hover {
    background-color: #898989 !important;
    color: #fff; }
  .btn:active {
    transform: scale(0.95); }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.34);
  background: #fff;
  padding: 10px 0;
  z-index: var(--layout-nav); }
  .nav .nav__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; }
  .nav .nav-bar {
    display: flex;
    gap: 40px; }
    .nav .nav-bar .nav-bar__item {
      font-size: 20px;
      font-weight: 200; }
      .nav .nav-bar .nav-bar__item.active {
        font-weight: 600; }
  .nav .nav-profile {
    display: flex;
    align-items: center;
    gap: 10px; }
  .nav .nav-profile__avatar {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 100%;
    background-color: #d9d9d9; }
    .nav .nav-profile__avatar img {
      width: 100%;
      height: 100%; }
  .nav .nav-profile__info {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-size: 16px; }

.section {
  border-radius: 20px;
  padding: 20px 20px 40px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
  background-color: #fff; }
  .section .section__header {
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 30px; }
  .section .section__subheader {
    font-weight: 500;
    font-size: 24px; }
  .section .section__info {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-size: 20px;
    margin-bottom: 20px; }
  .section .section__content {
    min-height: 100px; }
  .section .section-form {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
    .section .section-form .section-form__group {
      display: flex;
      flex-direction: column;
      row-gap: 8px;
      background-color: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 140%;
      color: #1e1e1e; }
    .section .section-form .section-form__group-field {
      border: 1px solid #d9d9d9;
      border-radius: 8px;
      padding: 12px 16px;
      min-width: 240px;
      width: 100%; }
      @media (max-width: 560px) {
        .section .section-form .section-form__group-field {
          min-width: unset; } }
    .section .section-form .section-form__send {
      border-radius: 20px;
      box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.3);
      background: #fee9a2;
      font-size: 24px;
      text-transform: uppercase;
      width: 250px;
      text-align: center;
      padding: 10px; }

.search-hide {
  display: none; }

.search-not-found {
  display: none;
  margin-top: 20px; }

.search {
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #000;
  font-size: 18px;
  min-width: 300px; }
  .search:focus-visible {
    outline: none; }

.search-not-found {
  font-size: 20px;
  text-align: center; }

.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center; }

.fullscreen-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center; }

.fullscreen-scalable {
  transform-origin: center center;
  transition: transform 0.12s cubic-bezier(0.2, 0, 0.2, 1);
  /* Отключаем выделение и перетаскивание */
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none; }

.fullscreen-scalable * {
  /* Запрещаем нативное перетаскивание у всех вложенных элементов */
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none; }

/* Кнопка закрытия */
.fullscreen-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  z-index: 10001; }

.fullscreen-close-btn:hover {
  background: rgba(255, 255, 255, 0.3); }

.fullscreen-close-btn::before,
.fullscreen-close-btn::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 2px; }

.fullscreen-close-btn::before {
  transform: rotate(45deg); }

.fullscreen-close-btn::after {
  transform: rotate(-45deg); }

.section-limit .section-form {
  min-width: 500px; }
  .section-limit .section-form .section__subheader {
    text-align: center; }
  .section-limit .section-form .section-form__wrapper {
    display: flex;
    gap: 20px; }
    @media (max-width: 1150px) {
      .section-limit .section-form .section-form__wrapper {
        justify-content: center; } }
    @media (max-width: 560px) {
      .section-limit .section-form .section-form__wrapper {
        flex-direction: column; } }
  .section-limit .section-form .section-form__group {
    text-align: center; }
  .section-limit .section-form .section-form__send {
    margin: 0 auto; }
  @media (max-width: 560px) {
    .section-limit .section-form {
      min-width: unset; } }
.section-limit .section__content {
  display: flex;
  justify-content: center;
  gap: 90px; }
  @media (max-width: 1150px) {
    .section-limit .section__content {
      flex-direction: column;
      gap: 40px; } }
.section-raffle .section__content {
  display: flex;
  justify-content: center;
  gap: 40px; }
  .section-raffle .section__content img {
    object-fit: contain; }

.section-raffle .section-raffle__preview {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 20px;
  border-right: 1px solid var(--sep-color);
  padding-right: 40px; }
  .section-raffle .section-raffle__preview .section-raffle__preview-data {
    display: grid;
    grid-template-columns: 100px auto;
    gap: 10px; }
  .section-raffle .section-raffle__preview .section-raffle__preview-header {
    font-weight: 500;
    font-size: 20px; }
  .section-raffle .section-raffle__preview .section-raffle__preview-link {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-offset: 4px;
    width: fit-content; }
  .section-raffle .section-raffle__preview .section-raffle__preview-image {
    width: 400px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #c9c9c9; }
    .section-raffle .section-raffle__preview .section-raffle__preview-image:has(.empty) {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px; }

.section-raffle .section-form__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 20px; }
  .section-raffle .section-form__wrapper .section-form__group-field[type="file"] {
    cursor: pointer; }
  .section-raffle .section-form__wrapper .section-raffle__form-preview {
    width: 400px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #c9c9c9; }
    .section-raffle .section-form__wrapper .section-raffle__form-preview:not(:has(img)) {
      display: none; }

.section-raffle .section-form .section-form__send {
  margin: 0 auto; }

.section-transactions .section-transactions__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px; }
  .section-transactions .section-transactions__top .section__header {
    margin-bottom: 0; }

.section-transactions .section-transactions__headers {
  display: grid;
  grid-template-columns: 50px 100px repeat(4, 1fr);
  gap: 20px;
  background-color: #ebebeb;
  padding: 10px;
  margin: 0 -10px; }
  .section-transactions .section-transactions__headers span {
    font-weight: 600; }

html, body {
  height: 100%;
  font-family: "Inter", sans-serif; }

body {
  background-color: var(--body-color);
  color: var(--text-color); }
  body:has(.nav) {
    padding-top: 80px; }

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--viewport-width);
  min-width: var(--viewport-width-min); }

.field-hidden {
  display: none; }

.page-login {
  background-color: #fff;
  height: 100dvh; }
  .page-login__image {
    max-width: 800px; }
  .page-login__wrapper {
    display: flex;
    height: 100%; }
  .page-login .page-header {
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    text-align: center; }
  .page-login .page-subheader {
    font-weight: 300;
    font-size: 24px;
    line-height: 100%;
    text-align: center; }
  .page-login__form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    min-width: 400px; }
    .page-login__form .form-field {
      display: flex;
      flex-direction: column;
      row-gap: 5px; }
      .page-login__form .form-field__header {
        font-weight: 500;
        font-size: 20px;
        color: #000; }
      .page-login__form .form-field__input {
        padding: 10px 15px;
        border-radius: 20px;
        font-weight: 200;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0.04em;
        color: #000;
        box-shadow: inset 0 0 3px 2px rgba(217, 217, 217, 0.4);
        border: 1px solid #9c9c9c;
        width: 100%; }
    .page-login__form .remember__password {
      margin-top: -10px;
      font-weight: 200;
      font-size: 16px;
      line-height: 100%;
      letter-spacing: 0.04em;
      color: inherit; }
    .page-login__form-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1; }
    .page-login__form-submit {
      padding: 15px 20px;
      font-weight: 500;
      font-size: 20px;
      border-radius: 20px;
      box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
      background: var(--accent-color); }

.page-home {
  padding-top: 50px;
  padding-bottom: 50px; }
  .page-home .page-home__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }

.page-profile {
  padding-top: 50px;
  padding-bottom: 50px; }
  .page-profile .page-home__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  .page-profile .section__content {
    display: flex;
    gap: 20px;
    align-items: start; }
  .page-profile .profile__avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #d9d9d9; }
  .page-profile .profile__info {
    display: flex;
    flex-direction: column;
    flex: 1; }
    .page-profile .profile__info .profile__info-item {
      display: grid;
      grid-template-columns: 80px auto;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid #000; }
      .page-profile .profile__info .profile__info-item span:first-child {
        font-weight: 600; }

.page-transactions {
  padding-top: 50px;
  padding-bottom: 50px; }
  .page-transactions .page-transactions__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  .page-transactions .section__info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }

.transactions .empty {
  text-align: center;
  margin-top: 20px;
  font-size: 20px; }

.transaction {
  border-bottom: 1px solid #000;
  padding: 10px 0; }
  .transaction.--app-out {
    background-color: #f5fabd;
    margin: 0 -10px;
    padding: 10px 10px; }
  .transaction .transaction__info {
    display: grid;
    grid-template-columns: 50px 100px repeat(4, 1fr);
    gap: 20px; }
    .transaction .transaction__info .transaction__info-item {
      word-break: break-all; }

.page-users {
  padding-top: 50px;
  padding-bottom: 50px; }
  .page-users .page-users__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  .page-users .section-users .section-users__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px; }
    .page-users .section-users .section-users__top .section__header {
      margin-bottom: 0; }
  .page-users .section-users .section-users__headers {
    display: grid;
    grid-template-columns: 50px 100px repeat(4, 1fr);
    gap: 20px;
    background-color: #ebebeb;
    padding: 10px;
    margin: 0 -10px; }
    .page-users .section-users .section-users__headers span {
      font-weight: 600; }
  .page-users .transaction {
    border-bottom: 1px solid #000;
    padding: 10px 0; }
    .page-users .transaction .transaction__info {
      display: grid;
      grid-template-columns: 50px 100px repeat(4, 1fr);
      gap: 20px; }

.page-user {
  padding-top: 50px;
  padding-bottom: 50px; }
  .page-user .page-user__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  .page-user .section-user__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; }
    .page-user .section-user__top .section-user__controllers {
      display: flex;
      gap: 10px; }
      .page-user .section-user__top .section-user__controllers .section-user__controller {
        padding: 10px;
        font-size: 20px;
        border-radius: 20px; }
        .page-user .section-user__top .section-user__controllers .section-user__controller.--off {
          background-color: var(--color-warn); }
        .page-user .section-user__top .section-user__controllers .section-user__controller.--delete {
          background-color: var(--color-error); }
  .page-user .section-user__info {
    display: flex;
    flex-direction: column; }
    .page-user .section-user__info .section-user__info-item {
      display: grid;
      grid-template-columns: 110px auto;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid var(--sep-color);
      padding: 10px 0; }
      .page-user .section-user__info .section-user__info-item a {
        max-width: fit-content; }
      .page-user .section-user__info .section-user__info-item div {
        font-weight: 600; }
  .page-user .section-images .section__content {
    display: flex;
    gap: 20px;
    overflow: auto hidden;
    padding-bottom: 20px; }
  .page-user .section-images .section-user__image {
    max-width: 300px;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 2px 1px #898989;
    background-color: #898989; }
  .page-user .section-yandex .yandex-accounts {
    display: flex;
    gap: 10px;
    overflow: auto hidden;
    padding-bottom: 20px; }
    .page-user .section-yandex .yandex-accounts.selectable .section-user__info {
      background: #f2f2f2;
      padding: 10px; }
  .page-user .custom-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 20px; }
    .page-user .custom-radio input[type="radio"] {
      appearance: none;
      width: 20px;
      height: 20px;
      position: relative;
      border: 1px solid #000;
      cursor: inherit;
      border-radius: 50%; }
      .page-user .custom-radio input[type="radio"]::before {
        content: '';
        display: block;
        width: 15px;
        height: 15px;
        background-color: black;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        border-radius: 50%;
        transition: opacity 0.1s 0s ease; }
      .page-user .custom-radio input[type="radio"]:checked::before {
        opacity: 1; }
  .page-user .page-user__accept {
    display: block;
    font-size: 20px;
    background-color: var(--accept-color);
    padding: 20px;
    border-radius: 30px;
    justify-self: center;
    max-width: 300px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600; }
  .page-user a:hover {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-offset: 4px; }
  .page-user .section-transactions__headers {
    grid-template-columns: 50px repeat(5, 1fr); }
  .page-user .transactions .transaction .transaction__info {
    grid-template-columns: 50px repeat(5, 1fr); }

.page-requests {
  padding-top: 50px;
  padding-bottom: 50px; }
  .page-requests .page-requests__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  .page-requests .section-requests .section-requests__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px; }
    .page-requests .section-requests .section-requests__top .section__header {
      margin-bottom: 0; }
  .page-requests .section-requests .section-requests__headers {
    display: grid;
    grid-template-columns: 50px 100px repeat(5, 1fr);
    gap: 20px;
    background-color: #ebebeb;
    padding: 10px;
    margin: 0 -10px; }
    .page-requests .section-requests .section-requests__headers span {
      font-weight: 600; }
  .page-requests .transaction {
    border-bottom: 1px solid #000;
    padding: 10px 0; }
    .page-requests .transaction .transaction__info {
      display: grid;
      grid-template-columns: 50px 100px repeat(5, 1fr);
      align-items: center;
      gap: 20px; }

.page-general {
  padding-top: 50px;
  padding-bottom: 50px; }
  .page-general .page-general__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  .page-general .section-documents .section__content {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
    .page-general .section-documents .section__content .section-form {
      flex-direction: row;
      align-items: center;
      gap: 40px; }
      .page-general .section-documents .section__content .section-form .section-form__group {
        display: grid;
        grid-template-columns: 200px auto;
        align-items: center; }
        .page-general .section-documents .section__content .section-form .section-form__group span {
          font-weight: 600; }
      .page-general .section-documents .section__content .section-form .section-form__send {
        margin: 0; }
  .page-general .section-contacts .section__content {
    display: flex;
    flex-direction: column;
    row-gap: 40px; }

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