@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --font: "Nunito", sans-serif;
  --bg: #F3F3F3;
  --base: #212529;
  --white: #FFFFFF;
  --primary: #2F8EE0;
  --hover: #1967A9;
  --red: #F24734;
  --red-hover: #DD2D19;
  --divider: #CED4DA;
  --azure12: #0A1832;
  --azure19: #102650;
  --gray44: #707070;
  --gray46: #6C757D;
  --gray50: #74788D;
  --gray93: #E9ECEF;
}

* {
  box-sizing: border-box;
  text-decoration: none;
  word-break: break-word;
}

*:hover,
*:focus {
  outline: 0;
}

body {
  background: var(--bg);
  font: 400 16px/1.4 var(--font);
  color: var(--base);
}

body::-webkit-scrollbar {
  width: 10px;
  height: 0;
  background: var(--bg);
}

body::-webkit-scrollbar-thumb {
  width: 10px;
  background: var(--primary);
  border-radius: 10px;
}

body.hidden {
  overflow: hidden;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg);
  }

  .notificationsList__scroll {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--white);
  }

  .chatMessage {
    scrollbar-width: thin;
    scrollbar-color: var(--gray50) var(--white);
  }
}

.overflowH {
  overflow: hidden;
}

a {
  color: var(--primary);
  transition: 0.25s;
}

button {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  font: 600 16px/1.375 var(--font);
  color: var(--base);
  cursor: pointer;
  transition: 0.25s;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

svg {
  transition: 0.25s;
}

strong {
  font-weight: 600;
}

h1,
.h1 {
  font: 700 28px/1.2 var(--font);
}

h2,
.h2 {
  font: 700 28px/1.2 var(--font);
}

h3,
.h3 {
  font: 700 24px/1.2 var(--font);
}

h4,
.h4 {
  font: 700 18px/1.2 var(--font);
}

h5,
.h5 {
  font: 700 16px/1.2 var(--font);
}

.text18 {
  font: 400 18px/1.4 var(--font);
}

.text14 {
  font: 400 14px/1.4 var(--font);
}

.textRed {
  color: var(--red);
}

.btn {
  max-width: 100%;
  min-height: 42px;
  background: var(--primary);
  border: none;
  border-radius: 6px;
  padding: 8px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font: 600 16px/1.375 var(--font);
  color: var(--white);
  cursor: pointer;
  transition: 0.25s;
}

.btn__text {
  max-width: 100%;
}

.btn__icon {
  flex-shrink: 0;
  width: 24px;
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.btn__icon img {
  width: 100%;
}

.btn__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.btn_full {
  width: 100%;
}

.btn_lg {
  min-height: 60px;
  padding: 12px 40px;
  font-size: 24px;
}

.btn_icon {
  padding-left: 16px;
  padding-right: 8px;
}

.btn_red {
  background: var(--red);
}

.btn_red .btn__icon svg {
  stroke: var(--white);
}

.btn_bor {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn_bor .btn__icon svg {
  fill: var(--primary);
}

.btn_redbor {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
}

.btn_redbor .btn__icon svg {
  fill: var(--red);
}

.btn_bg {
  background: var(--bg);
  color: var(--primary);
}

.btn_gray46 {
  background: var(--gray46);
}

input {
  width: 100%;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 6px;
  padding: 0 12px;
  font: 400 16px/1.25 var(--font);
  color: var(--base);
}

input::placeholder {
  font: 400 16px/1.25 var(--font);
  color: #999999;
  transition: 0.25s;
}

input:focus {
  border-color: var(--primary);
}

input[type=number] {
  -moz-appearance: textfield;
}

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

textarea {
  width: 100%;
  min-height: 116px;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 6px;
  padding: 8px 12px;
  font: 400 16px/1.25 var(--font);
  color: var(--base);
  resize: vertical;
}

textarea::placeholder {
  font: 400 16px/1.25 var(--font);
  color: #999999;
}

textarea:focus {
  border-color: var(--primary);
}

.select {
  width: 100%;
  height: 42px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 6px;
}

.select::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  width: 16px;
  height: 16px;
  background: url("../img/select-arrow.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.select select {
  cursor: pointer;
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  appearance: none;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  padding-right: 38px;
  font: 400 16px/1.25 var(--font);
  color: var(--base);
}

.select2 {
  position: relative;
}

.select2__field {
  width: 100%;
  height: 42px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 6px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  padding-right: 38px;
  font: 400 16px/1.25 var(--font);
  color: var(--base);
  cursor: pointer;
}

.select2__field::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  width: 16px;
  height: 16px;
  background: url("../img/select-arrow.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.select2__popup {
  display: none;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 6px;
  box-shadow: 0 6px 12px -3px rgba(0, 0, 0, 0.1);
  padding: 4px 0;
}

.select2__search {
  padding: 0 12px;
  margin-bottom: 4px;
}

.select2__search input {
  height: 30px;
  border-color: var(--gray46);
  font-size: 15px;
}

.select2__list {
  max-height: 135px;
  overflow: auto;
}

.select2__option {
  padding: 0 12px;
  font: 400 15px/1.5 var(--font);
  cursor: pointer;
}

.select2__option.active {
  background: rgba(47, 142, 224, 0.09);
}

.select2__empty {
  padding: 0 12px;
  padding-top: 4px;
  font: 600 15px/1.5 var(--font);
}

.select2.active .select2__field::after {
  transform: scale(1, -1) translate(0, 50%);
}

.select2.active .select2__popup {
  display: block;
}

.singleCheckbox {
  cursor: pointer;
}

.singleCheckbox__input {
  display: none;
}

.singleCheckbox__input:checked + .singleCheckbox__label {
  border-color: var(--primary);
}

.singleCheckbox__input:checked + .singleCheckbox__label::before {
  display: block;
}

.singleCheckbox__label {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #C2C2C2;
  border-radius: 6px;
  transition: 0.25s;
}

.singleCheckbox__label::before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/checked.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.singleCheckbox__label:hover {
  border-color: var(--primary);
}

.crumbs {
  padding: 0 12px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 4px;
  font: 400 14px/1.2 var(--font);
  color: var(--primary);
}

.crumbs__item {
  color: var(--azure19);
  position: relative;
}

.crumbs__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 9px);
  transform: rotate(45deg) translate(0, -75%);
  width: 4px;
  height: 4px;
  background: var(--primary);
}

.pageHead {
  padding: 0 12px;
  margin-bottom: 16px;
}

.pageHead__title {
  margin-bottom: 8px;
}

.pageHead__title:last-child {
  margin-bottom: 0;
}

.pageHead__subitems {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.pageHead__subitems:last-child {
  margin-bottom: 0;
}

.pageHead__subitem {
  font: 400 16px/1.5 var(--font);
  color: var(--base);
}

.pageHead__subitem a {
  color: var(--primary);
}

.pageHead__subtitleWrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 12px;
}

.pageHeadInfo {
  padding: 4px 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 6px;
  font: 700 18px/1.2 var(--font);
  color: var(--azure19);
  margin-bottom: 8px;
}

.pageHeadInfo:last-child {
  margin-bottom: 0;
}

.pageHeadInfo__item {
  padding-right: 10px;
  position: relative;
}

.pageHeadInfo__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 2px;
  height: 16px;
  background: var(--azure19);
  border-radius: 8px;
}

.pageHeadInfo__item:last-child::after {
  display: none;
}

.pageHeadSubtitle {
  display: flex;
  align-items: center;
  font: 400 15px/1.2 var(--font);
}

.pageHeadSubtitle__text {
  max-width: 100%;
  font-weight: 700;
}

.pageHeadSubtitle__digit {
  flex-shrink: 0;
  color: var(--gray44);
  margin-left: 8px;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app__content {
  padding: 24px 12px;
  padding-bottom: 32px;
}

.sidebar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: radial-gradient(70% 169% at 50% -20%, #1967A9 0%, #0A1832 100%);
}

.sidebar__logo {
  width: 100%;
  height: 70px;
  background: radial-gradient(70% 169% at 50% -20%, #1967A9 0%, #0A1832 100%);
  display: flex;
  align-items: center;
  padding: 8px 24px;
  margin-bottom: 10px;
  transition: none;
}

.sidebar__logo .full {
  width: 92px;
}

.sidebar__logo .icon {
  display: none;
  width: 28px;
}

.sidebar__title {
  padding: 12px 20px;
  font: 600 14px/1.5 var(--font);
  color: #F3F3F3;
}

.menuItem {
  width: 100%;
  min-height: 50px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  font: 400 16px/1.5 var(--font);
  transition: none;
}

.menuItem__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-right: 15px;
  transform: translate(0, -2px);
}

.menuItem__icon svg {
  width: 100%;
  height: 100%;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill 0.25s;
}

.menuItem__text {
  width: 100%;
  color: var(--white);
}

.menuItem.active {
  background: rgba(10, 24, 50, 0.3);
  font-weight: 700;
}

.menuItem.active .menuItem__icon svg {
  fill: var(--white);
}

.header {
  position: sticky;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 1px 0 5px rgba(0, 0, 0, 0.03);
  padding-right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__left {
  display: flex;
  align-items: center;
}

.header__mobLogo {
  display: none;
  width: 72px;
  height: 70px;
  background: radial-gradient(70.71% 169.71% at 50% -20%, #1967A9 0%, #0A1832 100%);
  text-align: center;
}

.header__mobLogo img {
  width: 28px;
}

.header__burger {
  width: 56px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header__burger img {
  transition: 0.25s;
}

.header__title {
  margin-left: 8px;
}

.header__right {
  display: flex;
  align-items: center;
}

.fullscreen {
  width: 48px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 8px;
}

.fullscreen img {
  width: 24px;
  transition: 0.25s;
}

.fullscreen__hide {
  display: none;
}

.fullscreen:hover img {
  transform: scale(1.15);
}

.fullscreen.active .fullscreen__show {
  display: none;
}

.fullscreen.active .fullscreen__hide {
  display: block;
}

.notifications {
  position: relative;
  margin-right: 8px;
}

.notifications.active .notificationsIcon {
  background: rgba(10, 24, 50, 0.1);
}

.notifications.active .notificationsList {
  display: block;
}

.notificationsIcon {
  width: 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.notificationsIcon__icon {
  width: 24px;
  transition: 0.25s;
}

.notificationsIcon__digit {
  position: absolute;
  top: 18px;
  right: 0;
  width: 20px;
  background: var(--red);
  border-radius: 40px;
  padding: 2px 0;
  text-align: center;
  font: 600 10px/1 var(--font);
  color: var(--white);
}

.notificationsList {
  display: none;
  position: absolute;
  z-index: 61;
  top: 100%;
  right: 0;
  width: 265px;
  background: var(--white);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 6px 12px -3px rgba(0, 0, 0, 0.1);
  padding-top: 8px;
}

.notificationsList__title {
  padding: 0 12px;
  font: 700 14px/1.2 var(--font);
  color: var(--azure19);
  margin-bottom: 8px;
}

.notificationsList__scroll {
  max-height: calc(100vh - 130px);
  overflow: auto;
}

.notificationsList__scroll::-webkit-scrollbar {
  width: 4px;
  height: 0;
  background: var(--white);
}

.notificationsList__scroll::-webkit-scrollbar-thumb {
  width: 4px;
  background: var(--primary);
  border-radius: 4px;
}

.notificationsList__list {
  padding-left: 12px;
  padding-right: 8px;
}

.notificationsList__btn {
  padding: 8px 12px;
}

.notificationsList__btn .btn {
  width: 100%;
  min-height: 37px;
  font-size: 14px;
}

.notificationsItem {
  display: none;
  border-top: 1px solid var(--divider);
  padding: 8px 0;
  cursor: default;
}

.notificationsItem:first-child {
  border-top: none;
  display: flex;
  align-items: flex-start;
}

.notificationsItem.active {
  display: flex;
  align-items: flex-start;
}

.notificationsItem__icon {
  flex-shrink: 0;
  width: 24px;
  margin-right: 8px;
}

.notificationsItem__content {
  width: 100%;
}

.notificationsItem__date {
  font: 700 14px/1.2 var(--font);
  color: #000;
  margin-bottom: 3px;
}

.notificationsItem__text {
  font: 400 12px/1.2 var(--font);
  color: var(--gray44);
}

.headerAccount {
  position: relative;
}

.headerAccount__icon {
  width: 60px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.headerAccount__icon img {
  transition: 0.25s;
}

.headerAccount__list {
  display: none;
  position: absolute;
  z-index: 61;
  top: 100%;
  right: 0;
  width: 160px;
  background: #FBFBFB;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 12px -3px rgba(0, 0, 0, 0.1);
}

.headerAccount.active .headerAccount__icon {
  background: rgba(10, 24, 50, 0.1);
}

.headerAccount.active .headerAccount__list {
  display: block;
}

.headerAccountItem {
  width: 100%;
  min-height: 40px;
  border-bottom: 1px solid #DEDEE0;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  font: 400 15px/1.2 var(--font);
  color: var(--azure19);
}

.headerAccountItem:last-child {
  border-bottom: none;
}

.headerAccountItem__text {
  width: 100%;
}

.headerAccountItem__icon {
  flex-shrink: 0;
  width: 16px;
  margin-left: 8px;
  transition: 0.25s;
}

.headerAccountItem.logout {
  font-weight: 700;
  font-size: 16px;
}

.headerAccountItem.logout .headerAccountItem__icon {
  width: 20px;
}

.footer {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
  padding-top: 32px;
  background: var(--white);
  padding: 20px 12px;
  text-align: center;
  font: 400 14px/1.4 var(--font);
  color: var(--gray50);
}

.footer a {
  color: var(--gray50);
  text-decoration: underline;
}

/* Авторизация */

.authorization {
  max-width: 450px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin: 0 auto;
}

.authorization__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}

.authorization__logo {
  width: 137px;
  margin-bottom: 40px;
}

.authorization__title {
  color: var(--gray44);
  margin-bottom: 8px;
}

.authorization__title:last-child {
  margin-bottom: 0;
}

.authorization__subtitle {
  color: var(--gray44);
}

.authorization__inputs {
  margin-bottom: 24px;
}

.authorization__submit {
  display: flex;
  justify-content: flex-end;
}

.authorization__submit .btn {
  min-width: 140px;
}

.authorizationInput {
  margin-bottom: 20px;
}

.authorizationInput:last-child {
  margin-bottom: 0;
}

.authorizationInput__label {
  font: 600 14px/1.5 var(--font);
  color: #000;
  margin-bottom: 6px;
}

/* Форма поиска мероприятий */

.eventsSearch {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 24px;
}

.eventsSearch__block {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
}

.eventsSearch__submit {
  flex-shrink: 0;
  margin-left: 24px;
}

.eventsSearchString {
  width: 100%;
  position: relative;
}

.eventsSearchString__icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translate(0, -50%);
  width: 45px;
}

.eventsSearchString__input {
  height: 60px;
  padding-left: 73px;
  font-size: 24px;
}

.eventsSearchString__input::placeholder {
  font-size: 24px;
}

.eventsSearchDate {
  width: 100%;
  border: 1px solid var(--divider);
  border-radius: 4px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.eventsSearchDate__input {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 24px;
}

.eventsSearchDate__input::placeholder {
  font-size: 24px;
}

.eventsSearchDate__icon {
  flex-shrink: 0;
  width: 52px;
  height: 60px;
  background: var(--bg);
  border-left: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
}

.eventsSearchDate:has(.eventsSearchDate__input:focus) {
  border-color: var(--primary);
}

.eventsSearch2 {
  padding: 0 12px;
  margin-bottom: 24px;
}

.eventsSearch2__wrap {
  position: relative;
}

.eventsSearch2__icon {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translate(0, -50%);
  width: 24px;
}

.eventsSearch2__input {
  padding-left: 40px;
  border-radius: 60px;
}

/* Билетные предложения */

.venues {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.venues__title {
  margin-bottom: 16px;
}

.venues__list {
  border: 2px solid var(--gray93);
  border-radius: 4px;
}

.venue {
  border-bottom: 2px solid var(--gray93);
}

.venue:last-child {
  border-bottom: none;
}

.venue__head {
  min-height: 54px;
  padding: 12px 20px;
  padding-right: 48px;
  display: flex;
  align-items: center;
  font: 600 18px/1.375 var(--font);
  position: relative;
  cursor: pointer;
  transition: 0.25s;
}

.venue__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background: url("../img/venue-item-arrow.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.venue__scenes {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  font: 400 16px/1.5 var(--font);
}

.venue__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.venue__scene {
  color: var(--base);
}

.venue.active .venue__head {
  background: rgba(242, 71, 52, 0.1);
  color: var(--red);
}

.venue.active .venue__head::after {
  transform: scale(1, -1) translate(0, 50%);
}

/* Список мероприятий */

.events {
  padding: 0 12px;
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(5, 1fr);
}

.eventsItem {
  background: var(--white);
  border: 1px solid var(--primary);
  border-radius: 15px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}

.eventsItem__head {
  padding: 20px;
  padding-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.eventsItem__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 2px;
  background: var(--gray93);
  border-radius: 15px;
}

.eventsItem__date {
  font: 800 20px/1.4 var(--font);
  color: var(--primary);
  margin-bottom: 4px;
}

.eventsItem__date:last-child {
  margin-bottom: 0;
}

.eventsItem__day {
  background: var(--primary);
  border-radius: 30px;
  padding: 0 14px;
  font: 600 14px/1.5 var(--font);
  color: var(--white);
}

.eventsItem__title {
  display: block;
  padding: 12px 20px;
  padding-bottom: 24px;
  font: 700 22px/1.2 var(--font);
  color: var(--azure12);
}

.eventsItem__title:hover {
  color: var(--azure12);
}

.eventsItem__bottom {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eventsItemBtn {
  display: flex;
  align-items: center;
  font: 400 14px/1.2 var(--font);
  color: var(--azure12);
}

.eventsItemBtn__icon {
  flex-shrink: 0;
  width: 24px;
  margin-right: 8px;
}

/* Редактирование профиля */

.accountForm {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 40px 24px;
  margin: 0 12px;
}

.accountForm__fields {
  margin-bottom: 24px;
}

.accountForm__submit {
  display: flex;
  justify-content: flex-end;
}

.accountForm__submit .btn {
  min-width: 140px;
}

.accountFormField {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.accountFormField:last-child {
  margin-bottom: 0;
}

.accountFormField__title {
  flex-shrink: 0;
  width: 180px;
  padding-right: 16px;
  font: 700 18px/1.2 var(--font);
}

.accountFormField__input {
  width: 100%;
}

.accountFormField__input input {
  font-size: 18px;
}

.accountFormField__input input::placeholder {
  font-size: 18px;
}

/* Форма редактирования записи */

.editForm {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 24px;
  padding-bottom: 40px;
  margin: 0 12px;
}

.editForm__groups {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 24px;
}

.editForm__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.editForm__buttons .btn {
  min-width: 140px;
}

.editFormField {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.editFormField:last-child {
  margin-bottom: 0;
}

.editFormField__title {
  flex-shrink: 0;
  width: 194px;
  padding-right: 16px;
  font: 700 18px/1.2 var(--font);
}

.editFormField__input {
  width: 100%;
}

.editFormField__input > input {
  font-size: 18px;
}

.editFormField__input > input::placeholder {
  font-size: 18px;
}

.editFormField__input .select select {
  font-size: 18px;
}

.editFormSwitcher {
  display: flex;
  align-items: center;
  padding-right: 12px;
  cursor: pointer;
  margin-bottom: 24px;
}

.editFormSwitcher:last-child {
  margin-bottom: 0;
}

.editFormSwitcher__input {
  display: none;
}

.editFormSwitcher__title {
  width: 100%;
  font: 700 18px/1.2 var(--font);
}

.editFormSwitcher__btn {
  flex-shrink: 0;
  width: 56px;
  height: 24px;
  background: #CED4DA;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  transition: 0.25s;
  margin-left: 12px;
}

.editFormSwitcher__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.25s;
}

.editFormSwitcher__btn::after {
  content: "Нет";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translate(0, -50%);
  font: 500 12px/1 var(--font);
  color: var(--azure12);
  transition: 0.25s;
}

.editFormSwitcher__btn:has(.editFormSwitcher__input:checked) {
  background: #4BCE9E;
}

.editFormSwitcher__btn:has(.editFormSwitcher__input:checked)::before {
  left: 33px;
}

.editFormSwitcher__btn:has(.editFormSwitcher__input:checked)::after {
  content: "Да";
  right: 29px;
}

/* ТАБЛИЦЫ */

/* Кнопка в таблице */

.tableBtn {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Опции в таблице */

.tableOptions {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tableOptions__item {
  min-height: 20px;
  background: var(--white);
  border: 1px solid var(--gray44);
  border-radius: 100px;
  padding: 2px 6px;
  display: inline-flex;
  align-items: center;
  font: 600 12px/1 var(--font);
}

/* Продавец */

.tableSeller {
  width: 36px;
  position: relative;
}

.tableSeller__popup {
  display: none;
  position: absolute;
  bottom: 0;
  right: calc(100% + 11px);
  width: auto;
  white-space: nowrap;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 4px 2px 8px -2px rgba(0, 0, 0, 0.15);
  padding: 8px 16px;
}

.tableSeller__popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 12px;
  height: 100%;
  background: transparent;
}

.tableSeller__popup::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 100%;
  border: 7px solid transparent;
  border-left-color: var(--white);
}

.tableSeller__name {
  font: 700 14px/1.2 var(--font);
  color: var(--azure19);
  margin-bottom: 4px;
}

.tableSeller__text {
  font: 400 12px/1.2 var(--font);
}

.tableSeller:hover .tableSeller__popup {
  display: block;
}

.tableSeller_active .tableSeller__btn::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 13px;
  height: 13px;
  background: #7AEE7E;
  border-radius: 50%;
  animation: tableSellerActive 2s linear infinite;
}

@keyframes tableSellerActive {
  0%, 30%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  15% {
    transform: scale(0.5);
    opacity: 0;
  }
}

/* Кнопка раскрытия подробностей */

.tableToggleBtn {
  position: relative;
}

.tableToggleBtn__icon {
  display: block;
  width: 28px;
  height: 28px;
}

.tableToggleBtn__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--primary);
}

.tableToggleBtn__icon svg use {
  width: 100%;
  height: 100%;
}

.tableToggleBtn__icon.minus {
  display: none;
}

.tableToggleBtn__digit {
  position: absolute;
  top: -9px;
  right: -7px;
  width: 18px;
  height: 18px;
  background: #34C759;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font: 600 12px/1 var(--font);
  color: var(--white);
}

/* Инпут в таблице */

.tableInput {
  height: 36px;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  padding: 0;
  transition: 0.15s;
}

/* Кнопки "Редактировать" и "Удалить" */

.tableControls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tableControlsBtn {
  width: 24px;
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 16px;
}

.tableControlsBtn:last-child {
  margin-right: 0;
}

.tableControlsBtn__icon {
  width: 100%;
}

.tableControlsBtn__popup {
  display: none;
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  transform: translate(0, -50%);
  white-space: nowrap;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 4px 2px 8px -2px rgba(0, 0, 0, 0.25);
  padding: 8px;
  font: 600 14px/1 var(--font);
  color: #585858;
}

.tableControlsBtn__popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 11px;
  height: 100%;
  background: transparent;
}

.tableControlsBtn__popup::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(0, -50%);
  border: 6px solid transparent;
  border-left-color: var(--white);
}

/* Иконка и кнопка "Информация" */

.tableInfoIcon {
  width: 24px;
  display: flex;
  align-items: center;
  transition: 0.25s;
  cursor: pointer;
}

.tableDropdownInfoBtn {
  min-height: 32px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 4px 6px;
  padding-left: 16px;
  font: 600 12px/1.2 var(--font);
  color: var(--primary);
}

.tableDropdownInfoBtn__text {
  max-width: 100%;
}

.tableDropdownInfoBtn__icon {
  flex-shrink: 0;
  width: 20px;
  margin-left: 8px;
}

/* Комментарий в таблице */

.tableComment {
  background: var(--white);
  border-radius: 20px;
  padding: 8px 16px;
  font: 400 14px/1.5 var(--font);
}

/* Общие стили таблицы */

.table {
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 2px;
  overflow: auto;
}

.table::-webkit-scrollbar {
  height: 8px;
  background: var(--white);
}

.table::-webkit-scrollbar-thumb {
  height: 8px;
  background: var(--divider);
  border-radius: 8px;
}

.table__inner {
  min-width: 1172px;
  width: 100%;
  border: 1px solid var(--gray93);
  border-radius: 8px;
  overflow: hidden;
}

.table__head {
  min-height: 42px;
  background: var(--gray93);
  padding: 8px 0;
  display: flex;
  align-items: center;
  font: 700 16px/1.125 var(--font);
}

.table__col {
  padding: 0 12px;
}

.tableRow {
  border-bottom: 1px solid var(--gray93);
}

.tableRow:last-child {
  border-bottom: none;
}

.tableRow__wrap {
  min-height: 60px;
  padding: 12px 0;
  display: flex;
  align-items: center;
}

.tableRow__dropdown {
  display: none;
  background: var(--bg);
  padding: 8px;
  position: relative;
}

.tableRow.opened .tableToggleBtn__icon.plus {
  display: none;
}

.tableRow.opened .tableToggleBtn__icon.minus {
  display: block;
}

.tableRowHead {
  display: none;
  background: #E9ECEF;
  padding: 4px 0;
  font: 600 11px/1 var(--font);
}

.tableRowHead__col {
  padding: 0 10px;
}

.tableDropdownRow {
  padding: 8px;
  padding-left: 16px;
  display: flex;
  align-items: flex-start;
  font: 400 14px/1.4 var(--font);
}

.tableDropdownRow.hiddenOnDesktop {
  display: none;
}

.tableDropdownRow__title {
  flex-shrink: 0;
  width: 124px;
  padding-right: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.tableDropdownRow__content {
  width: 100%;
}

.tableDropdownRow.greenCircle {
  position: relative;
}

.tableDropdownRow.greenCircle::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 9px;
  height: 9px;
  background: #7AEE7E;
  border-radius: 50%;
  animation: tableSellerActive 2s linear infinite;
}

.tableDropdownRowSeller__name {
  font-weight: 700;
  margin-bottom: 8px;
}

.tableDropdownRowSeller__text br {
  display: none;
}

.tableDropdownButtons {
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tableDropdownButtons.end,
.tableDropdownButtons.desktopEnd {
  justify-content: flex-end;
}

.tableDropdownButtons__close {
  width: 100px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 14px/1.2 var(--font);
  color: var(--red);
}

.tableDropdownDelete {
  min-height: 32px;
  display: none;
  padding: 4px 8px;
  font: 600 12px/1.2 var(--font);
  color: var(--gray46);
}

.tableDropdownDelete__icon {
  flex-shrink: 0;
  width: 24px;
  margin-right: 8px;
}

.tableDropdownDelete__text {
  max-width: 100%;
}

/* Стили таблицы №1 (Оформление заказа) */

.table1 .table__head .table__col:first-child {
  width: 4.9488054608%;
}

.table1 .table__head .table__col:nth-child(2) {
  width: 18.3447098976%;
}

.table1 .table__head .table__col:nth-child(3) {
  width: 5.1194539249%;
}

.table1 .table__head .table__col:nth-child(4) {
  width: 15.5290102389%;
}

.table1 .table__head .table__col:nth-child(5) {
  width: 9.0443686007%;
}

.table1 .table__head .table__col:nth-child(6) {
  width: 9.2150170648%;
}

.table1 .table__head .table__col:nth-child(7) {
  width: 20.9044368601%;
}

.table1 .table__head .table__col:nth-child(8) {
  width: 8.7883959044%;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.table1 .table__head .table__col:nth-child(9) {
  width: 8.1058020478%;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.table1 .tableRow .table__col:first-child {
  width: 4.9488054608%;
  font-weight: 700;
  white-space: nowrap;
}

.table1 .tableRow .table__col:nth-child(2) {
  width: 18.3447098976%;
}

.table1 .tableRow .table__col:nth-child(3) {
  width: 5.1194539249%;
}

.table1 .tableRow .table__col:nth-child(4) {
  width: 15.5290102389%;
}

.table1 .tableRow .table__col:nth-child(5) {
  width: 9.0443686007%;
}

.table1 .tableRow .table__col:nth-child(6) {
  width: 9.2150170648%;
}

.table1 .tableRow .table__col:nth-child(7) {
  width: 20.9044368601%;
}

.table1 .tableRow .table__col:nth-child(8) {
  width: 8.7883959044%;
  display: flex;
  justify-content: center;
}

.table1 .tableRow .table__col:nth-child(9) {
  display: none;
  flex-shrink: 0;
  width: 45px;
  padding: 0;
}

.table1 .tableRow .table__col:nth-child(10) {
  width: 8.1058020478%;
  display: flex;
  justify-content: center;
}

.table1 .tableRowHead__col:first-child {
  width: 100%;
}

.table1 .tableRowHead__col:nth-child(2) {
  flex-shrink: 0;
  width: 50px;
}

.table1 .tableRowHead__col:nth-child(3) {
  flex-shrink: 0;
  width: 106px;
}

.table1 .tableRowHead__col:nth-child(4) {
  flex-shrink: 0;
  width: 111px;
}

.table1 .tableRowHead__col:nth-child(5) {
  flex-shrink: 0;
  width: 212px;
}

.table1 .tableRowHead__col:nth-child(6) {
  display: none;
  flex-shrink: 0;
  width: 116px;
  padding-left: 0;
  text-align: right;
  font-size: 14px;
}

.table1 .tableRowHead__col:nth-child(6) strong {
  font-weight: 700;
}

/* Стили таблицы №2 (Мои билеты) */

.table2 .table__head .table__col:first-child {
  width: 17.4914675768%;
}

.table2 .table__head .table__col:nth-child(2) {
  width: 4.8634812287%;
}

.table2 .table__head .table__col:nth-child(3) {
  width: 17.4914675768%;
}

.table2 .table__head .table__col:nth-child(4) {
  width: 12.2866894198%;
}

.table2 .table__head .table__col:nth-child(5) {
  width: 12.2866894198%;
}

.table2 .table__head .table__col:nth-child(6) {
  width: 20.0511945392%;
}

.table2 .table__head .table__col:nth-child(7) {
  width: 8.7030716724%;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.table2 .table__head .table__col:nth-child(8) {
  width: 6.8259385666%;
}

.table2 .tableRow .table__col:first-child {
  width: 17.4914675768%;
}

.table2 .tableRow .table__col:nth-child(2) {
  width: 4.8634812287%;
}

.table2 .tableRow .table__col:nth-child(3) {
  width: 17.4914675768%;
}

.table2 .tableRow .table__col:nth-child(4) {
  width: 12.2866894198%;
}

.table2 .tableRow .table__col:nth-child(5) {
  width: 12.2866894198%;
}

.table2 .tableRow .table__col:nth-child(6) {
  width: 20.0511945392%;
}

.table2 .tableRow .table__col:nth-child(7) {
  width: 8.7030716724%;
  display: flex;
  justify-content: center;
}

.table2 .tableRow .table__col:nth-child(8) {
  display: none;
  flex-shrink: 0;
  width: 45px;
  padding: 0;
}

.table2 .tableRow .table__col:nth-child(9) {
  width: 6.8259385666%;
  padding: 0;
}

.table2 .tableRowHead__col:first-child {
  width: 100%;
}

.table2 .tableRowHead__col:nth-child(2) {
  flex-shrink: 0;
  width: 50px;
}

.table2 .tableRowHead__col:nth-child(3) {
  flex-shrink: 0;
  width: 106px;
}

.table2 .tableRowHead__col:nth-child(4) {
  flex-shrink: 0;
  width: 100px;
}

.table2 .tableRowHead__col:nth-child(5) {
  flex-shrink: 0;
  width: 225px;
}

.table2 .tableRowHead__col:nth-child(6) {
  display: none;
  flex-shrink: 0;
  width: 116px;
  padding-left: 0;
  text-align: right;
  font-size: 14px;
}

.table2 .tableRowHead__col:nth-child(6) strong {
  font-weight: 700;
}

/* Таблица №3 (мои покупки) */

.table3 .table__head .table__col:first-child {
  width: 3.4129692833%;
}

.table3 .table__head .table__col:nth-child(2) {
  width: 15.8703071672%;
}

.table3 .table__head .table__col:nth-child(3) {
  width: 13.6518771331%;
}

.table3 .table__head .table__col:nth-child(4) {
  width: 10.3242320819%;
}

.table3 .table__head .table__col:nth-child(5) {
  width: 10.2389078498%;
}

.table3 .table__head .table__col:nth-child(6) {
  width: 4.6075085324%;
  padding-right: 0;
  white-space: nowrap;
}

.table3 .table__head .table__col:nth-child(7) {
  width: 7.5085324232%;
  padding-right: 0;
}

.table3 .table__head .table__col:nth-child(8) {
  width: 12.2866894198%;
}

.table3 .table__head .table__col:nth-child(9) {
  width: 9.9829351536%;
}

.table3 .table__head .table__col:nth-child(10) {
  width: 8.7030716724%;
  white-space: nowrap;
  text-align: center;
}

.table3 .table__head .table__col:nth-child(11) {
  width: 3.4129692833%;
}

.table3 .tableRow .table__col:first-child {
  width: 3.4129692833%;
  padding: 0;
  display: flex;
  justify-content: center;
}

.table3 .tableRow .table__col:nth-child(2) {
  width: 15.8703071672%;
}

.table3 .tableRow .table__col:nth-child(3) {
  width: 13.6518771331%;
}

.table3 .tableRow .table__col:nth-child(4) {
  width: 10.3242320819%;
}

.table3 .tableRow .table__col:nth-child(5) {
  width: 10.2389078498%;
}

.table3 .tableRow .table__col:nth-child(6) {
  width: 4.6075085324%;
}

.table3 .tableRow .table__col:nth-child(7) {
  width: 7.5085324232%;
}

.table3 .tableRow .table__col:nth-child(8) {
  width: 12.2866894198%;
}

.table3 .tableRow .table__col:nth-child(9) {
  width: 6.3993174061%;
}

.table3 .tableRow .table__col:nth-child(10) {
  width: 3.5836177474%;
  padding: 0;
  display: flex;
  justify-content: center;
}

.table3 .tableRow .table__col:nth-child(11) {
  width: 8.7030716724%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.table3 .tableRow .table__col:nth-child(12) {
  width: 3.4129692833%;
  padding: 0;
  display: flex;
  justify-content: center;
}

.table3 .tableRowHead__col:first-child {
  width: 100%;
}

.table3 .tableRowHead__col:nth-child(2) {
  flex-shrink: 0;
  width: 50px;
}

.table3 .tableRowHead__col:nth-child(3) {
  flex-shrink: 0;
  width: 106px;
}

.table3 .tableRowHead__col:nth-child(4) {
  flex-shrink: 0;
  width: 111px;
}

.table3 .tableRowHead__col:nth-child(5) {
  flex-shrink: 0;
  width: 215px;
}

.table3 .tableRowHead__col:nth-child(6) {
  display: none;
  flex-shrink: 0;
  width: 116px;
  padding-left: 0;
  text-align: right;
  font-size: 14px;
}

.table3 .tableRowHead__col:nth-child(6) strong {
  font-weight: 700;
}

.table3 .tableDropdownButtons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  padding: 0;
}

.table3 .tableDropdownInfoBtn {
  display: none;
}

.table3RowHead {
  display: none;
  padding: 8px;
  padding-right: 0;
  padding-bottom: 12px;
}

.table3RowHead__left {
  width: 100%;
  font: 700 18px/1.2 var(--font);
}

.table3RowHead__title {
  color: var(--primary);
  margin-bottom: 4px;
}

.table3RowHead__title:last-child {
  margin-bottom: 0;
}

.table3RowHead__subtitle {
  font-size: 14px;
}

.table3RowHead__right {
  flex-shrink: 0;
  margin-left: 8px;
  display: flex;
  align-items: center;
}

.table3RowHead__date {
  width: 116px;
  padding-right: 4px;
  font: 500 14px/1.3 var(--font);
}

.table3RowHead__checkbox {
  width: 40px;
  display: flex;
  justify-content: center;
}

/* Статистика */

.stat {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.statBlock {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.statBlock__title {
  font: 700 16px/1.2 var(--font);
  margin-bottom: 24px;
}

.statBlock__wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.statBlock__graph {
  display: flex;
  align-items: center;
  justify-content: center;
}

.statBlock__graph svg {
  max-width: 100%;
}

.statBlock__graph text {
  font-family: var(--font) !important;
  fill: #ADB5BD !important;
}

.statBlock__graph text:last-child {
  font-weight: 400 !important;
  font-size: 26px !important;
}

.statBlockItem {
  width: 50%;
  text-align: center;
}

.statBlockItem__title {
  font: 700 18px/1.2 var(--font);
  margin-bottom: 8px;
}

.statBlockItem__subtitle {
  font: 400 14px/1.6 var(--font);
  color: var(--gray44);
}

/* Мои покупки */

.ordersHead {
  min-height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ordersHead__tabs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ordersHeadTab {
  background: var(--bg);
  border: 1px solid var(--gray44);
  border-radius: 30px;
  padding: 6px 8px;
  padding-left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 600 14px/1.5 var(--font);
  color: var(--gray44);
}

.ordersHeadTab__text {
  max-width: 100%;
}

.ordersHeadTab__digit {
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 100px;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1;
  color: var(--white);
  margin-left: 8px;
}

.ordersHeadTab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.ordersHeadTab.active .ordersHeadTab__digit {
  background: var(--white);
  color: #3D3C47;
}

.ordersControls {
  visibility: hidden;
}

.ordersControls.active {
  visibility: visible;
}

.ordersControls__close {
  display: none;
}

.ordersControls__wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ordersControls__wrap .btn {
  font-size: 14px;
}

/* МОДАЛКИ */

.overlay {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.6);
}

/* Общие стили */

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  max-width: calc(100% - 32px);
  max-height: calc(100% - 32px);
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  overflow: auto;
  -ms-overflow-style: none;
  overflow-y: scroll;
  scrollbar-width: none;
}

.modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.modal_lg {
  width: 800px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.modal__close img {
  width: 24px;
  transition: 0.25s;
}

.modal__caption {
  font: 600 16px/1.375 var(--font);
  margin-bottom: 32px;
}

/* Модалка "Забронировать предложение" */

.orderModal {
  padding: 24px 20px;
}

.orderModal__head {
  margin-bottom: 16px;
}

.orderModal__title {
  font: 700 25px/1.2 var(--font);
  margin-bottom: 8px;
}

.orderModal__headInfo {
  margin-bottom: 8px;
}

.orderModal__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.orderModal__buttons .btn {
  min-width: 140px;
}

.orderModalComment {
  position: relative;
  margin-bottom: 16px;
}

.orderModalComment__title {
  margin-bottom: 6px;
}

.orderModalComment__field {
  display: flex;
  align-items: center;
}

.orderModalComment__field textarea {
  border-color: var(--gray44);
  padding-right: 40px;
}

.orderModalComment__field textarea:focus {
  border-color: var(--primary);
}

.orderModalComment__icon {
  position: absolute;
  bottom: 8px;
  right: 16px;
  width: 24px;
}

/* Стили таблицы в модалке "Забронировать предложение" */

.orderModalTable {
  border: 1px solid var(--gray93);
  box-shadow: none;
  padding: 0;
  overflow: hidden;
  margin-bottom: 16px;
}

.orderModalTable .table__head .table__col:first-child {
  flex-shrink: 0;
  width: 58px;
}

.orderModalTable .table__head .table__col:nth-child(2) {
  width: 100%;
}

.orderModalTable .table__head .table__col:nth-child(3) {
  flex-shrink: 0;
  width: 57px;
}

.orderModalTable .table__head .table__col:nth-child(4) {
  flex-shrink: 0;
  width: 156px;
}

.orderModalTable .table__head .table__col:nth-child(5) {
  flex-shrink: 0;
  width: 104px;
}

.orderModalTable .table__head .table__col:nth-child(6) {
  flex-shrink: 0;
  width: 184px;
}

.orderModalTable .tableRow .table__col:first-child {
  flex-shrink: 0;
  width: 58px;
  font-weight: 700;
  white-space: nowrap;
}

.orderModalTable .tableRow .table__col:nth-child(2) {
  width: 100%;
}

.orderModalTable .tableRow .table__col:nth-child(3) {
  flex-shrink: 0;
  width: 57px;
}

.orderModalTable .tableRow .table__col:nth-child(4) {
  flex-shrink: 0;
  width: 156px;
}

.orderModalTable .tableRow .table__col:nth-child(5) {
  flex-shrink: 0;
  width: 104px;
}

.orderModalTable .tableRow .table__col:nth-child(6) {
  flex-shrink: 0;
  width: 104px;
}

.orderModalTable .tableRow .table__col:nth-child(7) {
  flex-shrink: 0;
  width: 80px;
  padding: 0;
  display: flex;
  justify-content: center;
}

.orderModalTable .tableRowHead__col:first-child {
  width: 100%;
}

.orderModalTable .tableRowHead__col:nth-child(2) {
  flex-shrink: 0;
  width: 50px;
}

.orderModalTable .tableRowHead__col:nth-child(3) {
  flex-shrink: 0;
  width: 106px;
}

.orderModalTable .tableRowHead__col:nth-child(4) {
  flex-shrink: 0;
  width: 90px;
}

.orderModalTable .tableRowHead__col:nth-child(5) {
  flex-shrink: 0;
  width: 150px;
}

.orderModalTable .tableRowHead__col:nth-child(6) {
  display: none;
  flex-shrink: 0;
  width: 111px;
  padding-left: 0;
  text-align: right;
  font-size: 13px;
}

.orderModalTable .tableRowHead__col:nth-child(6) strong {
  font-weight: 700;
}

/* Модалки "Отменить заказ" и "Подтвердить заказ" */

.ordersModal__wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.ordersModal__wrap:last-child {
  margin-bottom: 0;
}

.ordersModal__icon {
  flex-shrink: 0;
  width: 42px;
  margin-right: 24px;
}

.ordersModal__content {
  width: 100%;
}

.ordersModal__title {
  font: 700 18px/1.2 var(--font);
  color: #3D3C47;
  margin-bottom: 10px;
}

.ordersModal__title:last-child {
  margin-bottom: 0;
}

.ordersModal__subtitle {
  font: 400 16px/1.25 var(--font);
  color: #5D5C66;
}

.ordersModal__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Модалка "Информация о бронировании" */

.bookingInfo {
  padding: 24px 20px;
}

.bookingInfo__head {
  margin-bottom: 16px;
}

.bookingInfo__title {
  font: 700 25px/1.2 var(--font);
  margin-bottom: 8px;
}

.bookingInfo__headInfo {
  margin-bottom: 8px;
}

.bookingInfo__parties {
  border: 1px solid #AAAAAA;
  border-radius: 8px;
  padding: 10px;
  display: grid;
  grid-gap: 32px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 16px;
  position: relative;
}

.bookingInfo__parties::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  height: calc(100% - 20px);
  background: #AAAAAA;
}

.bookingInfo__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.bookingInfo__buttons .btn {
  min-width: 140px;
}

.bookingInfoParticipant {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
}

.bookingInfoParticipant__title {
  flex-shrink: 0;
  width: 124px;
  padding-right: 10px;
  font: 700 16px/1.2 var(--font);
}

.bookingInfoParticipant__content {
  width: 100%;
  font: 400 14px/1.4 var(--font);
}

.bookingInfoParticipant__content p {
  margin-bottom: 8px;
}

.bookingInfoParticipant__content p:last-child {
  margin-bottom: 0;
}

.bookingInfoParticipant__content strong {
  font-weight: 700;
}

/* Стили таблицы в модалке "Информация о бронировании" */

.bookingInfoTable {
  border: 1px solid var(--gray93);
  box-shadow: none;
  padding: 0;
  overflow: hidden;
  margin-bottom: 16px;
}

.bookingInfoTable .table__head .table__col:first-child {
  flex-shrink: 0;
  width: 58px;
}

.bookingInfoTable .table__head .table__col:nth-child(2) {
  width: 100%;
}

.bookingInfoTable .table__head .table__col:nth-child(3) {
  flex-shrink: 0;
  width: 65px;
}

.bookingInfoTable .table__head .table__col:nth-child(4) {
  flex-shrink: 0;
  width: 156px;
}

.bookingInfoTable .table__head .table__col:nth-child(5) {
  flex-shrink: 0;
  width: 104px;
}

.bookingInfoTable .table__head .table__col:nth-child(6) {
  flex-shrink: 0;
  width: 145px;
}

.bookingInfoTable .tableRow .table__col:first-child {
  flex-shrink: 0;
  width: 58px;
  font-weight: 700;
  white-space: nowrap;
}

.bookingInfoTable .tableRow .table__col:nth-child(2) {
  width: 100%;
}

.bookingInfoTable .tableRow .table__col:nth-child(3) {
  flex-shrink: 0;
  width: 65px;
  padding-right: 0;
}

.bookingInfoTable .tableRow .table__col:nth-child(4) {
  flex-shrink: 0;
  width: 156px;
}

.bookingInfoTable .tableRow .table__col:nth-child(5) {
  flex-shrink: 0;
  width: 104px;
}

.bookingInfoTable .tableRow .table__col:nth-child(6) {
  flex-shrink: 0;
  width: 145px;
}

.bookingInfoTable .tableRowHead__col:first-child {
  width: 100%;
}

.bookingInfoTable .tableRowHead__col:nth-child(2) {
  flex-shrink: 0;
  width: 50px;
}

.bookingInfoTable .tableRowHead__col:nth-child(3) {
  flex-shrink: 0;
  width: 130px;
}

.bookingInfoTable .tableRowHead__col:nth-child(4) {
  flex-shrink: 0;
  width: 111px;
}

.bookingInfoTable .tableRowHead__col:nth-child(5) {
  flex-shrink: 0;
  width: 135px;
}

.bookingInfoTable .tableRowHead__col:nth-child(6) {
  display: none;
  flex-shrink: 0;
  width: 116px;
  padding-left: 0;
  text-align: right;
  font-size: 14px;
}

.bookingInfoTable .tableRowHead__col:nth-child(6) strong {
  font-weight: 700;
}

/* DATE PICKER */

.ui-datepicker {
  position: absolute;
  z-index: -1000;
  top: -10000px;
  left: -10000px;
  width: 300px;
  max-width: 100%;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 4px;
  box-shadow: 0 6px 12px -3px rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
}

.ui-datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  font-size: 16px;
  color: var(--base);
  cursor: pointer;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
  color: var(--hover);
}

.ui-datepicker-title {
  width: 100%;
  text-align: center;
}

.ui-datepicker-calendar {
  width: 100%;
}

.ui-datepicker-calendar tr {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.ui-datepicker-calendar td {
  text-align: center;
  color: var(--base);
  cursor: default;
}

.ui-datepicker-calendar td .ui-state-default {
  display: block;
  border-radius: 4px;
  padding: 6px 4px;
}

.ui-datepicker-calendar td.ui-state-disabled {
  color: var(--gray44);
}

.ui-datepicker-calendar td a {
  color: var(--base);
}

.ui-datepicker-calendar td a:hover {
  background: var(--bg);
  color: var(--primary);
}

.ui-datepicker-calendar td.ui-datepicker-current-day .ui-state-default {
  background: var(--primary);
  color: var(--white);
}

/* МОДАЛКА ЧАТА */

.chat {
  padding: 24px 16px;
}

.chat .modal__caption {
  padding: 0 8px;
}

.chatMessages {
  max-height: calc(100vh - 380px);
  padding: 8px;
  padding-top: 0;
  margin-bottom: 16px;
  overflow: auto;
}

.chatMessages::-webkit-scrollbar {
  width: 6px;
  height: 0;
  background: var(--white);
}

.chatMessages::-webkit-scrollbar-thumb {
  width: 6px;
  background: var(--gray50);
  border-radius: 6px;
}

.chatMessages__day {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.chatMessages__day:last-child {
  margin-bottom: 0;
}

.chatMessages__date {
  font: 600 16px/1.375 var(--font);
  margin-bottom: 12px;
}

.chatMessage {
  padding-left: 4px;
  margin-bottom: 20px;
}

.chatMessage:last-child {
  margin-bottom: 0;
}

.chatMessage__wrap {
  max-width: 85%;
  display: flex;
  align-items: center;
}

.chatMessage__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-right: 12px;
}

.chatMessage__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--gray46);
}

.chatMessage__time {
  flex-shrink: 0;
  width: 40px;
  text-align: right;
  font: 400 11px/1 var(--font);
  color: var(--gray46);
}

.chatMessage__text {
  max-width: 100%;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 8px 16px;
  font: 400 14px/1.4 var(--font);
}

.chatMessage__files {
  margin-top: 8px;
  padding-left: 48px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.chatMessage__file {
  max-width: 150px;
  font: 400 12px/1.4 var(--font);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chatMessage__file:hover {
  text-decoration: underline;
}

.chatMessage_me {
  padding-left: 0;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chatMessage_me .chatMessage__icon {
  order: 3;
  margin-right: 0;
  margin-left: 12px;
}

.chatMessage_me .chatMessage__icon svg {
  fill: var(--primary);
}

.chatMessage_me .chatMessage__time {
  order: 1;
  text-align: left;
}

.chatMessage_me .chatMessage__text {
  order: 2;
}

.chatMessage_me .chatMessage__files {
  padding-left: 0;
  padding-right: 48px;
  justify-content: flex-end;
}

.chatForm {
  background: #F3F3F3;
  border-radius: 8px;
  padding: 20px 16px;
}

.chatForm__title {
  font: 600 16px/1.4 var(--font);
  margin-bottom: 6px;
}

.chatForm__field {
  display: flex;
  align-items: center;
  position: relative;
}

.chatForm__field textarea {
  display: block;
  min-height: auto;
  padding-right: 60px;
  resize: none;
  overflow: hidden;
  box-sizing: border-box;
}

.chatForm__submit {
  position: absolute;
  bottom: 9px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatForm__submit img {
  width: 20px;
}

.chatForm__bottom {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.chatFormAttach {
  flex-shrink: 0;
  margin-right: 20px;
}

.chatFormAttach__input {
  display: none;
}

.chatFormAttach__wrap {
  min-height: 32px;
  border: 1px solid var(--gray44);
  border-radius: 8px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  font: 400 14px/1.5 var(--font);
  cursor: pointer;
  transition: 0.25s;
}

.chatFormAttach__text {
  max-width: 100%;
}

.chatFormAttach__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: var(--base);
  margin-left: 8px;
  transition: 0.25s;
}

.chatFormAttachInfo {
  font: 400 12px/1.4 var(--font);
  color: var(--gray44);
}

.chatFormAttachInfo__icon {
  display: none;
}

.chatFormFiles {
  display: none;
  margin-top: 12px;
}

.chatFormFiles__wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 4px;
}

.chatFormFile {
  display: flex;
  align-items: center;
  font: 400 12px/1.4 var(--font);
  color: var(--primary);
  cursor: default;
}

.chatFormFile__text {
  max-width: 100%;
}

.chatFormFile__delete {
  flex-shrink: 0;
  width: 16px;
  display: flex;
  align-items: center;
  margin-left: 4px;
}

@media screen and (min-width: 1200px) {
  .app {
    padding-left: 240px;
  }

  .app.hiddenSidebar {
    padding-left: 72px;
  }

  .app.hiddenSidebar .sidebar {
    width: 72px;
  }

  .app.hiddenSidebar .sidebar__logo {
    padding: 8px;
    justify-content: center;
  }

  .app.hiddenSidebar .sidebar__logo .full {
    display: none;
  }

  .app.hiddenSidebar .sidebar__logo .icon {
    display: block;
  }

  .app.hiddenSidebar .sidebar__title {
    display: none;
  }

  .app.hiddenSidebar .menuItem {
    position: relative;
    padding: 0;
  }

  .app.hiddenSidebar .menuItem__icon {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .app.hiddenSidebar .menuItem__icon svg {
    width: 20px;
    height: 20px;
  }

  .app.hiddenSidebar .menuItem__text {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: auto;
    min-height: 50px;
    background: linear-gradient(90deg, #15568F, #2287E5);
    white-space: nowrap;
    padding: 8px 12px;
  }

  .app.hiddenSidebar .menuItem:hover .menuItem__text {
    display: inline-flex;
    align-items: center;
  }

  .tableDropdownRow {
    max-width: 625px;
    padding-left: 40px;
  }
}

@media screen and (max-width: 1799px) {
  .events {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 1439px) {
  .events {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 22px;
  }

  h2,
  .h2 {
    font-size: 22px;
  }

  h3,
  .h3 {
    font-size: 20px;
  }

  .crumbs {
    padding: 0;
    margin-bottom: 16px;
  }

  .pageHead {
    padding: 0;
  }

  .pageHead__subtitleWrap {
    column-gap: 16px;
    row-gap: 8px;
    justify-content: space-between;
  }

  .app.hiddenSidebar .sidebar {
    display: block;
  }

  .sidebar {
    display: none;
    top: 70px;
    height: calc(100vh - 70px);
    padding-top: 10px;
  }

  .sidebar__logo {
    display: none;
  }

  .header__mobLogo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fullscreen {
    display: none;
  }

  .eventsSearch {
    grid-gap: 12px;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .eventsSearch2 {
    padding: 0;
    margin-bottom: 16px;
  }

  .venue__head {
    padding: 12px 16px;
    padding-right: 44px;
  }

  .venue__scenes {
    padding: 8px 0;
  }

  .venue__list {
    display: block;
  }

  .venue__scene {
    display: block;
    padding: 8px 16px;
    padding-left: 28px;
  }

  .events {
    padding: 0;
  }

  .accountForm {
    margin: 0;
  }

  .accountFormField {
    display: block;
  }

  .accountFormField__title {
    width: 100%;
    padding: 0;
    margin-bottom: 6px;
  }

  .editForm {
    margin: 0;
  }

  .editForm__groups {
    grid-template-columns: 1fr;
  }

  .table {
    overflow: visible;
  }

  .table__inner {
    min-width: unset;
    overflow: visible;
  }

  .table__head {
    display: none;
  }

  .table__col {
    padding: 0 10px;
  }

  .tableRow__wrap {
    min-height: 56px;
    padding: 8px 0;
  }

  .tableRowHead {
    display: flex;
    align-items: center;
  }

  .tableDropdownRow.hiddenOnDesktop {
    display: flex;
    align-items: flex-start;
  }

  .tableDropdownRow.blockOnMobile {
    display: block;
  }

  .tableDropdownRow.blockOnMobile .tableDropdownRow__title {
    width: 100%;
    padding-right: 0;
    margin-bottom: 8px;
  }

  .table1 .tableRow .table__col:first-child,
  .table1 .tableRow .table__col:nth-child(7),
  .table1 .tableRow .table__col:nth-child(8) {
    display: none;
  }

  .table1 .tableRow .table__col:nth-child(2) {
    width: 100%;
  }

  .table1 .tableRow .table__col:nth-child(3) {
    flex-shrink: 0;
    width: 50px;
  }

  .table1 .tableRow .table__col:nth-child(4) {
    flex-shrink: 0;
    width: 106px;
  }

  .table1 .tableRow .table__col:nth-child(5) {
    flex-shrink: 0;
    width: 111px;
  }

  .table1 .tableRow .table__col:nth-child(6) {
    flex-shrink: 0;
    width: 111px;
  }

  .table1 .tableRow .table__col:nth-child(9) {
    display: flex;
    justify-content: center;
  }

  .table1 .tableRow .table__col:nth-child(10) {
    flex-shrink: 0;
    width: 56px;
    padding: 0;
  }

  .table2 .tableRow .table__col:first-child {
    width: 100%;
  }

  .table2 .tableRow .table__col:nth-child(2) {
    flex-shrink: 0;
    width: 50px;
  }

  .table2 .tableRow .table__col:nth-child(3) {
    flex-shrink: 0;
    width: 106px;
  }

  .table2 .tableRow .table__col:nth-child(4) {
    flex-shrink: 0;
    width: 100px;
  }

  .table2 .tableRow .table__col:nth-child(5) {
    flex-shrink: 0;
    width: 100px;
  }

  .table2 .tableRow .table__col:nth-child(6),
  .table2 .tableRow .table__col:nth-child(7) {
    display: none;
  }

  .table2 .tableRow .table__col:nth-child(8) {
    display: flex;
    justify-content: center;
  }

  .table2 .tableRow .table__col:nth-child(9) {
    flex-shrink: 0;
    width: 80px;
  }

  .table3 .tableRow {
    border-bottom-color: var(--primary);
    padding: 8px 0;
  }

  .table3 .tableRow .table__col:first-child,
  .table3 .tableRow .table__col:nth-child(2),
  .table3 .tableRow .table__col:nth-child(3),
  .table3 .tableRow .table__col:nth-child(4),
  .table3 .tableRow .table__col:nth-child(12) {
    display: none;
  }

  .table3 .tableRow .table__col:nth-child(5) {
    width: 100%;
  }

  .table3 .tableRow .table__col:nth-child(6) {
    flex-shrink: 0;
    width: 50px;
  }

  .table3 .tableRow .table__col:nth-child(7) {
    flex-shrink: 0;
    width: 106px;
  }

  .table3 .tableRow .table__col:nth-child(8) {
    flex-shrink: 0;
    width: 111px;
    padding-right: 0;
  }

  .table3 .tableRow .table__col:nth-child(9) {
    flex-shrink: 0;
    width: 106px;
  }

  .table3 .tableRow .table__col:nth-child(10) {
    flex-shrink: 0;
    width: 45px;
  }

  .table3 .tableRow .table__col:nth-child(11) {
    flex-shrink: 0;
    width: 64px;
    padding-right: 10px;
    justify-content: flex-end;
  }

  .table3 .tableRow .table__col:nth-child(11) .tableSeller {
    display: none;
  }

  .table3 .tableDropdownButtons {
    position: static;
    padding-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .table3 .tableDropdownInfoBtn {
    display: flex;
    align-items: center;
  }

  .table3RowHead {
    display: flex;
    align-items: center;
  }

  .stat {
    grid-template-columns: 1fr;
  }

  .ordersHead {
    min-height: auto;
    padding: 0;
    align-items: flex-end;
    margin-bottom: 16px;
  }

  .ordersHead__tabs {
    width: 100%;
  }

  .ordersControls {
    position: fixed;
    z-index: 60;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -8px 20px rgba(128, 128, 128, 0.15);
    padding: 10px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.25s;
  }

  .ordersControls.active {
    bottom: 0;
  }

  .ordersControls__close {
    display: block;
    width: 28px;
    height: 28px;
    margin-bottom: 32px;
  }

  .ordersControls__close svg {
    width: 100%;
    height: 100%;
    fill: rgba(48, 48, 48, 0.24);
  }

  .ordersControls__wrap {
    width: 100%;
  }

  .ordersControls__wrap .btn {
    width: 100%;
  }

  .orderModalTable .tableRow .table__col:first-child {
    display: none;
  }

  .orderModalTable .tableRow .table__col:nth-child(3) {
    width: 50px;
  }

  .orderModalTable .tableRow .table__col:nth-child(4) {
    width: 106px;
  }

  .orderModalTable .tableRow .table__col:nth-child(5),
  .orderModalTable .tableRow .table__col:nth-child(6) {
    width: 90px;
  }

  .orderModalTable .tableRow .table__col:nth-child(7) {
    width: 60px;
  }

  .bookingInfoTable .tableRow .table__col:first-child {
    display: none;
  }

  .bookingInfoTable .tableRow .table__col:nth-child(3) {
    width: 50px;
  }

  .bookingInfoTable .tableRow .table__col:nth-child(4) {
    width: 130px;
  }

  .bookingInfoTable .tableRow .table__col:nth-child(5) {
    width: 111px;
  }

  .bookingInfoTable .tableRow .table__col:nth-child(6) {
    width: 135px;
  }

  .chatMessage__wrap {
    max-width: 95%;
  }
}

@media screen and (max-width: 849px) {
  .events {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 639px) {
  .btn_lg {
    padding: 12px 24px;
    font-size: 22px;
  }

  .crumbs {
    column-gap: 20px;
    font-size: 12px;
  }

  .crumbs__item::after {
    left: calc(100% + 7px);
    transform: rotate(45deg) translate(0, -50%);
  }

  .pageHeadInfo {
    font-size: 16px;
    gap: 6px;
  }

  .pageHeadInfo__item {
    padding-right: 8px;
  }

  .pageHeadInfo__item::after {
    height: 14px;
  }

  .app__content {
    padding-top: 16px;
  }

  .sidebar {
    width: 100%;
  }

  .header__mobLogo,
  .header__title {
    display: none;
  }

  .notifications {
    position: static;
  }

  .notificationsList {
    width: 100%;
    border-top: 1px solid rgba(10, 24, 50, 0.1);
  }

  .authorization {
    max-width: 100%;
    padding: 40px 24px;
  }

  .eventsSearch__block {
    padding: 12px;
  }

  .eventsSearch__submit {
    margin-left: 12px;
  }

  .eventsSearchString__icon {
    width: 40px;
  }

  .eventsSearchString__input {
    padding-left: 60px;
    font-size: 20px;
  }

  .eventsSearchString__input::placeholder {
    font-size: 20px;
  }

  .eventsSearchDate__input {
    font-size: 20px;
  }

  .eventsSearchDate__input::placeholder {
    font-size: 20px;
  }

  .eventsSearchDate__icon {
    width: 40px;
  }

  .eventsSearchDate__icon img {
    width: 20px;
  }

  .venues {
    padding: 20px 16px;
  }

  .events {
    grid-template-columns: 1fr;
  }

  .accountForm {
    padding: 24px 16px;
  }

  .editForm {
    padding: 24px 16px;
  }

  .editForm__groups {
    margin-bottom: 40px;
  }

  .editForm__buttons {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .editForm__buttons .btn {
    min-width: auto;
  }

  .editFormField {
    margin-bottom: 16px;
  }

  .editFormField:not(.editFormField_mobStated) {
    display: block;
  }

  .editFormField:not(.editFormField_mobStated) .editFormField__title {
    width: 100%;
    padding: 0;
    margin-bottom: 6px;
  }

  .tableRow {
    font-size: 14px;
  }

  .tableRow__wrap {
    min-height: 54px;
  }

  .tableDropdownRow__title {
    width: 103px;
  }

  .tableDropdownRowSeller__text br {
    display: block;
  }

  .tableDropdownButtons.desktopEnd {
    justify-content: space-between;
  }

  .tableDropdownDelete {
    display: inline-flex;
    align-items: center;
  }

  .table1 .tableRow .table__col:nth-child(5),
  .table1 .tableRow .table__col:nth-child(6) {
    display: none;
  }

  .table1 .tableRow .table__col:nth-child(4) {
    width: 70px;
  }

  .table1 .tableRowHead__col:nth-child(3) {
    width: 55px;
    padding-right: 0;
  }

  .table1 .tableRowHead__col:nth-child(4),
  .table1 .tableRowHead__col:nth-child(5) {
    display: none;
  }

  .table1 .tableRowHead__col:nth-child(6) {
    display: block;
  }

  .table2 .tableRow .table__col:nth-child(3) {
    width: 70px;
  }

  .table2 .tableRow .table__col:nth-child(4),
  .table2 .tableRow .table__col:nth-child(5) {
    display: none;
  }

  .table2 .tableRow .table__col:nth-child(8) {
    width: 42px;
  }

  .table2 .tableRow .table__col:nth-child(9) {
    width: 60px;
    padding-right: 12px;
  }

  .table2 .tableRow .table__col:nth-child(9) .tableControls {
    justify-content: flex-end;
  }

  .table2 .tableRow .table__col:nth-child(9) .tableControlsBtn {
    margin: 0;
  }

  .table2 .tableRow .table__col:nth-child(9) .tableControlsBtn:last-child {
    display: none;
  }

  .table2 .tableRowHead__col:nth-child(3) {
    width: 55px;
    padding-right: 0;
  }

  .table2 .tableRowHead__col:nth-child(4),
  .table2 .tableRowHead__col:nth-child(5) {
    display: none;
  }

  .table2 .tableRowHead__col:nth-child(6) {
    display: block;
  }

  .table3 .tableRow .table__col:nth-child(7) {
    width: 70px;
  }

  .table3 .tableRow .table__col:nth-child(8),
  .table3 .tableRow .table__col:nth-child(9) {
    display: none;
  }

  .table3 .tableRow .table__col:nth-child(10) {
    width: 42px;
  }

  .table3 .tableRow .table__col:nth-child(11) {
    width: 67px;
  }

  .table3 .tableRowHead__col:nth-child(3) {
    width: 63px;
    padding-right: 0;
  }

  .table3 .tableRowHead__col:nth-child(4),
  .table3 .tableRowHead__col:nth-child(5) {
    display: none;
  }

  .table3 .tableRowHead__col:nth-child(6) {
    display: block;
  }

  .table3RowHead__date {
    width: 86px;
  }

  .ordersHead {
    margin-bottom: 8px;
  }

  .ordersHeadTab {
    width: 100%;
    padding-left: 8px;
  }

  .ordersControls__wrap .btn {
    padding-left: 12px;
    justify-content: center;
  }

  .ordersControls__wrap .btn:last-child {
    flex-shrink: 0;
    width: auto;
  }

  .orderModal {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    padding: 20px 16px;
    padding-bottom: 32px;
  }

  .orderModal__buttons {
    justify-content: unset;
    gap: unset;
  }

  .orderModal__buttons .btn {
    min-width: auto;
  }

  .orderModal__buttons .btn:first-child {
    flex-shrink: 0;
    width: 120px;
    margin-right: 16px;
  }

  .orderModal__buttons .btn:last-child {
    width: 100%;
  }

  .orderModalTable .tableRow .table__col:nth-child(4) {
    width: 120px;
  }

  .orderModalTable .tableRow .table__col:nth-child(5),
  .orderModalTable .tableRow .table__col:nth-child(6) {
    display: none;
  }

  .orderModalTable .tableRow .table__col:nth-child(7) {
    width: 40px;
  }

  .orderModalTable .tableRowHead__col:nth-child(3) {
    width: 49px;
    padding-right: 0;
  }

  .orderModalTable .tableRowHead__col:nth-child(4),
  .orderModalTable .tableRowHead__col:nth-child(5) {
    display: none;
  }

  .orderModalTable .tableRowHead__col:nth-child(6) {
    display: block;
  }

  .ordersModal__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ordersModal__icon {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .ordersModal__subtitle {
    font-size: 14px;
  }

  .ordersModal__buttons {
    display: block;
  }

  .ordersModal__buttons .btn {
    width: 100%;
    margin-bottom: 8px;
  }

  .ordersModal__buttons .btn:last-child {
    margin-bottom: 0;
  }

  .bookingInfo {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    padding: 20px 16px;
    padding-bottom: 32px;
  }

  .bookingInfo__parties {
    grid-gap: 16px;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .bookingInfo__parties::before {
    display: none;
  }

  .bookingInfo__buttons .btn {
    min-width: auto;
    width: 100%;
  }

  .bookingInfoTable .tableRow .table__col:nth-child(4) {
    width: 166px;
  }

  .bookingInfoTable .tableRow .table__col:nth-child(5),
  .bookingInfoTable .tableRow .table__col:nth-child(6) {
    display: none;
  }

  .bookingInfoTable .tableRowHead__col:nth-child(3) {
    width: 50px;
    padding-right: 0;
  }

  .bookingInfoTable .tableRowHead__col:nth-child(4),
  .bookingInfoTable .tableRowHead__col:nth-child(5) {
    display: none;
  }

  .bookingInfoTable .tableRowHead__col:nth-child(6) {
    display: block;
  }

  .chat {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
  }

  .chat__wrap {
    height: 100%;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
  }

  .chat .modal__caption {
    flex-shrink: 0;
    margin-bottom: 20px;
  }

  .chatMessages {
    max-height: 100%;
  }

  .chatMessages__date {
    font-size: 14px;
  }

  .chatMessage {
    padding-left: 0;
    margin-bottom: 16px;
  }

  .chatMessage__icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
  }

  .chatMessage__text {
    padding: 6px 12px;
  }

  .chatMessage__files {
    margin-top: 6px;
    padding-left: 42px;
  }

  .chatMessage__file {
    font-size: 11px;
  }

  .chatMessage_me {
    padding-right: 0;
  }

  .chatMessage_me .chatMessage__icon {
    margin-left: 10px;
  }

  .chatMessage_me .chatMessage__files {
    padding-right: 42px;
  }

  .chatForm {
    margin: auto;
    margin-bottom: 0;
    width: 100%;
    flex-shrink: 0;
    padding: 16px 12px;
  }

  .chatForm__title {
    display: none;
  }

  .chatFormAttach {
    margin-right: 12px;
  }

  .chatFormAttachInfo {
    position: relative;
  }

  .chatFormAttachInfo__icon {
    width: 24px;
    display: flex;
    align-items: center;
  }

  .chatFormAttachInfo__popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 12px);
    left: -180px;
    width: 295px;
    background: var(--white);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    padding: 8px 10px;
  }

  .chatFormAttachInfo:hover .chatFormAttachInfo__popup {
    display: block;
  }
}

@media screen and (max-width: 389px) {
  .ordersHeadTab {
    padding-left: 16px;
  }

  .ordersHeadTab:last-child {
    flex-shrink: 0;
    width: auto;
  }
}

@media screen and (max-width: 370px) {
  .ordersControls__wrap .btn {
    font-size: 13px;
  }
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: var(--hover);
  }

  .btn:hover {
    background: var(--hover);
    color: var(--white);
  }

  .btn_red:hover {
    background: var(--red-hover);
    color: var(--white);
  }

  .btn_bor:hover {
    background: var(--hover);
    border-color: var(--hover);
    color: var(--white);
  }

  .btn_bor:hover .btn__icon svg {
    fill: var(--white);
  }

  .btn_redbor:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    color: var(--white);
  }

  .btn_redbor:hover .btn__icon svg {
    fill: var(--white);
  }

  .btn_bg:hover {
    background: var(--primary);
    color: var(--white);
  }

  .btn_gray46:hover {
    background: var(--red-hover);
  }

  .select2__option:hover {
    background: var(--primary);
    color: var(--white);
  }

  .crumbs__item:hover {
    text-decoration: underline;
  }

  .menuItem:hover .menuItem__icon svg {
    fill: var(--white);
  }

  .header__burger:hover img {
    transform: scale(1.15);
  }

  .notificationsIcon:hover .notificationsIcon__icon {
    transform: scale(1.15);
  }

  .headerAccount__icon:hover img {
    transform: scale(1.15);
  }

  .headerAccountItem:hover {
    color: var(--hover);
  }

  .headerAccountItem:hover .headerAccountItem__icon {
    transform: scale(1.15);
  }

  .footer a:hover {
    color: var(--hover);
  }

  .eventsSearch2:hover .eventsSearch2__input::placeholder {
    color: var(--azure19);
  }

  .venue__head:hover {
    color: var(--red);
  }

  .venue__scene:hover {
    color: var(--red);
  }

  .eventsItem:hover {
    transform: scale(1.025);
  }

  .eventsItemBtn:hover {
    color: var(--primary);
  }

  .tableBtn:hover {
    background: var(--hover);
  }

  .tableToggleBtn:hover .tableToggleBtn__icon svg {
    stroke: var(--azure19);
  }

  .tableInput:hover:not(:focus) {
    border-bottom-color: var(--divider);
  }

  .tableControlsBtn:hover .tableControlsBtn__popup {
    display: block;
  }

  .tableInfoIcon:hover {
    transform: scale(1.1);
  }

  .tableDropdownButtons__close:hover {
    color: var(--red-hover);
  }

  .ordersHeadTab:hover:not(.active) {
    border-color: var(--base);
    color: var(--base);
  }

  .modal__close:hover img {
    transform: rotate(-90deg);
  }

  .chatForm__submit:hover {
    background: var(--hover);
  }

  .chatFormAttach:hover .chatFormAttach__wrap {
    background: var(--hover);
    border-color: var(--hover);
    color: var(--white);
  }

  .chatFormAttach:hover .chatFormAttach__icon {
    fill: var(--white);
  }

  .chatFormFile__delete:hover {
    transform: scale(1.2);
  }
}