.qs-datepicker-container {
  font-size: 1rem;
  font-family: sans-serif;
  color: #000;
  position: absolute;
  width: 15.625em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 9001;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid grey;
  border-radius: .263921875em;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 1.25em 1.25em -.9375em rgba(0,0,0,.3);
  box-shadow: 0 1.25em 1.25em -.9375em rgba(0,0,0,.3);
}

.qs-datepicker-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

.qs-hidden {
  display: none;
}

.qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.75);
  color: #fff;
  width: 100%;
  height: 100%;
  padding: .5em;
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1;
}

.qs-overlay .qs-overlay-year {
  background: rgba(0,0,0,0);
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: .875em;
  padding: .25em 0;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.qs-overlay .qs-close {
  padding: .5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.qs-overlay .qs-submit {
  border: 1px solid #fff;
  border-radius: .263921875em;
  padding: .5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: hsla(0,0%,50.2%,.4);
}

.qs-overlay .qs-submit.qs-disabled {
  color: grey;
  border-color: grey;
  cursor: not-allowed;
}

.qs-overlay .qs-overlay-month-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.qs-overlay .qs-overlay-month {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% / 3);
  cursor: pointer;
  opacity: .5;
  -webkit-transition: opacity .15s;
  transition: opacity .15s;
}

.qs-overlay .qs-overlay-month.active,
.qs-overlay .qs-overlay-month:hover {
  opacity: 1;
}

.qs-controls {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #d3d3d3;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter .3s;
  transition: -webkit-filter .3s;
  transition: filter .3s;
  transition: filter .3s, -webkit-filter .3s;
}

.qs-controls.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-arrow {
  height: 1.5625em;
  width: 1.5625em;
  position: relative;
  cursor: pointer;
  border-radius: .263921875em;
  -webkit-transition: background .15s;
  transition: background .15s;
}

.qs-arrow:hover {
  background: rgba(0,0,0,.1);
}

.qs-arrow:hover.qs-left:after {
  border-right-color: #000;
}

.qs-arrow:hover.qs-right:after {
  border-left-color: #000;
}

.qs-arrow:after {
  content: "";
  border: .390625em solid rgba(0,0,0,0);
  position: absolute;
  top: 50%;
  -webkit-transition: border .2s;
  transition: border .2s;
}

.qs-arrow.qs-left:after {
  border-right-color: grey;
  right: 50%;
  -webkit-transform: translate(25%,-50%);
  -ms-transform: translate(25%,-50%);
  transform: translate(25%,-50%);
}

.qs-arrow.qs-right:after {
  border-left-color: grey;
  left: 50%;
  -webkit-transform: translate(-25%,-50%);
  -ms-transform: translate(-25%,-50%);
  transform: translate(-25%,-50%);
}

.qs-month-year {
  font-weight: 700;
  -webkit-transition: border .2s;
  transition: border .2s;
  border-bottom: 1px solid rgba(0,0,0,0);
}

.qs-month-year:not(.qs-disabled-year-overlay) {
  cursor: pointer;
}

.qs-month-year:not(.qs-disabled-year-overlay):hover {
  border-bottom: 1px solid grey;
}

.qs-month-year:active:focus,
.qs-month-year:focus {
  outline: none;
}

.qs-month {
  padding-right: .5ex;
}

.qs-year {
  padding-left: .5ex;
}

.qs-squares {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: .3125em;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter .3s;
  transition: -webkit-filter .3s;
  transition: filter .3s;
  transition: filter .3s, -webkit-filter .3s;
}

.qs-squares.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-square {
  width: calc(100% / 7);
  height: 1.5625em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: background .1s;
  transition: background .1s;
  border-radius: .263921875em;
}

.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: orange;
}

.qs-current {
  font-weight: 700;
  text-decoration: underline;
}

.qs-active,
.qs-range-end,
.qs-range-start {
  background: #add8e6;
}

.qs-range-start:not(.qs-range-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-range-middle {
  background: #d4ebf2;
}

.qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
  border-radius: 0;
}

.qs-range-middle.qs-range-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-range-end:not(.qs-range-0),
.qs-range-middle.qs-range-6 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qs-disabled,
.qs-outside-current-month {
  opacity: .2;
}

.qs-disabled {
  cursor: not-allowed;
}

.qs-day,
.qs-empty {
  cursor: default;
}

.qs-day {
  font-weight: 700;
  color: grey;
}

.qs-event {
  position: relative;
}

.qs-event:after {
  content: "";
  position: absolute;
  width: .46875em;
  height: .46875em;
  border-radius: 50%;
  background: #07f;
  bottom: 0;
  right: 0;
}

:root {
  --color-white: #fff;
  --color-white--rgb: 255, 255, 255;
  --color-black: #000;
  --color-black--rgb: 0, 0, 0;
  --color-black1: #212529;
  --color-black1--rgb: 33, 37, 41;
  --color-black2: #212B36;
  --color-black2--rgb: 33, 43, 54;
  --color-gray: #919EAB;
  --color-gray--rgb: 145, 158, 171;
  --color-gray1: #9E9E9E;
  --color-gray1--rgb: 158, 158, 158;
  --color-gray2: #F4F6F8;
  --color-gray2--rgb: 244, 246, 248;
  --color-gray3: #637381;
  --color-gray3--rgb: 99, 115, 129;
  --color-blue: #007BFF;
  --color-blue--rgb: 0, 123, 255;
  --color-blue1: #000064;
  --color-blue1--rgb: 0, 0, 100;
  --color-blueDark: #0468D3;
  --color-blueDark--rgb: 4, 104, 211;
  --color-red: #EB5757;
  --color-red--rgb: 235, 87, 87;
  --color-green: #27AE60;
  --color-green--rgb: 39, 174, 96;
  --font-primary: BlinkMacSystemFont, Roboto, Ubuntu, Droid Sans, Helvetica Neue, Arial, sans-serif, Apple Color Emoji;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

html,
body {
  height: 100%;
  min-width: 360px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: var(--color-black1);
  line-height: 1.5;
  font-family: BlinkMacSystemFont, Roboto, Ubuntu, "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: BlinkMacSystemFont, Roboto, Ubuntu, "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address,
cite {
  font-style: normal;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

::-moz-selection {
  color: var(--color-primary);
  background: var(--color-bg);
}

/*закомментировано, т.к. цвет выделения мышью был прозрачным
::selection {
  color: var(--color-primary);
  background: var(--color-bg);
}
*/

.container {
  --pad: 20px;
  max-width: calc(71.875rem);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 var(--pad);
  margin: 0 auto;
}

.content {
  padding-bottom: 3.75rem;
}

.button {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  font-family: BlinkMacSystemFont, Roboto, Ubuntu, "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji";
  font-weight: 400;
  padding: 0;
  cursor: pointer;
}

.button-primary {
  font-weight: 600;
  height: 2.875rem;
  padding: 0 1.5rem;
  background: var(--color-blue);
  color: var(--color-white);
  border-radius: 2.1875rem;
  -webkit-box-shadow: 0 4px 6.6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 6.6px rgba(0, 0, 0, 0.15);
}

.button-primary:hover {
  background: var(--color-blueDark);
}

.button-primary_sm {
  border-radius: 0.5rem;
  padding: 0 1.125rem;
}

.button-secondary {
  height: 2.875rem;
  padding: 0.625rem 0.9375rem;
  border: 1px solid rgba(145, 158, 171, 0.32);
  border-radius: 0.5rem;
}

.button-secondary svg {
  margin-right: 0.5rem;
}

.button-secondary:hover {
  background: rgba(145, 158, 171, 0.32);
}

.button-red {
  border: 1px solid var(--color-red);
  color: var(--color-red);
}

.button-red svg {
  fill: var(--color-red);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

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

.button-red:hover svg {
  fill: var(--color-white);
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.ibg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ibg--top {
  -o-object-position: top;
     object-position: top;
}

.ibg--bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.ibg--left {
  -o-object-position: left;
     object-position: left;
}

.ibg--right {
  -o-object-position: right;
     object-position: right;
}

.ibg--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

a,
button,
.button,
.transition,
.input {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  outline: none !important;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.cl-white {
  color: var(--color-white);
}

.cl-gray {
  color: var(--color-gray);
}

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

.fill-none {
  fill: none;
}

.fill-white {
  fill: var(--color-white);
}

.fill-gray {
  fill: var(--color-gray1);
}

.fill-gray-3 {
  fill: var(--color-gray3);
}

.fill-black-1 {
  fill: var(--color-black1);
}

.fill-black-2 {
  fill: var(--color-black2);
}

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

.fill-blue {
  fill: var(--color-blue);
}

.fill-green {
  fill: var(--color-green);
}

.stroke-black {
  stroke: var(--color-black);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.absolute-full {
  inset: 0;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-under {
  z-index: -1;
}

.radius-full {
  border-radius: 100%;
}

.upp {
  text-transform: uppercase;
}

.container-full {
  max-width: none;
}

.title {
  line-height: 1.2;
  font-weight: 600;
}

.title-primary {
  font-size: 2.25rem;
  margin-bottom: 1.875rem;
}

.title-secondary {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.title-ternary {
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
}

.text-base {
  max-width: 53.75rem;
}

.text-primary__picture {
  margin-right: 2.1875rem;
}

.text-primary__desc {
  max-width: 33.5rem;
}

.input {
  padding: 0 1.25rem;
  outline: none;
  border-radius: 0;
  border: 1px solid #0C0C0C;
  background: var(--color-white);
  width: 100%;
  height: 3rem;
  font-size: 1rem;
  color: var(--color-black);
  font-family: BlinkMacSystemFont, Roboto, Ubuntu, "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji";
}

.input::-webkit-input-placeholder {
  color: #6F6F6F;
}

.input::-moz-placeholder {
  color: #6F6F6F;
}

.input:-ms-input-placeholder {
  color: #6F6F6F;
}

.input::-ms-input-placeholder {
  color: #6F6F6F;
}

.input::placeholder {
  color: #6F6F6F;
}

.input-primary {
  border: 1px solid rgba(145, 158, 171, 0.32);
  border-radius: 8px;
  height: 3.5rem;
  padding: /*0 0.875rem;*/ 0 0.4rem;
  color: var(--color-black1);
  outline: none !important;
}

.input-primary::-webkit-input-placeholder {
  color: var(--color-gray);
}

.input-primary::-moz-placeholder {
  color: var(--color-gray);
}

.input-primary:-ms-input-placeholder {
  color: var(--color-gray);
}

.input-primary::-ms-input-placeholder {
  color: var(--color-gray);
}

.input-primary::placeholder {
  color: var(--color-gray);
}

.input-primary:focus {
  border-color: rgb(145, 158, 171);
}

.input-primary_area {
  width: 100%;
  height: 15rem;
  padding: 0.5rem 0.875rem;
}

.input-primary_sm {
  height: 2.875rem;
}

.input-primary_small {
  height: 2.1875rem;
}

.input-select {
  border: 1px solid rgba(145, 158, 171, 0.32);
  border-radius: 8px;
  height: 3.5rem;
  padding: 0 0.875rem;
  color: var(--color-black1);
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: clip;
}

.input-select:focus {
  border-color: rgb(145, 158, 171);
}

.input-select_small {
  height: 2.1875rem;
}

.w-full {
  max-width: 100%;
}
/* некорректно отображалась стрелка для select-ов в списках записей
.w-118 {
  width: 7.375rem;
}
*/
/* некорректно отображалась кнопка в модалке для смены статуса
.w-160 {
  width: 10rem;
}
*/

.w-190 {
  width: 11.875rem;
}

.h-auto {
  height: auto;
}

.mt-primary {
  margin-top: 6.0625rem;
}

.mt-secondary {
  margin-top: 3.125rem;
}

.mt-10 {
  margin-top: 0.625rem;
}

.mt-20 {
  margin-top: 1.25rem;
}

.mt-25 {
  margin-top: 1.5625rem;
}

.mt-30 {
  margin-top: 1.875rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mt-60 {
  margin-top: 3.75rem;
}

.mr-3 {
  margin-right: 0.1875rem;
}

.ml-20 {
  margin-left: 0.625rem;
}

.mr-10 {
  margin-right: 0.625rem;
}

.mr-20 {
  margin-right: 1.25rem;
}

.mr-24 {
  margin-right: 1.5rem;
}

.mr-30 {
  margin-right: 1.875rem;
}

.ml-7 {
  margin-left: 0.4375rem;
}

.ml-20 {
  margin-left: 1.25rem;
}

.mb-27 {
  margin-bottom: 1.6875rem;
}

.py-40 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.fs-12 {
  font-size: 0.75rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.image {
  width: 100%;
  height: auto;
}

.image-hover {
  overflow: hidden;
}

.image-hover:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.center {
  text-align: center;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.picture img {
  width: 100%;
}

.leading {
  line-height: 1;
}

.leading-1 {
  line-height: 1.1;
}

.link-primary {
  color: var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
}

.link-primary:hover {
  border-color: rgba(var(--color-blue--rgb), 0);
}

.link-black {
  border-bottom: 1px solid var(--color-black1);
}

.link-black:hover {
  border-color: rgba(var(--color-black1--rgb), 0);
}

.nowrap {
  white-space: nowrap;
}

.form-primary {
  padding: 5rem 0;
  text-align: center;
}

.form-primary__title {
  margin-bottom: 1rem;
}

.form-primary__form {
  width: 100%;
  max-width: 21.875rem;
  margin-top: 1.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-row-gap: 1.25rem;
}

.form-primary__input {
  padding-right: 3.125rem;
}

.form-primary__button {
  width: 10rem;
}

.form-primary__icon {
  right: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-secondary {
  max-width: 45.625rem;
}

.table {
  overflow-x: auto;
}

.table::-webkit-scrollbar {
  height: 5px;
  width: 6px;
}

.table::-webkit-scrollbar-track {
  background: none;
}

.table::-webkit-scrollbar-thumb {
  background: none;
}

.table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  line-height: 1.5;
  min-width: 43.75rem;
}

.table th {
  background: var(--color-gray2);
  font-weight: 600;
  padding: 0.5625rem 1.5625rem;
  /*text-align: left;*/
}

.table th:first-child {
  border-radius: 0.5rem 0 0 0.5rem;
}

.table th:last-child {
  border-radius: 0 0.5rem 0.5rem 0;
}

.table td {
/*  padding: 0.875rem 1.5625rem;*/
  border-bottom: 1px solid rgba(145, 158, 171, 0.24);
}

.table-primary table {
  min-width: 59.375rem;
}

.table-primary table tr:nth-child(even) {
	background: #eee;
}

.table-primary td,
.table-primary th {
  padding-left: .5em/*1.5625rem*/;
  padding-right: 0;
}
/*
.table-primary td:last-child,
.table-primary th:last-child {
  padding-right: 1.5625rem;
}
*/
.table-primary th:nth-child(1) {
  width: 6.5%;
}

.table-primary th:nth-child(2) {
  width: 17%;
}

.table-primary th:nth-child(3) {
  width: 17%;
}

.table-primary th:nth-child(4) {
  /*width: 17.5%;*/
}

.table-secondary th:nth-child(1) {
  width: 6.5%;
}

.table-secondary th:nth-child(2) {
  width: 25.5%;
}

.table-secondary th:nth-child(3) {
  width: 26%;
}

.table-secondary th:nth-child(4) {
  width: 25.5%;
}

.table__sort {
  margin-right: 0.875rem;
}

.table__sort svg {
  fill: var(--color-gray1);
}

.table__sort.active svg {
  fill: var(--color-blue);
}

.pages {
  margin-top: 2.75rem;
}

.pages li {
  min-width: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0.1875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pages li:first-child {
  margin-left: 0;
}

.pages li:first-child svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.pages li:last-child {
  margin-right: 0;
}

.pages__item {
  border: 1px solid rgba(145, 158, 171, 0.32);
  border-radius: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-decoration: none !important;
}

.pages__item:hover {
  background: rgba(145, 158, 171, 0.16);
}

.pages__item svg {
  fill: var(--color-black2);
}

.pages__active {
  background: rgba(145, 158, 171, 0.16);
  border: 1px solid rgba(145, 158, 171, 0.32);
  font-weight: 600;
  cursor: default;
}

.pages__disabled {
  background: var(--color-white) !important;
}

.pages__disabled svg {
  fill: rgba(145, 158, 171, 0.8);
}

.list-primary {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-row-gap: 1.875rem;
}

.list-primary li {
  position: relative;
  padding-left: 2.8125rem;
}

.list-primary li:before {
  content: "";
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background-color: var(--color-blue);
  background-image: url(../img/icons/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0.3125rem;
}

.list-secondary > li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 600;
  margin-top: 0.625rem;
}

.list-secondary > li:first-child {
  margin-top: 0;
}

.list-secondary > li:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.4375rem;
  background: var(--color-blue);
}

.list-secondary > li li {
  font-weight: 400;
  margin-top: 0.625rem;
}

.accordion__item {
  -webkit-box-shadow: inset 0px -1px 0px rgba(145, 158, 171, 0.24);
          box-shadow: inset 0px -1px 0px rgba(145, 158, 171, 0.24);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.accordion__item.open {
  -webkit-box-shadow: 0 8px 16px rgba(145, 158, 171, 0.24);
          box-shadow: 0 8px 16px rgba(145, 158, 171, 0.24);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.accordion__item.open .accordion__head {
  font-weight: 600;
}

.accordion__item.open .accordion__arw {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.accordion__item:last-child.open {
  margin-bottom: 0;
}

.accordion__head {
  padding: 0.75rem 1rem;
  cursor: pointer;
  position: relative;
}

.accordion__arw {
  right: 1rem;
  top: 50%;
  margin-top: -0.6875rem;
  pointer-events: none;
}

.accordion__body {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  max-height: 0;
  overflow: hidden;
}

.accordion__body p {
  padding: 1rem;
}

.accordion-primary {
  max-width: 45.625rem;
}

.person__buttons {
  row-gap: 0.9375rem;
}

.person__edit .button {
  margin-right: 1.0625rem;
}

.person__list {
  line-height: 1.5;
  border-bottom: 1px solid var(--color-gray2);
}

.person__list li {
  padding: 0.8125rem 2.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.person__list li:nth-child(2n+1) {
  background: var(--color-gray2);
  border-radius: 0.5rem;
}

.person__list li b {
  font-weight: 600;
  /*min-*/width: 21.25rem;
}

.person__head {
  -ms-grid-columns: 15.8125rem 1fr;
  grid-template-columns: 15.8125rem 1fr;
  grid-column-gap: 2rem;
  margin-top: 2.5rem;
}

.comment__item {
  padding: 1rem;
}

.comment__item:nth-child(2n+1) {
  background: var(--color-gray2);
  border-radius: 0.5rem;
}

.comment__head {
  margin-bottom: 0.5rem;
}

.search__field {
  margin-right: 1.875rem;
}

.search__icon {
  left: 1.6875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.search__input {
  padding-left: 3.75rem;
  width: 11.875rem;
}

.edit__row {
  -ms-grid-columns: 17.8125rem 1fr;
  grid-template-columns: 17.8125rem 1fr;
}

.edit__title {
  min-height: 3.5rem;
}

.edit__col-primary {
  -ms-grid-columns: 31% 1fr;
  grid-template-columns: 31% 1fr;
  grid-column-gap: 1.875rem;
}

.edit__col-2 {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.edit__col-3 {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1.875rem;
}

.edit__hr {
  height: 0.0625rem;
  border: 0;
  width: 100%;
  background: rgba(145, 158, 171, 0.24);
  margin: 3.4375rem 0;
}

.radio {
  position: relative;
}

.radio label {
  padding-left: 1.875rem;
  position: relative;
}

.radio label:before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid var(--color-gray3);
  position: absolute;
  left: 0;
  top: 2px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.radio label:after {
  content: "";
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 50%;
  width: 0.625rem;
  height: 0.625rem;
  background: var(--color-blue);
  top: 0.4375rem;
  left: 0.3125rem;
}

.radio input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.radio input:checked + label:before {
  border-color: var(--color-blue);
}

.radio input:checked + label:after {
  opacity: 1;
}

.icon-date {
  right: 1.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.select:after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icons/sel.svg) no-repeat;
  pointer-events: none;
}

.file {
  position: relative;
}

.file input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.file u {
  text-decoration: none;
  border-bottom: 1px solid var(--color-black1);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.file-desc {
  cursor: pointer;
}

.file-desc:hover u {
  border-color: rgba(var(--color-black1--rgb), 0);
}

.file-remove {
  cursor: pointer;
}

.file.selected .file-desc {
  display: none;
}

.checkbox {
  position: relative;
}

.checkbox label {
  padding-left: 1.8125rem;
  position: relative;
  min-height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkbox label:before {
  content: "";
  border: 2px solid var(--color-black2);
  background: var(--color-white);
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 0.25rem;
  position: absolute;
  left: 0;
  top: 0.6875rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.checkbox label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6875rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/icons/check1.svg) no-repeat;
  opacity: 0;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.checkbox input:checked + label:before {
  border-color: var(--color-blue);
}

.checkbox input:checked + label:after {
  opacity: 1;
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  will-change: transform;
}

.modal__container {
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-height: 100vh;
  width: 100%;
  max-width: 540px;
  overflow-y: auto;
  padding: 3.75rem 1.25rem;
  position: relative;
}

.modal__close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  z-index: 50;
}

.modal__close svg {
  pointer-events: none;
}

.modal__form-1 {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 27.1875rem;
}

.modal__grid {
  width: 100%;
  grid-row-gap: 1.75rem;
}

.modal__grid_sm {
  max-width: 21.875rem;
}

.datepicker {
  cursor: pointer;
}

.header {
  background: var(--color-blue1);
  position: relative;
}

.header__container {
  height: 3.5rem;
}

.header__logo {
  color: var(--color-white);
  font-size: 1.25rem;
  text-decoration: none;
}

.header__nav {
  font-size: 0.9375rem;
}

.menu-open .header__nav {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.header__nav li {
  margin-left: 1rem;
}

.header__nav a {
  color: rgba(var(--color-white--rgb), 0.5);
}

.header__nav a:hover, .header__nav a.active {
  color: rgba(var(--color-white--rgb), 1);
}

.header__button {
  display: none;
}

.breadcrumbs {
  margin: 1.4375rem 0;
}

.breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-gray);
}

.breadcrumbs li:after {
  content: "";
  background: var(--color-gray);
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  margin: 0 1rem;
}

.breadcrumbs li:last-child:after {
  display: none;
}

.breadcrumbs a {
  color: var(--color-black1);
  border-bottom: 1px solid rgba(var(--color-black1--rgb), 0);
}

.breadcrumbs a:hover {
  border-color: rgba(var(--color-black1--rgb), 1);
}

.welcome {
  padding: 5rem 0;
}

.welcome__title {
  margin-bottom: 2.1875rem;
}

.welcome__payment {
  min-width: 49%;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 0.8125rem;
  margin-right: 4.375rem;
  padding: 3.75rem;
}

.welcome__row {
  width: 100%;
  max-width: 21.875rem;
  row-gap: 1.6875rem;
}

.welcome__desc {
  max-width: 27.8125rem;
}

@media (max-width: 61.99875em) {
  .title-primary {
    font-size: 1.9375rem;
  }

  .title-secondary {
    font-size: 1.375rem;
  }

  .title-ternary {
    font-size: 1.125rem;
  }

  .text-primary {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .text-primary__picture img {
    width: 21.875rem;
    height: auto;
  }

  .person__head {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 1.875rem;
  }

  .edit__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .edit__col-3 {
    grid-column-gap: 1.25rem;
  }

  .header__nav {
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--color-blue1);
    display: -ms-grid;
    display: grid;
    grid-row-gap: 0.625rem;
    padding: 1.25rem 1.875rem;
    -webkit-transform: translateX(110%);
        -ms-transform: translateX(110%);
            transform: translateX(110%);
    z-index: 10;
  }

  .header__nav li {
    margin: 0;
  }

  .header__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .welcome__payment {
    padding: 1.875rem;
    margin-right: 1.875rem;
  }

  .welcome__row {
    row-gap: 1.25rem;
  }
}

@media (max-width: 47.99875em) {
  .title-primary {
    font-size: 1.625rem;
  }

  .title-secondary {
    font-size: 1.25rem;
  }

  .title-ternary {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .text-primary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .text-primary__picture {
    margin-right: 0;
  }

  .text-primary__picture img {
    width: 100%;
    max-width: 100%;
  }

  .text-primary__desc {
    margin-top: 1.875rem;
    max-width: none;
  }

  .mt-primary {
    margin-top: 3.125rem;
  }

  .table th {
    padding: 0.5625rem 0.9375rem;
  }

  .table td {
    padding: 0.625rem 0.9375rem;
  }

  .table-primary td,
  .table-primary th {
    padding-left: 0.9375rem;
  }

  .table-primary td:last-child,
  .table-primary th:last-child {
    padding-right: 0.9375rem;
  }

  .pages {
    margin-top: 1.875rem;
  }

  .pages ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .pages li {
    min-width: 2.1875rem;
  }

  .pages__item {
    width: 2.1875rem;
    height: 2.1875rem;
  }

  .person__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .person__edit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .person__edit .button {
    margin: 0 0 0.625rem 0;
  }

  .person__list li {
    padding: 0.625rem 0.9375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .person__list li b {
    /*min-*/width: auto;
  }

  .edit__col-primary {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 1.25rem;
  }

  .edit__col-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 1.25rem;
  }

  .edit__col-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 0.9375rem;
  }

  .modal__container {
    padding: 2.5rem 1.25rem;
  }

  .modal__close {
    right: 0.625rem;
    top: 0.625rem;
  }

  .modal__grid {
    grid-row-gap: 0.9375rem;
  }

  .mb_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .mb_flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .mb_flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .mb_flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .mb_flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .mb_flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .mb_flex-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .mb_items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .mb_items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .mb_items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .mb_mt-10 {
    margin-top: 0.625rem;
  }

  .welcome {
    padding: 2.5rem 0;
  }

  .welcome__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .welcome__title {
    margin-bottom: 1.875rem;
  }

  .welcome__payment {
    margin-top: 2.5rem;
    margin-right: 0;
    padding: 1.25rem;
    width: 100%;
  }

  .welcome__desc {
    max-width: none;
  }
}

@media (max-width: 29.99875em) {
  .search {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    grid-column-gap: 0.625rem;
  }

  .search__field {
    margin-right: 0;
  }

  .search__icon {
    left: 0.625rem;
  }

  .search__input {
    width: 100%;
    padding-left: 2.5rem;
  }

  .edit__date {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .sm_w-full {
    width: 100%;
  }
}
/*отключаем НЕнужные сбросы*/
p {
	margin: 1em 0;
}
.items-justify {
	justify-content: center;
}
#ok-content a {
	text-decoration:underline;
}
#ok-content a.button {
	text-decoration:none;
}
/*табы*/
.tab {
    overflow: hidden;
    margin-top: 2em;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

.tab button:hover {
    background-color: #ddd;
    border-radius: 0.5rem;
}

.tab button.active {
    background-color: #ddd;
    border-radius: 0.5rem;
}

.tabcontent {
    display: none;
}
/*перенсос элементов в пути*/
.path{
	flex-wrap: wrap;
}
/*подвал*/
.footer {
    background: var(--color-gray2);
    /*position: relative;*/ /*копирайты налезали на модалки*/
}
.footer .flex {
	flex-wrap: wrap;
}
/*учеличение ширины модалки*/
.modal__container-big {
	max-width: 99%;
	height: 99%;
}
/*учеличение высоту внутри модалки*/
.modal__container-big .modal__grid {
	height: 90%;
}
@media (max-width: 768px) {
	.modal__container-big {
		max-width: 99%;
		height: 99%;
	}	
}
#csv-buttons{
	display: flex;
    align-items: center;
    padding-bottom: 1em;
    gap: 1em;
    float: right;
}
/*виджет цветных номеров при просмотре спортсмена*/
.colors-widjet{
	display:flex;justify-content:space-evenly;
	background-color: var(--color-gray2);
	margin: -1em 0;
	width: 253px;
}
.colors-widjet div {
	width: 50%;
    text-align: center;
    padding: .5em;
    margin: 1em 0.5em .5em;
    border-radius: 5px;
    text-transform: uppercase;
}
.colors-header{
	font-weight: bold;
}
.colors-item{
	color:white;
}
.view4event .colors-widjet{
	background: none;
	margin: -1em 0 -1em -1em;
	width: 140px;
}
.mt-20 .colors-widjet{
	background: none;
	margin: 1px;
	width: 49px;
}
.view4event .colors-widjet div{
	margin: 1em 0.5em;
    text-transform: lowercase;
}
.mt-20 .colors-widjet div{
	margin: 1em 0.1em;
    text-transform: lowercase;
    color: transparent;
    font-size: 10px;
}
/*жеребьёвка*/
.draw-wrapper{
	display: flex;
    justify-content: flex-start;
    padding-bottom: 2em;
}
.draw-col{
	display:flex;
	flex-direction: column;
    justify-content: space-around;
}
.draw-cell{
	border: 1px solid gray;
	border-radius: .5em;
    padding: .1em;
    min-width: 3em;
    margin: .1em 2em .1em 0;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    flex-direction: column;
    /*gap: 1em;*/
    min-height: 3em;
    justify-content: center;
}
.draw-col-lines{
	display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 4em;
    align-items: center;
}
.draw-cell-lines{
	border-top: 1px dotted gray;
	border-right: 1px dotted gray;
	border-bottom: 1px dotted gray;
	border-radius: 0em 1em 1em 0em;
	padding: .1em 1em;
    width: 20px;
    margin: 0 2em 0 -2em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.draw-cell-lines-inner{
	border-top: 1px dotted gray;
    width: 20px;
    margin: 1.5em 0em 0 1em;
    padding: 0 1em;
}
.draw-name{
    font-weight: bold;
}
.draw-region{
    display: flex;
    gap: .5em;
    align-items: center;
}
.draw-region img{
    height: 1em;
}
/*
.draw-level{
	border-radius: 1em;
	width: 1.5em;
}
*/
.draw-cell * {
    pointer-events: none;
}
.moveable{
	cursor: n-resize;
}