@charset "UTF-8";

.services-information .services-wrapper .services-buttons,
.services-information .services-wrapper .services-schedule,
.services-information .services-wrapper .services-description,
.services-information .services-wrapper .services-data .popularity,
.services-information .services-wrapper .services-data .workload,
.services-information .services-wrapper,
.services .service-card .service-content .service-group,
.services .service-card .service-content .service-info .text,
.services .service-card .service-content,
.services,
.nav {
  display: flex;
  flex-direction: column;
}

.check-information .check-btns .btn,
.check-information .check-basic-info .btns .btn,
.checks .check-wrapper-card .swipe::after,
.checks .check-wrapper-card .swipe::before,
.services-information .services-wrapper .services-buttons .btn,
.services-information .services-wrapper .services-actions a,
.services-information .services-wrapper .services-actions button,
.services .service-card .service-content .service-btns .btn-buy,
.services .service-card .service-content .service-btns .btn-info,
.services .service-card .swipe::after,
.services .service-card .swipe::before {
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-information.status3::after,
.check-information.status2::after,
.check-information.status1::after,
.checks .check-wrapper-card .check-card.status3::after,
.checks .check-wrapper-card .check-card.status2::after,
.checks .check-wrapper-card .check-card.status1::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: white;
  border-radius: 10px;
}

@keyframes anim-border {
  100% {
    transform: rotate(1turn);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

*::-webkit-scrollbar {
  width: 3px;
}

*::-webkit-scrollbar-track {
  background: #fff;
}

*::-webkit-scrollbar-thumb {
  background-color: #2295ff;
  border-radius: 20px;
}

.flex.s-b .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
  color: #fff !important;
  font-weight: 700;
  background-color: #3af;
}
.flex.s-b .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.flex.s-b .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.flex.s-b .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
  background: #1bb90a;
  box-shadow: #1bb90a 0 1px 3px 0 inset;
}

body {
  max-height: 100%;
  height: 100vh;
  padding: 15px 15px 0;
  background-color: #fafafa;
}

body #map {
  width: 100%;
  height: 100%;
  flex: 1 1 0%;
  position: fixed;
  top: 0;
  left: 0;
}

.nav {
  gap: 15px;
  z-index: 999;
}

.nav .nav-map {
  border-radius: 10px;
  background-color: #fff;
  padding: 15px;
  display: flex;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  cursor: pointer;
}

.line-top {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  width: 100%;
}

.line-top .time,
.line-top #addMoney {
  cursor: pointer;
}

.line-top .balance {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #111;
}

.services {
  align-items: center;
  gap: 10px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0 -15px;
}

.services-information .services {
  max-height: 100%;
}

.services .service-card {
  max-width: 345px;
  width: 100%;
  position: relative;
}

.services .service-card[data-type=true] .service-content .service-group {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 0 10px 0;
}
.services .service-card[data-type=false] .service-content .service-group {
  padding: 0 0 10px 0;
}

.services .service-card[data-type=true] .service-content .service-group .swipe-group {
  border: 1px solid #efefef;
  border-radius: 24px;
}

.services .service-card[data-type=true] .service-content .service-group .service-position {
  padding: 15px;
  border-radius: 24px;
}

.services .service-card:last-child {
  margin-bottom: 50px;
}

.services-information .services .service-card:last-child {
  margin-bottom: 0px;
}

.services .service-card .swipe {
  display: none;
}

@keyframes bounce {
  20%, 50%, 80% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(3px);
  }
}
@keyframes swipeR {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(40%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes swipeL {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-40%);
  }

  100% {
    transform: translateX(0);
  }
}
@keyframes swipeOp {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.bounce {
  animation: bounce 0.5s ease-in-out;
}
:not(body.tut-non):has(> .driver-active-element) {
  overflow: unset !important;
}
/* body.tut-non .services {
  overflow: hidden;
} */
.services .service-card.swipeR .swipe,
.services .service-card.swipeL .swipe {
  animation: swipeOp 3s ease-in-out infinite;
  display: block;
}

.services .service-card.swipeR .service-content {
  animation: swipeR 3s ease-in-out infinite;
}
.services .service-card.swipeL .service-content {
  animation: swipeL 3s ease-in-out infinite;
}

.services .service-card .swipe::before {
  content: "Купить";
  background-color: #2295ff;
  height: 100%;
  width: 50%;
  color: #fff;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.services .service-card .swipe::after {
  content: "Информация";
  background-color: #d3e6ff;
  height: 100%;
  width: 50%;
  color: #2295ff;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.services .service-card .service-content {
  width: 100%;
  background-color: #fff;
  border: 1px solid #efefef;
  border-radius: 15px;
  padding: 15px;
  gap: 15px;
  z-index: 9;
  position: relative;
}

.services .service-card .service-content .servis-ogr-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
}

.services .service-card .service-content .servis-ogr-info img {
  height: 30px;
  width: 30px;
}

.services .service-card .service-content .servis-ogr-info h3 {
  font-size: 14px;
}

.services .service-card .service-content .service-info {
  display: flex;
  gap: 10px;
}

.services .service-card .service-content .service-info img {
  max-width: 70px;
  width: 100%;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.services .service-card .service-content .service-info .text {
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.services .service-card .service-content .service-info .text h3 {
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.services .service-card .service-content .service-info .text .info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.services .service-card .service-content .service-info .text .info .distance {
  color: #111;
  font-weight: 400;
}

.services .service-card .service-content .service-info .text .info span {
  color: #bec5d2;
  font-weight: 500;
}

.services .service-card .service-content .service-info .text .info .price {
  color: #2295ff;
  font-weight: 500;
}

.services .service-card .service-content .service-group {
  padding: 10px 0;
}

.services .service-card .service-content .service-group .swipe-group {
  border-top: 1px solid #efefef;
  position: relative;
}

.services .service-card .service-content .service-group .swipe-group.act::before {
  content: "Купить";
  color: #fff;
  background-color: #2295ff;
  font-size: 16px;
  font-weight: 500;
  width: 50%;
  height: 100%;
  position: absolute;
  left: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .service-card .service-content .service-group .swipe-group.act .service-position {
  background-color: #edf5ff;
  margin: 0 -15px;
  padding: 20px 15px;
}

.services .service-card .service-content .service-group .swipe-group:last-child {
  border-bottom: 1px solid #efefef;
}

.services .service-card .service-content .service-group .service-position {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  position: relative;
  background-color: #fff;
}

.services .service-card .service-content .service-group .service-position {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
}

.services .service-card .service-content .service-group .service-position .price,
.services .service-card .service-content .service-group .service-position .position-price {
  color: #2295ff;
  font-weight: 500;
}

.services .service-card .service-content .service-btns {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.services .service-card .service-content .service-btns .btn-info {
  background-color: #d3e6ff;
  width: 150px;
  border-radius: 24px;
}

.services .service-card .service-content .service-btns .btn-buy {
  width: 150px;
  border-radius: 24px;
}

.services-information {
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  overflow-x: hidden;
}

.services-information .services-wrapper {
  background-color: #fff;
  border: 1px solid #efefef;
  border-radius: 15px;
  padding: 15px;
  max-width: 360px;
  width: 100%;
  gap: 15px;
  margin-bottom: 50px;
}

.services-information .services-wrapper .services-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d9d9d9;
}

.services-information .services-wrapper .services-title .info {
  display: flex;
  justify-content: space-between;
}

.services-information .services-wrapper .services-title .info .price {
  color: #2295ff;
  font-weight: 500;
}

.services-information .services-wrapper .services-actions {
  display: flex;
  justify-content: space-between;
}

.services-information .services-wrapper .services-actions a,
.services-information .services-wrapper .services-actions button {
  background-color: #edf5ff;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  border: none;
}

.services-information .services-wrapper .services-slider {
  width: 100%;
  height: 100%;
  max-height: 160px;
  overflow: hidden;
}

.services-information .services-wrapper .services-slider .slider {
  display: flex;
  transition: transform 0.5s ease;
  max-height: 160px;
}

.services-information .services-wrapper .services-slider .slider .slide {
  margin-right: 15px;
  max-height: 160px;
}

.services-information .services-wrapper .services-slider .slider .slide img {
  max-height: 160px;
}

.services-information .services-wrapper .services-data {
  background-color: #fafafa;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  gap: 0 35px;
}

.services-information .services-wrapper .services-data .popularity,
.services-information .services-wrapper .services-data .workload {
  width: 100%;
}

.services-information .services-wrapper .services-data .popularity .text,
.services-information .services-wrapper .services-data .workload .text {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3px;
}

.services-information .services-wrapper .services-data .popularity .text span,
.services-information .services-wrapper .services-data .workload .text span {
  color: #8f97a7;
  font-size: 12px;
}

.services-information .services-wrapper .services-data .popularity .text .rating,
.services-information .services-wrapper .services-data .workload .text .rating {
  color: #2295ff;
  font-size: 14px;
}

.services-information .services-wrapper .services-data .popularity .line,
.services-information .services-wrapper .services-data .workload .line {
  max-width: 122px;
  height: 6px;
  background-color: #efefef;
  border-radius: 30px;
  position: relative;
}

.services-information .services-wrapper .services-data .popularity .line .progress,
.services-information .services-wrapper .services-data .workload .line .progress {
  height: 6px;
  border-radius: 30px;
  background-color: #2295ff;
}

.services-information .services-wrapper .services-description {
  gap: 5px;
}

.services-information .services-wrapper .services-description h5 {
  color: #8f97a7;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

.services-information .services-wrapper .services-description .description {
  color: #111;
  font-size: 14px;
  line-height: 140%;
}

.services-information .services-wrapper .services-schedule {
  gap: 5px;
}

.services-information .services-wrapper .services-schedule h5 {
  color: #8f97a7;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

.services-information .services-wrapper .services-schedule .schedule {
  color: #111;
  font-size: 14px;
  line-height: 140%;
}

.services-information .services-wrapper .services-buttons {
  gap: 15px;
}

.services-information .services-wrapper .services-buttons .btn {
  font-size: 16px;
  font-weight: 500;
  height: 47px;
  width: 100%;
  border-radius: 24px;
}

.services-information .services-wrapper .services-buttons .btn:nth-child(2) {
  background-color: #d3e6ff;
  color: #2295ff;
}

.services.favorites-information {
  max-width: 360px;
  width: 100%;
}

.services.favorites-information .service-card {
  width: 100%;
}

.services.favorites-information .service-card .service-info .text {
  justify-content: space-between;
}

.services.favorites-information .service-card .service-info .text .title {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.services.favorites-information .service-card .service-info .text .title h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  width: auto;
}

.services.favorites-information .service-card .service-info .text .title img.trash {
  max-width: 24px;
  width: 100%;
  height: 24px;
  cursor: pointer;
  display: none;
}

.services.favorites-information .service-card .favorites-btns {
  flex-direction: column;
}

.services.favorites-information .service-card .favorites-btns .btn.btn-info {
  width: 100%;
  color: #2295ff;
  font-weight: 500;
}

.services.favorites-information .service-card .favorites-btns .btn.btn-swipe {
  width: 100%;
}

.line-top.btns {
  max-width: 360px;
  gap: 10px;
}

.line-top.btns .btn {
  background-color: #fff;
  border: 1px solid #bec5d2;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  width: 100%;
  max-height: calc(100vh - 225px);
  margin-top: -15px;
  overflow-y: auto;
  overflow-x: hidden;
}

.checks .check-wrapper-card {
  text-decoration: none;
  width: 100%;
  position: relative;
}

.checks .check-wrapper-card:last-child {
  margin-bottom: 50px;
}

.checks .check-wrapper-card .swipe {
  display: none;
}

.checks .check-wrapper-card .swipe::before {
  content: attr(data-right);
  background-color: #2295ff;
  height: 100%;
  width: 50%;
  color: #fff;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.checks .check-wrapper-card .swipe::after {
  content: attr(data-left);
  background-color: #d3e6ff;
  height: 100%;
  width: 50%;
  color: #2295ff;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.checks .check-wrapper-card .check-card {
  display: flex;
  gap: 0 10px;
  height: 106px;
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.statusT ul li {
  margin-bottom: 5px;
}
.statusT ul li:last-child {
  margin-bottom: 0px;
}
.statusT ul li .wrapT {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.statusT ul li .wrapT.s1 {
  background-color: rgba(255, 34, 34, 0.1);
}
.statusT ul li .wrapT.s2 {
  background-color: rgba(34, 255, 136, 0.1);
}
.statusT ul li .wrapT.s3 {
  background-color: rgba(255, 140, 34, 0.1);
}
.statusT ul li .wrapT.s4,
.statusT ul li .wrapT.s5,
.statusT ul li .wrapT.s6 {
  border-width: 2px !important;
}
.statusT ul li .wrapT .stut {
  color: #111;
  background-color: #fff;
}
.statusT ul li .wrapT div {
  background-color: #fff;
  color: #111;
  padding: 0 5px;
  margin: 2px;
}
.checks .check-wrapper-card .check-card.status1,
.statusT ul li .status1 {
  background-color: rgba(255, 34, 34, 0.1);
}

.checks .check-wrapper-card .check-card.status1::before,
.statusT ul li .status1::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: rgba(255, 34, 34, 0.1);
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(rgba(255, 34, 34, 0.1), rgba(255, 34, 34, 0.1)), linear-gradient(#f22, #f22), linear-gradient(rgba(255, 34, 34, 0.1), rgba(255, 34, 34, 0.1)), linear-gradient(#f22, #f22);
  animation: anim-border 4s linear infinite;
}

.checks .check-wrapper-card .check-card.status2,
.statusT ul li .status2 {
  /* background-color: rgba(34, 255, 136, 0.1); */
  /* background-color: #fff; */
}

.checks .check-wrapper-card .check-card.status2::before,
.statusT ul li .status2::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: rgba(34, 255, 136, 0.1);
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(rgba(34, 255, 136, 0.1), rgba(34, 255, 136, 0.1)), linear-gradient(#2f8, #2f8), linear-gradient(rgba(34, 255, 136, 0.1), rgba(34, 255, 136, 0.1)), linear-gradient(#2f8, #2f8);
  animation: anim-border 4s linear infinite;
}

.checks .check-wrapper-card .check-card.status3,
.statusT ul li .status3 {
  /* background-color: rgba(255, 140, 34, 0.1); */
  /* background-color: #fff; */
}

.checks .check-wrapper-card .check-card.status3::before,
.statusT ul li .status3::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: rgba(255, 140, 34, 0.1);
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(rgba(255, 140, 34, 0.1), rgba(255, 140, 34, 0.1)), linear-gradient(#ff8c22, #ff8c22), linear-gradient(rgba(255, 140, 34, 0.1), rgba(255, 140, 34, 0.1)), linear-gradient(#ff8c22, #ff8c22);
  animation: anim-border 4s linear infinite;
}

.checks .check-wrapper-card .check-card.status4,
.statusT ul li .wrapT.s4 {
  background-color: #E4FAEF;
  border: 1px solid #2f8;
}

.checks .check-wrapper-card .check-card.status5,
.statusT ul li .wrapT.s5 {
  background-color: #FAEFE4;
  border: 1px solid #ff8c22;
}

.checks .check-wrapper-card .check-card.status6,
.checks .check-wrapper-card .check-card.status7,
.checks .check-wrapper-card .check-card.status,
.statusT ul li .wrapT.s6 {
  background-color: #f0f0f0;
  border: 1px solid #bec5d2;
}

.checks .check-wrapper-card .check-card img {
  max-width: 70px;
  width: 100%;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.checks .check-wrapper-card .check-card .check-grade {
  max-width: 70px;
  width: 100%;
  height: 70px;
  border-radius: 10px;
}

.checks .check-wrapper-card .check-card .check-grade img {
  max-width: 70px;
  width: 100%;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.checks .check-wrapper-card .check-card .check-grade .custom-checkbox+label {
  cursor: pointer;
}

.checks .check-wrapper-card .check-card .check-grade .custom-checkbox+label::before {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
}

.checks .check-wrapper-card .check-card .check-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 8px 0;
}

.checks .check-wrapper-card .check-card .check-info h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  margin: 0;
  width: auto;
  text-align: left;
}

.checks .check-wrapper-card .check-card .check-info .check-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
  color: #2295ff;
}

.checks .check-wrapper-card .check-card .check-info .check-data .code {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  gap: 4px;
}

.checks .check-wrapper-card .check-card .check-info .check-data .code img {
  height: 24px;
  max-width: 24px;
}

.checks .check-wrapper-card .check-card .check-info .check-data .id {
  color: #111;
  margin: 0;
}

.checks .check-wrapper-card .check-card .check-info .check-data .time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.checks .check-wrapper-card .check-card .check-info .check-data .time img {
  height: 24px;
  max-width: 24px;
}

.check-information {
  max-width: 360px;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  position: relative;
  overflow: hidden;
}

.check-information.status1 {
  background-color: rgba(255, 255, 255, 0.1);
}

.check-information.status1::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: rgba(255, 34, 34, 0.1);
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(rgba(255, 34, 34, 0.1), rgba(255, 34, 34, 0.1)), linear-gradient(#f22, #f22), linear-gradient(rgba(255, 34, 34, 0.1), rgba(255, 34, 34, 0.1)), linear-gradient(#f22, #f22);
  animation: anim-border 4s linear infinite;
}

.check-information.status2 {
  background-color: rgba(255, 255, 255, 0.1);
}

.check-information.status2::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: rgba(34, 255, 136, 0.1);
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(rgba(34, 255, 136, 0.1), rgba(34, 255, 136, 0.1)), linear-gradient(#2f8, #2f8), linear-gradient(rgba(34, 255, 136, 0.1), rgba(34, 255, 136, 0.1)), linear-gradient(#2f8, #2f8);
  animation: anim-border 4s linear infinite;
}

.check-information.status3 {
  background-color: rgba(255, 255, 255, 0.1);
}

.check-information.status3::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: rgba(255, 140, 34, 0.1);
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(rgba(255, 140, 34, 0.1), rgba(255, 140, 34, 0.1)), linear-gradient(#ff8c22, #ff8c22), linear-gradient(rgba(255, 140, 34, 0.1), rgba(255, 140, 34, 0.1)), linear-gradient(#ff8c22, #ff8c22);
  animation: anim-border 4s linear infinite;
}

.check-information.status4 {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #2f8;
}

.check-information.status5 {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ff8c22;
}

.check-information.status6,
.check-information.status7,
.check-information.status {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #bec5d2;
}

.check-information .check-info {
  display: flex;
  gap: 10px;
  width: 100%;
}

.check-information .check-info .img {
  max-width: 70px;
  width: 100%;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.check-information .check-info .check-wrapper-data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}

.check-information .check-info .check-wrapper-data h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  width: auto;
}

.check-information .check-info .check-wrapper-data .check-data {
  display: flex;
  justify-content: space-between;
  color: #2295ff;
}

.check-information .check-info .check-wrapper-data .check-data .code {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  gap: 4px;
}

.check-information .check-info .check-wrapper-data .check-data .time {
  display: flex;
  gap: 4px;
  font-weight: 500;
}

.check-information .check-basic-info {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  padding: 15px 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.check-information .check-basic-info .btns {
  display: flex;
  justify-content: space-between;
  gap: 0 15px;
}

.check-information .check-basic-info .btns .btn {
  flex: 1;
  border-radius: 15px;
  background-color: #edf5ff;
}

.check-information .check-basic-info .btns .btn.not {
  background-color: #f0f0f0;
  cursor: default;
}

.check-information .check-basic-info .info {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}

.check-information .check-basic-info .info .title {
  font-size: 12px;
  color: #8f97a7;
}

.check-information .check-basic-info .info .time .title {
  display: flex;
  gap: 5px;
}

.check-information .check-basic-info .info .data {
  font-size: 14px;
}

.check-information .check-basic-info .info .status,
.check-information .check-basic-info .info .id,
.check-information .check-basic-info .info .time {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}

.check-information .check-btns {
  display: flex;
  gap: 0 15px;
}

.check-information .check-btns .btn {
  border-radius: 24px;
  font-weight: 500;
  flex: 1;
}

.check-information .check-btns .btn:first-child {
  background-color: #d3e6ff;
  color: #2295ff;
}

.check-information .check-btns .btn.not {
  background-color: #f0f0f0;
  color: #575757;
  cursor: default;
}

.settings {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  max-width: 345px;
  width: 100%;
  max-height: calc(100vh - 153px);
  overflow: auto;
  padding-bottom: 50px;
}

.settings::-webkit-scrollbar {
  display: none;
}

.settings .background-block {
  background-color: #fff;
  border: 1px solid #efefef;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  padding: 15px;
  color: #111;
}

.settings .background-block label,
.email-modal .input-wrap label {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.settings .background-block input,
.email-modal .input-wrap input {
  padding: 14px 15px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 24px;
  border: 1px solid #bec5d2;
  background: #fff;
  width: 100%;
  height: 47px;
}

.settings .background-block .input-wrap,
.email-modal .input-wrap {
  width: 100%;
  position: relative;
}

.email-modal .error {
  padding-bottom: 0;
}

.settings .background-block .input-wrap .edit,
.settings .background-block .input-wrap .save,
.email-modal .input-wrap .edit,
.email-modal .input-wrap .save {
  position: absolute;
  cursor: pointer;
  bottom: 9px;
  right: 15px;
  border: none;
  background: unset;
}

.settings .background-block .input-wrap .edit img,
.settings .background-block .input-wrap .save img,
.email-modal .input-wrap .edit img,
.email-modal .input-wrap .save img {
  max-width: 24px;
  width: 24px;
  height: 24px;
}

.settings .background-block .input-wrap .save,
.email-modal .input-wrap .save {
  display: none;
}

.settings .background-block .title {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.settings .background-block .ref-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 15px;
  background-color: #d3e6ff;
  border-radius: 24px;
  height: 47px;
}

.settings .background-block .ref-link .link {
  color: #2295ff;
  font-size: 16px;
  font-weight: 500;
}

.settings .background-block .ref-link .copy {
  display: flex;
  cursor: pointer;
}

.settings .background-block .ref-link .copy img {
  max-width: 24px;
  width: 24px;
  height: 24px;
}

.settings .background-block .share {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 15px;
  background-color: #2295ff;
  border-radius: 24px;
  height: 47px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.settings .background-block.link {
  flex-direction: row;
  gap: 0 10px;
  text-decoration: none;
}

.settings .background-block.link img {
  max-width: 24px;
  width: 24px;
  height: 24px;
}

.settings .background-block.link span {
  color: #111;
  font-size: 16px;
  font-weight: 500;
}

.settings .background-block.language {
  gap: 20px 0;
}

.settings .background-block.language .wrap-language {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}

.settings .background-block.language .wrap-language a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.settings .background-block.language .wrap-language a.active {
  color: #2295ff;
}

.settings .background-block.language .wrap-language a.active::after {
  content: "";
  height: 24px;
  width: 24px;
  background-image: url(/assets/images/icon/done_round.svg);
}

.settings.finance .background-block .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.settings.finance .background-block .title .balance {
  color: #111;
  font-size: 20px;
  font-weight: 500;
}

.settings.finance .background-block .btn {
  border-radius: 24px;
  padding: 14px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  height: 47px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}
.settings.finance .background-block .btn:hover {
  background-color: #2295ff;
}

.settings.finance .background-block .btn.sbp {
  background-color: #fff;
  border: 1px solid #2295ff;
  color: #2295ff;
}

.settings.finance .background-block .error {
  color: #f22;
}

.settings.finance .background-block .wrap-chek {
  position: relative;
}

.settings.finance .background-block .table-wrap {
  height: 500px;
  overflow: auto;
}

.settings.finance .background-block table {
  border-spacing: 0 15px;
  height: 500px;
}

.settings.finance .background-block table td {
  font-size: 16px;
  font-weight: 500;
}

.settings.finance .background-block table td.plus {
  color: #02B454;
}

.settings.finance .background-block table td.minus {
  color: #BEC5D2;
}

.service-info-top .balance{
  width: 100%;
  text-align: center;
}

.cashreg .cashreg-form {
  overflow-y: scroll;
}

.auth .cashreg form.cashreg-form .wrap-form.row {
  padding-bottom: 78px;
  height: fit-content;
}

.ref-invalid.modal .modal__title {
  word-break: auto-phrase;
}

.nav-map#filter.active {
  background-color: #2295ff;
  img {
    filter: brightness(0) invert(1);
  }
}

.card__fav-btn {
  display: none;
  background-color: #edf5ff;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  border: none;
  align-items: center;
  justify-content: center;
}
.card__fav-btn._active {
  display: flex;
}

.center-justify {
  justify-content: center;
}

.modal input[type=text]#idInput {
  border: 1px solid #2295ff;
  border-radius: 10px;
  font-size: 18px;
  height: 40px;
  padding: 0 10px;
}
.give-modal-error.modal .modal__title {
  word-break: auto-phrase;
}

.checks .check-wrapper-card.percent::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(90deg, #f0f0f0 var(--grow) ,  #2f8 var(--decr) );
  z-index: -1;
  border-radius: 16px;
}

.checks .check-wrapper-card.percent {
  --grow: calc(var(--percent) * 1%);
  --decr: calc(var(--percent) * 1%);
  .check-card{
    background: linear-gradient(90deg, #f0f0f0 var(--grow) , #E4FAEF var(--decr) );

    margin: 1px;
    width: calc(100% - 2px);
  }
}