.d-flex {
  display: flex; }

.p-left {
  justify-content: start; }

.p-right {
  justify-content: end; }

.p-center {
  justify-content: center; }

.p-middle {
  align-items: center; }

.p-between {
  justify-content: space-between; }

.d-row {
  flex-direction: row; }

.d-column {
  flex-direction: column; }

.space-xs {
  margin: 0 0 4px; }

.space-sm {
  margin: 0 0 8px; }

.space-md {
  margin: 0 0 16px; }

.space-lg {
  margin: 0 0 24px; }

.space-xl {
  margin: 0 0 32px; }

.price {
  font: 400 14px 'Roboto', sans-serif;
  color: #212121;
  letter-spacing: 0.01em; }

.price-lg {
  font-size: 16px;
  font-weight: 600; }

.title .title-xs, .title-sm, .title-md, .title-lg {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #212121; }

.title-inner {
  font: 500 16px 'Roboto', sans-serif;
  color: #0ace82; }

.title-inner-container {
  display: flex;
  align-items: start;
  gap: 16px; }

.title-column {
  font: 500 16px 'Roboto', sans-serif;
  color: #666;
  text-transform: uppercase; }
  .title-column.title-xs {
    color: #212121; }

.title-xs {
  font-size: 12px; }

.title-sm {
  font-size: 14px; }

.title-md {
  font-size: 16px; }

.title-lg {
  font-size: 24px; }

.wrapper {
  padding: 40px 0;
  background: #fff; }

.head {
  margin: 0 0 12px; }
  .head-filter {
    margin: 0 0 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px; }
    .head-filter__item {
      width: calc((100% - 16px)/5); }

.control-block {
  display: flex;
  align-items: center;
  gap: 16px; }

.list {
  margin: 0 0 12px; }
  .list-item {
    padding: 24px;
    margin: 0 0 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px; }
    .list-item .title-inner {
      margin: 0 0 4px; }
    .list-item .subtitle-inner {
      font: 400 14px 'Roboto', sans-serif;
      color: #666;
      letter-spacing: 0.01em;
      display: inline-flex; }
      .list-item .subtitle-inner li {
        list-style: none; }
        .list-item .subtitle-inner li:not(:first-child) {
          list-style: disc;
          margin-left: 28px; }
    .list-item:last-child {
      margin: 0; }
  .list .additional-info {
    margin: 16px 0 0; }
    .list .additional-info p {
      margin: 0 0 4px; }
      .list .additional-info p:last-of-type {
        margin: 0; }
    .list .additional-info .subtitle-inner {
      margin: 0 0 4px; }
    .list .additional-info .title-lg {
      margin: 0 0 8px; }

.list-column {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; }
  .list-column .list-item {
    width: calc((100% - 48px)/4);
    min-height: 122px;
    margin: 0;
    position: relative; }
    .list-column .list-item .title-inner {
      color: #212121;
      margin: 0 0 4px;
      display: inline-block; }
      .list-column .list-item .title-inner:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
    .list-column .list-item .title-inner-container {
      margin: 0 0 4px; }
    .list-column .list-item.active {
      background: rgba(10, 206, 130, .03);
      border-color: #0ace82;
      box-shadow: 0px 0px 0px 1px #0ace82 inset; }

.list-orders .list-item__column {
  width: calc((100% - 16px)/3); }

.column {
  margin: 0 0 40px;
  position: relative;
  display: flex; }
  .column:last-child {
    margin: 0; }

.column-2 {
  margin: 0 0 24px;
  position: relative;
  display: flex;
  gap: 20px; }
  .column-2:last-child {
    margin: 0; }

.column-item {
  width: calc((100% - 20px)/3); }

.column-2-item {
  width: calc((100% - 20px)/2); }

.logo {
  margin-right: 32px;
  display: flex;
  align-items: center;
  gap: 8px; }
  .logo p {
    font: 600 10px 'Montserrat', sans-serif;
    color: #212121;
    max-width: min-content; }

.header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb; }

.footer p {
  color: #666;
  letter-spacing: 0.01em; }

.header-content {
  min-height: 80px;
  display: flex;
  justify-content: space-between; }
  .header-content .left-content {
    display: flex; }

.footer-content {
  min-height: 68px;
  display: flex;
  justify-content: center;
  align-items: center; }

.nav-default {
  display: flex;
  align-items: center;
  gap: 32px; }
  .nav-default li {
    list-style: none; }
    .nav-default li a {
      font: 500 14px 'Roboto', sans-serif;
      color: #212121;
      letter-spacing: 0.01em; }

.nav-dropdown > li {
  padding: 10px 0; }
  .nav-dropdown__item {
    position: relative; }
    .nav-dropdown__item > a {
      display: flex;
      align-items: center;
      gap: 8px; }
      .nav-dropdown__item > a:hover {
        text-decoration: none; }
    .nav-dropdown__item .dropdown {
      margin-top: 10px;
      min-width: 100%;
      /* Меню будет не уже родительского элемента */
      position: absolute;
      left: 0;
      /* Выравнивание по левому краю */
      z-index: 10;
      /* Устанавливаем z-index для корректного отображения */
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.2s;
      border: 1px solid #e5e7eb; }
      .nav-dropdown__item .dropdown li {
        background: #fff; }
        .nav-dropdown__item .dropdown li a {
          display: block;
          padding: 8px 10px; }
    .nav-dropdown__item:hover .dropdown {
      visibility: visible;
      opacity: 1; }

.breadcrumbs {
  font: 500 14px 'Roboto', sans-serif;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 24px; }
  .breadcrumbs p {
    font-weight: 500; }
  .breadcrumbs .back-link {
    color: #0ace82;
    margin-left: -7px; }

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

.hotel-item {
  position: relative;
  padding: 0 0 32px;
  margin: 0 0 32px;
  border-bottom: 1px solid #e5e7eb; }
  .hotel-item:after {
    content: '';
    width: 104px;
    height: 1px;
    position: absolute;
    bottom: -1px;
    right: -104px;
    background: #e5e7eb; }
  .hotel-item:last-child {
    border: none;
    margin: 0;
    padding: 0; }
    .hotel-item:last-child:after {
      content: none; }

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

.icon:before {
  content: '';
  width: 20px;
  height: 20px; }

.plus-icon:before {
  background-color: #fff;
  mask-image: url(/images/plus_icon.svg);
  -webkit-mask-image: url(/images/plus_icon.svg); }

.plus-green-icon:before {
  background-color: #0ace82;
  mask-image: url(/images/plus_icon.svg);
  -webkit-mask-image: url(/images/plus_icon.svg); }

.crown-icon {
  width: 28px;
  height: 24px;
  padding: 4px 6px;
  border: 1px solid #ecc746;
  border-radius: 6px; }

.basket-icon {
  position: absolute;
  right: -48px; }

.profile-icon {
  width: 20px;
  height: 20px; }

.badge {
  font: 400 12px 'Roboto', sans-serif;
  letter-spacing: 0.04em;
  padding: 4px 6px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px; }

.badge_green {
  color: #0ace82;
  border: 1px solid #0ace82;
  background: rgba(10, 206, 130, 0.03); }

.badge_orange {
  color: #ff9500;
  border: 1px solid #ff9500;
  background: rgba(255, 149, 0, 0.03); }

.badge-wrapper {
  margin-right: 16px; }
  .badge-wrapper:last-child {
    margin: 0; }

.button {
  font: 500 14px 'Roboto', sans-serif;
  letter-spacing: 0.01em;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px; }

.button_green {
  color: #fff;
  background: #0ace82; }

.button_light_green {
  font-weight: 400;
  color: #212121;
  background: rgba(10, 206, 130, 0.03); }

.button_white {
  font-weight: 400;
  color: #212121;
  box-shadow: 0 0 0 1px #e5e7eb inset; }

.upload-button {
  position: relative; }
  .upload-button .button {
    max-width: max-content; }
  .upload-button .hidden {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1; }

.eye-button {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
  cursor: pointer; }
  .eye-button img {
    width: 20px;
    height: 20px; }

.pen-button:before {
  content: '';
  width: 24px;
  height: 24px;
  display: block;
  cursor: pointer;
  background-color: #969696;
  mask-image: url(/images/pen_icon.svg);
  -webkit-mask-image: url(/images/pen_icon.svg); }

.power-button:before {
  content: '';
  width: 24px;
  height: 24px;
  display: block;
  cursor: pointer;
  background-color: #e35151;
  mask-image: url(/images/power_icon.svg);
  -webkit-mask-image: url(/images/power_icon.svg); }

.delete-button:before {
  content: '';
  width: 24px;
  height: 24px;
  display: block;
  cursor: pointer;
  background-color: #e35151;
  mask-image: url(/images/delete_icon.svg);
  -webkit-mask-image: url(/images/delete_icon.svg); }

.input-container {
  position: relative; }

.input-field, .textarea-field {
  font: 400 14px 'Roboto', sans-serif;
  color: #212121;
  width: 100%;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px; }

.textarea-field {
  resize: none;
  min-height: 72px; }

.select-field {
  font: 400 14px 'Roboto', sans-serif;
  color: #212121;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  padding-right: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  cursor: pointer;
  background: url(/images/chevron/vertical_chevron.svg) no-repeat right 12px center #fff;
  background-size: 16px 16px;
  min-height: auto;
  display: flex;
  align-items: center;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none; }

.box-field {
  position: absolute;
  z-index: -1;
  opacity: 0; }
  .box-field + label {
    font: 400 14px 'Roboto', sans-serif;
    color: #212121;
    letter-spacing: 0.01px;
    user-select: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    column-gap: 8px; }
    .box-field + label:before {
      content: '';
      width: 24px;
      height: 24px;
      background: url(/images/checkbox.svg) no-repeat center bottom;
      background-size: 24px auto;
      flex-shrink: 0; }
    .box-field + label .crown-icon {
      width: 24px;
      height: 24px;
      padding: 0;
      border: none;
      border-radius: 0; }
  .box-field:checked + label:before {
    background-position: top; }
  .box-field:disabled + label {
    opacity: 0.4; }

.radio-field + label:before {
  background: url(/images/radio.svg) no-repeat center bottom;
  background-size: 24px auto; }

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }
  .pagination li {
    list-style: none; }
    .pagination li a {
      font: 400 14px 'Roboto', sans-serif;
      color: #0ace82;
      letter-spacing: 0.01em;
      padding: 10px;
      min-width: 40px;
      height: 40px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s; }
      .pagination li a.active {
        color: #fff;
        background: #0ace82; }
      .pagination li a.arrow img {
        width: 20px;
        height: 20px; }
        .pagination li a.arrow.right {
          transform: rotate(180deg); }

.calendar-head {
  margin: 0 0 12px;
  display: flex;
  align-items: start;
  justify-content: space-between; }
  .calendar-head .title-inner {
    font-size: 24px;
    color: #212121; }
  .calendar-head .select-container {
    width: 100%;
    max-width: 308px; }

.calendar-body {
  overflow: hidden; }
  .calendar-body .title-sm {
    flex: 1 0 auto;
    width: 100%;
    max-width: 260px; }
    .calendar-body .title-sm.active img {
      transform: rotate(180deg); }
  .calendar-body .row-item {
    margin: 4px 0;
    display: flex;
    gap: 16px; }
  .calendar-body .slide-item .title-sm {
    padding-left: 32px; }
    .calendar-body .slide-item .slide-item .title-sm {
      padding-left: 64px; }
  .calendar-body .row-container {
    margin: 0 0 3px; }
    .calendar-body .row-container:last-child {
      margin: 0; }

.label {
  font: 700 14px 'Roboto', sans-serif;
  color: #212121;
  letter-spacing: 0.01em;
  position: relative;
  background: #e5e7eb;
  overflow: hidden; }
  .label .important {
    font-size: 12px;
    font-weight: 500;
    color: #212121;
    padding: 1px 4px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 4px 0;
    background: #ffa630; }
  .label.disabled {
    opacity: 0.3; }

.label-info {
  color: #fff;
  background: #ffa630; }

.label-primary {
  color: #fff;
  background: #376fd8; }

.label-success {
  color: #fff;
  background: #0ace82; }

.label-danger {
  color: #fff;
  background: #650d1b; }

.label-warning {
  color: #fff;
  background: #e35151; }

.date {
  width: 857px;
  display: flex;
  gap: 4px; }
  .date-item {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; }
    .date-item--long {
      width: auto; }
    .date-item--hidden {
      display: none; }

.month {
  width: 876px;
  height: 40px;
  margin-left: 276px;
  display: flex; }
  .month + .date {
    margin-left: 276px;
    padding: 3px 0; }
    .month + .date .date-item {
      background: none; }
    .month + .date .holiday {
      color: #e35151; }
    .month + .date .last-day {
      overflow: visible; }
      .month + .date .last-day:after {
        content: '';
        width: 1px;
        position: absolute;
        right: -2px;
        top: 0;
        bottom: 0;
        background: #e5e7eb; }
  .month-item {
    font: 400 14px 'Roboto', sans-serif;
    color: #212121;
    letter-spacing: 0.01em;
    padding: 0 12px;
    display: flex;
    align-items: center; }
  .month-prev {
    width: calc((40px + 4px)*6);
    flex-shrink: 0;
    position: relative; }
    .month-prev:after {
      content: '';
      width: 1px;
      position: absolute;
      right: 2px;
      top: 0;
      bottom: 0;
      background: #e5e7eb; }
  .month-next {
    width: 100%; }

.modal {
  padding: 24px;
  width: 100%;
  position: relative;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px 0 rgba(35, 35, 36, .16); }
  .modal .title-sm {
    margin: 0 0 4px; }
  .modal .title-md {
    font-weight: 500;
    margin: 0 0 16px; }
  .modal .close-button {
    position: absolute;
    top: 16px;
    right: 16px; }
    .modal .close-button img {
      width: 16px;
      height: 16px; }
  .modal .select-container {
    display: flex;
    gap: 4px; }
  .modal .buttons-container {
    display: flex;
    gap: 16px; }

.change-quotes {
  max-width: 898px; }
  .change-quotes .input-container {
    max-width: 498px;
    display: flex;
    gap: 16px; }
  .change-quotes .select-container {
    max-width: 498px;
    gap: 16px; }
  .change-quotes .box-container {
    display: flex;
    gap: 16px; }
  .change-quotes .buttons-container {
    justify-content: end; }
  .change-quotes .calendar .date-field {
    width: 241px; }

.change-assignment {
  max-width: 328px; }

.modal-container {
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center; }

.SumoSelect {
  width: 100%; }

.SumoSelect > .CaptionCont {
  font: 400 14px 'Roboto', sans-serif;
  color: #212121;
  padding: 0;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  min-height: auto;
  display: flex;
  align-items: center;
  transition: all 0.2s;
  cursor: pointer; }

.SumoSelect > .CaptionCont > span {
  padding: 0 12px;
  cursor: pointer; }

.SumoSelect > .CaptionCont > label {
  width: 40px; }

.SumoSelect > .CaptionCont > label > i {
  width: 40px;
  height: 40px;
  opacity: 1;
  cursor: pointer;
  background: url(/images/chevron/vertical_chevron.svg) no-repeat center;
  background-size: 16px 16px; }

.SumoSelect.open > .CaptionCont, .SumoSelect:focus > .CaptionCont, .SumoSelect:hover > .CaptionCont {
  border-color: #0ace82;
  box-shadow: none; }

.SumoSelect.open > .optWrapper {
  top: 44px;
  border: 1px solid #e6e8ea;
  border-radius: 6px;
  box-shadow: none; }

.SumoSelect > .optWrapper > .options {
  max-height: 300px; }

.SumoSelect > .optWrapper > .options li.opt {
  font: 400 14px 'Roboto', sans-serif;
  color: #212121;
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb; }

.SumoSelect > .optWrapper > .options li.opt:hover {
  background: #f9fbfc; }

.clear {
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none; }

.calendar {
  position: relative;
  display: flex;
  align-items: center; }
  .calendar .chevron {
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
    .calendar .chevron.right {
      transform: rotate(180deg); }
  .calendar .date-field {
    width: 228px;
    padding-left: 40px; }
  .calendar .ui-datepicker {
    margin-top: 0; }
  .calendar .ui-datepicker-trigger {
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    margin: auto;
    cursor: pointer; }

.wide-calendar {
  width: 100%; }
  .wide-calendar .date-field {
    width: 100%; }
  .wide-calendar .input-container {
    width: 100%; }

.highlighted-area {
  position: absolute;
  top: -49px;
  bottom: 0;
  margin-top: 2px;
  margin-bottom: 2px;
  margin-left: -4px;
  z-index: 1;
  background: rgba(10, 206, 130, .1);
  border-radius: 4px;
  border: 2px solid #0ace82;
  /*-- отступ горизонтальный --*/
  /*-- отступ вертикальный --*/
  /*-- ширина в колонках --*/
  /*-- высота в строках --*/ }
  .highlighted-area.l-grow-1 {
    margin-left: 40px; }
  .highlighted-area.l-grow-2 {
    margin-left: calc(40px + 44px); }
  .highlighted-area.l-grow-3 {
    margin-left: calc(40px + (44px*2)); }
  .highlighted-area.l-grow-4 {
    margin-left: calc(40px + (44px*3)); }
  .highlighted-area.l-grow-5 {
    margin-left: calc(40px + (44px*4)); }
  .highlighted-area.l-grow-6 {
    margin-left: calc(40px + (44px*5)); }
  .highlighted-area.l-grow-7 {
    margin-left: calc(40px + (44px*6)); }
  .highlighted-area.l-grow-8 {
    margin-left: calc(40px + (44px*7)); }
  .highlighted-area.l-grow-9 {
    margin-left: calc(40px + (44px*8)); }
  .highlighted-area.l-grow-10 {
    margin-left: calc(40px + (44px*9)); }
  .highlighted-area.v-grow-1 {
    margin-top: 46px; }
  .highlighted-area.v-grow-2 {
    margin-top: calc(46px + 44px); }
  .highlighted-area.v-grow-3 {
    margin-top: calc(46px + (44px*2)); }
  .highlighted-area.v-grow-4 {
    margin-top: calc(46px + (44px*3)); }
  .highlighted-area.v-grow-5 {
    margin-top: calc(46px + (44px*4)); }
  .highlighted-area.v-grow-6 {
    margin-top: calc(46px + (44px*5)); }
  .highlighted-area.v-grow-7 {
    margin-top: calc(46px + (44px*6)); }
  .highlighted-area.v-grow-8 {
    margin-top: calc(46px + (44px*7)); }
  .highlighted-area.v-grow-9 {
    margin-top: calc(46px + (44px*8)); }
  .highlighted-area.v-grow-10 {
    margin-top: calc(46px + (44px*9)); }
  .highlighted-area.w-grow-1 {
    width: 48px; }
  .highlighted-area.w-grow-2 {
    width: calc(48px + 44px); }
  .highlighted-area.w-grow-3 {
    width: calc(48px + (44px*2)); }
  .highlighted-area.w-grow-4 {
    width: calc(48px + (44px*3)); }
  .highlighted-area.w-grow-5 {
    width: calc(48px + (44px*4)); }
  .highlighted-area.w-grow-6 {
    width: calc(48px + (44px*5)); }
  .highlighted-area.w-grow-7 {
    width: calc(48px + (44px*6)); }
  .highlighted-area.w-grow-8 {
    width: calc(48px + (44px*7)); }
  .highlighted-area.w-grow-9 {
    width: calc(48px + (44px*8)); }
  .highlighted-area.w-grow-10 {
    width: calc(48px + (44px*9)); }
  .highlighted-area.h-grow-1 {
    height: 48px; }
  .highlighted-area.h-grow-2 {
    height: calc(48px + 44px); }
  .highlighted-area.h-grow-3 {
    height: calc(48px + (44px*2)); }
  .highlighted-area.h-grow-4 {
    height: calc(48px + (44px*2)); }
  .highlighted-area.h-grow-5 {
    height: calc(48px + (44px*2)); }
  .highlighted-area.h-grow-6 {
    height: calc(48px + (44px*2)); }
  .highlighted-area.h-grow-7 {
    height: calc(48px + (44px*2)); }
  .highlighted-area.h-grow-8 {
    height: calc(48px + (44px*2)); }
  .highlighted-area.h-grow-9 {
    height: calc(48px + (44px*2)); }
  .highlighted-area.h-grow-10 {
    height: calc(48px + (44px*2)); }

.area-wrapper {
  position: relative;
  padding: 2px 0; }
/* Стили для описания полей формы */
.field-description {
  font: 400 12px 'Roboto', sans-serif;
  color: #999;
  letter-spacing: 0.01em;
  margin: 4px 0 0;
  line-height: 1.4; }
/* Стиль для выделения важной информации в описании */
.field-description strong {
  font-weight: 500; }
/* Стиль для ссылок в описании */
.field-description a {
  color: #0ace82;
  text-decoration: none; }
  .field-description a:hover {
    text-decoration: underline; }
/* Отступы для описания в разных типах полей */
.box-content + .field-description {
  margin: 8px 0 0 32px;
  /* Выравнивание с checkbox label */ }
/* Для multiselect контейнеров */
.multiselect-alias-container + .field-description, .multiselect-quantity-container + .field-description {
  margin: 8px 0 0; }

.modal-message-box {
  max-width: 500px; }
