* {
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

html {
  height: 100%;
  min-height: 100vh;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  position: relative;
}

.container {
  padding: 0 15px;
}

.share-list.show {
  z-index: 99999999;
}

/* скрытые значков reCaptcha и сессии битрикса */
.grecaptcha-badge {
  display: none;
}

.bx-session-message {
  display: none !important;
}

/* --скрытые значков reCaptcha и сессии битрикса-- */

a {
  text-decoration: none;
  color: #2b2d33;
}

img {
  max-width: 100%;
  height: auto;
}

.lazyload:not(img)[data-src],
img[data-src] {
  opacity: 0;
}

.lazyload:not(img)[style],
img[src] {
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

.text-center {
  text-align: center;
}

.js-copy {
  cursor: pointer;
}

.checklist {
  display: flex;
  flex-direction: column;
}

.checklist__item::before {
  content: "";
  width: 17px;
  height: 17px;
  transform: translateX(-2px);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/check-green.png");
}

.checklist__item {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 3px;
}

.btn-reset {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.scrollbar-main::-webkit-scrollbar {
  width: 6px;
}

.scrollbar-main::-webkit-scrollbar-track {
  border-radius: 4px;
}

.scrollbar-main::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #eee;
}

.scrollbar-main:hover::-webkit-scrollbar-thumb {
  background: #777;
}

.overflow-hidden {
  overflow: hidden;
}

.aside-fixed {
  position: -webkit-sticky;
  position: sticky;
  top: 115px;
  max-height: calc(100vh - 115px);
  padding-bottom: 20px;
}

.section__header,
.section > *:last-child {
  margin-bottom: 0;
}

.section__title {
  margin-top: 0;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 20px;
  color: #2b2d33;
}

.section__text {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 19px;
  color: #2b2d33;
}

.clr-main {
  color: #238976;
}

.parent-btn-more:not(.selected) .btn-more__hide,
.parent-btn-more.selected .btn-more__show {
  display: none;
}

.parent-btn-more.selected .text-btn-more {
  max-height: none;
}

.hide-block-parent:not(.selected) .hide-block-btn-hide,
.hide-block-parent.selected .hide-block-btn-show {
  display: none;
}

.hide-block-parent:not(.selected) .hide-block-content {
  display: none;
}

.title {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #2b2d33;
  margin-top: 20px;
  margin-bottom: 0;
}

.subtitle {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: rgba(43, 45, 51, 0.5);
}

.scrollbar-hide::-webkit-scrollbar {
  width: 0;
}

/* Точка уведомления*/
.notify-dott {
  position: relative;
}

.notify-dott::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -1px;
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #eb001b;
}

.notify-point > a::after,
.mob-menu__item.notify-point > .mob-menu__link::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  transform: translateY(-1px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #eb001b;
}

.moderator-section__sidebar .notify-point > a::after,
.mob-menu__item.notify-point > .mob-menu__link::after {
  content: attr(data-content);
  display: inline-block;
  margin-left: 6px;
  transform: translateY(-2px);
  width: 18px;
  height: 15px;
  border-radius: 50%;
  background-color: #eb001b;
  text-align: center;
  color: #fff;
  font-size: 10px;
  line-height: 12px;
  padding-top: 3px;
}

.text-block__alert {
  position: absolute;
  width: 100%;
  white-space: nowrap;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 5px 15px;
  display: flex;
  justify-content: end;
  align-items: center;
  background-color: #f4f6f8;
  z-index: 8;
  box-shadow: 0 4px 24px rgb(8 8 8 / 17%);
}

.text-block__alert-y {
  margin: 0 13px 0 30px;
}

.txt-center {
  text-align: center;
}

.txt-clr-gray {
  color: #808185;
}

.bold {
  font-weight: 700;
}

.font-normal {
  font-weight: 400;
}

.link {
  display: inline-block;
  color: #00809c;
  border-bottom: 1px solid #00809c;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out;
}

.link--noborder {
  border-bottom: 0;
  transition: opacity 0.3s ease-in-out;
}

.link--red {
  color: red;
  border-color: red;
}

.link--gray {
  color: #999;
  border-color: #999;
}

.link--dashed {
  border-style: dashed;
}

.btn-def {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  color: #2b2d33;
  cursor: pointer;
  border: 2px solid #d5d5d6;
  background-color: #fff;
  border-radius: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: border-color 0.3s ease, background-color 0.3s ease,
    opacity 0.3s ease;
  text-decoration: none;
  text-align: center;
  outline: none;

  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-def--md {
  height: 50px;
}

.btn-def--xs {
  height: 30px;
}

.btn-round {
  width: auto;
  border-width: 1px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 20px;
}

.btn-def--ib {
  display: inline-block;
  width: auto;
}

.btn-def--if {
  display: inline-flex;
  width: auto;
}

.btn-main {
  background-color: #fed500;
  border: 2px solid #fed500;
}

.btn-dark {
  background-color: #008e7d;
  border: 2px solid #008e7d;
  color: #fff;
}

.txt-clr-dark {
  color: #008e7d;
}

.btn-light {
  background-color: rgba(25, 178, 141, 0.2);
  border-color: transparent;
  color: #19b28d;
}

.btn-dark-full {
  background: #2b2d33;
  border: 2px solid #2b2d33;
  color: #fff;
}

.btn-dark-md {
  background: #e9eaea;
  border: 2px solid #e9eaea;
  color: #777;
}

.btn--loading {
  color: transparent !important;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/preload.svg");
  background-size: 50px 30px;
}

.btn--loading > * {
  color: transparent !important;
}

.btn-more {
  margin-top: 10px;
  border-bottom: 1px dashed;
  padding-bottom: 2px;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out;
}

.btn-more:hover {
  border-bottom-color: transparent;
}

.btn-def > svg {
  flex: 0 0 auto;
}

.btn-def > *:last-child {
  margin-right: 0 !important;
}

.btn-border {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  gap: 10px;
  color: #6c6c6c;
  height: 38px;
  min-width: 38px;
  width: auto;
  border: 1px solid #808185;
  border-radius: 3px;
  inset: unset;
}

.btn-border.active .svg-star {
  fill: #fed500;
}

.btn-icon {
  position: relative;
}

.btn-icon::before {
  background-position: center;
  background-repeat: no-repeat;
}

.btn-icon--kanban::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-kanban.png");
  background-size: 16px;
}

.btn-border.btn--loading {
  background-color: #b7b7b7;
}

.break-line {
  margin: 20px 0;
  height: 1px;
  background-color: #eee;
}

.personal-break-line {
  margin-top: 0;
  margin-bottom: 30px;
}

.svg-eye {
  width: 34px;
  height: 33px;
  margin-right: 8px;
}

.svg-message {
  fill: #19b28d;
  width: 25px;
  height: 24px;
  margin-right: 8px;
}

.svg-cross {
  fill: #999;
  width: 14px;
  height: 14px;
  transition: fill 0.3s ease-in-out;
}

.svg-location {
  fill: #999;
  width: 14px;
  height: 14px;
  transition: fill 0.3s ease-in-out;
}

.svg-arrow-left {
  fill: #999;
  width: 20px;
  height: 20px;
  transition: fill 0.3s ease-in-out;
}

.svg-arrow-down {
  fill: #999;
  width: 12px;
  height: 12px;
  transition: fill 0.3s ease-in-out;
}

.svg-archive {
  fill: #999;
  width: 16px;
  height: 16px;
  transition: fill 0.3s ease-in-out;
}

.svg-star {
  width: 21px;
  height: 21px;
  fill: #d5d5d6;
  margin-right: 8px;
  transition: fill 0.3s ease-in-out;
}

.svg-pencil {
  width: 21px;
  height: 21px;
  margin-right: 4px;
  fill: #fff;
  transition: fill 0.3s ease-in-out;
}

.svg-bin {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  fill: rgb(119 119 119 / 40%);
  transition: fill 0.3s ease-in-out;
}

.svg-logout {
  width: 18px;
  height: 21px;
  fill: #2b2d33;
}

.svg-car {
  width: 40px;
  height: 40px;
  fill: #2b2d33;
}

.svg-auction {
  width: 40px;
  height: 40px;
  fill: #2b2d33;
}

.svg-cabinet {
  width: 40px;
  height: 40px;
  fill: #2b2d33;
}

.svg-arrow {
  width: 14px;
  height: 8px;
  --color-svg-fill: #2b2d33;
}

.svg-edit {
  width: 16px;
  height: 16px;
  fill: gray;
  transform: translateY(2px);
  transition: opacity 0.3s ease-in-out;
}

.svg-calendar {
  width: 16px;
  height: 16px;
  fill: gray;
}

.svg-checked {
  fill: #999;
  width: 17px;
  height: 14px;
  transition: fill 0.3s ease-in-out;
}

.svg-persons {
  width: 16px;
  height: 16px;
  fill: #000;
}

.svg-download {
  width: 16px;
  height: 16px;
  fill: gray;
}

.svg-share {
  width: 16px;
  height: 16px;
  fill: gray;
}

.svg-achtung {
  fill: red;
  width: 16px;
  height: 16px;
  transition: fill 0.3s ease-in-out;
}

.svg-filter {
  fill: #000;
  width: 16px;
  height: 16px;
  transition: fill 0.3s ease-in-out;
}

.btn-heart-fill {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #efefef; */
  border: 2px solid #cdcdcd;
  border-radius: 8px;
  transition: opacity 0.3s ease-in-out;
}

.svg-heart-fill {
  fill: #cdcdcd;
  width: 30px;
  height: 30px;
  transition: fill 0.3s ease-in-out;
}

/* кнопка с телефоном */
.btn-open-phone {
}

.btn-open-phone__number {
  display: none;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  justify-content: center;
  align-items: center;
}

.btn-open-phone__text {
  display: block;
}

.btn-open-phone--active .btn-open-phone__number {
  display: flex;
}

.btn-open-phone--active .btn-open-phone__text {
  display: none;
}

/*tooltip*/
.tooltip {
  display: inline-block;
  font-size: 0;
  line-height: 0;
}

.tooltip-fluid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hint-block {
  display: flex;
  gap: 10px;
  padding: 15px;
  border-radius: 5px;
  background-color: #f5f6f8;
  color: #999;
  font-size: 14px;
  line-height: 19px;
}

.hint-block > svg {
  flex: none;
  transform: translateY(3px);
}

.hint-block-presale {
  margin-top: 30px;
}

.svg-info-gray {
  width: 18px;
  height: 18px;
  fill: #999;
}

.svg-info-green {
  width: 18px;
  height: 18px;
  fill: rgb(48, 148, 152);
}

.preload {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  z-index: 999;
}

.preload-parent.fixed .preload {
  position: fixed;
}

.preloader--top {
  align-items: start;
  padding-top: 100px;
}

.preload::before {
  content: "";
  width: 50px;
  height: 50px;
  background: url("../img/tail-spin.svg") center no-repeat;
}

.preload-parent {
  position: relative;
}

.list-link {
  font-size: 14px;
  cursor: pointer;
  color: #157ee1;
  transition: color 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
}

.nav-aside__item {
  display: block;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 20px;
  margin-left: -20px;
  position: relative;
  color: #000;
}

.nav-aside__item--disabled {
  color: grey;
  cursor: unset;
}

.nav-aside__link {
  color: #000;
  transition: color 0.3s ease-in-out;
}

.info__svg {
  width: 20px;
  height: 20px;
  fill: #999;
}

/* Всплывающий блок */
.alert-block {
  /*position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding-top: 50px;
    z-index: 999;
     display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: auto;*/
  position: fixed;
  overflow: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999999;
  text-align: center;
}

.alert-block::after {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
  content: "";
}

.alert-block__content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  position: relative;
  padding: 20px 30px;
  margin: 40px 15px;
  min-width: min(90%, 400px);
  max-width: min(90%, 600px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.js-alert-auth {
  cursor: pointer;
}

.alert-block:not(.on) {
  display: none;
}

.alert-block__shadow {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.alert-block__header--txt-center {
  text-align: center;
}

.alert-block__header--border {
  padding-bottom: 19px;
  border-bottom: 1px solid #ededed;
}

.alert-block__header {
  margin-bottom: 20px;
}

.alert-block__header > *:last-child {
  margin-bottom: 0;
}

.alert-block__subtitle {
  font-size: 14px;
}

.alert-block__subtitle--gray {
  color: gray;
}

.alert-block-crm-delete-car .alert-block__btns {
  margin-top: 40px;
}

.alert-block-history .alert-block__content {
  max-width: min(90%, 1200px);
}

.alert-block-history .alert-block__content .alert-block__body {
  overflow-x: auto;
}

.alert-block.error .alert-block__content {
  align-items: center;
}

.alert-block.error .alert-block__content::before {
  content: "";
  width: 30px;
  height: 30px;
  margin-right: 15px;
  flex: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/hint-red.svg");
  transform: translateY(-1px);
}

.alert-block:not(.show) .alert-block__content {
  opacity: 0;
  transform: translateY(-20px);
}

.alert-block__body {
  font-size: 16px;
  line-height: 1.3;
  flex: 1 0 0%;
}

.alert-block__btn-wrapper {
  margin-bottom: 10px;
}

.alert-block__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/cross.svg");
}

.alert-block__elements {
  margin-top: 10px;
}

.alert-block__textarea {
  padding: 8px 12px;
  font-size: 14px;
  line-height: 19px;
  resize: none;
  z-index: 1;
  border-radius: 4px;
  width: 100%;
  height: 200px;
  border: 1px solid #d5d5d6;
}

.alert-block__textarea.input-error {
  border: 1px solid rgb(171, 34, 34);
}

.alert-block__btns {
  margin-top: 15px;
}

.crm-statistic-modal-error {
  margin-top: 40px;
}

.alert-block__btn {
  display: inline-block;
  width: auto;
  min-width: 100px;
  margin-right: 10px;
}

.alert-block__btn:last-child {
  margin-right: 0;
}

.alert-block__body > *:last-child {
  margin-bottom: 0;
}

.alert-block__title {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 15px;
}

.alert-block__header .alert-block__title {
  margin-bottom: 5px;
}

.alert-block__line-light {
  width: 80px;
  height: 3px;
  background-color: #777;
  margin-bottom: 20px;
}

.alert-block__line-bold {
  width: 80px;
  height: 8px;
  background-color: #777;
  margin-bottom: 20px;
}

.alert-block__text {
  margin-top: 0;
  font-size: 15px;
  line-height: 21px;
}

.alert-block-pdf-share .alert-block__title {
  margin-bottom: 10px;
}

.alert-block-pdf-share .alert-block__header {
  margin-bottom: 30px;
}

.alert-block__contacts {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
  min-width: 450px;
}

.alert-block__contacts-bl {
  width: 48%;
}

.alert-block__contacts-right {
  text-align: right;
}

.alert-block__contacts-name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 15px;
}

.alert-block__contacts-phone {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 5px;
}

.alert-block__contacts-email {
  font-size: 15px;
  line-height: 1.3;
  color: #00809c;
}

.alert-block__contacts-photo img {
  border-radius: 8px;
  max-height: 120px;
}

.alert-block__list-item:not(:last-child) {
  margin-bottom: 12px;
}

.telegram-settings-modal .alert-block__list {
  margin-bottom: 40px;
}

.telegram-settings-modal .span-checkbox:before,
.telegram-settings-modal .field-checkbox:checked + span:after {
  top: 0;
}

.telegram-settings-modal .alert-block__header {
  margin-bottom: 30px;
}

.telegram-settings-modal .alert-block__btn {
  margin-right: 20px;
}

.border-line-top {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.bubble-text {
  border-radius: 8px;
  padding: 16px;
  position: relative;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 8px;
  color: #000;
  background-color: #f4f6f8;
  display: flex;
  align-items: center;
}

.bubble-text a {
  font-size: 13px;
  line-height: 13px;
}

.bubble-text--simple {
  background-color: transparent;
  padding: 0;
}

.bubble-text__icon {
  flex: 0 0 24px;
  margin-right: 5px;
  height: 24px;
}

.bubble-text__svg {
  width: 24px;
  height: 24px;
  fill: #999;
  /* transform: translateY(-3px); */
}

.bubble-text__text {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.success-message-fixed {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 9;
}

.success-message-fixed:not(.on) {
  display: none;
}

.success-message-fixed.show {
  opacity: 1;
}

.success-message-fixed .bubble-text {
  display: inline-block;
  padding: 20px 50px;
  font-size: 18px;
  margin-bottom: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.sidebar-menu {
  display: none;
}

.notify-auth__item {
  margin-bottom: 10px;
  text-align: center;
}

.notify-auth__text {
  font-size: 14px;
  color: #999;
}

.notify-auth__description {
  font-size: 20px;
  margin-bottom: 15px;
}

.alert-block-auction-done .alert-block__content {
  min-width: min(90%, 640px);
  padding: 30px 40px;
}

.alert-block-auction-done .alert-block__btns {
  text-align: center;
}

.alert-block-auction-done .alert-block__close {
  top: 20px;
  right: 20px;
}

.alert-block__error-message {
  display: none;
  margin-top: -8px;
  margin-bottom: 28px;
}

.crm-widget-modal.balance-error .alert-block__error-message {
  display: block;
}

.alert-block__error-message-text {
  color: red;
  font-size: 14px;
}

.alert-block__error-message-desc {
  font-size: 14px;
  color: gray;
  margin-bottom: 10px;
}

.alert-block__error-message-checkbox {
  display: flex;
  align-items: center;
}

.alert-block__error-message-checkbox .svg-info {
  margin-left: 6px;
  transform: translateY(1px);
}

.alert-block__error-message-checkbox-desc {
  color: gray;
}

.alert-block__error-message-checkbox .span-checkbox:before,
.alert-block__error-message-checkbox .field-checkbox:checked + span:after {
  top: 0;
}

.alertblock-notice {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 9999;
}

.alertblock-notice:not(.on) {
  display: none;
}

.alertblock-notice.show {
  opacity: 1;
}

.alertblock-notice .bubble-text {
  display: inline-block;
  padding: 20px 50px;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.privacy {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.section-header {
  margin-bottom: 25px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.section-header > * {
  align-self: center;
}

.section-title {
  margin: 0;
  color: #2b2d33;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}

.privacy p {
  margin: 0 0 15px;
}

.privacy p.privacy__right {
  font-style: italic;
  font-weight: bold;
  margin-top: -10px;
  margin-bottom: 25px;
}

.privacy ul {
  margin-left: 30px;
  margin-bottom: 40px;
}

.privacy ul li {
  list-style: disc;
  margin-bottom: 10px;
}

.alert-block-telegram-messenger .alert-block__header {
  margin-bottom: 30px;
}

.alert-block-telegram-messenger .alert-block__btn-y {
  padding-top: 15px;
  height: 50px;
  min-width: 240px;
}

.alert-block-telegram-messenger .alert-block__content {
  text-align: center;
  max-width: min(90%, 490px);
  padding: 30px 40px;
}

.alert-block-telegram-messenger .alert-block__title {
  font-size: 23px;
  margin-bottom: 20px;
}

.alert-block-telegram-messenger .js-copy {
  width: 26px;
  height: 36px;
  opacity: 0.5;
  background: url("/local/templates/sellauto/img/copy.png") center center
    no-repeat;
  background-size: 20px;
}

.alert-block-telegram-messenger .alert-block__text {
  padding: 15px;
  margin-bottom: 40px;
  background: #eee;
  border-radius: 6px;
  font-size: 14px;
  font-style: italic;
  text-align: left;
}

.alert-block-telegram-messenger .alert-block__subtitle {
  line-height: 1.5;
}

.soc-list {
  display: inline-flex;
}

.soc-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
}

.soc-item:not(:last-child) {
  margin-right: 5px;
}

.soc-btn,
.soc-btn svg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.soc-btn {
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}

.soc-btn--telegram {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background-color: #0088cc;
}

.soc-btn--telegram > svg {
  width: 13px;
  height: 13px;
  fill: #fff;
}

.soc-btn--whatsapp > svg {
  fill: #43d854;
}

.number-positive {
  color: #19b28d;
}

.number-negative {
  color: #d70f0f;
}

.icon-car {
  padding-left: 92px;
  background: url("../img/marketplaces/autoru.png"),
    url("../img/marketplaces/avito.png"), url("../img/marketplaces/drom.png");
  background-position: left center, 30px top, 60px top;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: contain, contain, contain;
}

.icon-sellauto {
  padding-left: 23px;
  background-position: left 3px;
  background-repeat: no-repeat;
  background-size: 16px;
  background-image: url("../img/icon-sellauto.png");
}

.icon-kanban {
  position: relative;
}

.icon-kanban--mb {
  margin-bottom: 15px;
}

.icon-kanban:before {
  content: "";
  position: absolute;
  left: -40px;
  top: -5px;
  display: block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  background-image: url("../img/icon-kanban.png");
}

.horizontal-group {
  display: flex;
  gap: 40px;
}

.horizontal-group__item .label-checkbox {
  margin: 0;
}

.horizontal-group__item .span-checkbox:before,
.horizontal-group__item .field-checkbox:checked + span:after {
  top: 0;
}

.alert-block--note .alert-block__title {
  font-size: 21px;
}

.alert-block--note .input-desc {
  font-size: 14px;
}

.alert-block--note .field-textarea {
  height: 230px;
}

.alert-block__group-container {
  margin-bottom: 40px;
}

.vertical-group {
  display: flex;
  flex-direction: column;
}

.vertical-group__item {
  display: flex;
  gap: 10px;
  padding: 5px 7px 9px;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out;
}

.marketplace-btn-delete-search-saved {
  margin-left: auto;
}

.marketplace-btn-delete-search-saved > svg {
  margin-right: 0;
}

.alert-block__marketplace-vertical-group {
  margin-bottom: 20px;
}

.btn-params {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dfdfdf;
  border-radius: 4px;
  transition: opacity 0.3s ease-in-out;
}

.dottspace-element {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 8px;
}

.dottspace-element__name {
  font-size: 14px;
  color: #828282;
  display: flex;
  align-items: center;
}

.dottspace-element__space {
  flex: 1 0 0%;
  border-bottom: 1px dotted #828282;
  margin: 0 4px;
  transform: translateY(-3px);
  padding: 0;
}

.dottspace-element__value {
  flex: 0 0 auto;
  width: auto;
  font-size: 14px;
  color: #151515;
}

.dottlist {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dottlist__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 12px;
  color: #8f9090;
}

.dottlist__item > .link {
  transform: translateY(1px);
}

.dottlist__item:not(:last-child):after {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  margin-left: 10px;
  background-color: #8f9090;
  border-radius: 50%;
}

.banner-element {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 30px 11px 15px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 rgb(221 225 227);
}

.banner-element.active {
  background-color: #fffbe1;
}

.banner-element__icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

.banner-element__icon.icon-notify {
  width: 16px;
  height: 16px;
}

.js-call-note-modal .icon-notify {
  width: 14px;
  height: 14px;
}

.banner-element__icon > svg {
  width: 100%;
  height: 100%;
}

.banner-element__text {
  display: block;
  font-size: 12px;
}

.icon-notify {
  position: relative;
}

.car-widget--notify.active .icon-notify::after,
.banner-element.active .icon-notify::after,
.icon-notify.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: red;
}

.name-value-element {
  margin-bottom: 5px;
}

.name-value-element__name {
  font-size: 14px;
  line-height: 20px;
  color: rgba(43, 45, 51, 0.5);
  font-weight: 400;
}

.name-value-element__name::after {
  content: ":";
}

.name-value-element__value {
  font-size: 14px;
  line-height: 20px;
  color: #55575c;
  font-weight: 400;
}

.page-container {
  margin: 0 auto;
  max-width: 1225px;
  margin-bottom: 24px;
  padding: 36px 15px;
}

/* .hidden-blocks-btn--hide {
    display: none !important;
} */

.car-autoteka {
  display: block;
  width: 121px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/autoteka.png");
  transition: opacity 0.3s ease-in-out;
}

.mini-banner-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mini-banner {
  position: relative;
  padding: 15px 80px 15px 15px;
  border-radius: 7px;
  border: 1px solid #d5d5d6;
  background-position: 97% center;
  background-repeat: no-repeat;
  background-size: 60px;
  box-shadow: 0 0 3px transparent;
  transition: box-shadow 0.3s ease-in-out;
}

.mini-banner--online-pres {
  background-image: url("../img/default/online-pres.png");
}

.mini-banner--gosuslugi {
  background-image: url("../img/default/gosuslugi.png");
}

.mini-banner__title {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.3;
}

.mini-banner__text {
  font-size: 14px;
  line-height: 1.2;
  color: rgba(43, 45, 51, 0.5);
}

.mini-banner__btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.label-item {
  display: inline-block;
  position: relative;
  background: var(--clr-neutral-light-600);
  border-radius: 4px;
  font-weight: normal;
  white-space: nowrap;
  font-size: 12px;
  line-height: 21px;
  color: #2b2d33;
  padding-left: 8px;
  padding-right: 8px;
  height: 22px;
}

.ui-gravity-svg {
  width: 16px;
  height: 16px;
}

.sidebar-menu__item {
  display: none !important;
}

.sidebar-menu__item[data-id="29"] {
  display: block !important;
}
.sidebar-menu__item.sidebar-menu__item--border {
  border-top: 0 !important;
  padding-top: 0 !important;
}

ul.header-menu,
.footer__nav {
  visibility: hidden;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1140px;
  }

  .header .container {
    max-width: 1320px;
  }
}

@media (min-width: 1200px) {
  .mini-banner:hover {
    box-shadow: 0 0 3px #2879c9;
  }

  .car-autoteka:hover {
    opacity: 0.7;
  }

  .vertical-group__item:hover {
    background-color: #f8f8f8;
  }

  .vertical-group__item .marketplace-btn-delete-search-saved {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .vertical-group__item:hover .marketplace-btn-delete-search-saved {
    opacity: 1;
  }

  .btn-params {
    opacity: 0.4;
  }

  .btn-heart-fill {
    opacity: 0.7;
  }

  .btn-heart-fill:hover,
  .btn-params:hover,
  .soc-btn:hover {
    opacity: 1;
  }

  .list-link:hover,
  .nav-aside__link:hover {
    color: #db3727 !important;
  }

  .link--noborder:hover,
  .alert-block__close:hover {
    opacity: 0.8;
  }

  .link:hover {
    border-color: transparent;
  }

  .tooltip:hover {
    overflow: unset;
  }

  .tooltip:hover .tooltip__item {
    opacity: 1;
    visibility: visible;
    overflow: unset;
    display: block;
    z-index: 9;
  }

  .btn-def:hover,
  .btn-def:active {
    background-color: #d5d5d6;
    border-color: #d5d5d6;
  }

  .btn-def:hover .svg-star {
    fill: #fff;
  }

  .btn-main:hover,
  .btn-main:active {
    background-color: #ffe24c;
    border-color: #ffe24c;
  }

  .btn-dark:hover,
  .btn-dark:active {
    background-color: #169c7b;
    border-color: #169c7b;
  }

  .btn-dark-full:hover,
  .btn-dark-full:active {
    background-color: #42454f;
    border-color: #42454f;
  }

  .btn-dark-full:hover,
  .btn-dark-full:active {
    background-color: #42454f;
    border-color: #42454f;
  }

  .btn-light:hover,
  .btn-light:active {
    background-color: rgba(25, 178, 141, 0.6);
    border-color: transparent;
    color: #fff;
  }

  .btn-light:hover path,
  .btn-light:active path {
    fill: #fff;
  }

  .btn-dark-md:hover,
  .btn-dark-md:active {
    opacity: 0.8;
  }

  a:hover .svg-bin,
  button:hover .svg-bin {
    fill: red;
  }

  .telegram-settings-modal .alert-block__content {
    padding: 30px 40px;
  }
}

@media (min-width: 992px) {
  .mobile-show {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .alert-block-auth-services {
    align-items: start;
  }

  .alert-block-auth-services .alert-block__col-left__inner {
    height: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/modal-auth-banner.jpg");
  }

  .alert-block-auth-services .alert-block__col-right {
    padding: 20px 40px 20px 20px;
  }

  .alert-block-auth-services .alert-block__content {
    max-width: min(85%, 930px);
    padding: 0;
    border-radius: 0;
  }

  .alert-block-auth-services .alert-block__close {
    width: 25px;
    height: 25px;
    top: 0;
    right: -45px;
    background-image: url(../img/cross-wt.svg);
  }

  .alert-block-auth-services .alert-block__text {
    margin-bottom: 150px;
  }
}

@media (max-width: 1399.98px) {
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
  .desktop-show {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .alert-block-auction-done .alert-block__close,
  .alert-block__close {
    top: -40px;
    right: 50%;
    transform: translateX(50%);
    border-radius: 50%;
    background-color: #eee;
    width: 30px;
    height: 30px;
    background-size: 15px;
  }

  .alert-block__title {
    font-size: 22px;
  }

  .alert-block__btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .alert-block__btn:last-child {
    margin-bottom: 0;
  }

  .alert-block__contacts {
    min-width: 90%;
  }

  .alert-block__contacts-bl {
    width: 100%;
  }

  .alert-block__contacts-right {
    display: none;
  }

  .alertblock-notice .bubble-text {
    padding: 15px 15px;
    font-size: 15px;
  }

  .alert-block-telegram-messenger .alert-block__content {
    padding: 20px;
    max-width: min(85%, 600px);
  }

  .alert-block__content {
    vertical-align: top;
    margin-top: 60px;
  }

  div.concept-banner.cb-mini-side div.cb-text table td {
    font-size: 28px;
    line-height: 32px;
  }

  div.concept-banner.cb-mini-side div.cb-text {
    height: 152px;
  }

  /* div.concept-banner.cb-mini-side[data-cb-id="803"] div.cb-text table td {
        font-size: 28px;
        line-height: 32px;
    }

    div.concept-banner.cb-mini-side[data-cb-id="803"] div.cb-text {
        height: 152px;
    }

    div.concept-banner.cb-mini-side.cb-close-on[data-cb-id="803"] div.cb-close {
        top: -70px;
        margin-left: -10px;
        width: 40px;
        height: 40px;
    }

    div.concept-banner.cb-mini-side[data-cb-id="803"] div.cb-img {
        width: 100px;
        height: 100px;
    } */
}

@media (max-width: 575.98px) {
  .personal-break-line {
    margin-bottom: 15px;
  }

  .alert-block-auction-done .alert-block__content {
    padding: 20px 15px;
  }

  .alert-block__content {
    padding: 15px 15px 20px;
  }

  .alert-block-telegram-messenger .alert-block__btn-y {
    min-width: auto;
  }
}
