@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/Onest-Black.woff") format("woff"), url("../fonts/Onest-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/Onest-Medium.woff") format("woff"), url("../fonts/Onest-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/Onest-Regular.woff") format("woff"), url("../fonts/Onest-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/Onest-SemiBold.woff") format("woff"), url("../fonts/Onest-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/Onest-Bold.woff") format("woff"), url("../fonts/Onest-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

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

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Onest";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Onest";
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

body {
  color: #000;
  font-size: 16px;
  background: #F8F8F8;
  line-height: 1.2;
}

body::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
  display: inline-block;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

body._lock {
  overflow: hidden;
}

body._lock .header {
  background: #fff;
}

body._lock::after {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

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

._container {
  padding: 0px 20px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

._container._mini {
  max-width: 1020px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 0px;
}

.btn._fw {
  width: 100%;
}
.bottom-footer__bank {
    width:330px;
}
.bottom-footer__bank img{
    width:100%;
    height:50px;
}
.select {
  position: relative;
}

.select__item {
  position: relative;
}

.select__title {
  color: #000;
  border: 1px solid #C5C5C5;
  background-color: #fff;
  cursor: pointer;
  border-radius: 8px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  height: 46px;
  padding: 0px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.select__value span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.select__value:before {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 12px;
  height: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  border-radius: 8px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #C5C5C5;
  font-size: 14px;
  padding: 0px;
  overflow-y: auto;
  max-height: 300px;
}

.select__option {
  cursor: pointer;
  padding: 10px 20px;
  margin: 0px 0px 0px 0px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

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

.select._active .select__value:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input._timepick {
  color: #000;
  background: url(../img/icons/time.svg) calc(100% - 10px) center/20px no-repeat, #fff;
}

input._timepick::-webkit-calendar-picker-indicator {
  opacity: 0;
}

input._date {
  background: url(../img/icons/date.svg) calc(100% - 10px) center/20px no-repeat, #fff;
}

.input {
  border-radius: 8px;
  border: 1px solid #C5C5C5;
  background: #fff;
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  display: block;
  padding: 0px 20px;
  color: #AFAFAF;
  font-size: 14px;
  font-weight: 400;
  min-height: 48px;
  -webkit-transition: border-color 0.3s 0s;
  -o-transition: border-color 0.3s 0s;
  transition: border-color 0.3s 0s;
}

.input::-webkit-input-placeholder {
  color: #AFAFAF;
}

.input::-moz-placeholder {
  color: #AFAFAF;
}

.input:-ms-input-placeholder {
  color: #AFAFAF;
}

.input::-ms-input-placeholder {
  color: #AFAFAF;
}

.input::placeholder {
  color: #AFAFAF;
}

.input:focus {
  border-color: #000;
}

.input:focus:not(._timepick)::-webkit-input-placeholder {
  opacity: 0;
}

.input:focus:not(._timepick)::-moz-placeholder {
  opacity: 0;
}

.input:focus:not(._timepick):-ms-input-placeholder {
  opacity: 0;
}

.input:focus:not(._timepick)::-ms-input-placeholder {
  opacity: 0;
}

.input:focus:not(._timepick)::placeholder {
  opacity: 0;
}

.input._focus {
  color: #000;
}

.input._error {
  border-color: #F11B1B;
}

textarea.input {
  resize: none;
  padding: 12px 20px;
  height: 100px;
}

label._required::after {
  content: "*";
  color: #E12323;
  font-weight: 700;
  display: inline-block;
  margin-left: 5px;
}

._inp {
  position: relative;
}

.timepicker__options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  max-height: 280px;
  overflow-y: auto;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
  z-index: 1;
  border-radius: 12px;
  display: none;
}

.timepicker__option {
  padding: 10px 20px;
  background: #fff;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.timepicker__option._active {
  background: #3B5EDD;
  color: #fff;
}

.viewpass {
  cursor: pointer;
}

.viewpass._active .viewpass__view {
  display: none;
}

.viewpass._active .viewpass__hide {
  display: block;
}

.viewpass__view {
  width: 24px;
  height: 24px;
}

.viewpass__hide {
  width: 24px;
  height: 24px;
  display: none;
}

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.checkbox__input:checked + .checkbox__content:before {
  background: url("../img/icons/check.svg") center/24px no-repeat, #3B5EDD;
  border-color: #3B5EDD;
}

.checkbox__content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 12px;
  color: #000;
  font-weight: 400;
  cursor: pointer;
}

.checkbox__content:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 10px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #C5C5C5;
  border-radius: 4px;
}

.checkbox a {
  color: #3B5EDD;
}

.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}

.options__item {
  position: relative;
  cursor: pointer;
}

.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}

.options__input:checked + .options__content {
  background: #3B5EDD;
  color: #fff;
  border-color: #3B5EDD;
}

.options__content {
  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;
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #626262;
  min-height: 46px;
  border: 1px solid #626262;
  border-radius: 8px;
  padding: 8px 15px;
}

.rating-block {
  display: table;
  font-size: 0;
}

.rating {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.rating.edit .star {
  cursor: pointer;
}

.rating .star {
  width: 17px;
  height: 14px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.rating__line {
  position: absolute;
  width: 85px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating.svg") 0 0 no-repeat;
  z-index: 1;
  background-size: 85px 100%;
}

.rating__activeline {
  position: absolute;
  width: 0px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating_active.svg") 0 0 no-repeat;
  z-index: 2;
  background-size: 85px 100%;
}

.rating__value {
  display: inline-block;
  color: #1b3139;
  font-size: 14px;
  line-height: 13px;
  vertical-align: middle;
}

.quantity {
  width: 88px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}

.quantity__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.quantity__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

img,
svg {
  max-width: 100%;
  max-height: 100%;
  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;
  vertical-align: middle;
}

picture {
  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;
}

._btn {
  padding: 5px 20px;
  min-height: 54px;
  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;
  color: #fff;
  background: #3B5EDD;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

._btn._disabled {
  background: #D9D9D9;
  color: #fff;
  pointer-events: none;
}

._btn img,
._btn svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

._btn._stroke {
  background: transparent;
  border: 1px solid #3B5EDD;
  color: #3B5EDD;
}

._btn._stroke svg path {
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

._btn._stroke svg path[fill] {
  fill: #3B5EDD;
}

._btn._stroke svg path[stroke] {
  stroke: #3B5EDD;
}

._btn._stroke._dark {
  border-color: #000;
  color: #000;
}

._btn._stroke._dark svg path[fill] {
  fill: #000;
}

._btn._stroke._dark svg path[stroke] {
  stroke: #000;
}

._title {
  color: #000;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}

ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}

ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.moretext {
  overflow: hidden;
}

.moretext__more {
  cursor: pointer;
}

.moretext__more span {
  font-style: normal;
}

.moretext__more span:first-child {
  display: block;
}

.moretext__more span:last-child {
  display: none;
}

.moretext__more.active span {
  font-style: normal;
}

.moretext__more.active span:first-child {
  display: none;
}

.moretext__more.active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}

._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

._swiper.swiper-container-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.slick-slider {
  position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slick-slider .slick-track {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slider .slick-slide {
  position: relative;
}

.tab__item {
  display: none;
}

.tab__item.active {
  display: block;
}

._tabs-block,
._tabs-block-2 {
  display: none;
}

._tabs-block._active,
._tabs-block-2._active {
  display: block;
}

.mirror {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

.gm-style-iw-t {
  opacity: 0;
}

.baloon {
  opacity: 1;
  right: -7px !important;
  bottom: 80px !important;
}

.baloon button {
  display: none !important;
}

.baloon:after {
  display: none !important;
}

.baloon-style {
  display: none;
}

.baloon-content.gm-style-iw {
  opacity: 1;
  border-radius: 0px !important;
  max-width: 300px !important;
  padding: 0 !important;
  left: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
  overflow: hidden !important;
  max-width: none !important;
}

.baloon-content.gm-style-iw:after {
  display: none !important;
}

.baloon-close {
  top: 18px !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}

._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.paggination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.paggination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(59, 94, 221, 0.2);
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  cursor: pointer;
}

.paggination .swiper-pagination-bullet-active {
  background: #3B5EDD;
}

.air-datepicker-cell.-day-.-other-month-,
.air-datepicker-cell.-year-.-other-decade- {
  color: var(--adp-color-other-month);
}

.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month-,
.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade- {
  color: var(--adp-color-other-month);
}

.-selected-.air-datepicker-cell.-day-.-other-month-,
.-selected-.air-datepicker-cell.-year-.-other-decade- {
  background: #F3F3F3;
}

.-selected-.-focus-.air-datepicker-cell.-day-.-other-month-,
.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade- {
  background: var(--adp-background-color-selected-other-month-focused);
}

.-in-range-.air-datepicker-cell.-day-.-other-month-,
.-in-range-.air-datepicker-cell.-year-.-other-decade- {
  background-color: var(--adp-background-color-in-range);
  color: var(--adp-color);
}

.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month-,
.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade- {
  background-color: var(--adp-background-color-in-range-focused);
}

.air-datepicker-cell.-day-.-other-month-:empty,
.air-datepicker-cell.-year-.-other-decade-:empty {
  background: none;
  border: none;
}

.air-datepicker-cell {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  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;
  text-align: center;
  color: #000;
  padding: 22px 0px;
}

.air-datepicker-cell:not(.-selected-, .-day-complited-, .-disabled-).-focus- {
  color: #3B5EDD !important;
}

.air-datepicker-cell.-day-:not(.-other-month-).-first-half-day- {
  position: relative;
}

.air-datepicker-cell.-day-:not(.-other-month-).-first-half-day-::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(160, 12, 8, 0.1);
  border-radius: 4px 4px 0px 0px;
}

.air-datepicker-cell.-day-:not(.-other-month-).-second-half-day- {
  position: relative;
}

.air-datepicker-cell.-day-:not(.-other-month-).-second-half-day-::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(160, 12, 8, 0.1);
  border-radius: 0px 0px 4px 4px;
}

.air-datepicker-cell.-day-:not(.-other-month-).-before-day- {
  opacity: 0.5;
}

.air-datepicker-cell.-day-.-day-comlited- {
  color: #C7C7C7;
}

.air-datepicker-cell.-disabled- {
  cursor: default;
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-disabled-.-in-range- {
  color: var(--adp-color-disabled-in-range);
}

.air-datepicker-cell.-disabled-.-current-.-focus- {
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-in-range- {
  background: var(--adp-cell-background-color-in-range);
  border: none;
}

.air-datepicker-cell.-range-from- {
  background-color: var(--adp-cell-background-color-in-range) !important;
}

.air-datepicker-cell.-range-to- {
  background-color: var(--adp-cell-background-color-in-range) !important;
}

.air-datepicker-cell.-range-to-.-range-from- {
  border-radius: var(--adp-cell-border-radius);
}

.air-datepicker-cell.-selected- {
  background: #3B5EDD !important;
  color: #fff;
}

.air-datepicker-cell.-selected-.-current- {
  background: var(--adp-cell-background-color-selected);
}

.air-datepicker-cell.-selected-.-current-.-selected- {
  background: #F3F3F3;
}

.air-datepicker-body {
  -webkit-transition: all var(--adp-transition-duration) var(--adp-transition-ease);
  -o-transition: all var(--adp-transition-duration) var(--adp-transition-ease);
  transition: all var(--adp-transition-duration) var(--adp-transition-ease);
}

.air-datepicker-body.-hidden- {
  display: none;
}

.air-datepicker-body--day-names {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (var(--adp-day-cell-width))[7];
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
}

.air-datepicker-body--day-name {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #000;
  text-transform: uppercase;
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.air-datepicker-body--cells {
  display: -ms-grid;
  display: grid;
}

.air-datepicker-body--cells.-days- {
  -ms-grid-columns: (var(--adp-day-cell-width))[7];
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  grid-auto-rows: var(--adp-day-cell-height);
  -webkit-column-gap: 0px;
     -moz-column-gap: 0px;
          column-gap: 0px;
  row-gap: 4px;
}

.air-datepicker-body--cells.-months- {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: var(--adp-month-cell-height);
  -webkit-column-gap: 0px;
     -moz-column-gap: 0px;
          column-gap: 0px;
  row-gap: 4px;
}

.air-datepicker-body--cells.-years- {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: var(--adp-year-cell-height);
}

.air-datepicker-nav {
  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-sizing: border-box;
          box-sizing: border-box;
}

.-only-timepicker- .air-datepicker-nav {
  display: none;
}

.air-datepicker-nav--title,
.air-datepicker-nav--action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.air-datepicker-nav--action {
  width: 24px;
  height: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: var(--adp-border-radius);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.air-datepicker-nav--action[data-action=prev] {
  background: url(../img/icons/calendar-prev.svg) center/cover no-repeat;
}

.air-datepicker-nav--action[data-action=next] {
  background: url(../img/icons/calendar-next.svg) center/cover no-repeat;
}

.air-datepicker-nav--action.-disabled- {
  visibility: hidden;
}

.air-datepicker-nav--action svg {
  display: none;
}

.air-datepicker-nav--action path {
  fill: none;
  stroke: #1D272F;
  stroke-width: 2px;
}

.air-datepicker-nav--title {
  font-weight: 600;
  font-size: 20px;
  color: #1D272F;
  border-radius: var(--adp-border-radius);
  padding: 0 8px;
}

.air-datepicker-nav--title i {
  font-style: normal;
  color: var(--adp-nav-color-secondary);
  margin-left: 0.3em;
}

.air-datepicker-nav--title:active {
  background: var(--adp-background-color-active);
}

.air-datepicker-nav--title.-disabled- {
  cursor: default;
  background: none;
}

.air-datepicker-buttons {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}

.air-datepicker-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--adp-btn-color);
  border-radius: var(--adp-btn-border-radius);
  cursor: pointer;
  height: var(--adp-btn-height);
  border: none;
  background: rgba(255, 255, 255, 0);
}

.air-datepicker-button:focus {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
  outline: none;
}

.air-datepicker-button:active {
  background: var(--adp-btn-background-color-active);
}

.air-datepicker-button span {
  outline: none;
  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;
  width: 100%;
  height: 100%;
}

.air-datepicker-time {
  display: -ms-grid;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  -ms-grid-columns: -webkit-max-content 1fr;
  -ms-grid-columns: max-content 1fr;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 var(--adp-time-padding-inner);
}

.-only-timepicker- .air-datepicker-time {
  border-top: none;
}

.air-datepicker-time--current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  text-align: center;
}

.air-datepicker-time--current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}

.air-datepicker-time--current-hours,
.air-datepicker-time--current-minutes {
  line-height: 1;
  font-size: 19px;
  position: relative;
  z-index: 1;
}

.air-datepicker-time--current-hours:after,
.air-datepicker-time--current-minutes:after {
  content: "";
  background: var(--adp-background-color-hover);
  border-radius: var(--adp-border-radius);
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}

.air-datepicker-time--current-hours.-focus-:after,
.air-datepicker-time--current-minutes.-focus-:after {
  opacity: 1;
}

.air-datepicker-time--current-ampm {
  text-transform: uppercase;
  -ms-flex-item-align: end;
      align-self: flex-end;
  color: var(--adp-time-day-period-color);
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}

.air-datepicker-time--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 11px;
  height: 17px;
  background: -webkit-gradient(linear, left top, right top, from(var(--adp-time-track-color)), to(var(--adp-time-track-color))) left 50%/100% var(--adp-time-track-height) no-repeat;
  background: -o-linear-gradient(left, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat;
  background: linear-gradient(to right, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat;
}

.air-datepicker-time--row:first-child {
  margin-bottom: 4px;
}

.air-datepicker-time--row input[type=range] {
  background: none;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]::-ms-tooltip {
  display: none;
}

.air-datepicker-time--row input[type=range]:focus {
  outline: none;
}

.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]:focus::-ms-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -webkit-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -moz-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -ms-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  margin-top: calc(var(--adp-time-thumb-size) / 2 * -1);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.air-datepicker-time--row input[type=range]::-moz-range-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.air-datepicker-time--row input[type=range]::-ms-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.air-datepicker-time--row input[type=range]::-ms-fill-lower {
  background: transparent;
}

.air-datepicker-time--row input[type=range]::-ms-fill-upper {
  background: transparent;
}

.air-datepicker {
  --adp-font-size: 14px;
  --adp-width: 246px;
  --adp-z-index: 100;
  --adp-padding: 4px;
  --adp-grid-areas: "nav"
      "body"
      "timepicker"
      "buttons";
  --adp-transition-duration: .3s;
  --adp-transition-ease: ease-out;
  --adp-transition-offset: 8px;
  --adp-background-color: #fff;
  --adp-background-color-hover: #f0f0f0;
  --adp-background-color-active: #eaeaea;
  --adp-background-color-in-range: rgba(160, 12, 8, 0.1);
  --adp-background-color-in-range-focused: rgba(160, 12, 8, 0.1);
  --adp-background-color-selected-other-month-focused: rgba(160, 12, 8, 0.1);
  --adp-background-color-selected-other-month: rgba(160, 12, 8, 0.1);
  --adp-color: #4a4a4a;
  --adp-color-secondary: #9c9c9c;
  --adp-accent-color: #4eb5e6;
  --adp-color-current-date: var(--adp-accent-color);
  --adp-color-other-month: #dedede;
  --adp-color-disabled: #aeaeae;
  --adp-color-disabled-in-range: #939393;
  --adp-color-other-month-hover: #c5c5c5;
  --adp-border-color: #dbdbdb;
  --adp-border-color-inner: #efefef;
  --adp-border-radius: 4px;
  --adp-border-color-inline: #d7d7d7;
  --adp-nav-height: 40px;
  --adp-nav-arrow-color: var(--adp-color-secondary);
  --adp-nav-action-size: 32px;
  --adp-nav-color-secondary: var(--adp-color-secondary);
  --adp-day-name-color: #ff9a19;
  --adp-day-cell-width: 1fr;
  --adp-day-cell-height: 40px;
  --adp-month-cell-height: 42px;
  --adp-year-cell-height: 56px;
  --adp-pointer-size: 10px;
  --adp-poiner-border-radius: 2px;
  --adp-pointer-offset: 14px;
  --adp-cell-border-radius: 4px;
  --adp-cell-background-color-selected: rgba(160, 12, 8, 0.1);
  --adp-cell-background-color-selected-hover: rgba(160, 12, 8, 0.1);
  --adp-cell-background-color-in-range: rgba(160, 12, 8, 0.1);
  --adp-cell-background-color-in-range-hover: rgba(160, 12, 8, 0.1);
  --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
  --adp-btn-height: 32px;
  --adp-btn-color: var(--adp-accent-color);
  --adp-btn-color-hover: var(--adp-color);
  --adp-btn-border-radius: var(--adp-border-radius);
  --adp-btn-background-color-hover: var(--adp-background-color-hover);
  --adp-btn-background-color-active: var(--adp-background-color-active);
  --adp-time-track-height: 1px;
  --adp-time-track-color: #dedede;
  --adp-time-track-color-hover: #b1b1b1;
  --adp-time-thumb-size: 12px;
  --adp-time-padding-inner: 10px;
  --adp-time-day-period-color: var(--adp-color-secondary);
  --adp-mobile-font-size: 16px;
  --adp-mobile-nav-height: 40px;
  --adp-mobile-width: 320px;
  --adp-mobile-day-cell-height: 38px;
  --adp-mobile-month-cell-height: 48px;
  --adp-mobile-year-cell-height: 64px;
}

.air-datepicker-overlay {
  --adp-overlay-background-color: rgba(0, 0, 0, .3);
  --adp-overlay-transition-duration: .3s;
  --adp-overlay-transition-ease: ease-out;
  --adp-overlay-z-index: 99;
}

.air-datepicker {
  background: var(--adp-background-color);
  border: 1px solid var(--adp-border-color);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: var(--adp-border-radius);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: (-webkit-max-content)[4];
  grid-template-rows: repeat(4, -webkit-max-content);
  -ms-grid-rows: (max-content)[4];
  grid-template-rows: repeat(4, max-content);
      grid-template-areas: var(--adp-grid-areas);
  font-size: var(--adp-font-size);
  color: var(--adp-color);
  width: var(--adp-width);
  position: absolute;
  -webkit-transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), -webkit-transform var(--adp-transition-duration) var(--adp-transition-ease);
  transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), -webkit-transform var(--adp-transition-duration) var(--adp-transition-ease);
  -o-transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease);
  transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease);
  transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease), -webkit-transform var(--adp-transition-duration) var(--adp-transition-ease);
  z-index: var(--adp-z-index);
}

.air-datepicker:not(.-custom-position-) {
  opacity: 0;
}

.air-datepicker.-from-top- {
  -webkit-transform: translateY(calc(var(--adp-transition-offset) * -1));
      -ms-transform: translateY(calc(var(--adp-transition-offset) * -1));
          transform: translateY(calc(var(--adp-transition-offset) * -1));
}

.air-datepicker.-from-right- {
  -webkit-transform: translateX(var(--adp-transition-offset));
      -ms-transform: translateX(var(--adp-transition-offset));
          transform: translateX(var(--adp-transition-offset));
}

.air-datepicker.-from-bottom- {
  -webkit-transform: translateY(var(--adp-transition-offset));
      -ms-transform: translateY(var(--adp-transition-offset));
          transform: translateY(var(--adp-transition-offset));
}

.air-datepicker.-from-left- {
  -webkit-transform: translateX(calc(var(--adp-transition-offset) * -1));
      -ms-transform: translateX(calc(var(--adp-transition-offset) * -1));
          transform: translateX(calc(var(--adp-transition-offset) * -1));
}

.air-datepicker.-active-:not(.-custom-position-) {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.air-datepicker.-active-.-custom-position- {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.air-datepicker.-inline- {
  -webkit-box-shadow: none;
          box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  max-width: 100%;
  border: none;
  padding: 0px;
}

.air-datepicker {
  width: 100vw;
  max-width: 300px;
  padding: 15px;
}

.air-datepicker.-inline- .air-datepicker--pointer {
  display: none;
}

.air-datepicker.-is-mobile- {
  --adp-font-size: var(--adp-mobile-font-size);
  --adp-day-cell-height: var(--adp-mobile-day-cell-height);
  --adp-month-cell-height: var(--adp-mobile-month-cell-height);
  --adp-year-cell-height: var(--adp-mobile-year-cell-height);
  --adp-nav-height: var(--adp-mobile-nav-height);
  --adp-nav-action-size: var(--adp-mobile-nav-height);
  position: fixed;
  width: var(--adp-mobile-width);
  border: none;
}

.air-datepicker.-is-mobile- * {
  -webkit-tap-highlight-color: transparent;
}

.air-datepicker.-is-mobile- .air-datepicker--pointer {
  display: none;
}

.air-datepicker.-is-mobile-:not(.-custom-position-) {
  -webkit-transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
      -ms-transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
          transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
}

.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.air-datepicker.-custom-position- {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.air-datepicker-global-container {
  position: absolute;
  left: 0;
  top: 0;
}

.air-datepicker--pointer {
  --pointer-half-size: calc(var(--adp-pointer-size) / 2);
  position: absolute;
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  z-index: -1;
}

.air-datepicker--pointer:after {
  content: "";
  position: absolute;
  background: #fff;
  border-top: 1px solid var(--adp-border-color-inline);
  border-right: 1px solid var(--adp-border-color-inline);
  border-top-right-radius: var(--adp-poiner-border-radius);
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.-top-left- .air-datepicker--pointer,
.-top-center- .air-datepicker--pointer,
.-top-right- .air-datepicker--pointer,
[data-popper-placement^=top] .air-datepicker--pointer {
  top: calc(100% - var(--pointer-half-size) + 1px);
}

.-top-left- .air-datepicker--pointer:after,
.-top-center- .air-datepicker--pointer:after,
.-top-right- .air-datepicker--pointer:after,
[data-popper-placement^=top] .air-datepicker--pointer:after {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.-right-top- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer,
[data-popper-placement^=right] .air-datepicker--pointer {
  right: calc(100% - var(--pointer-half-size) + 1px);
}

.-right-top- .air-datepicker--pointer:after,
.-right-center- .air-datepicker--pointer:after,
.-right-bottom- .air-datepicker--pointer:after,
[data-popper-placement^=right] .air-datepicker--pointer:after {
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
}

.-bottom-left- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer,
[data-popper-placement^=bottom] .air-datepicker--pointer {
  bottom: calc(100% - var(--pointer-half-size) + 1px);
}

.-bottom-left- .air-datepicker--pointer:after,
.-bottom-center- .air-datepicker--pointer:after,
.-bottom-right- .air-datepicker--pointer:after,
[data-popper-placement^=bottom] .air-datepicker--pointer:after {
  -webkit-transform: rotate(315deg);
      -ms-transform: rotate(315deg);
          transform: rotate(315deg);
}

.-left-top- .air-datepicker--pointer,
.-left-center- .air-datepicker--pointer,
.-left-bottom- .air-datepicker--pointer,
[data-popper-placement^=left] .air-datepicker--pointer {
  left: calc(100% - var(--pointer-half-size) + 1px);
}

.-left-top- .air-datepicker--pointer:after,
.-left-center- .air-datepicker--pointer:after,
.-left-bottom- .air-datepicker--pointer:after,
[data-popper-placement^=left] .air-datepicker--pointer:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.-top-left- .air-datepicker--pointer,
.-bottom-left- .air-datepicker--pointer {
  left: var(--adp-pointer-offset);
}

.-top-right- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer {
  right: var(--adp-pointer-offset);
}

.-top-center- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer {
  left: calc(50% - var(--adp-pointer-size) / 2);
}

.-left-top- .air-datepicker--pointer,
.-right-top- .air-datepicker--pointer {
  top: var(--adp-pointer-offset);
}

.-left-bottom- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer {
  bottom: var(--adp-pointer-offset);
}

.-left-center- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer {
  top: calc(50% - var(--adp-pointer-size) / 2);
}

.air-datepicker--navigation {
  grid-area: nav;
  width: 100%;
  max-width: 210px;
  margin: 0px auto;
}

.air-datepicker--content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 15px;
  grid-area: body;
  margin-top: 15px;
  padding-top: 8px;
  border-top: 1px solid #BDBDBD;
}

.-only-timepicker- .air-datepicker--content {
  display: none;
}

.air-datepicker--time {
  grid-area: timepicker;
}

.air-datepicker--buttons {
  grid-area: buttons;
}

.air-datepicker--buttons,
.air-datepicker--time {
  padding: var(--adp-padding);
  border-top: 1px solid var(--adp-border-color-inner);
}

.air-datepicker-overlay {
  position: fixed;
  background: var(--adp-overlay-background-color);
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), left 0s, height 0s, width 0s;
  -o-transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), left 0s, height 0s, width 0s;
  transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), left 0s, height 0s, width 0s;
  -webkit-transition-delay: 0s, var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration);
       -o-transition-delay: 0s, var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration);
          transition-delay: 0s, var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration);
  z-index: var(--adp-overlay-z-index);
}

.air-datepicker-overlay.-active- {
  opacity: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), height 0s, width 0s;
  -o-transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), height 0s, width 0s;
  transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), height 0s, width 0s;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__content {
  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__body {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}

.popup__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
  filter: invert(1);

}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  padding: 12px 0px;
  z-index: 5;
}

.header._gray {
  background: #F8F8F8;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 118px;
          flex: 0 0 118px;
}

.header__logo img,
.header__logo svg {
  width: 100%;
  max-width: 100%;
}

.header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.header__login {
  min-height: 40px;
  font-weight: 400;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.menu__link {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.menu__login {
  min-height: 40px;
}

.menu__contacts {
  margin: auto -20px -30px;
}

.contacts-menu {
  padding: 20px;
  background: #3B5EDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.contacts-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.contacts-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}

.contacts-menu__item a {
  color: inherit;
}

.contacts-menu__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.social-contacts-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.social-contacts-menu__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.phone-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.phone-header__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.phone-header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2px;
}

.phone-header__name {
  font-size: 14px;
}

.phone-header__value {
  font-weight: 700;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.phone-header__value a {
  color: #000;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.icon-menu {
  display: none;
}

.footer__bottom {
  padding: 30px 0px;
}

.main-footer__wrapper {
  padding: 30px 50px;
  background: #000;
  border-radius: 12px;
  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;
  overflow: hidden;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-footer__column:nth-child(1) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 230px;
          flex: 0 0 230px;
}

.main-footer__column:nth-child(4) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 375px;
          flex: 0 0 375px;
}

.main-footer__column._contacts {
  margin: -30px -50px;
  padding: 30px 50px;
  background: #3B5EDD;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.main-footer__logo {
  width: 100%;
  max-width: 100%;
}

.main-footer__logo img,
.main-footer__logo svg {
  width: 100%;
  max-width: 100%;
}

.main-footer__name {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.main-footer__body {
  margin-top: 20px;
}

.main-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.main-footer__link {
  color: inherit;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.contacts-main-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.contacts-main-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.contacts-main-footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}

.contacts-main-footer__item a {
  color: inherit;
}

.contacts-main-footer__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.bottom-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.bottom-footer__copy {
  color: #000;
  font-size: 16px;
  align-items:center;
  text-align:center;
  display:flex;
  font-weight: 400;
}

.bottom-footer__dev {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.bottom-footer__dev svg path {
  fill: #000;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.banner {
  padding-bottom: 40px;
}

.banner__slider {
  border-radius: 12px;
  overflow: hidden;
}

.banner__item {
  position: relative;
  background: #3B5EDD;
  border-radius: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 0px 40px 0px 80px;
  min-height: 460px;
}

.banner__item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-clip-path: polygon(70% 0, 100% 0, 100% 100%, 50% 100%);
          clip-path: polygon(70% 0, 100% 0, 100% 100%, 50% 100%);
  background: #000;
  display: inline-block;
}

.banner__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 460px;
          flex: 0 0 460px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  position: relative;
  z-index: 1;
}

.banner__title {
  color: #fff;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.banner__text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.banner__price {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
}

.banner__price span {
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 900;
}

.banner__image {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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;
}

.banner__image img {
  max-width: 100%;
}

.banner__paggination {
  margin-top: 20px;
}

.select-equipment {
  padding: 40px 0px;
}

.select-equipment__content {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 31% 240px 1fr 1fr;
  grid-template-columns: 31% 240px 1fr 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.select-equipment__section {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  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-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}

.select-equipment__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.select-equipment__body:not(:first-child) {
  margin-top: 10px;
}

.select-equipment__busy {
  margin-top: 5px;
  padding-top: 8px;
  border-top: 1px solid #bdbdbd;
}

.select-equipment__busy .form-busy__input input {
  min-height: 36px;
  padding: 0px 10px;
}

.select-equipment__busy .select__value {
  height: 34px;
  padding: 0px 10px;
}

.top-select-equipment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  width: 100%;
  max-width: 360px;
  margin: 0px auto;
}

.top-select-equipment__arrow {
  cursor: pointer;
}

.top-select-equipment__name {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.car-select-equipment__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  position: relative;
  aspect-ratio: 1/0.9;
}

.car-select-equipment__item:not(:last-child) {
  margin-right: 20px;
}

.car-select-equipment__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.car-select-equipment__image img {
  width: 100%;
  height: 280px;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 310px;
  border-radius: 12px;
}

.car-select-equipment__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.car-select-equipment__name {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.car-select-equipment__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.car-select-equipment__info_item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 5px 4px;
  background: rgba(59, 94, 221, 0.2);
  border-radius: 50px;
}

.car-select-equipment__info_item img,
.car-select-equipment__info_item svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.driver-select-equipment {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.driver-select-equipment__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.driver-select-equipment__slider .swiper-wrapper {
  min-height: 100%;
  height: 100%;
}

.driver-select-equipment__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
}

.driver-select-equipment__item:not(:last-child) {
  margin-right: 20px;
}

.driver-select-equipment__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.datepicker-select-equipment__input {
  display: none;
}

.busy-select-equipment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.circle-busy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

._no-webp .circle-busy__image {
  background: url(../img/circle-busy.png) center/cover no-repeat; }

.circle-busy__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 135px;
          flex: 0 0 135px;
  aspect-ratio: 1;
  position: relative;
  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;
  border-radius: 50%;
  -webkit-box-shadow: 2.342px 1.756px 6.439px 0px rgba(0, 0, 0, 0.25) inset;
          box-shadow: 2.342px 1.756px 6.439px 0px rgba(0, 0, 0, 0.25) inset;
  -webkit-filter: drop-shadow(0px 2.342px 6.439px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 2.342px 6.439px rgba(0, 0, 0, 0.25));
}

.circle-busy__image img,
.circle-busy__image svg {
  max-width: 65%;
  width: 100%;
}

.circle-busy__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.circle-busy__list {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 10px;
}

.circle-busy__item {
  min-width: 90px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 10px;
  color: #5F5F5F;
  font-size: 14px;
  font-weight: 400;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.circle-busy__item::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  display: inline-block;
}

.circle-busy__item._red {
  background: rgba(255, 121, 121, 0.1);
}

.circle-busy__item._red::before {
  background: #EA3535;
}

.circle-busy__item._green {
  background: rgba(60, 203, 174, 0.1);
}

.circle-busy__item._green::before {
  background: #3CCBAE;
}

.circle-busy__text {
  color: #5F5F5F;
  font-size: 12px;
  font-weight: 400;
  margin-top: auto;
}

.form-busy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.form-busy__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.form-busy__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.form-busy__label {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.form-busy__label._required::after {
  content: "*";
  color: #E12323;
  font-weight: 700;
  display: inline-block;
  margin-left: 5px;
}

.form-busy__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.form-busy__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc((100% - 10px * 1) / 2);
          flex: 1 0 calc((100% - 10px * 1) / 2);
}

.form-busy__button {
  min-width: 130px;
  min-height: 36px;
}

.form-busy__button._disabled {
  color: #929292;
}

.products-section {
  padding: 40px 0px;
}

.products-section__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  position: relative;
}

.products-section__slider {
  margin: -50px -20px;
  padding: 50px 20px;
}

.products-section__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 25px * 4) / 5);
          flex: 0 0 calc((100% - 25px * 4) / 5);
}

.products-section__item:not(:last-child) {
  margin-right: 25px;
}

.products-section__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  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;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.products-section__arrow.arrow-next-products-section {
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.products-section__arrow.arrow-prev-products-section {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.products-section__arrow img,
.products-section__arrow svg {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
}

.products-section__arrow svg path {
  fill: #000;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.product {
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  background: #fff;
  padding: 20px 12px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.product__image {
  aspect-ratio: 26/20;
  position: relative;
  display: block;
}

.product__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.product__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.product__price {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.product__button {
  border-width: 2px !important;
  font-weight: 700;
  min-height: 36px;
}

.benefits {
  padding: 40px 0px;
}

.benefits__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.benefits__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px * 3) / 4);
          flex: 0 0 calc((100% - 60px * 3) / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.benefits__circle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  width: 80px;
  height: 80px;
  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;
  border: 6px solid #3B5EDD;
  background: #fff;
  border-radius: 50%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  position: relative;
  z-index: 1;
}

.benefits__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.benefits__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #000;
  font-size: 18px;
  font-weight: 400;
}

.login {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 0px;
}

.login__container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login__wrapper {
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
  width: 100%;
  max-width: 405px;
}

.login__blocks {
  margin-top: 20px;
}

.login__block > *:not(:last-child) {
  margin-bottom: 20px;
}

.login__connect {
  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;
  border-radius: 100px;
  background: #EEE;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  min-height: 54px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.login__connect img,
.login__connect svg {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
}

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

.login__or::before,
.login__or::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 1px;
  background: #DEDEDE;
  display: inline-block;
}

.login__or span {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  padding: 2px 10px;
}

.login__back {
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #777;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.login__back svg path {
  fill: #777;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.login__back img,
.login__back svg {
  width: 12px;
  height: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
}

.nav-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.nav-login__item {
  color: #ABABAB;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px dotted #ABABAB;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  cursor: pointer;
}

.nav-login__item._active {
  border-color: transparent;
  color: #000;
}

.form-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.form-register {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px;
}

.form-login__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.form-login__inp {
  position: relative;
}

.form-login__viewpass {
  position: absolute;
  top: 24px;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-login__forgot {
  color: #AFAFAF;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px dotted #AFAFAF;
  margin: 0px auto;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.head-login {
  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;
  text-align: center;
  row-gap: 20px;
}

.head-login__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.head-login__title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.head-login__text {
  color: #777;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.breadcrums {
  padding: 30px 0px;
}

.breadcrums + section {
  padding-top: 0 !important;
}

.breadcrums__list {
  color: #828282;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

.breadcrums__item:not(:last-child) {
  margin-right: 7px;
}

.breadcrums__item:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
}

.breadcrums__item a {
  color: inherit;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.order {
  padding: 40px 0px;
}

.order__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.order__section {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
}

.order__body {
  margin-top: 20px;
}

.head-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}

.head-order__title {
  font-size: 26px;
}

.head-order__back {
  color: #777;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.head-order__back svg path {
  fill: #777;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.top-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.top-order__step {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: #3B5EDD;
  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;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.top-order__title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.selected-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.selected-order__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
          flex: 0 0 calc((100% - 20px * 1) / 2);
  border-radius: 12px;
  padding: 20px;
}

.selected-order__name {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.selected-order__body {
  margin-top: 20px;
}

.auto-selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.auto-selected__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  min-height: 125px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.auto-selected__image img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.auto-selected__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.auto-selected__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.auto-selected__name {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.auto-selected__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  row-gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.auto-selected__info li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 4px 8px;
  min-width: 102px;
  border-radius: 100px;
  background: rgba(59, 94, 221, 0.2);
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.auto-selected__info li img,
.auto-selected__info li svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.auto-selected__more {
  color: #3B5EDD;
  font-size: 14px;
  font-weight: 400;
  margin-top: auto;
}

.driver-selected-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.driver-selected-order__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  aspect-ratio: 110/125;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.driver-selected-order__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.driver-selected-order__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.datepicker-order .air-datepicker {
  padding-top: 10px;
  padding-bottom: 15px;
}

.datepicker-order__input {
  display: none;
}

.products-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.products-order__item {
  padding: 10px 20px;
  border-radius: 12px;
  background: #F3F3F3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 150px 1fr 1fr 25px;
  grid-template-columns: 150px 1fr 1fr 25px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.products-order__image {
  aspect-ratio: 15/10;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  position: relative;
  width: 150px;
}

.products-order__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.products-order__column {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.delivery-order__navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}

.delivery-order__nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
          flex: 0 0 calc((100% - 20px * 1) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  background: #D7D7D7;
  color: #777;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  min-height: 48px;
  padding: 5px 20px;
  cursor: pointer;
}

.delivery-order__nav._active {
  background: #3B5EDD;
  color: #fff;
}

.delivery-order__nav._active::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
  background: url(../img/icons/check-d.svg) center/cover no-repeat;
  display: inline-block;
  margin-left: auto;
}

.delivery-order__blocks {
  margin-top: 30px;
}

.address-delivery-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.address-delivery-order__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
          flex: 0 0 calc((100% - 20px * 1) / 2);
}

.address-delivery-order__label {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 5px;
}

.store-delivery-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.store-delivery-order__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
          flex: 0 0 calc((100% - 20px * 1) / 2);
}

.store-delivery-order__title {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  line-height: 1.4;
}

.store-delivery-order__info {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.store-delivery-order__row._timework {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.store-delivery-order__map {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
          flex: 0 0 calc((100% - 20px * 1) / 2);
  min-height: 200px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.store-delivery-order__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.date-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.date-order__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px ) / 2);
          flex: 0 0 calc((100% - 20px ) / 2);
}

.date-order__input {
  width: 100%;
  max-width: 100%;
  padding: 0px 10px;
}

.form-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.form-order__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 30px;
}

.form-order__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.form-order__label {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 5px;
}

.form-order__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.form-order__button {
  min-width: 180px;
}

.info-order {
  padding: 15px 20px;
  border-radius: 8px;
  background: #E1E1E1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.info-order__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.info-order__row._total {
  font-weight: 700;
  font-size: 18px;
}

.info-order__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.info-order__value {
  text-align: right;
}

.order-send {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px 0px;
}

.order-send__container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order-send__wrapper {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
  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;
  text-align: center;
  row-gap: 20px;
  padding: 40px 30px;
  margin: 0px auto;
}

.order-send__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 68px;
          flex: 0 0 68px;
  width: 68px;
  height: 68px;
}

.order-send__title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.order-send__text {
  color: #747474;
  font-size: 16px;
  font-weight: 400;
}

.order-send__button {
  min-width: 180px;
}

.receipt-order-send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.receipt-order-send__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 16px;
  color: #3B5EDD;
  font-weight: 600;
}

.receipt-order-send__text {
  color: #747474;
  font-size: 14px;
  font-weight: 400;
}

.receipt-page {
  padding: 40px 0px;
}

.receipt-page__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.receipt-page__back {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.receipt-page__back img,
.receipt-page__back svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.receipt-page__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.receipt-page__action {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.receipt-page__body {
  margin-top: 20px;
}

.receipt-page__footer {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.receipt-page__button {
  min-width: 180px;
}

._no-webp .receipt {
  background: url(../img/receipt-bg.jpg) calc(100% - 40px) bottom/455px no-repeat, #fff; }

.receipt {
  border: 1px solid #D9D9D9;
  padding: 60px 60px 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 80px;
}

.receipt__footer {
  width: 100%;
}

.head-receipt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.head-receipt__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.head-receipt__title {
  color: #000;
  font-size: 28px;
  font-weight: 700;
}

.head-receipt__text {
  color: #000;
  font-size: 18px;
  font-weight: 400;
}

.head-receipt__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 198px;
          flex: 0 0 198px;
}

.head-receipt__logo img,
.head-receipt__logo svg {
  width: 100%;
  max-width: 100%;
}

.info-receipt {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 1px;
     -moz-column-gap: 1px;
          column-gap: 1px;
}

.info-receipt__column {
  outline: 1px solid #e4e4e4;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.info-receipt__title {
  font-weight: 700;
}

.info-receipt__title + .info-receipt__title {
  margin-top: 15px;
}

.info-receipt__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.info-receipt__body:not(:first-child) {
  margin-top: 15px;
}

.info-receipt__address {
  font-weight: 700;
}

.info-receipt__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.info-receipt__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 1fr;
  grid-template-columns: 115px 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.info-receipt__name {
  color: #626262;
}

.products-receipt__title {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.products-receipt__content {
  max-width: 100%;
  overflow-x: auto;
  margin-top: 30px;
}

.products-receipt__top {
  padding: 10px 12px;
  border: 1px solid #E1E1E1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 105px 110px 100px 97px 160px 50px 55px 40px 40px 40px 40px 55px;
  grid-template-columns: 105px 110px 100px 97px 160px 50px 55px 40px 40px 40px 40px 55px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #626262;
  font-size: 15px;
  font-weight: 700;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  min-width: 100%;
}

.products-receipt__top span:not(:nth-child(-n+5)) {
  text-align: center;
}

.products-receipt__product {
  padding: 15px 12px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 105px 110px 100px 97px 160px 50px 55px 40px 40px 40px 40px 55px;
  grid-template-columns:105px 110px 100px 97px 160px 50px 55px 40px 40px 40px 40px 55px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #E1E1E1;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  min-width: 100%;
}

.products-receipt__product span:not(:nth-child(-n+5)) {
  text-align: center;
}

.products-receipt__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 30px;
}

.products-receipt__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  max-width: 240px;
}

.products-receipt__list li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
}

.footer-receipt {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 120px 185px 158px;
  grid-template-columns: 120px 185px 158px;
}

.footer-receipt__work {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.footer-receipt__sign img {
  width: 100%;
  max-width: 100%;
}

.footer-receipt__stamp img {
  width: 100%;
  max-width: 100%;
}

.cabinet {
  padding: 40px 0px;
}

.cabinet__title {
  text-align: left;
}

.cabinet__content {
  margin-top: 30px;
}

.cabinet__blocks {
  border-radius: 0px 12px 12px 12px;
  background: #FFF;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
  padding: 30px;
}

.cabinet__history-details {
  display: none;
}

.cabinet__history-equipment-details {
  display: none;
}

.nav-cabinet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.nav-cabinet__item {
  padding: 10px 20px;
  border-radius: 12px 12px 0px 0px;
  background: #EFEFEF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.nav-cabinet__item svg path {
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.nav-cabinet__item svg path[fill] {
  fill: #000;
}

.nav-cabinet__item svg path[stroke] {
  stroke: #000;
}

.nav-cabinet__item._active {
  background: #fff;
  color: #3B5EDD;
  font-weight: 600;
}

.nav-cabinet__item._active svg path[fill] {
  fill: #3B5EDD;
}

.nav-cabinet__item._active svg path[stroke] {
  stroke: #3B5EDD;
}

.nav-cabinet__item img,
.nav-cabinet__item svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}


.nav-cabinet__item_logout a{
  padding: 10px 20px;
  border-radius: 12px 12px 0px 0px;
  background: #EFEFEF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.nav-cabinet__item_logout svg path {
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.nav-cabinet__item_logout svg path[fill] {
  fill: #000;
}

.nav-cabinet__item_logout svg path[stroke] {
  stroke: #000;
}

.nav-cabinet__item_logout._active {
  background: #fff;
  color: #3B5EDD;
  font-weight: 600;
}

.nav-cabinet__item_logout._active svg path[fill] {
  fill: #3B5EDD;
}

.nav-cabinet__item_logout._active svg path[stroke] {
  stroke: #3B5EDD;
}

.nav-cabinet__item_logout img,
.nav-cabinet__item_logout svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.top-cabinet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  background: #EFEFEF;
  padding: 12px 20px;
  border-bottom: 1px solid #EFEFEF;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.top-cabinet._active {
  border-color: #EAEAEA;
  background: #fff;
}

.top-cabinet._active .top-cabinet__name {
  color: #3B5EDD;
  font-weight: 600;
}

.top-cabinet._active .top-cabinet__icon svg path[fill],
.top-cabinet._active .top-cabinet__arrow svg path[fill] {
  fill: #3B5EDD;
}

.top-cabinet._active .top-cabinet__icon svg path[stroke],
.top-cabinet._active .top-cabinet__arrow svg path[stroke] {
  stroke: #3B5EDD;
}

.top-cabinet._active .top-cabinet__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.top-cabinet__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.top-cabinet__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.top-cabinet__icon svg path {
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.top-cabinet__icon svg path[fill] {
  fill: #000;
}

.top-cabinet__icon svg path[stroke] {
  stroke: #000;
}

.top-cabinet__name {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.top-cabinet__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  width: 12px;
  height: 12px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.top-cabinet__arrow svg path {
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.top-cabinet__arrow svg path[fill] {
  fill: #000;
}

.top-cabinet__arrow svg path[stroke] {
  stroke: #000;
}

.data-cabinet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 60px;
}

.data-cabinet__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.data-cabinet__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.data-cabinet__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.data-cabinet__label {
  display: inline-block;
  margin-bottom: 5px;
}

.data-cabinet__inp {
  position: relative;
}

.data-cabinet__footer {
  width: 100%;
  max-width: 100%;
}

.data-cabinet__button {
  width: 100%;
  max-width: 100%;
}

.history-cabinet__blocks {
  margin-top: 20px;
}

.head-history {
  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-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 15px;
}

.head-history__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.head-history__item {
  color: #3B5EDD;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 8px 15px;
  border: 1px solid #3B5EDD;
  min-height: 46px;
  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;
  border-radius: 6px;
  cursor: pointer;
}

.head-history__item._active {
  color: #fff;
  background: #3B5EDD;
}
.head-history__item._active a{
  color: #fff;
}

.head-history__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
}

.head-history__filter-btn {
  min-height: 36px;
  padding: 5px 15px;
  background: #3B5EDD;
  border-radius: 50px;
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.head-history__filter-btn img,
.head-history__filter-btn svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.head-history__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #3B5EDD;
  font-size: 16px;
  font-weight: 400;
}

.head-history__download picture,
.head-history__download img,
.head-history__download svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.mods-head-history {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.mods-head-history__item {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  padding: 3px 12px;
  border-radius: 100px;
  background: #EFEFEF;
  white-space: nowrap;
}

.mods-head-history__remove {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  width: 14px;
  height: 14px;
}

.mods-head-history__remove svg path {
  fill: #000;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.date-head-history {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.date-head-history__text {
  color: #626262;
  font-size: 14px;
  font-weight: 400;
}

.date-head-history__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.date-head-history__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
  width: 140px;
}

.date-head-history__input {
  padding: 0px 10px;
}

.auto-history._moderation .auto-history__top,
.auto-history._moderation .auto-history__item {
  -webkit-column-gap: 2px;
     -moz-column-gap: 2px;
          column-gap: 2px;
  -ms-grid-columns: 40px 50px 70px 95px 90px 70px 70px 180px 110px 60px 60px 35px 35px 35px 35px 55px 35px 95px;
  grid-template-columns: 40px 50px 70px 95px 90px 70px 70px 180px 110px 60px 60px 35px 35px 35px 35px 55px 35px 95px;
}

.auto-history._moderation .auto-history__top > *,
.auto-history._moderation .auto-history__item > * {
  text-align: left;
}

.auto-history._moderation .auto-history__top > *:nth-child(1n+10),
.auto-history._moderation .auto-history__item > *:nth-child(1n+10) {
  text-align: center;
}

.auto-history__top {
  padding: 10px 12px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -ms-grid-columns: 40px 90px 110px 80px 90px 95px 210px 120px 40px 45px 35px 35px 35px 35px 55px 50px;
  grid-template-columns: 40px 90px 110px 80px 90px 95px 210px 120px 40px 45px 35px 35px 35px 35px 55px 50px;
  border-bottom: 1px solid #E1E1E1;
  font-size: 13px;
  color: #626262;
  font-weight: 400;
}

.auto-history__top span:nth-child(1n+9) {
  text-align: center;
}

.auto-history__item {
  border-bottom: 1px solid #E1E1E1;
  padding: 15px 12px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -ms-grid-columns: 40px 90px 110px 80px 90px 95px 210px 120px 40px 45px 35px 35px 35px 35px 55px 50px;
  grid-template-columns: 40px 90px 110px 80px 90px 95px 210px 120px 40px 45px 35px 35px 35px 35px 55px 50px;
  font-size: 13px;
  color: #000;
  font-weight: 400;
}

.auto-history__item._paid {
  background: rgba(9, 188, 93, 0.07);
}

.auto-history__item span._download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.auto-history__item span:nth-child(1n+9) {
  text-align: center;
}

.auto-history__input {
  padding: 0px 5px;
  min-height: 34px;
  text-align: center;
}

.auto-history__input:focus {
  border-color: #3B5EDD !important;
}

.auto-history__input._fin {
  background: #EEFAF3 !important;
  color: #B5B5B5 !important;
  border-color: #C5C5C5 !important;
}

.auto-history__details {
  color: #3B5EDD;
  font-size: 13px;
  font-weight: 400;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.auto-history__download {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin: 0px auto;
}

.auto-history__status {
  padding: 3px 1px;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  width: 100%;
  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;
  border-radius: 20px;
}

.auto-history__status._no-confirm {
  background: #F0AF15;
}

.auto-history__status._confirm {
  background: #15F069;
}

.paid-auto-history {
  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;
}

.paid-auto-history__input {
  display: none;
}

.paid-auto-history__input:checked + .paid-auto-history__content {
  background: url(../img/icons/paid-check.svg) center/100% no-repeat, #fff;
}

.paid-auto-history__content {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #C8C8C8;
}

.auto-history-details__item {
  display: none;
}

.auto-history-details__item._active {
  display: block;
}

.auto-history-details__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.auto-history-details__go-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.auto-history-details__back {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.auto-history-details__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.auto-history-details__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 13px;
  color: #3B5EDD;
  font-weight: 400;
}

.auto-history-details__download img,
.auto-history-details__download svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.auto-history-details__body {
  margin-top: 15px;
}

.auto-history-details__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.auto-history-details__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 13px;
  color: #000;
  font-weight: 400;
}

.auto-history-details__name {
  color: #626262;
}

.auto-history-details__input {
  padding: 0px 5px;
  min-height: 34px;
  text-align: center;
}

.auto-history-details__input._fin {
  background: #EEFAF3 !important;
  color: #B5B5B5 !important;
  border-color: #C5C5C5 !important;
}

.auto-history-details__status {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 95px;
          flex: 0 0 95px;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  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;
  width: 95px;
  padding: 5px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

.auto-history-details__status._confirm {
  background: #15F069;
}

.auto-history-details__status._no-confirm {
  background: #F0AF15;
}

.paid-auto-history-details__input {
  display: none;
}

.paid-auto-history-details__input:checked + .paid-auto-history-details__content::after {
  background: url(../img/icons/paid-check.svg) center/cover no-repeat, #fff;
}

.paid-auto-history-details__content {
  color: #626262;
  font-size: 13px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.paid-auto-history-details__content::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: #C8C8C8;
  border-radius: 50%;
}

.history-equipment._moderation .history-equipment__top,
.history-equipment._moderation .history-equipment__item {
  -ms-grid-columns: 40px 80px 90px 70px 300px 35px 95px 65px 55px 45px 50px;
  grid-template-columns: 40px 80px 90px 70px 300px 35px 95px 65px 55px 45px 50px;
}


.history-equipment._moderation .history-equipment__top > *:nth-child(2),
.history-equipment._moderation .history-equipment__item > *:nth-child(2) {
  text-align: center;
}

.history-equipment__top {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: 40px 80px 90px 70px 105px 70px 105px 85px 85px 45px 150px 50px 75px 50px;
  grid-template-columns:40px 80px 90px 70px 105px 70px 105px 85px 85px 45px 150px 50px 75px 50px;
  padding: 10px 12px;
  color: #626262;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #E1E1E1;
}

.history-equipment__item {
  border-bottom: 1px solid #E1E1E1;
  padding: 15px 12px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 40px 80px 90px 70px 105px 70px 105px 85px 85px 45px 150px 50px 75px 50px;
  grid-template-columns:40px 80px 90px 70px 105px 70px 105px 85px 85px 45px 150px 50px 75px 50px;
  color: #000;
  font-size: 13px;
  font-weight: 400;

}

.history-equipment {
  width: auto;
  overflow: auto;
}
.history-cabinet__auto.auto-history {
  width: auto;
  overflow: auto;
}

.manager-edit-eq .history-equipment__item {
  -ms-grid-columns: 40px 60px 80px 160px 105px 105px 90px 100px 70px 70px 60px 50px 50px 50px;
  grid-template-columns:40px 60px 80px 160px 105px 105px 90px 100px 70px 70px 60px 50px 50px 50px
}
.manager-edit-eq .history-equipment__top {
  -ms-grid-columns: 40px 60px 80px 160px 105px 105px 90px 100px 70px 70px 60px 50px 50px 50px;
  grid-template-columns:40px 60px 80px 160px 105px 105px 90px 100px 70px 70px 60px 50px 50px 50px
}

.user_instruments .history-equipment__item {
  -ms-grid-columns: 35px 50px 75px 90px 100px 105px 80px 80px 60px 170px 70px 70px  70px 35px;
  grid-template-columns:35px 50px 75px 90px 100px 105px 80px 80px 60px 170px 70px 70px  70px 35px;
}
.user_instruments .history-equipment__top {
  -ms-grid-columns: 35px 50px 75px 90px 100px 105px 80px 80px 60px 170px 70px 70px  70px 35px;
  grid-template-columns:35px 50px 75px 90px 100px 105px 80px 80px 60px 170px 70px 70px  70px 35px;
}


.history-equipment__column ._status {
  padding: 3px 1px;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  width: 100%;
  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;
  border-radius: 20px;
}

.history-equipment__column ._status._no-confirm {
  background: #F0AF15;
}

.history-equipment__column ._status._confirm {
  background: #15F069;
}

.history-equipment__details {
  margin: 0px auto;
  color: #3B5EDD;
}

.history-equipment__download {
  width: 24px;
  height: 24px;
  margin: 0px auto;
}

.products-history-equipment {
  padding: 5px;
  border-radius: 6px;
  background: #F1F1F1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.products-history-equipment__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  flex-direction: column;
}

.products-history-equipment__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  width: 60px;
  aspect-ratio: 1/1;
  background: #fff;
  position: relative;
}

.products-history-equipment__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.products-history-equipment__more {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25px;
          flex: 0 0 25px;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.equipment-history-details__item {
  display: none;
}

.equipment-history-details__item._active {
  display: block;
}

.equipment-history-details__body {
  margin-top: 20px;
}

.equipment-history-details__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px 70px 70px 70px 60px 80px;
  grid-template-columns: 400px 70px 70px 70px 60px 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #626262;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 20px;
}

.equipment-history-details__product {
  padding: 10px 0px;
  border-bottom: 1px solid #E1E1E1;
}

.equipment-history-details__info {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.equipment-history-details__info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.equipment-history-details__info li._total {
  font-size: 18px;
  font-weight: 700;
}

.equipment-history-details__info li span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 10px * 1) / 2);
          flex: 0 0 calc((100% - 10px * 1) / 2);
}

.equipment-history-details__info li span:last-child {
  text-align: right;
}

.equipment-history-details__download {
  width: 24px;
  height: 24px;
  margin-left: auto;
  display: inline-block;
}

.head-equipment-history-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.head-equipment-history-details__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}

.head-equipment-history-details__title {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.head-equipment-history-details__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #828282;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.head-equipment-history-details__back img,
.head-equipment-history-details__back svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  width: 12px;
  height: 12px;
}

.head-equipment-history-details__back svg path {
  fill: #828282;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}


.head-equipment-history-details_back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  color: #828282;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.head-equipment-history-details_back img,
.head-equipment-history-details_back svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12px;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
}

.head-equipment-history-details_back svg path {
  fill: #828282;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.head-equipment-history-details__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}

.head-equipment-history-details__status {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 95px;
          flex: 0 0 95px;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  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;
  width: 95px;
  padding: 5px 10px;
  border-radius: 20px;
}

.head-equipment-history-details__status._confirm {
  background: #15F069;
}

.head-equipment-history-details__status._no-confirm {
  background: #F0AF15;
}

.product-equipment-history-details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px 70px 70px 70px 60px 80px;
  grid-template-columns: 400px 70px 70px 70px 60px 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.product-equipment-history-details__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.product-equipment-history-details__label {
  color: #626262;
  font-size: 14px;
  font-weight: 400;
}

.product-equipment-history-details__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.product-equipment-history-details__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  aspect-ratio: 9/6.5;
  position: relative;
}

.product-equipment-history-details__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-equipment-history-details__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.product-equipment-history-details__name {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.product-equipment-history-details__value {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}


.history-filter_order {
  width: 100%;
  max-width: 280px;
  background: #fff;
  height: 100%;
  max-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  z-index: 10;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.history-filter_order:not(._active) {
  pointer-events: none;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}


.history-filter {
  width: 100%;
  max-width: 280px;
  background: #fff;
  height: 100%;
  max-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  z-index: 10;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.history-filter:not(._active) {
  pointer-events: none;
  visibility: hidden;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.history-filter__head {
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.history-filter__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.history-filter__title {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.history-filter__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.history-filter__rows {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: auto;
}

.history-filter__row {
  border-bottom: 1px solid #E8E8E8;
  padding: 12px 20px;
}

.history-filter__row:first-child {
  border-top: 1px solid #E8E8E8;
}

.history-filter__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.history-filter__top._active .history-filter__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.history-filter__name {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.history-filter__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

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

.history-filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.history-filter__item .checkbox__content::before {
  background: #D9D9D9;
  border-color: #D9D9D9;
}

.history-filter__footer {
  padding: 30px 20px;
}

.history-filter__button {
  width: 100%;
  max-width: 100%;
}

.not-found {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px 0px;
}

.not-found__container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

._no-webp .not-found__wrapper {
  background: url(../img/not-found.png) right bottom/auto calc(100% - 40px) no-repeat, #fff; }

.not-found__wrapper {
  border-radius: 12px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
  min-height: 475px;
  padding: 30px 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
  width: 100%;
  max-width: 100%;
}

.not-found__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 365px;
          flex: 0 0 365px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 25px;
}

.not-found__logo {
  width: 118px;
}

.not-found__logo img,
.not-found__logo svg {
  width: 100%;
  max-width: 100%;
}

.not-found__title {
  color: #000;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
}

.not-found__text {
  color: #454545;
  font-size: 16px;
  font-weight: 400;
}

.not-found__button {
  min-width: 180px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.not-found__image {
  margin: 0px -40px -30px;
}

.not-found__image img {
  width: 100%;
  max-width: 100%;
}

.about {
  padding: 40px 0px;
}

.about__wrapper {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
  border-radius: 12px;
}

.about__title {
  font-size: 26px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  text-align: left;
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-top: 30px;
}

.about__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 560px;
          flex: 0 0 560px;
  color: #454545;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.about__body > *:not(:last-child) {
  margin-bottom: 20px;
}

.about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 380px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background: rgba(23, 54, 165, 0.5);
}

._no-webp .about__image::before {
  background: url(../img/mini-logo.png) center/cover no-repeat; }

.about__image::before {
  content: "";
  width: 104px;
  aspect-ratio: 104/152;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.about__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.contacts {
  padding: 40px 0px;
}

.contacts__title {
  font-size: 26px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  text-align: left;
}

.contacts__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.contacts__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
          flex: 0 0 calc((100% - 30px * 1) / 2);
  border-radius: 12px;
  background: #FFF;
  padding: 30px;
}

.contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.contacts__item {
  padding: 20px;
  border-radius: 12px;
  background: rgba(59, 94, 221, 0.1);
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 115px 1fr;
  grid-template-columns: 115px 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.contacts__name {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.contacts__value {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.contacts__value a {
  color: inherit;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.contacts__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.contacts__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contacts__social {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.contacts__social svg path {
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.contacts__social svg path[fill] {
  fill: #000;
}

.contacts__social svg path[stroke] {
  stroke: #000;
}

.contacts__map {
  min-height: 380px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.catalog__title {
  font-size: 26px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  text-align: left;
}

.catalog__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 25px;
}

.catalog__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 25px * 4) / 5);
          flex: 0 0 calc((100% - 25px * 4) / 5);
}

.catalog_car__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 25px * 3) / 4);
  flex: 0 0 calc((100% - 25px * 3) / 4);
}

.card__wrapper {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.card__gallery {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 530px;
          flex: 0 0 530px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
}

.card__image {
  position: relative;
  aspect-ratio: 1/0.88;
  width: 100%;
}

.card__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__notification {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 320px;
}

.card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.card__title {
  font-size: 26px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  text-align: left;
}

.card__buy {
  min-height: 46px;
  padding: 10px 35px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.notification-card {
  border-radius: 8px;
  background: #F4F4F4;
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.notification-card__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.notification-card__text {
  color: #696969;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.info-card__title {
  color: #454545;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.info-card__body {
  color: #454545;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 15px;
  overflow: hidden;
  max-height: 12lh;
}

.info-card__body ul {
  padding-left: 20px;
}

.info-card__body ul li {
  list-style: disc;
}

.info-card__body._view-all {
  max-height: unset;
}

.info-card__body h6 {
  color: #C2C2C2;
}

.info-card__more {
  display: inline-block;
  margin-top: 5px;
  color: #3B5EDD;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.info-card__more._hide {
  display: none;
}

.order-success {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px 0px;
}

.order-success__container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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;
}

.order-success__wrapper {
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
  width: 100%;
  max-width: 405px;
  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;
  text-align: center;
  row-gap: 20px;
}

.order-success__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
  width: 48px;
  height: 48px;
}

.order-success__title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.order-success__text {
  color: #777;
  font-size: 14px;
  font-weight: 400;
}

.order-success__text a {
  color: #3B5EDD;
  font-weight: 700;
}

.order-success__button {
  width: 100%;
  max-width: 100%;
}

.header + .page {
  padding-top: 74px;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page section:last-child {
  padding-bottom: 80px;
}


/*MY style M.Chaos*/
.top-header__language.language-top-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  flex-direction: column;
}
.language-top-header__item {
  color: rgba(60, 60, 60, 0.3);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.language-top-header__item._active {
  color: #3c3c3c;
}
.error_info {
  display: flex
;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px;
  color: red;
}
.form-busy__login {
  text-align: center;
}
.timepicker__option._disabled {
  display: none;
}
.infos_form_success {
  padding-bottom: 10px;
  color: #0a9800;
  font-size: 18px;
}
.infos_form_error {
  padding-bottom: 10px;
  color: red;
  font-size: 18px;
}

.error_form {
  font-size: 18px;
  color: red;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
}

path.reserv {
  stroke: #ea3535;
}

.form-order__item.select_type {
  display: flex;
  gap: 15px;
}
.select_type label.form-order__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 235px;
}
.legal_person {
  display: none;
}

.driver_tab li {
  padding: 0;
}
.driver_tab li a{
  padding: 8px 15px;
}
.filter-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.filter-date_ist {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.auto-history__top_briver {
  padding: 10px 12px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 2px;
  -moz-column-gap: 2px;
  column-gap: 2px;
  -ms-grid-columns: 30px 47px 90px 110px 80px 95px 95px 160px 110px 45px 45px 35px 35px 35px 35px 55px 50px 60px;
  grid-template-columns: 30px 47px 90px 110px 80px 95px 95px 160px 110px 45px 45px 35px 35px 35px 35px 55px 50px 60px;
  border-bottom: 1px solid #E1E1E1;
  font-size: 13px;
  color: #626262;
  font-weight: 400;
}

.auto-history__item_briver {
  border-bottom: 1px solid #E1E1E1;
  padding: 15px 12px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2px;
  -moz-column-gap: 2px;
  column-gap: 2px;
  -ms-grid-columns: 30px 47px 90px 110px 80px 95px 95px 160px 110px 45px 45px 35px 35px 35px 35px 55px 50px 60px;
  grid-template-columns: 30px 47px 90px 110px 80px 95px 95px 160px 110px 45px 45px 35px 35px 35px 35px 55px 50px 60px;
  font-size: 13px;
  color: #000;
  font-weight: 400;
}
input.input.update_tab {
  padding: 1px;
  min-height: 30px;
  text-align: center;
  border-radius: 4px;
}

.custom-checkbox {
  position: relative;
  width: 40px;
  height: 20px;
  display: inline-block;
  text-align: center;
}

.custom-checkbox input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.custom-checkbox label {
  width: 20px;
  height: 20px;
  background-color: #C8C8C8;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.custom-checkbox input:checked + label{
  background-color: #ffffff;
}
.custom-checkbox input:checked + label::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('/app/img/checked_on.svg') no-repeat center center;
  background-size: contain;
}

._status a.history-equipment_details {
  padding-top: 8px;
  display: block;
}
.noconfirm {
  font-family: Onest;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  text-align: center;
  background: #F0AF15;
  padding: 5px 7px;
  border-radius: 10px;
  display: block;
  width: max-content;
}
.confirm {
  font-family: Onest;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  text-align: center;
  background: #15F069;
  padding: 5px;
  border-radius: 10px;
  display: block;
  width: max-content;
}
.silect-status {
  display: none;
  background: #ffffff;
  width: min-content;
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  border: 1px solid #707070;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  cursor: pointer;
}
.silect-status.active{
  display: flex;
}
.status_tab {
  cursor: pointer;
}


._status.disable {
  pointer-events: none;
}

input[readonly] {
  background-color: #EEFAF3; /* Светло-серый */
  color: #666; /* Темно-серый текст */
  cursor: not-allowed; /* Указывает, что поле недоступно */
}
input[disabled] {
  background-color: #EEFAF3; /* Светло-серый */
  color: #666; /* Темно-серый текст */
  cursor: not-allowed; /* Указывает, что поле недоступно */
}
select[disabled] {
  background-color: #EEFAF3; /* Светло-серый */
  color: #666; /* Темно-серый текст */
  cursor: not-allowed; /* Указывает, что поле недоступно */
}

.timepicker input[readonly] {
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
}

#order_instruments input[readonly] {
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
}

._btn._disabled_data {
  background: #D9D9D9;
  color: #fff;
  pointer-events: none;
}

.select_type_user .input {
  width: 90px;
  height: 42px;
}

input.tixt__input {
  border: 1px solid #C5C5C5;
  border-radius: 4px;
  padding: 5px;
  width: 100%;
}
.select_type_user label {
  position: relative;
}
.select_type_user label input{
  display: none;
}
.select_type_user label::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 1px solid #c5c5c5;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%);
}
.select_type_user label.form-order__label {
  padding-left: 45px;
}

.form-order__input:checked + span::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #3b5edd;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

p.error_send {
  color: red;
  text-align: center;
  padding-top: 5px;
}

.gallery-car {
  display: none;
}


.circle {
  width: 190px;
  height: 190px;
  position: absolute;
  border-radius: 50%;
  left: 20px;
  top: 20px;
}
.segment {
  position: absolute;
  width: 50%;
  height: 50%;
  border: 8px solid;
  border-radius: 50%;
  clip-path: polygon(50% 50%, 100% 0, 100% 20%);
  transform-origin: 50% 50%;
  border-color:#3CCBAE
}
.red { border-color: #EA3535; }
.green { border-color: #3CCBAE; }

.position-1 { transform: rotate(0deg); }
.position-2 { transform: rotate(15deg); }
.position-3 { transform: rotate(30deg); }
.position-4 { transform: rotate(45deg); }
.position-5 { transform: rotate(60deg); }
.position-6 { transform: rotate(75deg); }
.position-7 { transform: rotate(90deg); }
.position-8 { transform: rotate(105deg); }
.position-9 { transform: rotate(120deg); }
.position-10 { transform: rotate(135deg); }
.position-11 { transform: rotate(150deg); }
.position-12 { transform: rotate(165deg); }
.position-13 { transform: rotate(180deg); }
.position-14 { transform: rotate(195deg); }
.position-15 { transform: rotate(210deg); }
.position-16 { transform: rotate(225deg); }
.position-17 { transform: rotate(240deg); }
.position-18 { transform: rotate(255deg); }
.position-19 { transform: rotate(270deg); }
.position-20 { transform: rotate(285deg); }
.position-21 { transform: rotate(300deg); }
.position-22 { transform: rotate(315deg); }
.position-23 { transform: rotate(330deg); }
.position-24 { transform: rotate(345deg); }

a.product__image.gallery-cars {
  position: relative;
}
span.zoom_image {
  z-index: 1;
  position: absolute;
  width: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
span.zoom_image svg{
  color: #ffffff;
}
.mobile_logout {
  display: none;
}
.mobile_logout a{
  display: flex;
  column-gap: 10px;
  background: #EFEFEF;
  padding: 12px 20px;
  border-bottom: 1px solid #EFEFEF;
  border-radius: 10px;
  margin-top: 15px;
  color: #000000;
  align-items: center;
}

.select_update_tab select{
  display: block!important;
  border: 1px solid #C5C5C5;
  background: #fff;
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  display: block;
  padding: 3px 3px;
  color: #AFAFAF;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
}
.select_update_tab .select__item{
  display: none!important;
}



.select_update_tab_car select, .select_update_tab_driver select{
  display: block!important;
  border: 1px solid #C5C5C5;
  background: #fff;
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  display: block;
  padding: 3px 3px;
  color: #AFAFAF;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
}
.select_update_tab_car .select__item, .select_update_tab_driver .select__item{
  display: none!important;
}

.disabled {
  pointer-events: none;
}

.download_pdf {
  width: 100%;
  display: flex
;
  flex-direction: row-reverse;
}


.history-filter-men {
  width: 100%;
  max-width: 280px;
  background: #fff;
  height: 100%;
  max-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  z-index: 10;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.history-filter-men:not(._active) {
  pointer-events: none;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.history-equipment a.history-equipment__download {
  position: relative;
  left: 20px;
}

.auto-history__item_briver span {
  max-width: 200px;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (min-width: 720.98px) {
  .form-order__item._half {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .cabinet__top {
    display: none;
  }

  .data-cabinet__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
            flex: 0 0 calc(100% / 2);
    padding: 0px 30px;
  }

  .data-cabinet__column:first-child {
    padding-left: 0;
  }

  .data-cabinet__column:last-child {
    padding-right: 0;
  }

  .data-cabinet__column:not(:last-child) {
    border-right: 1px solid #D5D5D5;
  }

  .product-equipment-history-details__label {
    display: none;
  }

  .not-found__image {
    display: none;
  }
}

@media (min-width: 991.98px) {
  .quantity__button:hover::before,
  .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .menu__login {
    display: none;
  }

  .menu__contacts {
    display: none;
  }

  .auto-selected__body > .auto-selected__image {
    display: none;
  }

  .data-cabinet__item._half {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }
}

@media (min-width: 992px) {
  .select__option:hover {
    background: #f3f3f3;
  }

  .checkbox a:hover {
    text-decoration: underline;
  }
}

@media (min-width: 1372px) {
  .benefits__info {
    border-radius: 12px;
    background: #fff;
    padding: 20px 20px 20px 50px;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
            box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
    margin-left: -40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .auto-history__top span._details {
    display: none;
  }

  .auto-history__item span._details {
    display: none;
  }
}

@media (max-width: 1372px) {
  ._title {
    font-size: 28px;
  }

  .main-footer__wrapper {
    padding: 30px 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .main-footer__column:nth-child(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 126px;
            flex: 0 0 126px;
  }

  .main-footer__column._contacts {
    margin: -30px -40px;
    padding: 30px 40px;
  }

  .banner__item {
    padding: 0px 25px 0px 50px;
    min-height: 360px;
  }

  .banner__body {
    row-gap: 15px;
  }

  .banner__title {
    font-size: 40px;
  }

  .banner__text {
    font-size: 16px;
  }

  .banner__price {
    font-size: 20px;
  }

  .banner__price span {
    font-size: 40px;
  }

  .select-equipment__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 40px;
  }

  .select-equipment__section {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px * 1) / 2);
            flex: 0 0 calc((100% - 40px * 1) / 2);
  }

  .products-section__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .products-section__item:not(:last-child) {
    margin-right: 20px;
  }

  .products-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .products-section__arrow {
    display: none;
  }

  .benefits__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .benefits__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    border-radius: 12px;
    background: #fff;
    padding: 20px 15px;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
            box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }

  .benefits__info {
    font-size: 16px;
  }

  .order__section {
    padding: 20px;
  }

  .auto-history._moderation .auto-history__top > *,
  .auto-history._moderation .auto-history__item > * {
    display: block;
  }

  .auto-history._moderation .auto-history__top > *:nth-child(3),
  .auto-history._moderation .auto-history__top > *:nth-child(5),
  .auto-history._moderation .auto-history__top > *:nth-child(6),
  .auto-history._moderation .auto-history__top > *:nth-child(9),
  .auto-history._moderation .auto-history__top > *:nth-child(12),
  .auto-history._moderation .auto-history__top > *:nth-child(13),
  .auto-history._moderation .auto-history__top > *:nth-child(15),
  .auto-history._moderation .auto-history__item > *:nth-child(3),
  .auto-history._moderation .auto-history__item > *:nth-child(5),
  .auto-history._moderation .auto-history__item > *:nth-child(6),
  .auto-history._moderation .auto-history__item > *:nth-child(9),
  .auto-history._moderation .auto-history__item > *:nth-child(12),
  .auto-history._moderation .auto-history__item > *:nth-child(13),
  .auto-history._moderation .auto-history__item > *:nth-child(15) {
    display: none;
  }

  .auto-history._moderation .auto-history__top,
  .auto-history._moderation .auto-history__item {
    -ms-grid-columns: 40px 50px 95px 70px 180px 60px 60px 40px 55px 35px 50px 95px;
    grid-template-columns: 40px 50px 95px 70px 180px 60px 60px 40px 55px 35px 50px 95px;
  }

  .auto-history__top {
    -ms-grid-columns: 40px 90px 110px 80px 70px 70px 210px 40px 50px 50px;
    grid-template-columns: 40px 90px 110px 80px 70px 70px 210px 40px 50px 50px;
  }

  .auto-history__top span:not(:nth-child(-n+7), ._total-hours, ._details, ._download) {
    display: none;
  }

  .auto-history__item {
    -ms-grid-columns: 40px 90px 110px 80px 70px 70px 210px 40px 50px 50px;
    grid-template-columns: 40px 90px 110px 80px 70px 70px 210px 40px 50px 50px;
  }

  .auto-history__item span:not(:nth-child(-n+7), ._total-hours, ._details, ._download) {
    display: none;
  }

  .history-equipment__column:nth-child(5) {
    margin-left: 0;
  }

  ._no-webp .not-found__wrapper {
    background: url(../img/not-found.png) calc(100% + 80px) bottom/auto calc(100% - 40px) no-repeat, #fff; }

  .not-found__wrapper {
    padding: 30px 40px;
  }

  .about__title {
    font-size: 24px;
  }

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

  .about__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }

  .about__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }

  .contacts__title {
    font-size: 24px;
  }

  .contacts__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .contacts__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
    padding: 20px;
  }

  .contacts__item {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .catalog__title {
    font-size: 24px;
  }

  .catalog__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .card__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .card__gallery {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .card__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .card__title {
    font-size: 24px;
  }

  .history-cabinet__auto.auto-history {
    overflow: auto;
  }
}

@media (max-width: 991.98px) {
    .bottom-footer__dev{
        order:1;
    }
    .bottom-footer__bank{
        order:2;
    }

  ._title {
    font-size: 24px;
  }

  .header._gray .menu__body {
    background: #F8F8F8;
  }

  .header__logo {
    margin-right: auto;
  }

  .header__menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .header__other {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .menu__body {
    position: fixed;
    top: 74px;
    left: 0;
    background: #fff;
    height: 100%;
    max-height: calc(100dvh - 74px);
    width: 100%;
    padding: 30px 20px;
    border-top: 1px solid #D5D5D5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 50px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
    overflow-y: auto;
  }

  .menu__body:not(._active) {
    pointer-events: none;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }

  .menu__link {
    font-size: 20px;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 23px;
    height: 15px;
    cursor: pointer;
  }

  .icon-menu span {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
  }

  .icon-menu span:first-child {
    top: 0px;
  }

  .icon-menu span:last-child {
    top: auto;
    bottom: 0px;
  }

  .icon-menu._active span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }

  .icon-menu._active span:first-child {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: calc(50% - 1px);
  }

  .icon-menu._active span:last-child {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }

  .footer__bottom {
    padding: 20px 0px;
  }

  .main-footer__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 30px;
  }

  .main-footer__column._contacts {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin: 0px -40px -30px;
  }

  .contacts-main-footer__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .contacts-main-footer__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .banner {
    padding-bottom: 20px;
  }

  .banner__item {
    min-height: 450px;
    -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;
    padding: 30px 20px;
    text-align: center;
  }

  .banner__item::after {
    -webkit-clip-path: polygon(90% 0, 100% 0, 100% 100%, 50% 100%);
            clip-path: polygon(90% 0, 100% 0, 100% 100%, 50% 100%);
  }

  .banner__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .banner__title {
    font-size: 30px;
  }

  .banner__price {
    font-size: 16px;
  }

  .banner__price span {
    font-size: 30px;
  }

  .banner__image {
    max-width: 485px;
  }

  .select-equipment {
    padding: 20px 0px;
  }

  .select-equipment__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
    margin-top: 20px;
  }

  .select-equipment__section {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .car-select-equipment__info_item {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    font-size: 12px;
  }

  .car-select-equipment__info_item img,
  .car-select-equipment__info_item svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    width: 16px;
    height: 16px;
  }

  .products-section {
    padding: 20px 0px;
  }

  .products-section__content {
    margin-top: 20px;
  }

  .products-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .benefits {
    padding: 20px 0px;
  }

  .benefits__circle {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 62px;
            flex: 0 0 62px;
    width: 62px;
    height: 62px;
  }

  .benefits__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34px;
            flex: 0 0 34px;
    width: 34px;
    height: 34px;
  }

  .benefits__info {
    font-size: 14px;
  }

  .login {
    padding: 30px 0px;
  }

  .breadcrums {
    padding: 20px 0px;
  }

  .order {
    padding: 20px 0px;
  }

  .auto-selected > .auto-selected__image {
    display: none;
  }

  .auto-selected__name {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .auto-selected__name span:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .driver-selected-order {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 20px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .driver-selected-order__image {
    aspect-ratio: 1/0.85;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .driver-selected-order__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .driver-selected-order__info span:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .form-order {
    row-gap: 20px;
  }

  .form-order__data {
    row-gap: 20px;
  }

  .order-send {
    padding: 40px 0px;
  }

  .receipt-page {
    padding: 20px 0px;
  }

  ._no-webp .receipt {
    background: url(../img/receipt-bg.jpg) calc(100% + 0px) bottom/350px no-repeat, #fff; }

  .receipt {
    padding: 30px 30px 120px;
    row-gap: 50px;
  }

  .head-receipt__main {
    max-width: 290px;
  }

  .head-receipt__title {
    font-size: 24px;
  }

  .head-receipt__text {
    font-size: 16px;
  }

  .head-receipt__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
  }

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

  .info-receipt__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .products-receipt__title {
    font-size: 18px;
  }

  .products-receipt__content {
    margin-top: 20px;
  }

  .cabinet {
    padding: 20px 0px;
  }

  .cabinet__content {
    margin-top: 20px;
  }

  .cabinet__blocks {
    padding: 20px;
  }

  .head-history__other {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .auto-history._moderation .auto-history__top > *:nth-child(2),
  .auto-history._moderation .auto-history__top > *:nth-child(3),
  .auto-history._moderation .auto-history__top > *:nth-child(4),
  .auto-history._moderation .auto-history__top > *:nth-child(5),
  .auto-history._moderation .auto-history__top > *:nth-child(6),
  .auto-history._moderation .auto-history__top > *:nth-child(9),
  .auto-history._moderation .auto-history__top > *:nth-child(12),
  .auto-history._moderation .auto-history__top > *:nth-child(13),
  .auto-history._moderation .auto-history__top > *:nth-child(14),
  .auto-history._moderation .auto-history__top > *:nth-child(15),
  .auto-history._moderation .auto-history__item > *:nth-child(2),
  .auto-history._moderation .auto-history__item > *:nth-child(3),
  .auto-history._moderation .auto-history__item > *:nth-child(4),
  .auto-history._moderation .auto-history__item > *:nth-child(5),
  .auto-history._moderation .auto-history__item > *:nth-child(6),
  .auto-history._moderation .auto-history__item > *:nth-child(9),
  .auto-history._moderation .auto-history__item > *:nth-child(12),
  .auto-history._moderation .auto-history__item > *:nth-child(13),
  .auto-history._moderation .auto-history__item > *:nth-child(14),
  .auto-history._moderation .auto-history__item > *:nth-child(15) {
    display: none;
  }

  .auto-history._moderation .auto-history__top,
  .auto-history._moderation .auto-history__item {
    -ms-grid-columns: 40px 70px 140px 60px 60px 55px 35px 50px 95px;
    grid-template-columns: 40px 70px 140px 60px 60px 55px 35px 50px 95px;
  }

  .auto-history__top {
    -ms-grid-columns: 40px 90px 70px 70px 210px 50px 50px;
    grid-template-columns: 40px 90px 70px 70px 210px 50px 50px;
  }

  .auto-history__top span:not(:nth-child(1),
  :nth-child(2),
  :nth-child(5),
  :nth-child(6),
  :nth-child(7), ._details, ._download) {
    display: none;
  }

  .auto-history__item {
    -ms-grid-columns: 40px 90px 70px 70px 210px 50px 50px;
    grid-template-columns: 40px 90px 70px 70px 210px 50px 50px;
  }

  .auto-history__item span:not(:nth-child(1),
  :nth-child(2),
  :nth-child(5),
  :nth-child(6),
  :nth-child(7), ._details, ._download) {
    display: none;
  }

  .history-equipment._moderation .history-equipment__top,
  .history-equipment._moderation .history-equipment__item {
    -ms-grid-columns: 40px 80px 90px 70px 35px 95px 45px 50px;
    grid-template-columns: 40px 80px 90px 70px 35px 95px 45px 50px;
  }

  .history-equipment._moderation .history-equipment__top > *,
  .history-equipment._moderation .history-equipment__item > * {
    display: block;
  }

  .history-equipment._moderation .history-equipment__top > *:nth-child(5),
  .history-equipment._moderation .history-equipment__item > *:nth-child(5) {
    display: none;
  }

  .equipment-history-details__top {
    -ms-grid-columns: 1fr 70px 70px 70px 60px 80px;
    grid-template-columns: 1fr 70px 70px 70px 60px 80px;
  }

  .equipment-history-details__product:first-child {
    border-top: 1px solid #E1E1E1;
  }

  .product-equipment-history-details {
    -ms-grid-columns: 1fr 70px 70px 70px 60px 80px;
    grid-template-columns: 1fr 70px 70px 70px 60px 80px;
  }

  .product-equipment-history-details__main {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .product-equipment-history-details__name {
    font-size: 14px;
  }

  .product-equipment-history-details__value {
    font-size: 14px;
  }

  .not-found {
    padding: 40px 0px;
  }

  .not-found__wrapper {
    min-height: 400px;
    padding: 30px 30px;
  }

  .not-found__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 285px;
            flex: 0 0 285px;
  }

  .not-found__title {
    font-size: 32px;
  }

  .about {
    padding: 20px 0px;
  }

  .about__wrapper {
    padding: 20px;
  }

  .about__title {
    font-size: 20px;
  }

  .about__content {
    margin-top: 20px;
    row-gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .about__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .about__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .contacts {
    padding: 20px 0px;
  }

  .contacts__title {
    font-size: 20px;
  }

  .contacts__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .contacts__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .catalog__title {
    font-size: 20px;
  }

  .catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .card__wrapper {
    padding: 20px;
  }

  .card__title {
    font-size: 20px;
  }

  .order-success {
    padding: 40px 0px;
  }

  .page section:last-child {
    padding-bottom: 40px;
  }

  .form-order__item.select_type {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
}

@media (max-width: 720.98px) {
  .header__login {
    display: none;
  }

  .main-footer__wrapper {
    padding: 30px 20px;
  }

  .main-footer__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .main-footer__name._spoller {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .main-footer__name._spoller._active::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .main-footer__name._spoller::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12px;
            flex: 0 0 12px;
    width: 12px;
    height: 12px;
    margin-left: auto;
    display: inline-block;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
    background: url(../img/icons/spoller-w.svg) center/cover no-repeat;
  }

  .main-footer__body {
    display: none;
  }

  .contacts-main-footer__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .bottom-footer__wrapper {
    -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;
    text-align: center;
    row-gap: 20px;
  }

  .products-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .products-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 1) / 2);
            flex: 0 0 calc((100% - 10px * 1) / 2);
  }

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

  .benefits__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .head-order {
    -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;
  }

  .selected-order__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .products-order__item {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 20px;
    position: relative;
  }
  span.delete-instrument {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 32px;
  }

  .store-delivery-order {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .store-delivery-order__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .store-delivery-order__map {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .footer-receipt {
    -ms-grid-columns: 90px 100px 92px;
    grid-template-columns: 90px 100px 92px;
  }

  .cabinet__nav {
    display: none;
  }

  .cabinet__blocks {
    border-radius: 12px;
    overflow: hidden;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0px;
  }

  .cabinet__block {
    display: block !important;
    background: #fff;
  }

  .cabinet__body {
    display: none;
    padding: 30px;
  }

  .data-cabinet__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .head-history__mods {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
  }

  .auto-history._moderation .auto-history__top > *:nth-child(2),
  .auto-history._moderation .auto-history__top > *:nth-child(3),
  .auto-history._moderation .auto-history__top > *:nth-child(4),
  .auto-history._moderation .auto-history__top > *:nth-child(5),
  .auto-history._moderation .auto-history__top > *:nth-child(6),
  .auto-history._moderation .auto-history__top > *:nth-child(7),
  .auto-history._moderation .auto-history__top > *:nth-child(8),
  .auto-history._moderation .auto-history__top > *:nth-child(9),
  .auto-history._moderation .auto-history__top > *:nth-child(12),
  .auto-history._moderation .auto-history__top > *:nth-child(13),
  .auto-history._moderation .auto-history__top > *:nth-child(14),
  .auto-history._moderation .auto-history__top > *:nth-child(15),
  .auto-history._moderation .auto-history__item > *:nth-child(2),
  .auto-history._moderation .auto-history__item > *:nth-child(3),
  .auto-history._moderation .auto-history__item > *:nth-child(4),
  .auto-history._moderation .auto-history__item > *:nth-child(5),
  .auto-history._moderation .auto-history__item > *:nth-child(6),
  .auto-history._moderation .auto-history__item > *:nth-child(7),
  .auto-history._moderation .auto-history__item > *:nth-child(8),
  .auto-history._moderation .auto-history__item > *:nth-child(9),
  .auto-history._moderation .auto-history__item > *:nth-child(12),
  .auto-history._moderation .auto-history__item > *:nth-child(13),
  .auto-history._moderation .auto-history__item > *:nth-child(14),
  .auto-history._moderation .auto-history__item > *:nth-child(15) {
    display: none;
  }

  .auto-history._moderation .auto-history__top,
  .auto-history._moderation .auto-history__item {
    -ms-grid-columns: 40px 60px 60px 55px 35px 50px 12px;
    grid-template-columns: 40px 60px 60px 55px 35px 50px 12px;
  }

  .auto-history__top {
    -ms-grid-columns: 40px 90px 70px 70px 50px;
    grid-template-columns: 40px 90px 70px 70px 50px;
  }

  .auto-history__top span:not(:nth-child(1),
  :nth-child(2),
  :nth-child(5),
  :nth-child(6), ._details) {
    display: none;
  }

  .auto-history__item {
    -ms-grid-columns: 40px 90px 70px 70px 50px;
    grid-template-columns: 40px 90px 70px 70px 50px;
  }

  .auto-history__item span:not(:nth-child(1),
  :nth-child(2),
  :nth-child(5),
  :nth-child(6), ._details) {
    display: none;
  }

  .auto-history__status {
    font-size: 0;
    width: 12px;
    height: 12px;
    padding: 0px;
  }

  .history-equipment._moderation .history-equipment__top,
  .history-equipment._moderation .history-equipment__item {
    -ms-grid-columns: 40px 90px 70px 35px 12px 45px;
    grid-template-columns: 40px 90px 70px 35px 12px 45px;
  }

  .history-equipment._moderation .history-equipment__top > *:nth-child(2),
  .history-equipment._moderation .history-equipment__top > *:nth-child(5),
  .history-equipment._moderation .history-equipment__top > *:nth-child(9),
  .history-equipment._moderation .history-equipment__item > *:nth-child(2),
  .history-equipment._moderation .history-equipment__item > *:nth-child(5),
  .history-equipment._moderation .history-equipment__item > *:nth-child(9) {
    display: none;
  }

  .history-equipment__top span:nth-child(4) {
    display: none;
  }

  .history-equipment__top {
    -ms-grid-columns: 40px 90px 70px 45px 50px;
    grid-template-columns: 40px 90px 70px 45px 50px;
  }

  .history-equipment__item {
    -ms-grid-columns: 40px 90px 70px 45px 50px;
    grid-template-columns: 40px 90px 70px 45px 50px;
  }

  .history-equipment__column ._status {
    font-size: 0;
    width: 12px;
    height: 12px;
    padding: 0px;
  }

  .history-equipment__column:nth-child(4) {
    display: none;
  }

  .equipment-history-details__top {
    display: none;
  }

  .product-equipment-history-details {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 10px;
  }

  .product-equipment-history-details__column:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }

  .product-equipment-history-details__main {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .not-found__wrapper {
    background: #fff !important;
    min-height: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }

  .not-found__body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .not-found__button {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }

  .contacts__content {
    margin-top: 20px;
  }

  .catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .card__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .card__gallery {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .card__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .mobile_logout {
    display: block;
  }
  .popup__body {
    padding: 20px;
  }
  .history-cabinet__auto.auto-history {
    overflow-x: auto;
  }
  .head-history__nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
  }
  .filter-date {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .filter-date_ist {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .history-equipment {
    overflow-x: auto;
  }
}

@media (max-width: 550px) {
  .select-equipment__section {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media (max-width: 479.98px) {
  .options {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  ._title {
    font-size: 20px;
  }

  .header {
    padding: 8px 0px;
  }

  .header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }

  .menu__body {
    top: 58px;
    max-height: calc(100dvh - 58px);
  }

  .main-footer__wrapper {
    row-gap: 20px;
  }

  .main-footer__column._contacts {
    margin: 10px -20px -30px;
    padding: 20px;
  }

  .banner {
    padding-bottom: 15px;
  }

  .banner__item {
    min-height: 360px;
    padding: 30px 15px;
  }

  .banner__item::after {
    -webkit-clip-path: polygon(100% 30%, 100% 30%, 100% 100%, 50% 100%);
            clip-path: polygon(100% 30%, 100% 30%, 100% 100%, 50% 100%);
  }

  .banner__body {
    row-gap: 10px;
  }

  .banner__title {
    font-size: 24px;
  }

  .banner__text {
    font-size: 14px;
  }

  .banner__price span {
    font-size: 24px;
  }

  .banner__image {
    margin: 0px -15px -30px;
  }

  .banner__paggination {
    margin-top: 10px;
  }

  .select-equipment {
    padding: 15px 0px;
  }

  .top-select-equipment__name {
    font-size: 18px;
  }

  .products-section {
    padding: 15px 0px;
  }

  .products-section__content {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .products-section__item:not(:last-child) {
    margin-right: 10px;
  }

  .product {
    padding: 15px;
    row-gap: 10px;
  }

  .product__body {
    padding: 0px;
  }

  .product__name {
    font-size: 14px;
  }

  .product__price {
    font-size: 16px;
  }

  .benefits {
    padding: 15px 0px;
  }

  .benefits__wrapper {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 10px;
  }

  .benefits__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 1) / 2);
            flex: 0 0 calc((100% - 10px * 1) / 2);
  }

  .login {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .login__wrapper {
    padding: 20px;
  }

  .order {
    padding: 15px 0px;
  }

  .order__content {
    row-gap: 20px;
  }

  .datepicker-order .air-datepicker .air-datepicker-cell {
    padding: 10px 0px;
  }

  .delivery-order__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .delivery-order__blocks {
    margin-top: 20px;
  }

  .address-delivery-order__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .date-order {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .date-order__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px) / 2);
            flex: 0 0 calc((100% - 10px) / 2);
  }

  .order-send {
    padding: 30px 0px;
  }

  .order-send__wrapper {
    padding: 20px 20px;
  }

  .order-send__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48px;
            flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .order-send__title {
    font-size: 18px;
  }

  .receipt-page {
    padding: 15px 0px;
  }

  .receipt-page__footer {
    margin-top: 20px;
  }

  ._no-webp .receipt {
    background: url(../img/receipt-bg.jpg) calc(100% + 0px) bottom/200px no-repeat, #fff; }

  .receipt {
    padding: 20px;
    row-gap: 40px;
  }

  .head-receipt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .head-receipt__logo {
    width: 100%;
    max-width: 140px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .info-receipt__item {
    -ms-grid-columns: 70px 1fr;
    grid-template-columns: 70px 1fr;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .info-receipt__value {
    word-break: break-all;
  }

  .footer-receipt__work {
    font-size: 14px;
  }

  .cabinet {
    padding: 15px 0px;
  }

  .cabinet__body {
    padding: 20px;
  }

  .head-history._moderation .head-history__filter-btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    min-height: 48px;
  }

  .head-history__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .head-history__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .head-history__other {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .head-history__other > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 1);
            flex: 0 0 calc((100% - 20px * 1) / 1);
  }

  .head-history__download {
    font-size: 14px;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .auto-history._moderation .auto-history__top > *:nth-child(2),
  .auto-history._moderation .auto-history__top > *:nth-child(3),
  .auto-history._moderation .auto-history__top > *:nth-child(4),
  .auto-history._moderation .auto-history__top > *:nth-child(5),
  .auto-history._moderation .auto-history__top > *:nth-child(6),
  .auto-history._moderation .auto-history__top > *:nth-child(7),
  .auto-history._moderation .auto-history__top > *:nth-child(8),
  .auto-history._moderation .auto-history__top > *:nth-child(9),
  .auto-history._moderation .auto-history__top > *:nth-child(11),
  .auto-history._moderation .auto-history__top > *:nth-child(12),
  .auto-history._moderation .auto-history__top > *:nth-child(13),
  .auto-history._moderation .auto-history__top > *:nth-child(14),
  .auto-history._moderation .auto-history__top > *:nth-child(15),
  .auto-history._moderation .auto-history__item > *:nth-child(2),
  .auto-history._moderation .auto-history__item > *:nth-child(3),
  .auto-history._moderation .auto-history__item > *:nth-child(4),
  .auto-history._moderation .auto-history__item > *:nth-child(5),
  .auto-history._moderation .auto-history__item > *:nth-child(6),
  .auto-history._moderation .auto-history__item > *:nth-child(7),
  .auto-history._moderation .auto-history__item > *:nth-child(8),
  .auto-history._moderation .auto-history__item > *:nth-child(9),
  .auto-history._moderation .auto-history__item > *:nth-child(11),
  .auto-history._moderation .auto-history__item > *:nth-child(12),
  .auto-history._moderation .auto-history__item > *:nth-child(13),
  .auto-history._moderation .auto-history__item > *:nth-child(14),
  .auto-history._moderation .auto-history__item > *:nth-child(15) {
    display: none;
  }

  .auto-history._moderation .auto-history__top,
  .auto-history._moderation .auto-history__item {
    -ms-grid-columns: 40px 60px 55px 35px 50px 12px;
    grid-template-columns: 40px 60px 55px 35px 50px 12px;
  }

  .auto-history__top {
    -ms-grid-columns: 40px 90px 55px 50px;
    grid-template-columns: 40px 90px 55px 50px;
  }

  .auto-history__top span {
    display: none;
  }

  .auto-history__top span:nth-child(1),
  .auto-history__top span:nth-child(2),
  .auto-history__top span:nth-child(15),
  .auto-history__top span._details {
    display: block;
  }

  .auto-history__item {
    -ms-grid-columns: 40px 90px 55px 50px;
    grid-template-columns: 40px 90px 55px 50px;
  }

  .auto-history__item span {
    display: none;
  }

  .auto-history__item span:nth-child(1),
  .auto-history__item span:nth-child(2),
  .auto-history__item span:nth-child(15),
  .auto-history__item span._details {
    display: block;
  }

  .history-equipment._moderation .history-equipment__top,
  .history-equipment._moderation .history-equipment__item {
    -ms-grid-columns: 40px 70px 35px 12px 45px;
    grid-template-columns: 40px 70px 35px 12px 45px;
  }

  .history-equipment._moderation .history-equipment__top > *:nth-child(2),
  .history-equipment._moderation .history-equipment__top > *:nth-child(3),
  .history-equipment._moderation .history-equipment__top > *:nth-child(5),
  .history-equipment._moderation .history-equipment__top > *:nth-child(9),
  .history-equipment._moderation .history-equipment__item > *:nth-child(2),
  .history-equipment._moderation .history-equipment__item > *:nth-child(3),
  .history-equipment._moderation .history-equipment__item > *:nth-child(5),
  .history-equipment._moderation .history-equipment__item > *:nth-child(9) {
    display: none;
  }

  .history-equipment__top span:nth-child(6) {
    display: none;
  }

  .history-equipment__top {
    -ms-grid-columns: 40px 90px 70px 45px;
    grid-template-columns: 40px 90px 70px 45px;
  }

  .history-equipment__item {
    -ms-grid-columns: 40px 90px 70px 45px;
    grid-template-columns: 40px 90px 70px 45px;
  }

  .history-equipment__column:nth-child(6) {
    display: none;
  }

  .equipment-history-details__info {
    font-size: 14px;
    row-gap: 12px;
  }

  .equipment-history-details__info li._total {
    font-size: 16px;
  }

  .not-found {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 30px;
  }

  .not-found__body {
    row-gap: 15px;
  }

  .not-found__logo {
    width: 94px;
  }

  .not-found__title {
    font-size: 20px;
  }

  .not-found__text {
    font-size: 14px;
  }

  .about {
    padding: 15px 0px;
  }

  .about__body {
    font-size: 14px;
  }

  .about__image {
    min-height: 160px;
  }

  .about__image::before {
    width: 47px;
  }

  .contacts {
    padding: 15px 0px;
  }

  .contacts__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .catalog__content {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 10px;
    margin-top: 20px;
  }

  .catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 1) / 2);
            flex: 0 0 calc((100% - 10px * 1) / 2);
  }

  .card__title {
    font-size: 18px;
  }

  .notification-card__text {
    font-size: 12px;
  }

  .order-success {
    padding: 30px 0px;
  }

  .order-success__wrapper {
    padding: 20px;
  }

  .order-success__title {
    font-size: 18px;
  }

  .header + .page {
    padding-top: 58px;
  }

  .page section:last-child {
    padding-bottom: 30px;
  }
}

@media (any-hover: hover) {
  ._btn._stroke:hover {
    color: #fff;
    background: #3B5EDD;
    border-color: #3B5EDD;
  }

  ._btn._stroke:hover svg path[fill] {
    fill: #fff;
  }

  ._btn._stroke:hover svg path[stroke] {
    stroke: #fff;
  }

  ._btn:hover {
    background: #2b44a1;
  }

  .paggination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
    background: rgba(59, 94, 221, 0.5);
  }

  .menu__link:hover {
    color: #3B5EDD;
  }

  .phone-header__value a:hover {
    color: #3B5EDD;
  }

  .main-footer__link:hover {
    text-decoration: underline;
  }

  .bottom-footer__dev:hover {
    color: #3B5EDD;
  }

  .bottom-footer__dev:hover svg path {
    fill: #3B5EDD;
  }

  .products-section__arrow:hover {
    -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
  }

  .products-section__arrow:hover svg path {
    fill: #3B5EDD;
  }

  .product:hover {
    -webkit-box-shadow: 0px 1px 8px 0px rgba(12, 12, 13, 0.15);
            box-shadow: 0px 1px 8px 0px rgba(12, 12, 13, 0.15);
  }

  .product__name:hover {
    color: #3B5EDD;
  }

  .login__connect:hover {
    background: #e0e0e0;
  }

  .login__back:hover {
    color: #000;
  }

  .login__back:hover svg path {
    fill: #000;
  }

  .form-login__forgot:hover {
    color: #000;
    border-color: transparent;
  }

  .breadcrums__item a:hover {
    color: #000;
  }

  .head-order__back:hover {
    color: #000;
  }

  .head-order__back:hover svg path {
    fill: #000;
  }

  .auto-selected__more:hover {
    text-decoration: underline;
  }

  .head-history__download:hover {
    text-decoration: underline;
  }

  .mods-head-history__remove:hover svg path {
    fill: #F11B1B;
  }

  .auto-history__details:hover {
    text-decoration: underline;
  }

  .history-equipment__details:hover {
    text-decoration: underline;
  }

  .head-equipment-history-details__back:hover {
    color: #000;
  }

  .head-equipment-history-details__back:hover svg path {
    fill: #000;
  }

  .contacts__value a:hover {
    color: #3B5EDD;
  }

  .contacts__social:hover svg path[fill] {
    fill: #3B5EDD;
  }

  .contacts__social:hover svg path[stroke] {
    stroke: #3B5EDD;
  }

  .info-card__more:hover {
    text-decoration: underline;
  }

  .order-success__text a:hover {
    text-decoration: underline;
  }
}

._webp .circle-busy__image { background: url(../img/clock.svg) center/cover no-repeat; }


._webp .not-found__wrapper { background: url(../img/not-found.webp) right bottom/auto calc(100% - 40px) no-repeat, #fff; }

._webp .about__image::before { background: url(../img/mini-logo.webp) center/cover no-repeat; }

.receipt {
  position: relative;
}
.img_receipt {
  position: absolute;
  right: 30px;
  bottom: 30px;
  max-width: 35%;
}
.edit {
  background: #ebffe3!important;
}


