:root {
  /**
   * Базовые переменные
   */
  --saturation: 40%;
  --hue-primary: 260;
  --hs-primary: var(--hue-primary), var(--saturation);
  --hue-secondary: 280;
  --saturation-secondary: 66%;
  --hs-secondary: var(--hue-secondary), var(--saturation);
  /**
   * Базовые цвета
   */
  --color-b1: hsl(var(--hue-primary), 15%, 15%);
  --color-b2: hsl(var(--hue-primary), 20%, 20%);
  --color-b3: hsl(var(--hue-primary), 30%, 30%);
  --color-b4: hsl(var(--hue-primary), 50%, 50%);
  --color-b5: hsl(var(--hue-primary), 50%, 70%);
  --color-b6: hsl(var(--hue-primary), 55%, 88%);
  --color-b7: hsl(var(--hue-primary), 90%, 95%);
  --color-b8: hsl(var(--hue-primary), 100%, 100%);
  --color-primary: hsl(var(--hs-primary), 52%);
  --color-primary-hover: hsl(var(--hs-primary), 63%);
  --color-primary-active: hsl(var(--hs-primary), 41%);
  --color-secondary: hsl(var(--hs-secondary), 52%);
  --color-secondary-hover: hsl(var(--hs-secondary), 63%);
  --color-secondary-active: hsl(var(--hs-secondary), 41%);
  --color-title: var(--color-b1);
  --color-transparent: hsla(var(--hs-primary), 50%, .2);
  --color-transparent-accent: hsla(var(--hs-primary), 60%, .1);
  --color-transparent-hover: hsla(var(--hue-primary), 10%, 50%, .3);
  --color-transparent-active: hsla(var(--hue-primary), 10%, 50%, .4);
  --color-transparent-medium: hsla(var(--hue-primary), 25%, 25%, .5);
  --color-transparent-dark: hsla(var(--hue-primary), 10%, 10%, .7);
  /**
   * Базовые анимации
   */
  --animation-multiplier: 3;
  --animation-duration: calc(var(--animation-multiplier) * .375s);
  --animation-duration-fast: calc(var(--animation-multiplier) * .125s);
  --animation-duration-slow: calc(var(--animation-multiplier) * .5s);
  --animation-theme: var(--animation-duration-fast) color ease-in-out, var(--animation-duration-slow) background-color ease-in-out, var(--animation-duration-slow) border-color ease-in-out;
  /**
   * Шрифты
   */
  --font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-alt: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-size: 1rem;
  --line-height: 1.5;
  /* светлая/тёмная тема */
  --theme-fg: var(--color-b1);
  --theme-bg: var(--color-b8);
  --theme-bg-alt: var(--color-b5);
  --theme-bg-secondary: var(--color-b7);
  --theme-bg-secondary-semi-transparent: hsla(var(--hue-primary), 90%, 95%, .5);
  --theme-bg-secondary-semi-transparent2: hsla(var(--hue-primary), 90%, 95%, .9);
  --theme-border: var(--color-b6);
  --theme-border-focus: var(--color-b5);
  --theme-transparent: hsla(var(--hue-primary), 11%, 100%, 0);
  --theme-control: var(--color-primary);
  /* для кнопки */
  --color-danger: #ffbebe;
  --color-red: #c22f3d;
  --hue-red: 10;
  /* для свайпера */
  --swiper-navigation-color: var(--theme-border-focus);
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --theme-fg: var(--color-b6);
    --theme-bg: var(--color-b2);
    --theme-bg-alt: var(--color-b3);
    --theme-bg-secondary: var(--color-b1);
    --theme-bg-secondary-semi-transparent: hsla(var(--hue-primary), 15%, 15%, .3);
    --theme-bg-secondary-semi-transparent2: hsla(var(--hue-primary), 15%, 15%, .9);
    --theme-border: var(--color-b3);
    --theme-border-focus: var(--color-b4);
    --theme-transparent: hsla(var(--hue-primary), 11%, 20%, 0);
    --theme-control: var(--color-primary);
    /* для кнопки */
    --color-danger: #724848;
  }
  :root .body--light {
    --theme-fg: var(--color-b1);
    --theme-bg: var(--color-b8);
    --theme-bg-alt: var(--color-b5);
    --theme-bg-secondary: var(--color-b7);
    --theme-bg-secondary-semi-transparent: hsla(var(--hue-primary), 90%, 95%, .5);
    --theme-bg-secondary-semi-transparent2: hsla(var(--hue-primary), 90%, 95%, .9);
    --theme-border: var(--color-b6);
    --theme-border-focus: var(--color-b5);
    --theme-transparent: hsla(var(--hue-primary), 11%, 100%, 0);
    --theme-control: var(--color-primary);
    /* для кнопки */
    --color-danger: #ffbebe;
  }
}
:root .body--dark {
  --theme-fg: var(--color-b6);
  --theme-bg: var(--color-b2);
  --theme-bg-alt: var(--color-b3);
  --theme-bg-secondary: var(--color-b1);
  --theme-bg-secondary-semi-transparent: hsla(var(--hue-primary), 15%, 15%, .3);
  --theme-bg-secondary-semi-transparent2: hsla(var(--hue-primary), 15%, 15%, .9);
  --theme-border: var(--color-b3);
  --theme-border-focus: var(--color-b4);
  --theme-transparent: hsla(var(--hue-primary), 11%, 20%, 0);
  --theme-control: var(--color-primary);
  /* для кнопки */
  --color-danger: #724848;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  background-color: transparent;
}
a:hover, a:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}
a:hover svg, a:focus svg {
  fill: var(--color-primary-hover);
}
a:active {
  color: var(--color-primary-active);
}
a:active svg {
  fill: var(--color-primary-active);
}

svg {
  vertical-align: text-bottom;
  fill: currentcolor;
}

label {
  cursor: pointer;
}

input[type=number]:not(.num) {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

input[type=number]:not(.num)::-webkit-inner-spin-button,
input[type=number]:not(.num)::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

[hidden] {
  display: none;
}

.body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: 300;
  line-height: var(--line-height);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.body__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 320px;
  min-height: 100vh;
  color: var(--theme-fg);
  background-color: var(--theme-bg);
}

.breadcrumbs__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 320px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
}
@media (min-width: 576px) {
  .breadcrumbs__container {
    min-width: 576px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .breadcrumbs__container {
    min-width: 1024px;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 1264px) {
  .breadcrumbs__container {
    max-width: 1264px;
  }
}

.breadcrumbs__nav {
  font-size: 1rem;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style-type: none;
}
.breadcrumbs__list > li:not(:last-child) {
  margin-right: 10px;
}
.breadcrumbs__list > li:not(:last-child)::after {
  content: "/";
}

.breadcrumbs__link {
  margin-right: 10px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-family);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  color: white;
  background-color: var(--color-primary);
}
.btn:disabled {
  cursor: progress;
  background-color: var(--theme-border);
}
.btn > svg {
  margin-right: 0.7em;
  margin-left: -0.7em;
}
.btn > span + svg {
  margin-right: -4px;
  margin-left: 14px;
}
@media (min-width: 1264px) {
  .btn {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}
.btn:hover, .btn:focus, .btn:active {
  color: white;
}
.btn:hover {
  text-decoration: none;
  background-color: var(--color-primary-hover);
}
.btn:focus {
  outline: 3px solid var(--color-transparent-hover);
}
.btn:active {
  background-color: var(--color-primary-active);
}

.btn-secondary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-family);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  padding: 11px 29px 7px;
  color: var(--color-secondary);
  background-color: var(--theme-transparent);
  border: 0.25rem solid var(--color-secondary);
  border-radius: 1rem;
}
.btn-secondary:disabled {
  cursor: progress;
  background-color: var(--theme-border);
}
.btn-secondary > svg {
  margin-right: 0.7em;
  margin-left: -0.7em;
}
.btn-secondary > span + svg {
  margin-right: -4px;
  margin-left: 14px;
}
@media (min-width: 1264px) {
  .btn-secondary {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  color: var(--color-secondary);
}
.btn-secondary:hover {
  background-color: hsla(var(--hue-primary), 29%, 66%, 0.2);
}
.btn-secondary:active {
  background-color: hsla(var(--hue-primary), 29%, 66%, 0.3);
}

.tickets__item {
  padding: 0 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--theme-border-focus);
}
.tickets__item--reply {
  margin-right: 3rem;
  border: 1px solid var(--theme-border);
}
.tickets__item--not-my {
  margin-right: 0;
  margin-left: 3rem;
}
.tickets__item--floating-label {
  position: relative;
  padding-top: 1rem;
  margin-top: 2.5rem;
}
.tickets__item--floating-label > h2 {
  position: absolute;
  top: -2.5rem;
  left: 0.5rem;
  padding: 0.125rem 0.5rem;
  background-color: var(--theme-bg-alt);
}
.tickets__item--new {
  background-color: var(--theme-bg-alt);
}

.tickets__details {
  color: var(--theme-border-focus);
}
.tickets__details small {
  display: block;
}

.tickets__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.tickets__summary small {
  margin-left: auto;
}
.tickets__summary code {
  padding: 0.125rem 0.75rem;
  background-color: var(--theme-border);
  border-radius: 0.25rem;
}

.tickets__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-family);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  color: var(--color-secondary);
  background-color: var(--color-transparent);
}
.tickets__btn:disabled {
  cursor: progress;
  background-color: var(--theme-border);
}
.tickets__btn > svg {
  margin-right: 0.7em;
  margin-left: -0.7em;
}
.tickets__btn > span + svg {
  margin-right: -4px;
  margin-left: 14px;
}
@media (min-width: 1264px) {
  .tickets__btn {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}
.tickets__btn:hover, .tickets__btn:focus, .tickets__btn:active {
  color: var(--color-secondary);
}
.tickets__btn:hover {
  background-color: var(--theme-bg-secondary-semi-transparent);
}
.tickets__btn:active {
  background-color: var(--theme-bg-secondary-semi-transparent2);
}

.admin__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 320px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
}
@media (min-width: 576px) {
  .admin__container {
    min-width: 576px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .admin__container {
    min-width: 1024px;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 1264px) {
  .admin__container {
    max-width: 1264px;
  }
}

.admin__links {
  padding-left: 0;
  font-size: 1.5rem;
  list-style-type: none;
}
.admin__links svg {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  vertical-align: bottom;
}

.progress-bar2 {
  width: min(100svw - 2rem, 13rem);
  height: 1rem;
  overflow: hidden;
  cursor: pointer;
  background: #777;
  border-radius: 100vh;
}
.progress-bar2 > div,
.progress-bar2 > progress[value] {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#d9a800), to(#df5000));
  background: linear-gradient(90deg, #d9a800, #df5000);
  border-radius: inherit;
  -webkit-transition: -webkit-transform 300ms cubic-bezier(0.75, 0, 0.25, 1);
  transition: -webkit-transform 300ms cubic-bezier(0.75, 0, 0.25, 1);
  transition: transform 300ms cubic-bezier(0.75, 0, 0.25, 1);
  transition: transform 300ms cubic-bezier(0.75, 0, 0.25, 1), -webkit-transform 300ms cubic-bezier(0.75, 0, 0.25, 1);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.progress-bar2 > progress[value] {
  --color: yellow; /* the progress color */
  --background: indianred; /* the background color */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 200px;
  margin: 0 10px;
  border-radius: 10em;
  background: var(--background);
}

/*!
 * Toastify js 1.9.3
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 * Copyleft (C) 2020 JokerInteractive
 */
:root {
  --t-default: #bdbdbd;
  --t-success: #198754;
  --t-info: #0dcaf0;
  --t-warning: #ffc107;
  --t-danger: #dc3545;
  --tt-default: #a3a3a3;
  --tt-success: #156e44;
  --tt-info: #0bb4d6;
  --tt-warning: #e6ae07;
  --tt-danger: #c22f3d;
}

.toastify {
  position: fixed;
  z-index: 2147483647;
  display: inline-block;
  max-width: calc(50% - 20px);
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--t-default), var(--tt-default));
  border-radius: 2px;
  -webkit-box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
          box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.toastify.danger {
  background: linear-gradient(135deg, var(--t-danger), var(--tt-danger));
}

.toastify.warning {
  background: linear-gradient(135deg, var(--t-warning), var(--tt-warning));
}

.toastify.success {
  background: linear-gradient(135deg, var(--t-success), var(--tt-success));
}

.toastify.info {
  background: linear-gradient(135deg, var(--t-info), var(--tt-info));
}

.toastify.on {
  opacity: 1;
}

.toast-close {
  padding: 0 5px;
  opacity: 0.4;
}

.toastify-right {
  right: 15px;
}

.toastify-left {
  left: 15px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toastify-rounded {
  border-radius: 25px;
}

.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}

.toastify-center {
  right: 0;
  left: 0;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 360px) {
  .toastify-right,
  .toastify-left {
    right: 0;
    left: 0;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}
/*# sourceMappingURL=styles.min.css.map */
