.car-type {
  box-shadow: 0px 1px 2px 0px #5b687152, 0px 0px 1px 0px #1a202452;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.car-type__body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 105px;
}

.car-type__footer {
  display: flex;
  align-items: center;
  background-color: #f0f5f9;
  padding: 13px 14px;
  gap: 12px;
}

.car-type__type {
  color: #131515;
  line-height: 16px;
  font-size: 16px;
  font-weight: 600;
}

.custom-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.custom-checkbox__input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: none;
}

.custom-checkbox__input-fake {
  min-width: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #acacac;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.custom-checkbox__input:checked ~ .custom-checkbox__input-fake {
  color: #4bae4f;
}

.link-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary);
}
.content-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--gap--lg);
  padding: 26px 32px;
}

.content-body {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 32px;
  flex: auto;
}

.content-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: auto;
  padding: 26px 32px;
}

.scroll-block {
  overflow: auto;
}
.section__body {
  box-shadow: 0px 2.25px 4.5px 0px #00000029;
  background-color: #fff;
  border-radius: 16px;
  flex: auto;
}

.section-card {
  padding: 24px;
  background-color: #f0f5f9;
  flex: auto;
  display: flex;
}

.section__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fullscreen-page .section__body {
  height: 100%;
}

.fullscreen-page {
  display: flex;
  height: calc(100vh - var(--header-height));
}

.sidebar-step {
  width: 370px;
  flex: 0 0 370px;
  background-color: #fff;
  box-shadow: 0px 2.25px 4.5px 0px #00000029;
  border-radius: 16px;
  position: relative;
  margin-right: 24px;
  transition: 0.2s;
}

.sidebar-step__container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sidebar-step__footer {
  margin-top: auto;
  padding: 32px;
  border-top: 1px solid #d0d5dd;
}

.sidebar-step__footer-text {
  color: #626262;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

.user-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-block__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 360px;
  overflow: hidden;
}

.user-block__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-block__name {
  font-size: 16px;
  line-height: 18px;
  color: #131515;
}

.user-block__status {
  font-size: 14px;
  line-height: 18px;
  color: #626262;
}

.sidebar-step__header {
  padding: 16px 22px;
  background-color: #fef1d0;
}

.progress-bar {
  width: 100%;
  height: 7px;
  border-radius: 360px;
  background-color: #fff;
}

.progress-bar span {
  display: block;
  height: 100%;
  background-color: #326ab2;
  border-radius: 360px;
}

.sidebar-step__header-preview {
  display: flex;
  align-items: center;
  gap: 16px;
}

.car-preview {
  width: var(--min-height);
  min-width: var(--min-height);
  height: var(--min-height);
  background-color: #fff;
  box-shadow: 0px 1px 2px 0px #5b687152, 0px 0px 1px 0px #1a202452;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.sidebar-title {
  line-height: 18px;
  font-size: 18px;
  font-weight: 500;
  color: #131515;
}

.sidebar-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}

.sidebar-step__body {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}

.onboard-sidebar-steps__icon {
  width: 26px;
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: 0 0 26px;
  border: 2px solid #B2B7C2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.onboard-sidebar-steps__item.success .onboard-sidebar-steps__icon {
  background-color: #4bae4f;
  background-image: url(../img/check-icon-white.svg);
  border-color: #4bae4f;
}

.onboard-sidebar-steps__item.active .onboard-sidebar-steps__icon {
  border-color: #326ab2;
}

.onboard-sidebar-steps {
  display: flex;
  flex-direction: column;
}

.onboard-sidebar-steps__item {
  display: flex;
  align-items: center;
  padding: 16px 22px;
  gap: 14px;
  font-size: 18px;
  line-height: 26px;
}

.sidebar-btn {
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  right: -40px;
  top: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  border-radius: 0 5px 5px 0;
}

.section-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
}

.section-subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  opacity: 0.5;
}


.check-form.check-form{
    --check-size: 18px;
    --gap-control: 12px;
    --rounded: 5px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: max-content;
    max-width: 100%;
    font-family: var(--fontFamily);
    font-weight: 400;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
}

.check-row{
  display: flex;
  gap: 12px;
  align-items: center;
}

input:checked ~ .check-row .check-control--custom{
  background-color: #1674D2;
  border-color: #1674D2;
}

input:checked ~ .check-row .check-control::after{
  opacity: 1;
  visibility: visible;
}

.check-control--custom{
  background-color: transparent;
  border-color: #797C81;
}

.check-control::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: url(../img/icon-check-white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: unset;
}

.check-control{
    min-width: 18px;
    max-width: 18px;
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #797C81;
}

.quiz-list{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cars-selected{
  background-color: #F0F5F9;
  border-radius: 16px;
  padding: 16px;
  height: 100%;
  overflow: auto;
  max-height: 503px;
}

.quiz-title{
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: rgba(23, 34, 67, 0.7);
  text-transform: uppercase;
}

.type-car-selected{
  padding: 16px 0;
}

.selected-scroll .type-car-selected{
  overflow: auto;
  max-height: 503px;
}

.cars-selected__list{
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.cars-selected__item{
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 1px 2px 0px rgba(91, 104, 113, 0.32), 0px 0px 1px 0px rgba(26, 32, 36, 0.32);
  font-size: 15px;
  line-height: 36px;
  padding: 0 13px;
  border-radius: 360px;
  width: max-content;
}

.cars-selected__item-close{
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-left: 10px;
}

.selected-scroll .type-car-selected::-webkit-scrollbar,
.selected-scroll .cars-selected::-webkit-scrollbar,
.content-body::-webkit-scrollbar{
  display: block;
  width: 8px;
  height: 8px;
  background-color: transparent;
}

.selected-scroll .type-car-selected::-webkit-scrollbar-thumb,
.selected-scroll .cars-selected::-webkit-scrollbar-thumb,
.content-body::-webkit-scrollbar-thumb  {
  background: #E6E6E6;
  border-radius: 360px;
}

.color-preview{
  width: 18px;
  height: 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
}

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

.type-car-selected.pt-0{
  padding-top: 0;
}

.header__text-info{
  color: #667085;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.onboard-sidebar-steps__item.active .onboard-sidebar-steps__title{
  font-weight: 600;
  color: #131515;
}

.onboard-sidebar-steps__item.success .onboard-sidebar-steps__title{
  font-weight: 500;
  color: #667085;
}

.onboard-sidebar-steps__item .onboard-sidebar-steps__title{
  font-weight: 400;
  color: #B2B7C2;
}

.NOUI-FIX-CONSTRUCTOR.fix-left-line .noUi-base{
  border-left: calc(var(--sliderHendleSize) / 2) solid transparent;
}

.icon-box-36x36{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
}

.user-box-44x44{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 360px;
  overflow: hidden;
}

.message-user{
  border: 1px solid #E3F0F9;
  border-radius: 12px;
  background-color: #F7FCFD;
  font-size: 12px;
  line-height: 18px;
  color: #131515;
  font-weight: 400;
  padding: 18px;
  position: relative;
}

.message-user::before{
  content: url(../img/message-user-arrow.svg);
  position: absolute;
  left: -8px;
  top: 0;
  width: 8px;
  height: 28px;
}

.brackets-icon{
  min-width: 23px;
  width: 23px;
  display: flex;
  height: 17px;
}

.footer-text{
  border-top: 1px solid #D0D5DD;
  margin-top: 20px;
  padding-top: 20px;
  color: rgba(23, 34, 67, 0.59);
  font-size: 12px;
  line-height: 18px;
}

.card-bordered .card-custom--footer{
  background-image: url(../img/card-custom--footer-bg.svg);
}
.switch{
  position: relative;
    display: inline-block;
    --switch-width: 36px;
    --switch-height: 18px;
    --switch-radius: 9px;
    --offset: 3px;
    --toggle-width: calc((var(--switch-width) / 2 - var(--offset)));
    --toggle-height: calc(var(--switch-height) - var(--offset));
    --toggle-radius: 100%;
    width: var(--switch-width);
    height: var(--switch-height);
    --default-color: #d8dde1;
    --active-color: #3447bc;
}

.switch.switch--value{
  --switch-width: 99px;
  --switch-height: 40px;
  --switch-radius: 8px;
  --offset: 0px;
  --toggle-radius: 8px;
  --default-color: var(--white);
  --active-color: var(--white);
  background-color: var(--white);
  border: 1px solid #d0d5dd;
  box-shadow: 0px 1px 4px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
}

.switch.switch--value .slider::before {
  background: #0072bc;
  border: 1px solid #d0d5dd;
  box-shadow: 0px 1px 4px rgba(16, 24, 40, 0.05);
}

.switch.switch--value .value {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;  
  text-align: left;
  color: #131515;
  transition: 0.4s;
}
.switch.switch--value input:not(:checked) ~ .slider .value:first-child,
.switch.switch--value input:checked ~ .slider .value:last-child{
  color: var(--white);
}


.slider{
  display: flex;
  align-items: center;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--switch-radius);
  background-color: var(--default-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 12px;
  color: #87909e;
}

.slider:before{
  position: absolute;
  content: "";
  height: var(--toggle-height);
  width: var(--toggle-width);
  top: calc(var(--offset) / 2);
  left: var(--offset);
  border-radius: var(--toggle-radius);
  background-color: var(--white);
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.1));
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider:before{
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.switch .slider .value{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.footer-scroll .card-custom--body{
  padding-bottom: 0 !important;
}

.footer-scroll .card-custom--footer{
  position: sticky;
  bottom: 0;
  margin-top: auto;
  background: linear-gradient(0deg, white 0%, white 73%, rgba(255,255,255,0.3) 74%, rgba(255,255,255,0.3) 100%, white 66%, white 100%);
}


.w-150{width: 150px;}

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

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-18 {
  margin-bottom: 18px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-40 {
  margin-bottom: 40px;
}

.radius-5 {
  border-radius: 5px;
}

.px-12{
  padding-left: 12px;
  padding-right: 12px;
}

.fs-26{font-size: 26px;}

.lh-18{line-height: 18px;}
.lh-36{line-height: 36px;}

.opacity-70{opacity: 0.7;}

.w-max-content{width: max-content;}

.max-w-320{max-width: 320px;}
.max-w-324{max-width: 324px;}
.max-w-350{max-width: 350px;}
.max-w-600{max-width: 600px;}
.max-w-750{max-width: 750px;}

.fw-400{font-weight: 400;}
.fw-500{font-weight: 500;}

.radius-10{border-radius: 10px;}

.color-danger-4{color: #FF3434;}

.gap-6 {
  gap: 6px;
}

.gap-7 {
  gap: 7px;
}

.gap-12 {
  gap: 12px;
}

.gap-14 {
  gap: 14px;
}

.gap-18 {
  gap: 18px;
}

.gap-25 {
  gap: 25px;
}

.gx-26 {
  --bs-gutter-x: 26px;
}

.gx-20{
  --bs-gutter-x: 20px;
}

.gx-50{
  --bs-gutter-x: 50px;
}

.gy-18 {
  --bs-gutter-y: 18px;
}

.gy-25 {
  --bs-gutter-y: 25px;
}

.gy-40 {
  --bs-gutter-y: 40px;
}

/* =============15-10-2024================== */

.pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.pagination-pages-list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-control-pagination{
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: var(--shadow-2);
    border-radius: 50%;

}

.pagination-pages-list .btn{
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: var(--shadow-2);
    border-radius: 50%;
    color: var(--primary-2);
}

.pagination-pages-list .btn.--active{
  background-color: var(--primary-2);
  color: var(--white);
}

.pagination-dots{
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.specs-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}