*,
:after,
:before {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

button {
  display: block;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  text-align: start;
  letter-spacing: inherit;
  background: 0 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

img {
  width: 100%;
  vertical-align: top;
}

li,
menu,
ol,
ul {
  list-style-type: none;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input,
select,
textarea {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  border-radius: 0;
  padding: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

input::placeholder,
textarea::placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: 0;
}

body {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  color: #000;
}

body._hide-scrolling {
  overflow: hidden;
  padding-right: var(--scroll-width);
}
/***********************************global error***********************************/
.error {
  color: #a94442;
  font-size: 12px;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
  line-height: normal;
}
.wrapper {
  min-height: 100vh;
  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;
}

.wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

[class*='__container'] {
  margin: 0 auto;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 108rem;
  padding: 0 0.9375rem;
}

[class*='-ibg'] {
  display: block;
  position: relative;
}

[class*='-ibg'] iframe,
[class*='-ibg'] img,
[class*='-ibg'] video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.icon img,
.icon svg {
  width: 100%;
  height: 100%;
}

.btn {
  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;
  min-height: 3.125rem;
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.75rem;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.btn:active::before {
  opacity: 0.25;
}

.btn._white {
  color: #000;
  background-color: #fff;
}

.btn._white::before {
  background-color: #000;
}

.btn._white:active::before {
  opacity: 0.15;
}

.icon-menu {
  display: none;
}

.menu {
  display: -ms-grid;
  display: grid;
  min-height: 100%;
}

.menu__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: -webkit-max-content 1fr -webkit-max-content;
  -ms-grid-rows: max-content 1fr max-content;
  grid-template-rows: -webkit-max-content 1fr -webkit-max-content;
  grid-template-rows: max-content 1fr max-content;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 1.5625rem;
}

.menu__block:not(:first-child) {
  padding-top: 1.5625rem;
  border-top: 0.5px solid rgba(0, 0, 0, 0.5);
}

.menu__block.-center > :not(:last-child) {
  margin-bottom: 0.4375rem;
}

.menu__item,
.menu__new-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.3125rem;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 3.125rem;
  border: 0.5px solid rgba(255, 0, 200, 0.5);
  cursor: pointer;
}

.menu__item:not(:last-child),
.menu__new-order:not(:last-child) {
  margin-bottom: 0.4375rem;
}

.menu__item .icon,
.menu__new-order .icon {
  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: 2.4444444444em;
  aspect-ratio: 1/1;
  background-color: #fbf5f5;
  border-radius: 50%;
}

.menu__item .icon svg,
.menu__new-order .icon svg {
  width: 1.3333333333em;
  height: 1.3333333333em;
}

.-active.menu__new-order,
.menu__item.-active {
  color: #fff;
  background-color: #ff00c8;
}

.-active.menu__new-order .icon,
.menu__item.-active .icon {
  background-color: #fbf5f5;
}

.-logout.menu__new-order,
.menu__item.-logout {
  color: #fb6f92;
  border-color: rgba(251, 111, 146, 0.5);
}

.-logout.menu__new-order .icon,
.menu__item.-logout .icon {
  background-color: #ffe5ec;
}

.menu__new-order {
  position: relative;
  -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: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  aspect-ratio: 230/120;
  background: linear-gradient(120deg, #fff 5%, rgba(226, 228, 229, 0.6));
  border: 0.5px solid rgba(206, 206, 206, 0.5);
  border-radius: 1.5rem;
  overflow: hidden;
}

.menu__new-order .icon {
  position: relative;
  background-color: #000;
}

.menu__new-order .text {
  position: relative;
  padding: 0 0.75rem 0.9375rem;
}

/* .menu__new-order-ibg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
 */
.menu__new-order-ibg {
  position: absolute;
  left: 112px;
  top: 32px;
  width: 45%;
  height: 70%;
}
.menu__new-order-ibg img {
  object-fit: contain;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  overflow-x: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  opacity: 0;
  cursor: crosshair;
  z-index: 50;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.popup_active {
  opacity: 1;
}

.popup__body {
  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;
  min-height: 100%;
  padding: 1rem 0.9375rem;
}

.popup__modal {
  position: relative;
  -webkit-transform: perspective(37.5rem) translate(0, -100%) rotateX(-45deg);
  transform: perspective(37.5rem) translate(0, -100%) rotateX(-45deg);
  opacity: 0;
  cursor: auto;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

.popup_active .popup__modal {
  -webkit-transform: perspective(37.5rem) translate(0, 0) rotateX(0);
  transform: perspective(37.5rem) translate(0, 0) rotateX(0);
  opacity: 1;
}

.calendar__close,
.popup__close {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  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: 2.4875rem;
  aspect-ratio: 1/1;
  background-color: #edf5f4;
  border-radius: 50%;
  z-index: 2;
}
.popup__back {
  position: absolute;
  /* right: 4.105rem; */
  top: 0.75rem;
  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: 3.1875rem !important;
  aspect-ratio: 1/1;
  background-color: #edf5f4;
  border-radius: 50%;
  z-index: 2;
}
.calendar__close svg,
.popup__close svg {
  width: 48%;
  height: 48%;
}

.add-store .calendar__close,
.add-store .popup__close,
.popup-payment2 .calendar__close,
.popup-payment2 .popup__close {
  background-color: #fbf5f5;
}

.popup-content__modal {
  width: 100%;
  max-width: 31.25rem;
  padding: 0.75rem;
  background-color: #fff;
  border-radius: 1.5rem;
}

.popup-content__title,
.popup-detail__title {
  padding: 1.375rem 2.5rem 1.875rem 0.5rem;
  font-weight: 500;
  font-size: 1.375rem;
}
.popup-content__title,
.popup-detail__titlecnf {
  padding: 1.375rem 2.5rem 1.875rem 0.5rem;
  font-weight: 500;
  font-size: 1.375rem;
}
.popup-content__servicetitle,
.popup-detail__servicetitle {
  padding: 1.375rem 2.5rem 1.875rem 0.5rem;
  font-weight: 500;
  font-size: 1rem;
}
.popup-content__text {
  overflow: auto;
  max-height: 18.375rem;
  padding: 0 0 1.25rem 0.5rem;
}

.popup-content__text > :not(:last-child) {
  margin-bottom: 0.9375rem;
}

.popup-content__text h3 {
  font-size: 1rem;
}

.popup-content__text p {
  font-size: 0.875rem;
  line-height: 1.2;
}

.popup-content__btn {
  width: 100%;
}

.popup-logout__modal {
  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;
  width: 18.75rem;
  padding: 2.125rem 0.625rem 0.625rem;
  font-weight: 500;
  text-align: center;
  background-color: #fff;
  border-radius: 1.3125rem;
}

.popup-logout__icon {
  width: 3rem;
  margin-bottom: 2.125rem;
}

.popup-logout__title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.popup-logout__text {
  margin-bottom: 3.25rem;
  font-size: 1rem;
  line-height: 1.3;
}

.popup-logout__footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  width: 100%;
}

.popup-logout__btn {
  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;
  height: 3.375rem;
  padding: 0.625rem;
  font-size: 1rem;
  background-color: #fbf5f5;
  border-radius: 0.75rem;
}

.popup-logout__btn.-yes {
  color: #fff;
  background-color: #ff00c8;
}

.popup-choose-loc,
.popup-create__modal,
.popup-detail__modal,
.popup-drivers {
  width: 100%;
  max-width: 27.5rem;
  padding: 1.875rem 0.9375rem 1.25rem;
  background-color: #fff;
  border-radius: 1.5rem;
}

.-confirm .popup-choose-loc,
.-confirm .popup-create__modal,
.-confirm .popup-detail__modal,
.-confirm .popup-drivers {
  padding-bottom: 0;
}

.popup-detail__title {
  margin-bottom: 1.175rem;
  padding: 0 2.1875rem 0 0;
}
.popup-detail__titlecnf {
  margin-bottom: 1.875rem;
  padding: 0 2.1875rem 0 0;
}
.popup-detail__drivers {
  margin-bottom: 1.875rem;
}

.popup-detail__item {
  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;
  gap: 0.9375rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.popup-detail__item:not(:last-child) {
  margin-bottom: 1.125rem;
}

.popup-detail__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
}

.popup-detail__left .icon {
  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: 2.5em;
  aspect-ratio: 1/1;
  background-color: #fbf5f5;
  border-radius: 50%;
}

.popup-detail__left .icon svg {
  width: 60%;
  height: 60%;
}

.popup-detail__left .icon [fill] {
  fill: #000;
}

.-price .popup-detail__left .icon [fill] {
  fill: #ff00c8;
}

.popup-detail__left .text {
  opacity: 0.5;
}

.-price .popup-detail__left .text {
  opacity: 1;
}

.popup-detail__right {
  text-align: end;
}

.-price .popup-detail__right {
  font-size: 1.25em;
}

.drivers-popup-detail {
  position: relative;
  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;
  gap: 0.9375rem;
}

.drivers-popup-detail__images {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.drivers-popup-detail__img-ibg {
  width: 2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 1px 1px #fff;
  box-shadow: inset 0 0 1px 1px #fff;
}

.drivers-popup-detail__img-ibg:not(:last-child) {
  margin-right: -1rem;
}

.drivers-popup-detail__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  font-weight: 500;
  font-size: 0.875rem;
}

.drivers-popup-detail__text .icon {
  width: 1.5em;
  opacity: 0.5;
}

.popup-choose-loc,
.popup-create__modal,
.popup-drivers {
  position: relative;
  padding-bottom: 0;
}

.popup-create__block:not(:last-child) {
  margin-bottom: 0.5375rem;
}

.popup-create__flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 0.625rem;
}

.popup-create__flex:not(:last-child) {
  /* margin-bottom: .5375rem */
  margin-bottom: 0.1375rem;
}

.popup-create__footer {
  margin: 0.9375rem -0.9375rem 0;
  padding: 0.7375rem;
  background-color: #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 -0.375rem 3.375rem rgba(196, 196, 196, 0.25);
  box-shadow: 0 -0.375rem 3.375rem rgba(196, 196, 196, 0.25);
}

.-confirm .popup-create__footer {
  margin-top: 1.25rem;
}

.popup-create__btn {
  width: 100%;
  height: 2.375rem;
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  font-size: 0.875rem;
  text-align: center;
  color: #fff;
  background-color: #000;
  border-radius: 0.75rem;
}

.block-popup-create {
  font-size: 0.875rem;
}

.block-popup-create input,
.block-popup-create select {
  display: block;
  width: 100%;
  height: 2.625rem;
  padding: 0.625rem 0.875rem;
  font-weight: 399;
  border-radius: 0.75rem;
  -webkit-box-shadow: inset 0 0 0.5px 0.5px rgba(130, 130, 130, 0.2);
  box-shadow: inset 0 0 0.5px 0.5px rgba(130, 130, 130, 0.2);
}

.block-popup-create input::-webkit-input-placeholder,
.block-popup-create select::-webkit-input-placeholder {
  opacity: 0.7;
}

.block-popup-create input::-moz-placeholder,
.block-popup-create select::-moz-placeholder {
  opacity: 0.7;
}

.block-popup-create input:-ms-input-placeholder,
.block-popup-create select:-ms-input-placeholder {
  opacity: 0.7;
}

.block-popup-create input::-ms-input-placeholder,
.block-popup-create select::-ms-input-placeholder {
  opacity: 0.7;
}

.block-popup-create input::placeholder,
.block-popup-create select::placeholder {
  opacity: 0.7;
}

.block-popup-create select {
  padding-right: 2.375rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.block-popup-create__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4375em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.block-popup-create__title .icon {
  width: 1.5em;
}

.block-popup-create__flex {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.875rem;
  grid-template-columns: 1fr 2.875rem;
  gap: 0.625rem;
}

.block-popup-create__loc {
  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%;
  border-radius: 0.75rem;
  -webkit-box-shadow: inset 0 0 0.5px 0.5px rgba(130, 130, 130, 0.2);
  box-shadow: inset 0 0 0.5px 0.5px rgba(130, 130, 130, 0.2);
}

.block-popup-create__loc svg {
  width: 44%;
  height: 44%;
}

.block-popup-create__select {
  position: relative;
}

.block-popup-create__select .icon {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 1.5em;
  aspect-ratio: 1/1;
  pointer-events: none;
}

.block-popup-create__select .icon [fill] {
  fill: #ff00c8;
}

.block-popup-create__input {
  position: relative;
}

.block-popup-create__items {
  position: relative;
}

.block-popup-create__items .tip {
  position: absolute;
  right: 0.6875rem;
  top: 100%;
  -webkit-transform: translate(0, -0.25rem);
  -ms-transform: translate(0, -0.25rem);
  transform: translate(0, -0.25rem);
}

.block-popup-create__items .tip__wrapper {
  position: relative;
  left: 0;
  top: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.block-popup-create__car:not(:last-child) {
  margin-bottom: 0.75rem;
}

.tip {
  --padding: 5px;
  position: relative;
  z-index: 3;
}

.tip__btn {
  width: 1.5em;
  cursor: help;
}

.tip__wrapper {
  position: absolute;
  left: -1.3125rem;
  top: 100%;
  -webkit-transform: translate(0, 0.375rem);
  -ms-transform: translate(0, 0.375rem);
  transform: translate(0, 0.375rem);
  max-width: calc(100vw - var(--padding) * 2);
  width: 17.5rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

.tip__wrapper[aria-hidden='false'] {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.tip__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8571428571em;
  padding: 0.5625rem 0.625rem;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #fff;
  background-color: #000;
  border-radius: 0.75rem;
}

.tip__content .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.7142857143em;
}

.tip__content [fill] {
  fill: #fff;
}

.-warning .tip__content {
  background-color: #ff6f6f;
}

.car-popup-create {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6.5rem 4.75rem;
  grid-template-columns: 1fr 6.5rem 4.75rem;
  min-height: 6.375rem;
  border-radius: 0.75rem;
  -webkit-box-shadow: inset 0 0 0.5px 0.5px rgba(130, 130, 130, 0.2);
  box-shadow: inset 0 0 0.5px 0.5px rgba(130, 130, 130, 0.2);
  overflow: hidden;
}

.car-popup-create__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: -webkit-max-content -webkit-max-content 1fr;
  -ms-grid-rows: max-content max-content 1fr;
  grid-template-rows: -webkit-max-content -webkit-max-content 1fr;
  grid-template-rows: max-content max-content 1fr;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 0.45rem;
  padding: 1rem 0.875rem 1.125rem;
}

.car-popup-create__text {
  font-weight: 400;
  opacity: 0.5;
  font-size: 14px;
}

.car-popup-create__price {
  /* font-weight: 400;
	opacity: .5; */
  font-size: 12px;
}

.car-popup-create__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: -webkit-max-content 1fr;
  -ms-grid-rows: max-content 1fr;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 0.575rem;
}

.car-popup-create__image-ibg {
  width: 100%;
  aspect-ratio: 108/90;
  /*   z-index: -1; */
}

.car-popup-create__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  margin-right: 0.9375rem;
  padding: 0 0.375rem 0.875rem;
}

.car-popup-create__counter div {
  width: 2ch;
  font-weight: 400;
  text-align: center;
}

.car-popup-create__counter div::before {
  content: attr(data-value);
}

.car-popup-create__counter button {
  width: 2.5rem;
}

.car-popup-create__counter button._disable {
  opacity: 0.2;
  cursor: default;
}

.popup-choose-loc,
.popup-drivers {
  position: absolute;
  top: 100%;
  left: 0;
  width: min(100%, 18.75rem);
  padding-bottom: 1.875rem;
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
  z-index: 4;
}

.popup-choose-loc[hidden],
[hidden].popup-drivers {
  display: none;
}

.popup-choose-loc__title,
.popup-drivers__title {
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-size: 1.375rem;
}

.popup-choose-loc__text {
  margin-bottom: 1.875rem;
  font-weight: 400;
  font-size: 0.875rem;
  opacity: 0.5;
}

.popup-choose-loc__item:not(:last-child) {
  margin-bottom: 1.5625rem;
}

.item-popup-choose-loc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

.item-popup-choose-loc input {
  display: none;
}

.item-popup-choose-loc__fake {
  width: 1.25rem;
  aspect-ratio: 1/1;
}

.item-popup-choose-loc__fake svg:nth-child(1) {
  display: block;
}

.item-popup-choose-loc__fake svg:nth-child(2) {
  display: none;
}

input:checked ~ .item-popup-choose-loc__fake svg:nth-child(1) {
  display: none;
}

input:checked ~ .item-popup-choose-loc__fake svg:nth-child(2) {
  display: block;
}

.item-popup-choose-loc__title {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.item-popup-choose-loc__text {
  font-weight: 400;
  font-size: 0.75rem;
}

.popup-drivers {
  width: min(100%, 15.625rem);
  padding: 1.25rem 1.25rem 2rem 1.25rem;
}

.-confirm .popup-drivers {
  padding-bottom: 2rem;
}

.popup-drivers__title {
  margin-bottom: 1.5625rem;
}

.popup-drivers__item:not(:last-child) {
  margin-bottom: 1.125rem;
}

.item-popup-drivers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  font-weight: 500;
  font-size: 0.875rem;
}

.item-popup-drivers__image-ibg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.item-popup-drivers__title {
  margin-bottom: 0.375em;
}

.item-popup-drivers__text {
  opacity: 0.5;
}

.add-store__title,
.popup-payment2__title,
.popup-payment__title,
.popup-successfully__title {
  font-weight: 500;
  font-size: 1.375rem;
}

.popup-successfully__modal {
  width: min(100%, 18.75rem);
  padding: 2.8125rem 0.75rem 0.75rem 0.75rem;
  background-color: #fff;
  border-radius: 1.5rem;
}

.popup-successfully__icon {
  width: 2.8125rem;
  aspect-ratio: 1/1;
  margin: 0 auto 1.25rem;
}

.popup-successfully__icon [fill] {
  fill: #ff00c8;
}

.popup-successfully__title {
  margin-bottom: 2.5rem;
  text-align: center;
}

.popup-successfully .drivers__btn:not(:first-child) {
  margin-top: 0.5rem;
}

.popup-successfully .drivers__btn.-white {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 0.5px 0.5px rgba(255, 0, 200, 0.2);
  box-shadow: inset 0 0 0.5px 0.5px rgba(255, 0, 200, 0.2);
}

.popup-payment__modal {
  width: min(100%, 25rem);
  padding: 2.1875rem 1.25rem 1.25rem 1.25rem;
  background-color: #fff;
  border-radius: 1.5rem;
}

.popup-payment__title {
  margin-bottom: 2.8125rem;
}

.popup-payment__content {
  max-width: 18.9375rem;
  margin: 0 auto 3.125rem;
  text-align: center;
}

.popup-payment__title2 {
  margin-bottom: 0.9375rem;
  font-weight: 500;
  font-size: 1rem;
}

.popup-payment__text {
  font-size: 0.875rem;
  line-height: 1.2;
  opacity: 0.5;
}

.popup-payment .drivers__btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popup-payment2__modal {
  width: min(100%, 20rem);
  padding: 1.875rem 1.25rem 1.25rem 1.25rem;
  background-color: #fff;
  border-radius: 1.5rem;
}

.popup-payment2__title {
  margin-bottom: 1.875rem;
}

.popup-payment2__title.-small {
  font-size: 1.125rem;
}

.popup-payment2__content {
  margin-bottom: 1.875rem;
}

.popup-payment2__content label {
  display: block;
}

.popup-payment2__content label:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.popup-payment2__content label span {
  display: block;
  margin-bottom: 0.5625rem;
  font-size: 0.875rem;
  opacity: 0.5;
}

.popup-payment2__content input,
.popup-payment2__content select {
  width: 100%;
  min-height: 2.8125rem;
  padding: 0.625rem 0.9375rem;
  font-size: 0.875rem;
  background-color: #fbf5f5;
  border-radius: 0.75rem;
}

.popup-payment2__content input::-webkit-input-placeholder,
.popup-payment2__content select::-webkit-input-placeholder {
  opacity: 0.5;
}

.popup-payment2__content input::-moz-placeholder,
.popup-payment2__content select::-moz-placeholder {
  opacity: 0.5;
}

.popup-payment2__content input:-ms-input-placeholder,
.popup-payment2__content select:-ms-input-placeholder {
  opacity: 0.5;
}

.popup-payment2__content input::-ms-input-placeholder,
.popup-payment2__content select::-ms-input-placeholder {
  opacity: 0.5;
}

.popup-payment2__content input::placeholder,
.popup-payment2__content select::placeholder {
  opacity: 0.5;
}

.popup-payment2__content select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.popup-payment2 .drivers__btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popup-payment2 .drivers__btn[disabled] {
  cursor: default;
  opacity: 0.5;
}

.add-store__modal {
  width: min(100%, 28.125rem);
  padding: 1.875rem 1.25rem 1.25rem 1.25rem;
  background-color: #fff;
  border-radius: 1.5rem;
}

.add-store-map .add-store__modal {
  /* width: min(40%, 57.5rem) */
}

.add-store__title {
  /* margin-bottom: 1.875rem; */
  /* margin-bottom: 0.875rem; */
  margin-bottom: 0.425rem;
  padding-left: 0.625rem;
}

.add-store__map-ibg {
  width: 100%;
  height: 16rem;
  border-radius: 0.75rem;
  overflow: hidden;
  padding-bottom: 10px;
}

.add-store__content {
  /* margin-bottom: 3.75rem; 
	margin-bottom: 0.75rem;*/
  margin-top: 10px;
}

.add-store__content > :not(:last-child) {
  margin-bottom: 0.5375rem;
}

.add-store__content input,
.add-store__content select {
  width: 100%;
  min-height: 2.1125rem;
  padding: 0.625rem 0.9375rem;
  font-size: 0.875rem;
  background-color: #fbf5f5;
  border-radius: 0.75rem;
}

.add-store__content input::-webkit-input-placeholder,
.add-store__content select::-webkit-input-placeholder {
  opacity: 0.5;
}

.add-store__content input::-moz-placeholder,
.add-store__content select::-moz-placeholder {
  opacity: 0.5;
}

.add-store__content input:-ms-input-placeholder,
.add-store__content select:-ms-input-placeholder {
  opacity: 0.5;
}

.add-store__content input::-ms-input-placeholder,
.add-store__content select::-ms-input-placeholder {
  opacity: 0.5;
}

.add-store__content input::placeholder,
.add-store__content select::placeholder {
  opacity: 0.5;
}

.add-store__content select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.add-store__input {
  position: relative;
}

.add-store__input input {
  padding-left: 2.8125rem;
}

.add-store__input .icon {
  position: absolute;
  left: 0.8125rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 1.25rem;
  pointer-events: none;
}

.add-store__input .icon [fill] {
  fill: #000;
  stroke: #fff;
}

.add-store__grid {
  display: -ms-grid;
  display: grid;
  gap: 0.9375rem;
}

.add-store__title-2 {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}

.add-store__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  row-gap: 0.9375rem;
}

.add-store__select {
  position: relative;
}

.add-store__select select {
  padding-right: 2.8125rem;
}

.add-store__select .icon {
  position: absolute;
  right: 0.8125rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 1.25rem;
  pointer-events: none;
}

.add-store .drivers__btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.item-add-store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.875em;
  font-size: 0.875rem;
  cursor: pointer;
}

.item-add-store input {
  display: none;
}

.item-add-store__fake {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid #000;
}

.item-add-store__fake::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.5rem;
  aspect-ratio: 1/1;
  background-color: #000;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

input:checked ~ .item-add-store__fake::before {
  opacity: 1;
}

.header__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: -webkit-max-content 1fr;
  -ms-grid-columns: max-content 1fr;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.625rem 0.9375rem 0;
}

.header__logo {
  position: relative;
  width: 8.875rem;
  margin-right: 1.25rem;
  z-index: 21;
}

.header__content {
  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;
}

.header__action {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4375rem;
  margin-left: auto;
  z-index: 21;
}

.header__icon {
  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: 2.5rem;
  aspect-ratio: 1/1;
  background-color: #fbf5f5;
  border-radius: 50%;
  -webkit-transition: -webkit-filter 0.2s;
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
}

.header__icon svg {
  width: 44.44%;
  aspect-ratio: 1/1;
}

.header__icon:active {
  -webkit-filter: brightness(0.85);
  filter: brightness(0.85);
}

.header__icon._active {
  background-color: #000;
}

.header__icon._active [fill] {
  fill: #fff;
}

.location-header {
  position: relative;
  width: min(100%, 20.625rem);
}

.location-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.9375rem;
  padding: 0.9375rem;
  background-color: #fff;
  border: 0.5px solid rgba(255, 0, 200, 0.5);
  border-radius: 1.5rem;
  cursor: pointer;
}

.location-header__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.location-header__icon svg {
  width: 1.25rem;
  aspect-ratio: 1/1;
}

.location-header__content {
  margin-right: 1.25rem;
  font-weight: 500;
}

.location-header__title {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}

.location-header__loc {
  font-size: 1rem;
  white-space: nowrap;
  /*  overflow: hidden; */
  text-overflow: ellipsis;
}

.location-header__arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto;
}

.location-header__arrow svg {
  width: 1.25rem;
  aspect-ratio: 1/1;
}

.balance-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0.9375rem 1.25rem 0.9375rem 0.9375rem;
  background: linear-gradient(120deg, #fff 5%, rgba(226, 228, 229, 0.6));
  border: 0.5px solid rgba(206, 206, 206, 0.5);
  border-radius: 1.5rem;
  cursor: pointer;
}

.balance-header__content {
  font-weight: 500;
}

.balance-header__title {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}

.balance-header__balance {
  font-size: 1.25rem;
}

.balance-header__icon svg {
  width: 1.25rem;
  aspect-ratio: 1/1;
}

.my-stores {
  position: absolute;
  left: 0;
  top: 100%;
  -webkit-transform: translate(0, 0.3125rem);
  -ms-transform: translate(0, 0.3125rem);
  transform: translate(0, 0.3125rem);
  width: min(100%, 25rem);
  padding: 1.875rem 1.25rem 1.25rem;
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  z-index: 10;
}

.my-stores[hidden] {
  display: none;
}

.my-stores__header {
  margin-bottom: 2.5rem;
}

.my-stores__items {
  max-height: 12.5rem;
  overflow-y: auto;
}

.my-stores__item:not(:last-child) {
  margin-bottom: 1.25rem;
}

.my-stores .drivers__btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2.1875rem;
}

.header-my-stores {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.5rem;
  grid-template-columns: 1fr 2.5rem;
}

.header-my-stores__title {
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-size: 1.25rem;
}

.header-my-stores__text {
  font-size: 0.875rem;
  opacity: 0.5;
}

.header-my-stores__icon {
  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;
  aspect-ratio: 1/1;
  background-color: #ff00c8;
  border-radius: 50%;
}

.header-my-stores__icon svg {
  width: 48%;
  height: 48%;
}

.item-my-stores {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.25rem 1fr 1.25rem 1.25rem;
  grid-template-columns: 1.25rem 1fr 1.25rem 1.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 0.5px solid #fbf5f5;
}

.item-my-stores__checkbox {
  display: block;
  cursor: pointer;
}

.item-my-stores__checkbox input {
  display: none;
}

.item-my-stores__checkbox span {
  display: block;
  width: 1.25rem;
  aspect-ratio: 1/1;
}

.item-my-stores__checkbox span svg:nth-child(1) {
  display: block;
}

.item-my-stores__checkbox span svg:nth-child(2) {
  display: none;
}

.item-my-stores__checkbox input:checked ~ span svg:nth-child(1) {
  display: none;
}

.item-my-stores__checkbox input:checked ~ span svg:nth-child(2) {
  display: block;
}

.item-my-stores__title {
  margin-bottom: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.item-my-stores__text {
  font-size: 0.75rem;
}

.notifications {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: -webkit-max-content 1fr;
  -ms-grid-rows: max-content 1fr;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  width: min(100% - 1.25rem, 21.875rem);
  max-height: 24.125rem;
  padding: 1.25rem 0.625rem 0.625rem;
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  z-index: 5;
}

.notifications[hidden] {
  display: none;
}

.notifications__header {
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-size: 1.125rem;
}

.notifications__body {
  overflow: auto;
}

.notifications__block {
  padding: 0.625rem;
  line-height: 1.2;
  background-color: #fbf5f5;
  border-radius: 0.75rem;
}

.notifications__block:not(:last-child) {
  margin-bottom: 0.5rem;
}

.notifications__block.-unread {
  background-color: #eae4e4;
}

.notifications__icon {
  width: 1.125rem;
  margin-bottom: 0.9375rem;
}

.notifications__title {
  margin-bottom: 0.625rem;
  font-weight: 500;
  font-size: 1rem;
}

.notifications__text {
  margin-bottom: 0.875rem;
  font-size: 0.75rem;
}

.notifications__date {
  font-size: 0.75rem;
  opacity: 0.5;
}

.page {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0 1fr;
  grid-template-columns: 0 1fr;
  height: calc(100vh - 5.625rem);
}

.page__side {
  padding: 0.9375rem 0.9375rem 0.9375rem 1.25rem;
  overflow: auto;
}

.page__content {
  margin: 0.9375rem;
}

.content {
  position: relative;
  border-radius: 1.5rem;
  overflow-x: hidden;
}

.content__map-ibg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.content__map-ibg .car {
  position: absolute;
  right: 30%;
  bottom: 40%;
  width: 3rem;
}

.content-home {
  position: relative;
  min-height: 100%;
  padding: 0.625rem;
}

.chat {
  position: absolute;
  right: 3.625rem;
  bottom: 0.625rem;
  z-index: 3;
}

.chat.chat2 {
  bottom: 4.375rem;
}

.chat__icon-ibg {
  width: 3.125rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  overflow: hidden;
}

.chat2__content,
.chat__content {
  position: absolute;
  right: 0;
  bottom: 100%;
  -webkit-transform: translate(0, -0.625rem);
  -ms-transform: translate(0, -0.625rem);
  transform: translate(0, -0.625rem);
  width: min(21.25rem, 100vw - 3.125rem);
  padding: 0.75rem;
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
}

.chat__header {
  margin-bottom: 0.75rem;
}

.chat__body {
  max-height: 17.125rem;
  overflow: auto;
}

.chat__item {
  padding: 0.75rem 0.75rem 1.125rem;
  line-height: 1.2;
  background-color: #fbf5f5;
  border-radius: 0.75rem;
}
.chat__item.-unread {
  background-color: #eae4e4;
}
.chat__item:not(:last-child) {
  margin-bottom: 0.5rem;
}

.chat__text {
  max-width: 20.7857142857em;
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-size: 0.75rem;
}

.chat__date {
  font-size: 0.625rem;
  opacity: 0.5;
}

.header-chat {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2.25rem 1fr;
  grid-template-columns: 2.25rem 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
}

.header-chat__image-ibg {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.header-chat__text {
  font-weight: 500;
  font-size: 0.75rem;
}

.chat2 {
  z-index: 4;
}

.chat2__content {
  padding: 0;
}

.chat2__body {
  height: 15.625rem;
  padding: 0.9375rem 0.625rem;
  overflow: auto;
}

.chat2__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.chat2__message:not(:last-child) {
  margin-bottom: 1.25rem;
}

.chat2__message.-left {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.chat2__message.-right {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.chat2__user {
  margin-bottom: 0.375rem;
}

.chat2__message-body {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.625rem;
  font-size: 0.6875rem;
  line-height: 1.2;
}

.chat2__message.-left .chat2__message-body {
  max-width: min(17rem, 100% - 2.375rem);
  margin-left: 2.375rem;
  color: #fff;
  background-color: #ff00c8;
  border-radius: 0 1.25rem 1.25rem 1.25rem;
}

.chat2__message.-right .chat2__message-body {
  max-width: min(14.375rem, 100% - 2.375rem);
  margin-right: 2.375rem;
  background-color: #fbf5f5;
  border-radius: 1.25rem 0 1.25rem 1.25rem;
}

.header-chat2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5rem;
  grid-template-columns: 1fr 5rem;
  padding: 0.75rem 1.25rem 0 0.625rem;
  color: #fff;
  background-color: #ff00c8;
  border-radius: 0.75rem;
}

.header-chat2__content {
  max-width: 9.375rem;
  padding-bottom: 0.75rem;
}

.header-chat2__icon-ibg {
  width: 0.625rem;
  aspect-ratio: 1/1;
  margin-bottom: 0.75rem;
}

.header-chat2__title {
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 0.75rem;
}

.header-chat2__text {
  font-size: 0.625rem;
  opacity: 0.8;
}

.header-chat2__image-ibg {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  aspect-ratio: 128/106;
}

.user-chat2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.875rem 1fr;
  grid-template-columns: 1.875rem 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.chat2__message.-right .user-chat2 {
  -ms-grid-columns: 1fr 1.875rem;
  grid-template-columns: 1fr 1.875rem;
  text-align: end;
}

.user-chat2__image-ibg {
  aspect-ratio: 1/1;
}

.user-chat2__content {
  font-size: 0.6875rem;
}

.user-chat2__name {
  margin-bottom: 0.1875rem;
  font-weight: 500;
  color: #000;
}

.user-chat2__date {
  opacity: 0.3;
}

.footer-chat2 {
  padding: 0.625rem;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 -0.375rem 1.5rem rgba(161, 161, 161, 0.1);
  box-shadow: 0 -0.375rem 1.5rem rgba(161, 161, 161, 0.1);
}

.footer-chat2__block {
  position: relative;
}

.footer-chat2__block input {
  width: 100%;
  height: 2.375rem;
  padding: 0.4375rem 5.3125rem 0.4375rem 0.625rem;
  font-size: 0.6875rem;
  background-color: #fbf5f5;
  border-radius: 0.75rem;
  border: 0.5px solid #ddd;
}

.footer-chat2__block input::-webkit-input-placeholder {
  opacity: 0.3;
}

.footer-chat2__block input::-moz-placeholder {
  opacity: 0.3;
}

.footer-chat2__block input:-ms-input-placeholder {
  opacity: 0.3;
}

.footer-chat2__block input::-ms-input-placeholder {
  opacity: 0.3;
}

.footer-chat2__block input::placeholder {
  opacity: 0.3;
}

.footer-chat2__icons {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4375rem;
}

.footer-chat2__icon {
  width: 1.25rem;
}

.footer-chat2__icon[disabled] {
  cursor: default;
}

.footer-chat2__icon[disabled] [fill] {
  fill: #ddd;
}

.calendar-content {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3.375rem 11.25rem;
  grid-template-columns: 3.375rem 11.25rem;
  gap: 0.4375rem;
  z-index: 3;
}

.calendar-content__icon {
  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;
  padding: 0.5rem;
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  cursor: pointer;
}

.calendar-content__icon .icon {
  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: 2.5rem;
  aspect-ratio: 1/1;
  background-color: #edf5f4;
  border-radius: 50%;
}

.calendar-content__icon .icon svg {
  width: 48%;
  height: 48%;
}

.calendar-content__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr -webkit-max-content;
  -ms-grid-columns: 1fr max-content;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.9375rem 0.625rem 0.75rem;
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  cursor: pointer;
}

.calendar-content__block {
  font-weight: 500;
}

.calendar-content__date {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.calendar-content__text {
  font-size: 0.75rem;
  color: #aaa;
}

.-active .calendar-content__text {
  color: #fff;
}

.calendar-content__avatars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.calendar-content__img-ibg {
  width: 1.35rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0.0625rem 0.0625rem #fff;
  box-shadow: inset 0 0 0.0625rem 0.0625rem #fff;
  overflow: hidden;
}

.calendar-content__img-ibg:not(:first-child) {
  margin-right: -0.225rem;
}

.store-content {
  position: absolute;
  left: 3.125rem;
  bottom: 5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2.375rem 1fr;
  grid-template-columns: 2.375rem 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  width: 12.5rem;
  padding: 0.5rem;
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  z-index: 2;
}

.store-content__icon {
  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%;
  aspect-ratio: 1/1;
  background-color: #e6faff;
  border-radius: 50%;
}

.store-content__icon svg {
  width: 48%;
  height: 48%;
}

.store-content__content {
  font-weight: 500;
  font-size: 0.875rem;
}

.store-content__location {
  margin-bottom: 0.375rem;
}

.store-content__title {
  color: #aaa;
}

.driver-content {
  position: absolute;
  bottom: 12.5rem;
  left: 6.25rem;
  width: 12.5rem;
  padding: 0.5rem;
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  z-index: 2;
}

.driver-content__header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2.375rem 1fr;
  grid-template-columns: 2.375rem 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.25rem;
}

.driver-content__image-ibg {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.driver-content__content {
  font-weight: 500;
}

.driver-content_title {
  font-size: 0.875rem;
  margin-bottom: 0.1875rem;
}

.driver-content__raiting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.1875rem;
  font-size: 0.75rem;
  color: #aaa;
}

.driver-content__store {
  padding: 4px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.1875rem;
  font-size: 0.75rem;
  color: #aaa;
}

.driver-content__raiting .icon {
  width: 1.5em;
  height: 1.5em;
}

.driver-content__progress {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  font-weight: 500;
  font-size: 0.875rem;
  color: #aaa;
}

.driver-content__progress p:nth-child(2) {
  text-align: end;
}

.driver-content__progress span {
  color: #ff00c8;
}

.driver-content__bar {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  height: 0.4375rem;
  padding: 0.0625rem;
  background-color: #e6faff;
  border-radius: 1.25rem;
}

.driver-content__bar span {
  display: block;
  height: 100%;
  background-color: #ff00c8;
  border-radius: 1.25rem;
}

.calendar-wrapper {
  position: relative;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 0.625rem;
  margin-top: 0.625rem;
  z-index: 4;
}

.calendar {
  position: relative;
  padding: 0.5rem;
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  z-index: 2;
}

.calendar__header {
  padding: 0.25rem 2.5rem 0.25rem 0.5rem;
  font-weight: 500;
}

.calendar__date {
  margin-bottom: 0.375rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.calendar__text {
  font-size: 0.75rem;
  opacity: 0.5;
}

.calendar__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4375rem;
}

.calendar__item {
  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;
  height: 2.55rem;
  padding: 0.625rem 0.4375rem 0.625rem 0.625rem;
  background-color: #fbf5f5;
  border-radius: 0.375rem;
  cursor: pointer;
}

.calendar__item.-past {
  background-color: #d3d3d3;
}

.calendar__item.-active {
  background-color: #ff00c8;
  color: #fff;
}

.drivers {
  position: relative;
  padding: 0.5rem;
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  box-shadow: 0.625rem 1.25rem 2.125rem rgba(196, 167, 167, 0.25);
  z-index: 2;
}

.drivers.-empty {
  max-width: 18.75rem;
}

.drivers[hidden] {
  display: none;
}

.drivers .calendar__header {
  padding-bottom: 0.9375rem;
}

.drivers__driver {
  padding: 0.5rem;
  border-radius: 1.5rem;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
}

.drivers__driver:not(:last-child) {
  margin-bottom: 0.5rem;
}

.drivers__driver .driver-content__header {
  -ms-grid-columns: 2.5rem 1fr;
  grid-template-columns: 2.5rem 1fr;
  margin-bottom: 0.875rem;
}

.drivers__body {
  display: -ms-grid;
  display: grid;
  gap: 0.375rem;
  grid-auto-flow: dense;
}

.drivers__body.-c-3 {
  -ms-grid-columns: (1fr) [6];
  grid-template-columns: repeat(6, 1fr);
}

.drivers__btn {
  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;
  gap: 1rem;
  width: 100%;
  height: 2.5125rem;
  /* margin-top: 1.5625rem; */
  padding: 0.625rem 1rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: #fff;
  background-color: #000;
  border-radius: 0.75rem;
}
.money__btn {
  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: center;
  gap: 1rem;
  width: 100%;
  height: 2.8125rem;
  margin-top: 1.5625rem;
  padding: 0.625rem 1rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: #fff;
  background-color: #000;
  border-radius: 0.75rem;
}

.drivers__btn .icon {
  width: 1.5em;
}

.drivers__empty {
  margin: 3.75rem 0 6.25rem;
  font-size: 1rem;
  text-align: center;
  opacity: 0.2;
}

.item-drivers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: #fbf5f5;
  border-radius: 0.75rem;
}

.-c-3 .item-drivers {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.item-drivers.-c-2 {
  -ms-grid-column-span: 3;
  grid-column: span 3;
}

.item-drivers.-c-3 {
  -ms-grid-column-span: 6;
  grid-column: span 6;
}

.item-drivers__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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: 1.875rem;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
}

.item-drivers__icon svg {
  width: 57.1%;
  height: 57.1%;
}

.item-drivers__title {
  margin-bottom: 0.375rem;
  font-size: 0.6875rem;
  opacity: 0.5;
}

.item-drivers__text {
  font-weight: 500;
  font-size: 0.75rem;
}

.orders {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: -webkit-max-content 1fr;
  -ms-grid-rows: max-content 1fr;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  min-height: 100%;
  padding: 0.625rem;
  background-color: #fbf5f5;
  border-radius: 1.5rem;
  z-index: 3;
}

.orders__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.9375rem;
  padding: 1.25rem 0.9375rem 3.75rem;
}

.orders__title {
  font-weight: 500;
  font-size: 1.5rem;
}

.orders__block {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  font-weight: 500;
  font-size: 0.75rem;
  border: 0.5px solid #000;
  border-radius: 0.625rem;
}

.orders__block .icon {
  width: 1.2em;
}

.orders__table {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: -webkit-max-content 1fr;
  -ms-grid-rows: max-content 1fr;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  overflow-x: auto;
}

.orders__table-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.25rem 5.625rem 5.625rem 7.8125rem 4.0625rem 8.125rem 4.6875rem 2.5rem;
  grid-template-columns: 1.25rem 5.625rem 5.625rem 7.8125rem 4.0625rem 8.125rem 4.6875rem 2.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  padding: 0 1.125rem 0 1.875rem;
  font-weight: 600;
  font-size: 0.75rem;
}

.orders__body {
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  max-height: 30rem;
  padding: 0.625rem;
  font-weight: 500;
  font-size: 0.75rem;
  background-color: #f0ebeb;
  border-radius: 1.75rem;
  overflow-x: hidden;
}

.orders__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.25rem 5.625rem 5.625rem 7.8125rem 4.0625rem 8.125rem 4.6875rem 2.5rem;
  grid-template-columns: 1.25rem 5.625rem 5.625rem 7.8125rem 4.0625rem 8.125rem 4.6875rem 2.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.625rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background-color: #fff;
  border-radius: 1.25rem;
}

.orders__item:not(:last-child) {
  margin-bottom: 0.625rem;
}

.orders__btn {
  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: 2.5rem;
  aspect-ratio: 1/1;
  background-color: #ff00c8;
  border-radius: 0.875rem;
}

.orders__btn svg {
  width: 50%;
}

.settings {
  min-height: 100%;
  padding: 1.875rem 0.9375rem;
  background-color: #fbf5f5;
}

.settings__title {
  margin-bottom: 2.5rem;
  font-weight: 500;
  font-size: 1.875rem;
}

.settings__body {
  display: -ms-grid;
  display: grid;
  gap: 0.9375rem;
}

.settings__block > :not(:last-child) {
  margin-bottom: 0.9375rem;
}

.settings__pass {
  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;
  width: 100%;
  height: 2.8125rem;
  padding: 0.625rem 0.8125rem 0.625rem 0.9375rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.settings__pass .icon {
  width: 1.5em;
}

.settings__items {
  padding: 0.9375rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.settings__items > :not(:last-child) {
  margin-bottom: 0.9375rem;
}

.settings__select {
  position: relative;
}

.settings__select select {
  display: block;
  width: 100%;
  height: 2.8125rem;
  padding: 0.625rem 1.875rem 0.625rem 0.9375rem;
  border-radius: 1.3125rem;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.settings__select .icon {
  position: absolute;
  right: 0.8125rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 1.5em;
  pointer-events: none;
}

.info-settings,
.item-help,
.settings__items,
.settings__pass,
.spoiler__body,
.spoiler__control {
  background-color: #fff;
  border-radius: 1.3125rem;
}

.info-settings {
  padding: 1.875rem 0.9375rem 0.9375rem;
}

.info-settings__title {
  margin-bottom: 1.5625rem;
  font-weight: 500;
  font-size: 1rem;
}

.info-settings__item {
  font-size: 0.875rem;
}

.info-settings__item:nth-last-child(n + 3) {
  margin-bottom: 0.9375rem;
  padding-bottom: 0.9375rem;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}

.info-settings__title-2 {
  margin-bottom: 0.625rem;
  opacity: 0.5;
}

.info-settings__text {
  font-weight: 500;
}

.info-settings .drivers__btn {
  margin-top: 2.5rem;
}

.info-settings .drivers__btn .icon [fill] {
  fill: #fff;
}

.allow-settings {
  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;
  height: 2.8125rem;
  padding: 0.625rem 0.8125rem 0.625rem 0.9375rem;
  border-radius: 1.3125rem;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
}

.allow-settings__checkbox {
  display: block;
  cursor: pointer;
}

.allow-settings__checkbox input {
  display: none;
}

.allow-settings__checkbox .fake {
  display: block;
  width: 3.25rem;
  aspect-ratio: 52/28;
  padding: 0.25rem;
  background-color: #fbf5f5;
  border-radius: 3.125rem;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.allow-settings__checkbox .fake::before {
  content: '';
  display: block;
  width: 1.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ddd8d8;
  -webkit-transition: background-color 0.2s, -webkit-transform 0.2s;
  transition: background-color 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, background-color 0.2s;
  transition: transform 0.2s, background-color 0.2s, -webkit-transform 0.2s;
}

.allow-settings__checkbox input:checked ~ .fake {
  background-color: #e9e3e3;
}

.allow-settings__checkbox input:checked ~ .fake::before {
  -webkit-transform: translate(1.5rem, 0);
  -ms-transform: translate(1.5rem, 0);
  transform: translate(1.5rem, 0);
  background-color: #989595;
}

.help .settings__title {
  margin-bottom: 1.875rem;
}

.help__body {
  display: -ms-grid;
  display: grid;
  gap: 2.1875rem;
}

.help__title {
  margin-bottom: 1.875rem;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
}

.help__grid {
  display: -ms-grid;
  display: grid;
  gap: 3.9375rem;
  max-width: 34.4375rem;
  margin: 0 auto;
}

.item-help {
  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;
  padding: 1.25rem 0.9375rem;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.3;
}

.item-help__icon {
  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: 2.8125rem;
  aspect-ratio: 1/1;
  margin-bottom: 1.25rem;
  background-color: #fbf5f5;
  border-radius: 50%;
}

.item-help__icon svg {
  width: 40%;
  height: 40%;
}

.item-help__title {
  margin-bottom: 0.375rem;
  opacity: 0.5;
}

.item-help__text {
  font-weight: 500;
  word-break: break-all;
}

.spoiler__item:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.spoiler__control {
  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;
  gap: 0.9375rem;
  width: 100%;
  padding: 0.9375rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
}

.spoiler__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 1.2em;
  aspect-ratio: 1/1;
}

.spoiler__icon::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 58.33%;
  height: 0.125rem;
  background-color: #000;
}

.spoiler__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.125rem;
  height: 58.33%;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

[aria-expanded='true'] .spoiler__icon::after {
  -webkit-transform: translate(-50%, -50%) scaleY(0);
  -ms-transform: translate(-50%, -50%) scaleY(0);
  transform: translate(-50%, -50%) scaleY(0);
}

._init .spoiler__content {
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s, visibility 0.4s;
  transition: max-height 0.4s, visibility 0.4s;
}

._init .spoiler__content[aria-hidden='false'] {
  visibility: visible;
  max-height: var(--max-height);
}

.spoiler__body {
  margin-top: 0.4375rem;
  padding: 0.9375rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.3;
}

._init .spoiler__body {
  -webkit-transform: translateY(0.625rem);
  -ms-transform: translateY(0.625rem);
  transform: translateY(0.625rem);
  opacity: 0;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

._init [aria-hidden='false'] .spoiler__body {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.bal-balance,
.chart-balance,
.history-balance {
  background-color: #fff;
  border-radius: 0.75rem;
}

.bal-balance__title,
.chart-balance__title,
.history-balance__sum,
.history-balance__title {
  font-weight: 500;
  font-size: 1.125rem;
}

.balance {
  display: -ms-grid;
  display: grid;
  gap: 0.9375rem;
  min-height: 100%;
  padding: 0.625rem;
  background-color: #fbf5f5;
}

.balance__left > :not(:last-child) {
  margin-bottom: 0.9375rem;
}

.bal-balance {
  padding: 0.9375rem;
}

.bal-balance__title {
  margin-bottom: 0.9375rem;
}

.bal-balance__sum {
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.875rem;
}

.bal-balance__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5em;
  height: 2.8125rem;
  padding: 0.625rem 1.5625rem 0.625rem 0.9375rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: #fff;
  background-color: #000;
  border-radius: 3.125rem;
}

.bal-balance__btn .icon {
  width: 1.5em;
}

.chart-balance {
  padding: 0.9375rem 0 0.75rem;
}

.chart-balance__header {
  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;
  gap: 0.9375rem;
  padding: 0 0.9375rem;
  margin-bottom: 3.75rem;
}

.chart-balance__select {
  position: relative;
  font-weight: 500;
  font-size: 0.875rem;
}

.chart-balance__select select {
  width: 5.3125rem;
  padding: 0.625rem;
  background-color: #fff;
  border: 0.5px solid #b3c0bf;
  border-radius: 0.75rem;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.chart-balance__select .icon {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 1.5em;
  pointer-events: none;
}

.chart-balance__chart {
  overflow: auto;
}

.chart-balance__chart canvas {
  width: 100%;
  height: 14.375rem;
}

.history-balance {
  max-height: 37.5rem;
  padding: 1.25rem 0.9375rem;
  overflow: auto;
}

.history-balance__title {
  margin-bottom: 1.875rem;
}

.history-balance__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 0.75rem;
  padding-bottom: 0.9375rem;
  border-bottom: 0.5px solid silver;
}

.history-balance__item:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.history-balance__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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: 2.5rem;
  aspect-ratio: 1/1;
  background-color: #fbf5f5;
  border-radius: 50%;
}

.history-balance__icon svg {
  width: 48%;
  height: 48%;
}

.history-balance__content > :not(:last-child) {
  margin-bottom: 0.5rem;
}

.history-balance__text {
  font-weight: 500;
  font-size: 0.875rem;
}

.history-balance__date {
  font-size: 0.875rem;
  opacity: 0.5;
}

.login {
  position: relative;
  width: 100vw;
  height: 100dvh;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow-x: hidden;
}

.login__logo {
  position: absolute;
  left: 0.9375rem;
  top: 0.625rem;
  width: 8.875rem;
}

.login__body {
  position: relative;
  min-width: min(100%, 28.125rem);
  margin: 0 auto;
  padding: 6.25rem 0.9375rem 12.5rem;
}

.login__decor1 {
  position: absolute;
  left: 1.25rem;
  top: 6.25rem;
  width: 15rem;
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.login__decor2 {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 13.75rem;
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  transform: translate(50%, 0);
}

.login__title {
  max-width: 14.1em;
  margin-bottom: 1.5625rem;
  font-weight: 500;
  font-size: 1.875rem;
  text-align: center;
}

.login__form {
  width: min(28.125rem, 100%);
  margin: 0 auto;
  padding: 0.9375rem;
  background-color: #fbf5f5;
  border-radius: 1.5rem;
}

.login__flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5rem 1fr;
  grid-template-columns: 5rem 1fr;
  gap: 0.9375rem;
}

.login__flex:not(:first-child) {
  margin-top: 0.9375rem;
}

.login__inp-block {
  position: relative;
  font-size: 0.875rem;
}

.login__inp-block:not(:first-child) {
  margin-top: 0.9375rem;
}

.login__flex .login__inp-block:not(:first-child) {
  margin-top: 0;
}

.login__inp-block input {
  width: 100%;
  min-height: 3.125rem;
  padding: 0.625rem 2.875rem;
  background-color: #fff;
  border-radius: 0.75rem;
}

.login__inp-block input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.login__inp-block input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.login__inp-block input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.login__inp-block input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.login__inp-block input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.login__inp-block.-no-icon input {
  padding: 0.625rem 0.9375rem;
}

.login__inp-block select {
  width: 100%;
  min-height: 3.125rem;
  padding: 0.625rem 0.75rem;
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.login__icon {
  position: absolute;
  left: 0.8125rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 1.5em;
  height: 1.5em;
}

.login__icon:not(button) {
  pointer-events: none;
}

.login__icon.-end {
  left: auto;
  right: 0.8125rem;
}

.login__icon[data-show-password]._active {
  overflow: hidden;
}

.login__icon[data-show-password]._active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: 0.125rem;
  background-color: #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none; /* Hidden by default */
}
.-select .login__icon {
  left: auto;
  right: 0.4375rem;
}

.login__forget {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0.875rem 0 0 auto;
  font-size: 0.8125rem;
}

.login__footer-form {
  margin-top: 2.5rem;
}

.login__btn {
  width: 100%;
}

.login__btn:not(:first-child) {
  margin-top: 0.9375rem;
}

.login__loading {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 8.125rem;
}

.login__loading .icon {
  width: 2.5rem;
  height: 2.5rem;
  -webkit-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: -webkit-max-content 1fr;
  -ms-grid-rows: max-content 1fr;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  height: 100vh;
}

@media (min-width: 26.875rem) {
  .add-store__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 26.25rem) {
  .drivers__body {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }

  .help__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 29.99875rem) {
  .popup-choose-loc,
  .popup-create__modal,
  .popup-detail__modal,
  .popup-drivers {
    padding: 1.875rem 1.25rem 1.25rem;
  }

  .popup-create__footer {
    margin: 0.9375rem -1.25rem 0;
    padding: 1.25rem;
  }

  .calendar__body {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
  }

  .settings {
    padding: 1.875rem 1.25rem;
  }

  .balance {
    padding: 0.9375rem;
  }
}

@media (min-width: 47.99875rem) {
  .add-store__map-ibg {
    height: 16rem;
  }

  .notifications {
    right: 4.375rem;
    width: 21.875rem;
  }

  .chat2__content,
  .chat__content {
    right: 100%;
    bottom: 0;
    -webkit-transform: translate(-0.625rem, 0);
    -ms-transform: translate(-0.625rem, 0);
    transform: translate(-0.625rem, 0);
  }

  .calendar__body {
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
  }

  .orders__header {
    -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-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1.25rem;
  }

  .settings__body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    max-width: 52.5rem;
    gap: 1.875rem;
  }

  .balance {
    -ms-grid-columns: 1fr 17.5rem;
    grid-template-columns: 1fr 17.5rem;
  }
}

@media (min-width: 64.06125rem) {
  [class*='__container'] {
    padding: 0 1.875rem;
  }

  .btn {
    min-height: 3.75rem;
    padding: 0.9375rem 1.25rem;
    font-size: 1.25rem;
  }

  .popup-content__title,
  .popup-detail__title {
    /*padding: 1.875rem 3.125rem 2.5rem .5rem;*/
    font-size: 1.625rem;
  }
  .popup-content__title,
  .popup-detail__titlecnf {
    text-align: center;
    /*padding: 1.875rem 3.125rem 2.5rem .5rem;*/
    font-size: 1.625rem;
  }
  .popup-content__servicetitle,
  .popup-detail__servicetitle {
    padding: 1.125rem 0rem 1.5rem 0.5rem;
    font-size: 1rem;
  }
  .popup-content__text > :not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .popup-content__text h3 {
    font-size: 1.25rem;
  }

  .popup-content__text p {
    font-size: 1rem;
  }

  .header__body {
    -ms-grid-columns: 14.375rem 1fr;
    grid-template-columns: 14.375rem 1fr;
    padding: 0.9375rem 1.875rem 0;
  }

  .header__logo {
    width: 12.4375rem;
  }

  .header__action {
    gap: 0.625rem;
    margin-left: 0;
  }

  .header__icon {
    width: 2.8125rem;
  }

  .page {
    -ms-grid-columns: 16.25rem 1fr;
    grid-template-columns: 16.25rem 1fr;
  }

  .page__side {
    padding: 0.9375rem 0.9375rem 0.9375rem 1.25rem;
  }

  .page__content {
    margin: 0.9375rem 0.9375rem 0.9375rem 0;
  }

  .calendar-wrapper {
    -ms-grid-columns: 1fr 0.778fr;
    grid-template-columns: 1fr 0.778fr;
  }

  .calendar__header {
    padding: 0.15rem 2.5rem 0.5rem 0.5rem;
  }

  .calendar__date {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }

  .calendar__text {
    font-size: 0.875rem;
  }

  .orders__header {
    padding: 1.875rem 0.9375rem 6.25rem;
  }

  .orders__title {
    font-size: 1.875rem;
  }

  .orders__block {
    font-size: 1rem;
  }

  .help__body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 3.125rem;
  }

  .login__logo {
    left: 3.125rem;
    top: 3.9375rem;
    width: 12.1875rem;
  }

  .login__body {
    min-width: 40.625rem;
    padding: 11.875rem 3.125rem 14.375rem;
  }

  .login__decor1 {
    top: 11.875rem;
    width: 21.8125rem;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }

  .login__decor2 {
    bottom: 3.4375rem;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    width: 21.625rem;
  }

  .login__title {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
  }

  .login__form {
    width: min(40.625rem, 100%);
    padding: 1.25rem;
  }

  .login__flex {
    -ms-grid-columns: 6.25rem 1fr;
    grid-template-columns: 6.25rem 1fr;
    gap: 1.25rem;
  }

  .login__flex:not(:first-child) {
    margin-top: 1.25rem;
  }

  .login__inp-block {
    font-size: 1rem;
  }

  .login__inp-block:not(:first-child) {
    margin-top: 1.25rem;
  }

  .login__inp-block input {
    padding: 0.9375rem 3.5rem;
    min-height: 3.75rem;
  }

  .login__inp-block.-no-icon input {
    padding: 0.9375rem 1.375rem;
  }

  .login__inp-block select {
    min-height: 3.75rem;
    padding: 0.9375rem 0.9375rem;
  }

  .login__icon {
    left: 1.125rem;
  }

  .login__icon.-end {
    right: 1.125rem;
  }

  .-select .login__icon {
    right: 0.625rem;
  }

  .login__forget {
    font-size: 1rem;
  }

  .login__footer-form {
    margin-top: 3.75rem;
  }

  .login__btn:not(:first-child) {
    margin-top: 1.25rem;
  }

  .login__loading {
    min-height: 11.875rem;
  }

  .login__loading .icon {
    width: 3.125rem;
    height: 3.125rem;
  }
}

@media (min-width: 64.06125rem) and (min-width: 104.99875rem) {
  .menu__list {
    gap: 3.125rem;
  }
}

@media (min-width: 68.75rem) {
  .popup-choose-loc,
  .popup-drivers {
    top: 0;
    left: 100%;
    -webkit-transform: translate(1.875rem, 0);
    -ms-transform: translate(1.875rem, 0);
    transform: translate(1.875rem, 0);
  }
}

@media (min-width: 87.5rem) {
  .login__decor1 {
    left: -8.5625rem;
  }

  .login__decor2 {
    right: -9.8125rem;
  }
}

@media (min-width: 104.99875rem) {
  [class*='__container'] {
    max-width: 108rem;
  }

  .menu__block:not(:first-child) {
    padding-top: 3.125rem;
  }

  .menu__item,
  .menu__new-order {
    font-size: 1.125rem;
  }

  .menu__item:not(:last-child),
  .menu__new-order:not(:last-child) {
    margin-bottom: 0.625rem;
  }

  .menu__new-order {
    aspect-ratio: 230/150;
  }

  .menu__new-order .text {
    padding: 0 0.8125rem 1.5625rem;
  }

  .calendar__close,
  .popup__close {
    width: 3.125rem;
  }

  .popup-choose-loc,
  .popup-create__modal,
  .popup-detail__modal,
  .popup-drivers {
    max-width: 27.5rem;
    padding: 3.125rem 1.25rem 2rem;
  }

  .popup-detail__title {
    margin-bottom: 2.5rem;
    padding: 0 3.125rem 0 0;
  }
  .popup-detail__titlecnf {
    margin-bottom: 2.5rem;
    padding: 0 3.125rem 0 0;
  }

  .popup-detail__drivers {
    margin-bottom: 3.125rem;
  }

  .popup-detail__item {
    font-size: 1rem;
  }

  .popup-detail__item:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  .drivers-popup-detail__img-ibg {
    width: 2.5rem;
  }

  .drivers-popup-detail__img-ibg:not(:last-child) {
    margin-right: -1.25rem;
  }

  .drivers-popup-detail__text {
    font-size: 1rem;
  }

  .popup-create__block:not(:last-child) {
    margin-bottom: 1rem;
  }

  .popup-create__flex:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .popup-create__footer {
    margin: 1.25rem -1.25rem 0;
    padding: 1.25rem;
  }

  .-confirm .popup-create__footer {
    margin-top: 2rem;
  }

  .popup-create__btn {
    height: 3.375rem;
    font-size: 1rem;
  }

  .block-popup-create {
    font-size: 1rem;
  }

  .block-popup-create input,
  .block-popup-create select {
    height: 3.375rem;
  }

  .block-popup-create__title {
    margin-bottom: 0.75rem;
  }

  .block-popup-create__flex {
    -ms-grid-columns: 1fr 3.375rem;
    grid-template-columns: 1fr 3.375rem;
  }

  .block-popup-create__select .icon {
    right: 0.9375rem;
  }

  .tip__wrapper {
    width: 20.0625rem;
  }

  .tip__content {
    padding: 0.5625rem 0.875rem;
    font-size: 0.875rem;
  }

  .popup-choose-loc,
  .popup-drivers {
    -webkit-transform: translate(2.5rem, 0);
    -ms-transform: translate(2.5rem, 0);
    transform: translate(2.5rem, 0);
    width: 25rem;
    padding-bottom: 3rem;
  }

  .popup-choose-loc__title,
  .popup-drivers__title {
    margin-bottom: 1rem;
    font-size: 1.625rem;
  }

  .popup-choose-loc__text {
    margin-bottom: 3rem;
    font-size: 1rem;
  }

  .popup-choose-loc__item:not(:last-child) {
    margin-bottom: 2.25rem;
  }

  .item-popup-choose-loc {
    gap: 0.875rem;
  }

  .item-popup-choose-loc__fake {
    width: 1.5rem;
  }

  .item-popup-choose-loc__title {
    font-size: 1rem;
  }

  .item-popup-choose-loc__text {
    font-size: 0.875rem;
  }

  .popup-drivers__title {
    margin-bottom: 2.625rem;
  }

  .popup-drivers__item:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  .item-popup-drivers {
    font-size: 1rem;
  }

  .add-store__title,
  .popup-payment2__title,
  .popup-payment__title,
  .popup-successfully__title {
    font-size: 1.625rem;
  }

  .popup-successfully__modal {
    width: min(100%, 21.875rem);
    padding: 4.375rem 0.75rem 0.75rem 0.75rem;
  }

  .popup-successfully__icon {
    width: 3.75rem;
  }

  .popup-successfully__title {
    margin-bottom: 3.625rem;
  }

  .popup-successfully .drivers__btn:not(:first-child) {
    margin-top: 0.75rem;
  }

  .popup-payment__modal {
    width: min(100%, 31.25rem);
    padding: 3.125rem 1.25rem 1.25rem 1.25rem;
  }

  .popup-payment__title {
    margin-bottom: 5.25rem;
  }

  .popup-payment__content {
    margin: 0 auto 5rem;
  }

  .popup-payment__title2 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }

  .popup-payment__text {
    font-size: 1rem;
  }

  .popup-payment2__modal {
    width: min(100%, 25rem);
    padding: 2.8125rem 1.25rem 1.25rem 1.25rem;
  }

  .popup-payment2__title {
    margin-bottom: 3.125rem;
  }

  .popup-payment2__title.-small {
    font-size: 1.25rem;
  }

  .popup-payment2__content {
    margin-bottom: 3.1875rem;
  }

  .popup-payment2__content label:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .popup-payment2__content label span {
    margin-bottom: 0.8125rem;
    font-size: 1rem;
  }

  .popup-payment2__content input,
  .popup-payment2__content select {
    min-height: 3.375rem;
    padding: 0.625rem 1.1875rem;
    font-size: 1rem;
  }

  .add-store__modal {
    width: min(100%, 34.375rem);
    padding: 3.125rem 1.25rem 1.25rem 1.25rem;
  }

  .add-store-map .add-store__modal {
    width: min(100%, 46.875rem);
  }

  .add-store__map-ibg {
    height: 16rem;
  }

  .add-store__content {
    margin-bottom: 6.25rem;
  }

  .add-store__content > :not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .add-store__content input,
  .add-store__content select {
    min-height: 3.375rem;
    padding: 0.625rem 1.1875rem;
    font-size: 1rem;
  }

  .add-store__input input {
    padding-left: 3.5rem;
  }

  .add-store__input .icon {
    left: 1.125rem;
    width: 1.5rem;
  }

  .add-store__grid {
    gap: 1.25rem;
  }

  .add-store__title-2 {
    margin-bottom: 0.875rem;
    font-size: 1rem;
  }

  .add-store__flex {
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    row-gap: 1rem;
  }

  .add-store__select select {
    padding-right: 3.5rem;
  }

  .add-store__select .icon {
    right: 1.125rem;
    width: 1.5rem;
  }

  .item-add-store {
    font-size: 1rem;
  }

  .item-add-store__fake {
    width: 1.25rem;
  }

  .item-add-store__fake::before {
    width: 0.625rem;
  }

  .header__body {
    -ms-grid-columns: 18.75rem 1fr;
    grid-template-columns: 18.75rem 1fr;
    padding: 2.1875rem 3.125rem 0;
  }

  .header__logo {
    width: 11.1875rem;
  }

  .header__balance {
    margin-left: 3.125rem;
  }

  .header__action {
    gap: 0.75rem;
  }

  .header__icon {
    width: 3.375rem;
  }

  .location-header {
    width: 27.6875rem;
  }

  .location-header__wrapper {
    gap: 1.25rem;
    padding: 1.3125rem;
  }

  .location-header__icon svg {
    width: 1.5rem;
  }

  .location-header__content {
    margin-right: 2.3125rem;
  }

  .location-header__title {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }

  .location-header__loc {
    font-size: 1.25rem;
  }

  .location-header__arrow svg {
    width: 1.5rem;
  }

  .balance-header {
    gap: 2.4375rem;
    padding: 1.125rem 1.5625rem 1.125rem 1.0625rem;
  }

  .balance-header__title {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }

  .balance-header__balance {
    font-size: 1.625rem;
  }

  .balance-header__icon svg {
    width: 1.5rem;
  }

  .my-stores {
    width: 28.125rem;
  }

  .my-stores__header {
    margin-bottom: 4.25rem;
  }

  .my-stores__item:not(:last-child) {
    margin-bottom: 1.75rem;
  }

  .my-stores .drivers__btn {
    margin-top: 3.125rem;
  }

  .header-my-stores {
    -ms-grid-columns: 1fr 3.125rem;
    grid-template-columns: 1fr 3.125rem;
  }

  .header-my-stores__title {
    margin-bottom: 1rem;
    font-size: 1.625rem;
  }

  .header-my-stores__text {
    font-size: 1rem;
  }

  .item-my-stores {
    -ms-grid-columns: 1.5rem 1fr 1.5rem 1.5rem;
    grid-template-columns: 1.5rem 1fr 1.5rem 1.5rem;
    gap: 0.875rem;
    padding-bottom: 0.5rem;
  }

  .item-my-stores__checkbox span {
    width: 1.5rem;
  }

  .item-my-stores__title {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }

  .item-my-stores__text {
    font-size: 0.875rem;
  }

  .notifications {
    right: 5.625rem;
    width: 21.875rem;
    padding: 1.875rem 0.875rem 0.875rem;
  }

  .notifications__header {
    margin-bottom: 1.875rem;
    font-size: 1.25rem;
  }

  .notifications__block {
    padding: 0.875rem;
  }

  .notifications__block:not(:last-child) {
    margin-bottom: 0.6875rem;
  }

  .notifications__icon {
    margin-bottom: 1.5rem;
  }

  .notifications__title {
    margin-bottom: 0.875rem;
  }

  .page {
    -ms-grid-columns: 18.4375rem 1fr;
    grid-template-columns: 18.4375rem 1fr;
    height: calc(100vh - 7.875rem);
  }

  .page__side {
    padding: 1.875rem 1.5625rem 2.5rem 2.5rem;
  }

  .page__content {
    margin: 1.25rem 1.875rem 1.875rem 0;
  }

  .content__map-ibg .car {
    width: 3.5625rem;
  }

  .content-home {
    padding: 1.25rem;
  }

  .chat {
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .chat.chat2 {
    bottom: 6.875rem;
  }

  .chat__icon-ibg {
    width: 4.625rem;
  }

  .chat2__content,
  .chat__content {
    width: 23.75rem;
  }

  .chat__item:not(:last-child) {
    margin-bottom: 0.75rem;
  }

  .chat__text {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
  }

  .chat__date {
    font-size: 0.75rem;
  }

  .header-chat {
    -ms-grid-columns: 2.75rem 1fr;
    grid-template-columns: 2.75rem 1fr;
  }

  .header-chat__text {
    font-size: 0.875rem;
  }

  .chat2__body {
    height: 25rem;
    padding: 1.375rem 0.75rem;
  }

  .chat2__message:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  .chat2__user {
    margin-bottom: 0.5625rem;
  }

  .chat2__message-body {
    font-size: 0.875rem;
  }

  .chat2__message.-left .chat2__message-body {
    max-width: min(17rem, 100% - 3.125rem);
    margin-left: 3.125rem;
  }

  .chat2__message.-right .chat2__message-body {
    max-width: min(14.375rem, 100% - 3.125rem);
    margin-right: 3.125rem;
  }

  .header-chat2 {
    -ms-grid-columns: 1fr 8rem;
    grid-template-columns: 1fr 8rem;
    padding: 0.75rem 1.875rem 0 0.75rem;
  }

  .header-chat2__icon-ibg {
    width: 0.875rem;
    margin-bottom: 1.0625rem;
  }

  .header-chat2__title {
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
  }

  .header-chat2__text {
    font-size: 0.75rem;
  }

  .user-chat2 {
    -ms-grid-columns: 2.375rem 1fr;
    grid-template-columns: 2.375rem 1fr;
    gap: 0.75rem;
  }

  .chat2__message.-right .user-chat2 {
    -ms-grid-columns: 1fr 2.375rem;
    grid-template-columns: 1fr 2.375rem;
  }

  .user-chat2__content {
    font-size: 0.875rem;
  }

  .user-chat2__name {
    margin-bottom: 0.25rem;
  }

  .footer-chat2 {
    padding: 0.75rem;
  }

  .footer-chat2__block input {
    height: 2.875rem;
    padding: 0.625rem 6.875rem 0.625rem 0.9375rem;
    font-size: 0.875rem;
  }

  .footer-chat2__icons {
    right: 0.9375rem;
    gap: 0.625rem;
  }

  .footer-chat2__icon {
    width: 1.5rem;
  }

  .calendar-content {
    -ms-grid-columns: 4.625rem 14.25rem;
    grid-template-columns: 4.625rem 14.25rem;
    gap: 0.625rem;
  }

  .calendar-content__icon {
    padding: 0.75rem;
  }

  .calendar-content__icon .icon {
    width: 3.125rem;
  }

  .calendar-content__content {
    padding: 1rem 1.25rem 1rem 1rem;
  }

  .calendar-content__date {
    margin-bottom: 0.375rem;
    font-size: 1.25rem;
  }

  .calendar-content__text {
    font-size: 1rem;
  }

  .calendar-content__img-ibg {
    width: 2.125rem;
  }

  .calendar-content__img-ibg:not(:first-child) {
    margin-right: -0.75rem;
  }

  .store-content {
    -ms-grid-columns: 3.125rem 1fr;
    grid-template-columns: 3.125rem 1fr;
    gap: 0.875rem;
    width: 14.625rem;
    padding: 0.625rem;
  }

  .store-content__content {
    font-size: 1rem;
  }

  .store-content__location {
    margin-bottom: 0.625rem;
  }

  .driver-content {
    width: 14.625rem;
    padding: 0.625rem;
  }

  .driver-content__header {
    -ms-grid-columns: 3.125rem 1fr;
    grid-template-columns: 3.125rem 1fr;
    gap: 0.875rem;
    margin-bottom: 1.875rem;
  }

  .driver-content_title {
    font-size: 1rem;
    margin-bottom: 0.3125rem;
  }

  .driver-content__progress {
    gap: 0.625rem;
    font-size: 1rem;
  }

  .driver-content__bar {
    height: 0.5rem;
  }

  .calendar-wrapper {
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .calendar {
    padding: 0.75rem;
  }

  .calendar__header {
    padding: 2.375rem 3.125rem 3.875rem 0.625rem;
  }

  .calendar__date {
    margin-bottom: 0.75rem;
    font-size: 1.625rem;
  }

  .calendar__text {
    font-size: 1rem;
  }

  .calendar__body {
    gap: 0.5625rem;
  }

  .calendar__item {
    height: 4.4375rem;
    padding: 0.875rem 0.5625rem 0.875rem 0.875rem;
  }

  .drivers {
    padding: 0.75rem;
  }

  .drivers .calendar__header {
    padding-bottom: 1.875rem;
  }

  .drivers__driver {
    padding: 0.75rem;
  }

  .drivers__driver:not(:last-child) {
    margin-bottom: 0.75rem;
  }

  .drivers__driver .driver-content__header {
    -ms-grid-columns: 3.75rem 1fr;
    grid-template-columns: 3.75rem 1fr;
    margin-bottom: 1.25rem;
  }

  .drivers__btn {
    height: 3.375rem;
    margin-top: 2.5625rem;
    font-size: 1rem;
  }

  .item-drivers {
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .item-drivers__icon {
    width: 2.625rem;
  }

  .item-drivers__text {
    font-size: 1rem;
  }

  .orders {
    padding: 0.9375rem;
  }

  .orders__header {
    padding: 3.125rem 1.5625rem 10.3125rem;
  }

  .orders__title {
    font-size: 2.5rem;
  }

  .orders__block {
    padding: 0.875rem;
    font-size: 1.25rem;
  }

  .orders__table-header {
    -ms-grid-columns: 1.5625rem 6.875rem 6.875rem 10rem 4.6875rem 9.6875rem 5.3125rem 3rem;
    grid-template-columns: 1.5625rem 6.875rem 6.875rem 10rem 4.6875rem 9.6875rem 5.3125rem 3rem;
    gap: 1.25rem;
    margin-bottom: 1.125rem;
    padding: 0 1.625rem 0 2.625rem;
    font-size: 1rem;
  }

  .orders__body {
    max-height: 39.1875rem;
    padding: 0.9375rem;
    font-size: 1rem;
    border-radius: 2.5rem;
  }

  .orders__item {
    -ms-grid-columns: 1.5625rem 6.875rem 6.875rem 10rem 4.6875rem 9.6875rem 5.3125rem 3rem;
    grid-template-columns: 1.5625rem 6.875rem 6.875rem 10rem 4.6875rem 9.6875rem 5.3125rem 3rem;
    gap: 1.25rem;
    padding: 0.6875rem 0.6875rem 0.6875rem 1.6875rem;
    border-radius: 1.5625rem;
  }

  .orders__item:not(:last-child) {
    margin-bottom: 0.9375rem;
  }

  .orders__btn {
    width: 3rem;
  }

  .settings {
    padding: 2.6875rem 2.5rem;
  }

  .settings__title {
    margin-bottom: 5rem;
    font-size: 2.5rem;
  }

  .settings__body {
    gap: 2.5rem;
  }

  .settings__block > :not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .settings__pass {
    height: 3.75rem;
    padding: 0.625rem 1.125rem 0.625rem 1.25rem;
    font-size: 1rem;
  }

  .settings__items {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .settings__items > :not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .settings__select select {
    height: 3.75rem;
    padding: 0.625rem 2.625rem 0.625rem 1.375rem;
  }

  .settings__select .icon {
    right: 1.125rem;
  }

  .info-settings {
    padding: 2.5rem 1.25rem 1.25rem;
  }

  .info-settings__title {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
  }

  .info-settings__item {
    font-size: 1rem;
  }

  .info-settings__item:nth-last-child(n + 3) {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .info-settings__title-2 {
    margin-bottom: 0.875rem;
  }

  .info-settings .drivers__btn {
    margin-top: 3.75rem;
  }

  .allow-settings {
    height: 3.75rem;
    padding: 0.625rem 1rem 0.625rem 1.375rem;
  }

  .help .settings__title {
    margin-bottom: 4.1875rem;
  }

  .help__title {
    margin-bottom: 3.125rem;
    font-size: 2rem;
  }

  .help__grid {
    gap: 1.25rem;
    max-width: 32.5rem;
  }

  .item-help {
    padding: 1.875rem 1.25rem;
    font-size: 1rem;
  }

  .item-help__icon {
    width: 3.75rem;
    margin-bottom: 1.875rem;
  }

  .spoiler__item:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .spoiler__control {
    gap: 1.25rem;
    padding: 1.25rem;
    font-size: 1.25rem;
  }

  .spoiler__body {
    margin-top: 0.625rem;
    padding: 1.25rem 2.875rem 2.875rem 1.25rem;
    font-weight: 500;
    font-size: 1rem;
  }

  .bal-balance__title,
  .chart-balance__title,
  .history-balance__sum,
  .history-balance__title {
    font-size: 1.25rem;
  }

  .balance {
    -ms-grid-columns: 1fr 24rem;
    grid-template-columns: 1fr 24rem;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .balance__left > :not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .bal-balance {
    padding: 1.25rem;
  }

  .bal-balance__title {
    margin-bottom: 1.25rem;
  }

  .bal-balance__sum {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
  }

  .bal-balance__btn {
    height: 3.375rem;
    font-size: 1rem;
  }

  .chart-balance {
    padding: 1.25rem 0 0.75rem;
  }

  .chart-balance__header {
    gap: 1.25rem;
    padding: 0 1.25rem;
    margin-bottom: 6.875rem;
  }

  .chart-balance__select {
    font-size: 1rem;
  }

  .chart-balance__select select {
    width: 6.125rem;
  }

  .chart-balance__chart canvas {
    height: 17.25rem;
  }

  .history-balance {
    max-height: 44.5rem;
    padding: 1.875rem 1.25rem;
  }

  .history-balance__title {
    margin-bottom: 2.5rem;
  }

  .history-balance__item {
    padding-bottom: 1.25rem;
  }

  .history-balance__item:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .history-balance__icon {
    width: 3.125rem;
  }

  .history-balance__content > :not(:last-child) {
    margin-bottom: 0.75rem;
  }

  .history-balance__text {
    font-size: 1rem;
  }

  .history-balance__date {
    font-size: 1rem;
  }
}

@media (max-width: 64.06125rem) {
  .icon-menu {
    position: relative;
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 2.5rem;
    aspect-ratio: 1/1;
    background-color: #fbf5f5;
    border-radius: 50%;
    z-index: 21;
  }

  .icon-menu span,
  .icon-menu::after,
  .icon-menu::before {
    position: absolute;
    left: 25%;
    width: 50%;
    height: 0.125rem;
    background-color: #000;
    border-radius: 6.25rem;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }

  .icon-menu::after,
  .icon-menu::before {
    content: '';
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
  }

  .icon-menu span {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
  }

  .icon-menu::before {
    top: 0.75rem;
  }

  .icon-menu::after {
    bottom: 0.75rem;
  }

  .icon-menu[aria-expanded='true'] span {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  }

  .icon-menu[aria-expanded='true']::before {
    -webkit-transform: rotate(45deg) translate(0.125rem, -0.125rem);
    -ms-transform: rotate(45deg) translate(0.125rem, -0.125rem);
    transform: rotate(45deg) translate(0.125rem, -0.125rem);
  }

  .icon-menu[aria-expanded='true']::after {
    -webkit-transform: rotate(-45deg) translate(0.125rem, 0.125rem);
    -ms-transform: rotate(-45deg) translate(0.125rem, 0.125rem);
    transform: rotate(-45deg) translate(0.125rem, 0.125rem);
  }

  .menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    max-width: 21.875rem;
    height: 100vh;
    padding-top: 3.75rem;
    background-color: #fff;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    z-index: 10;
    -webkit-transition: visibility 0.4s, -webkit-transform 0.4s;
    transition: visibility 0.4s, -webkit-transform 0.4s;
    transition: transform 0.4s, visibility 0.4s;
    transition: transform 0.4s, visibility 0.4s, -webkit-transform 0.4s;
  }

  .menu[aria-hidden='true'] {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .menu__list {
    width: 100%;
    max-height: 100%;
    padding: 0.625rem 0.9375rem 7.5rem;
    overflow-x: hidden;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
  }

  .menu__new-order {
    max-width: 16.25rem;
  }

  .calendar {
    max-width: 43.75rem;
  }

  .drivers {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 37.5rem;
  }
}

@media (max-width: 64.06125rem) and (any-hover: hover) {
  .icon-menu {
    -webkit-transition: -webkit-filter 0.4s;
    transition: -webkit-filter 0.4s;
    transition: filter 0.4s;
    transition: filter 0.4s, -webkit-filter 0.4s;
  }

  .icon-menu:hover {
    -webkit-filter: brightness(0.95);
    filter: brightness(0.95);
  }
}

@media (max-width: 31.25rem) {
  .item-drivers.-mc-2 {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }

  .item-drivers.-mc-3 {
    -ms-grid-column-span: 6;
    grid-column: span 6;
  }
}

@media (max-width: 74.99875rem) and (min-width: 64.06125rem) {
  .item-drivers.-mc-2 {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }

  .item-drivers.-mc-3 {
    -ms-grid-column-span: 6;
    grid-column: span 6;
  }
}

@media (any-hover: hover) {
  .btn:hover::before {
    opacity: 0.15;
  }

  .btn._white:hover::before {
    opacity: 0.05;
  }

  .calendar__close svg,
  .popup__close svg {
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }

  .calendar__close:hover svg,
  .popup__close:hover svg {
    -webkit-transform: rotate(180deg) scale(1.1);
    -ms-transform: rotate(180deg) scale(1.1);
    transform: rotate(180deg) scale(1.1);
  }

  .header__icon:hover {
    -webkit-filter: brightness(0.95);
    filter: brightness(0.95);
  }

  .item-help {
    -webkit-transition: -webkit-box-shadow 0.4s;
    transition: -webkit-box-shadow 0.4s;
    transition: box-shadow 0.4s;
    transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
  }

  .item-help:hover {
    -webkit-box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.1);
  }

  .login__forget:hover {
    text-decoration: underline;
  }
  .button__drbadge {
    position: absolute;
    top: -5px;
    right: 40px;
    padding: 5px 8px 5px 8px;
    font-size: 13px;
    border-radius: 50%;
    background: #fa3e3e;
    color: white;
  }
  .button__badge {
    position: absolute;
    top: -5px;
    right: 40px;
    padding: 0px 9px 0px 9px;
    font-size: 13px;
    border-radius: 50%;
    background: #fa3e3e;
    color: white;
  }

  .calendar-input {
    position: relative;
    width: 25px;
    height: 28px;
    padding-left: 30px;
    font-size: 16px;
    height: 35px;
    background-image: url('http://ec2-3-132-42-10.us-east-2.compute.amazonaws.com/sanad-backend/siteAssets/img/calendar.jpg');
    background-position: left 310px center;
    background-repeat: no-repeat;
  }
  .disabled {
    background-color: #ccc; /* Gray out the button */
    color: #777; /* Change text color */
    cursor: not-allowed; /* Change cursor to not-allowed */
  }
  .more_driver {
    padding-left: 12px; /* Gray out the button */
    color: #ff00c8;
    font-weight: 500;
  }
}
