.rent {
  margin: 60px 0; }
  .rent-header__title {
    font-size: clamp(2rem, calc(2rem + 2.071197411vw), 4rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px; }
    @media (max-width: 500px) {
      .rent-header__title {
        margin-bottom: 10px; } }
  .rent-header__block {
    display: grid;
    grid-template-columns: 430px 270px;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1); }
    @media (max-width: 500px) {
      .rent-header__block {
        margin-bottom: 80px;
        padding-bottom: 0;
        border: none; } }
  .rent-header__info {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #999999; }
    .rent-header__info--desktop {
      display: none; }
    @media (max-width: 500px) {
      .rent-header__info--mobile {
        display: none; } }
    @media (max-width: 500px) {
      .rent-header__info--desktop {
        display: block; } }
  .rent__accent {
    color: #3399FF; }
  .rent-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 30px; }
    @media (max-width: 500px) {
      .rent-advantages--mobile {
        display: none; } }
    .rent-advantages__item {
      display: flex;
      flex-direction: column;
      gap: 5px; }
    .rent-advantages__number {
      font-size: clamp(1.5rem, calc(1.5rem + 0.5177993528vw), 2rem);
      font-weight: 600;
      line-height: 1;
      color: #3399FF; }
    .rent-advantages__info {
      font-size: clamp(0.625rem, calc(0.625rem + 0.1294498382vw), 0.75rem);
      font-weight: 400;
      line-height: 1;
      color: #999999; }

.form__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px; }
  @media (max-width: 500px) {
    .form__steps--mobile {
      display: none; } }
  .form__steps-separator {
    background-color: rgba(51, 51, 51, 0.1);
    width: 20px;
    height: 2px; }

.form__step-tab {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #999999;
  transition: all 0.2s;
  cursor: pointer; }
  .form__step-tab-number {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D9D9D7;
    border-radius: 100%;
    color: #999999;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.1; }
  .form__step-tab-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.1;
    color: #999999; }
  .form__step-tab--active .form__step-tab-number {
    background-color: #3399FF;
    color: #ffffff; }
  .form__step-tab--active .form__step-tab-title {
    color: #3399FF; }
  .form__step-tab--completed .form__step-tab-number {
    background-color: #00D066;
    color: #ffffff; }
  .form__step-tab--completed .form__step-tab-title {
    color: #00D066; }

.form__content {
  display: none;
  animation: fade 0.25s ease;
  margin-top: 30px; }
  @media (max-width: 500px) {
    .form__content--indent.form__content {
      padding: 0; } }
  .form__content--active {
    display: block; }
  .form__content-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 20px;
    text-align: left; }
    @media (max-width: 500px) {
      .form__content-title {
        padding-left: 10px; } }

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(5px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; }
  @media (max-width: 500px) {
    .options-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px; } }

.option-card {
  width: 200px;
  height: 200px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s; }
  @media (max-width: 500px) {
    .option-card {
      width: 100%;
      height: 100px;
      padding: 20px; }
      .option-card[data-tech="manipulator"] {
        grid-column: 1 / -1; }
        .option-card[data-tech="manipulator"] .option-card__icon {
          height: 130px;
          width: 159px;
          position: absolute;
          bottom: 0; }
        .option-card[data-tech="manipulator"] .option-card__title {
          text-align: right; }
      .option-card[data-tech="longreach"] {
        grid-column: 1 / -1; }
        .option-card[data-tech="longreach"] .option-card__icon {
          height: 108px;
          width: 280px;
          position: absolute;
          bottom: 0;
          left: 0; }
        .option-card[data-tech="longreach"] .option-card__title {
          text-align: right; }
      .option-card[data-tech="aerial"] {
        height: auto; }
        .option-card[data-tech="aerial"] .option-card__icon {
          height: 108px;
          width: 142px;
          position: absolute;
          bottom: 20px;
          right: 20px; }
        .option-card[data-tech="aerial"] .option-card__title {
          text-align: right; }
      .option-card[data-tech="excavator"] .option-card__icon {
        height: 90px;
        width: 127px;
        position: absolute;
        bottom: 2px;
        right: 2px; }
      .option-card[data-tech="excavator"] .option-card__title {
        text-align: left;
        width: 60%; }
      .option-card[data-tech="autocrane"] .option-card__icon {
        height: 90px;
        width: 127px;
        position: absolute;
        bottom: 2px;
        left: 2px; }
      .option-card[data-tech="autocrane"] .option-card__title {
        text-align: right; } }
  @media (max-width: 390px) {
    .option-card[data-tech="excavator"] .option-card__icon {
      height: 70px;
      width: 105px; }
    .option-card[data-tech="autocrane"] .option-card__icon {
      height: 63px;
      width: 83px; }
    .option-card[data-tech="longreach"] .option-card__icon {
      height: 98px;
      width: 220px; } }
  .option-card__title {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    line-height: 1.1;
    text-align: left; }
    @media (max-width: 500px) {
      .option-card__title {
        font-size: 12px; }
        .option-card__title--type-right {
          text-align: right;
          width: 68%;
          margin-left: auto; } }
  .option-card__icon {
    height: 130px; }
    @media (max-width: 500px) {
      .option-card__icon--type-right {
        height: 90px;
        width: 110px;
        position: absolute;
        right: 4px;
        bottom: 4px; }
      .option-card__icon--type-left {
        height: 90px;
        width: 75px;
        position: absolute;
        left: 6px;
        top: 50%;
        transform: translateY(-50%); } }
    @media (max-width: 390px) {
      .option-card__icon--type-right {
        height: 78px;
        width: 100px; }
      .option-card__icon--type-left {
        height: 90px;
        width: 75px; } }
    .option-card__icon-img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .option-card--inactive {
    background-color: #ffffff;
    opacity: 1; }
  .option-card--active {
    background-color: #3399FF; }
    .option-card--active .option-card__title {
      color: #ffffff; }
  .option-card__flex {
    display: flex;
    gap: 20px; }
    @media (max-width: 500px) {
      .option-card__flex {
        flex-direction: column;
        gap: 10px; } }

.nav-buttons {
  display: flex;
  margin-top: 30px;
  gap: 20px; }
  @media (max-width: 500px) {
    .nav-buttons {
      flex-direction: column;
      gap: 10px;
      margin-top: 30px; } }

.btn {
  border-radius: 60px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  transition: 0.15s;
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media (max-width: 500px) {
    .btn {
      width: 100%;
      border-radius: 10px;
      height: 50px; } }

@media (max-width: 768px) {
  #selectedTechCard {
    margin-bottom: 30px; }
    #selectedTechCard .option-card[data-tech="excavator"] .option-card__icon {
      height: 127px;
      width: 178px;
      position: absolute;
      bottom: 2px;
      left: 2px; }
    #selectedTechCard .option-card[data-tech="excavator"] .option-card__title {
      text-align: right;
      width: 100%; }
    #selectedTechCard .option-card[data-tech="autocrane"] .option-card__icon {
      height: 127px;
      width: 168px;
      position: absolute;
      bottom: 2px;
      left: 2px; }
    #selectedTechCard .option-card[data-tech="autocrane"] .option-card__title {
      text-align: right;
      width: 100%; }
    #selectedTechCard .option-card[data-tech="aerial"] {
      height: 100px; }
      #selectedTechCard .option-card[data-tech="aerial"] .option-card__icon {
        height: 138px;
        width: 182px;
        position: absolute;
        bottom: 2px;
        left: 2px; }
      #selectedTechCard .option-card[data-tech="aerial"] .option-card__title {
        text-align: right;
        width: 100%; } }

.btn--primary {
  background: #3399FF;
  color: #ffffff; }

.btn--primary:hover {
  opacity: .9; }

.btn--secondary {
  background: #D9D9D7;
  color: #999999; }

.btn--disabled {
  background: #D9D9D7;
  color: #999999;
  cursor: not-allowed; }

.param-block {
  margin-bottom: 20px; }
  .param-block__title {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #000000; }
    @media (max-width: 500px) {
      .param-block__title {
        padding-left: 10px; } }
    .param-block__title-small {
      font-size: 12px;
      font-weight: 400;
      line-height: 1.1;
      color: #000000; }
      @media (max-width: 500px) {
        .param-block__title-small {
          padding-left: 10px; }
          .param-block__title-small:not(:first-child) {
            display: none; } }
  .param-block__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; }
    .param-block__list:not(:last-child) {
      margin-bottom: 20px; }
    @media (max-width: 500px) {
      .param-block__list {
        flex-wrap: nowrap;
        overflow-x: scroll; }
        .param-block__list::-webkit-scrollbar {
          display: none; } }
    .param-block__list--multiple {
      width: 50%; }
      @media (max-width: 500px) {
        .param-block__list--multiple {
          width: 100%;
          display: grid;
          grid-template-columns: 1fr 1fr; } }
    @media (max-width: 500px) {
      .param-block__list--dop {
        display: flex;
        flex-direction: column;
        gap: 10px; } }
  .param-block__left--clickable {
    background-color: #fff;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 0 20px; }
    @media (max-width: 500px) {
      .param-block__left--clickable {
        height: 50px; } }
    .param-block__left--clickable .param-block__title {
      font-size: 12px;
      font-weight: 400;
      line-height: 1.1;
      color: #000000;
      margin-bottom: 0; }
  .param-block__left--active {
    background-color: #3399FF; }
    .param-block__left--active .param-block__title {
      color: #ffffff; }
  .param-block__item--flex {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-bottom: 10px !important; }
    @media (max-width: 500px) {
      .param-block__item--flex {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px !important; } }
  .param-block__item:not(:last-child) {
    margin-bottom: 20px; }

@media (max-width: 500px) {
  #tariffGroup {
    flex-wrap: wrap;
    overflow: unset;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1); }
    #tariffGroup .param-chip--big {
      width: 100%;
      height: 100px;
      position: relative;
      padding: 20px;
      display: block; }
      #tariffGroup .param-chip--big:nth-child(1) .param-chip__icon {
        width: 84px;
        height: 89px;
        position: absolute;
        right: 2px;
        top: 50%;
        transform: translateY(-50%); }
      #tariffGroup .param-chip--big:nth-child(1) .param-chip__title {
        margin: 0; }
      #tariffGroup .param-chip--big:nth-child(2) .param-chip__icon {
        width: 57px;
        height: 76px;
        position: absolute;
        left: 2px;
        top: 50%;
        transform: translateY(-50%); }
      #tariffGroup .param-chip--big:nth-child(2) .param-chip__title {
        margin: 0;
        text-align: right; }
      #tariffGroup .param-chip--big:nth-child(3) .param-chip__icon {
        width: 66px;
        height: 63px;
        position: absolute;
        left: 2px;
        top: 50%;
        transform: translateY(-50%); }
      #tariffGroup .param-chip--big:nth-child(3) .param-chip__title {
        margin: 0;
        text-align: right; } }

@media (max-width: 500px) {
  #formatGroup {
    flex-wrap: wrap;
    overflow: unset;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1); }
    #formatGroup .param-chip--info {
      width: 100%;
      height: 140px;
      position: relative;
      padding: 20px 10px;
      display: block; }
      #formatGroup .param-chip--info:nth-child(1) .param-chip__icon {
        width: 70px;
        height: 71px;
        position: absolute;
        right: 2px;
        top: 4px; }
      #formatGroup .param-chip--info:nth-child(1) .param-chip__title {
        margin-bottom: 50px; }
      #formatGroup .param-chip--info:nth-child(2) .param-chip__icon {
        width: 130px;
        height: 78px;
        position: absolute;
        left: 2px;
        top: 4px; }
      #formatGroup .param-chip--info:nth-child(2) .param-chip__title {
        margin-bottom: 50px;
        text-align: right; } }

@media (max-width: 500px) {
  #paymentGroup {
    flex-wrap: wrap;
    overflow: unset;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px; }
    #paymentGroup .param-chip--big {
      width: 100%;
      height: 100px;
      position: relative;
      padding: 20px;
      display: block; }
      #paymentGroup .param-chip--big:nth-child(1) .param-chip__icon {
        width: 86px;
        height: 54px;
        position: absolute;
        right: 2px;
        bottom: 15px; }
      #paymentGroup .param-chip--big:nth-child(1) .param-chip__title {
        margin: 0;
        text-align: left; }
      #paymentGroup .param-chip--big:nth-child(2) .param-chip__icon {
        width: 68px;
        height: 58px;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%); }
      #paymentGroup .param-chip--big:nth-child(2) .param-chip__title {
        margin: 0;
        text-align: right; }
      #paymentGroup .param-chip--big:nth-child(3) {
        grid-column: 1 / -1; }
        #paymentGroup .param-chip--big:nth-child(3) .param-chip__icon {
          width: 79px;
          height: 77px;
          position: absolute;
          left: 30px;
          top: 50%;
          transform: translateY(-50%); }
        #paymentGroup .param-chip--big:nth-child(3) .param-chip__title {
          margin: 0;
          text-align: right; } }

.param-chip {
  height: 40px;
  min-width: 40px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.1s;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  color: #000000;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px; }
  @media (max-width: 500px) {
    .param-chip {
      width: 50px;
      height: 50px;
      flex-shrink: 0; } }
  .param-chip--mininput {
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    align-items: start;
    gap: 5px;
    padding: 0; }
    @media (max-width: 500px) {
      .param-chip--mininput {
        width: 100%; } }
  .param-chip__mintitle {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #000000; }
    @media (max-width: 500px) {
      .param-chip__mintitle {
        padding-left: 10px; } }
  .param-chip__input {
    width: 200px;
    height: 40px;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 12px;
    background: white;
    color: #000000;
    transition: all 0.2s; }
    @media (max-width: 500px) {
      .param-chip__input {
        width: 100%;
        height: 40px;
        flex-shrink: 0; } }
  .param-chip--big {
    width: 200px;
    height: 200px;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
    cursor: pointer;
    transition: all 0.2s; }
  .param-chip--active {
    background-color: #3399FF;
    color: #ffffff; }
    .param-chip--active .param-chip__list-item {
      color: #ffffff; }
    .param-chip--active .param-chip__list-item:before {
      background-color: #ffffff; }
  .param-chip--disabled {
    background: #D9D9D7;
    color: #999999;
    cursor: not-allowed;
    opacity: 0.6; }
  .param-chip--info {
    gap: 10px; }
  .param-chip__title {
    width: 100%;
    margin-top: auto; }
  .param-chip__icon {
    height: 130px;
    width: 100%;
    text-align: center; }
    .param-chip__icon--info {
      max-height: 100px;
      width: 100%;
      text-align: center; }
    .param-chip__icon-img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .param-chip__list {
    display: flex;
    flex-direction: column; }
    .param-chip__list-item {
      font-size: 8px;
      font-weight: 400;
      line-height: normal;
      color: #000000;
      position: relative;
      padding-left: 5px; }
      @media (max-width: 390px) {
        .param-chip__list-item {
          font-size: 7px; } }
      .param-chip__list-item:before {
        position: absolute;
        content: '';
        width: 3px;
        height: 3px;
        background-color: #000000;
        border-radius: 100%;
        left: 0;
        top: 43%;
        transform: translate(-43%); }
      .param-chip__list-item--bold {
        font-weight: 700; }
  .param-chip--multiple {
    width: 180px; }
    @media (max-width: 500px) {
      .param-chip--multiple {
        width: 100%; } }

.param-chip--selected {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3); }

.tech-special {
  display: flex;
  flex-direction: column;
  gap: 24px; }

.tech-special__row {
  background: #f9fafb;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s; }

.tech-special__row--active .tech-special__header {
  color: #2563eb;
  border-bottom-color: #2563eb; }

.tech-special__header {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s; }

.tech-special__capacity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px; }

.tech-special__capacity-chip {
  padding: 10px 22px;
  background: #f1f3f5;
  border: 1px solid #e2e8f0;
  border-radius: 60px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.1s;
  color: #94a3b8;
  opacity: 0.6; }

.tech-special__capacity-chip--active {
  background: white;
  border-color: #cbd5e1;
  color: #0f172a;
  opacity: 1;
  cursor: pointer; }

.tech-special__capacity-chip--selected {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
  opacity: 1; }

.row-fields {
  display: grid;
  grid-template-columns: 370px 370px;
  gap: 30px; }
  @media (max-width: 500px) {
    .row-fields {
      display: flex;
      flex-direction: column;
      gap: 20px; } }
  .row-fields__column {
    display: flex;
    flex-direction: column;
    gap: 30px; }
  .row-fields__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 20px;
    text-align: left; }

.form-field__input, .form-field__textarea, .form-field__select {
  width: 100%;
  height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 12px;
  background: white;
  color: #000000;
  transition: all 0.2s; }
  .form-field__input:not(:last-child), .form-field__textarea:not(:last-child), .form-field__select:not(:last-child) {
    margin-bottom: 10px; }
  .form-field__input::placeholder, .form-field__textarea::placeholder, .form-field__select::placeholder {
    font-size: 12px;
    color: #999999; }
.form-field__textarea {
  height: 110px;
  resize: unset;
  padding: 20px; }

.form-field__input:focus, .form-field__textarea:focus, .form-field__select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }

.datetime-wrapper {
  position: relative;
  display: flex;
  align-items: center; }

.datetime-wrapper__input {
  padding-left: 48px; }

.datetime-wrapper__icon {
  position: absolute;
  left: 16px;
  pointer-events: none;
  font-size: 20px;
  color: #6b7280; }

@media (max-width: 700px) {
  .form__content {
    padding: 24px 16px; }

  .option-card {
    min-width: 140px; } }
@media (max-width: 500px) {
  .param-block[data-tech-type="aerial"] .param-block__item:not(:last-child), .param-block[data-tech-type="longreach"] .param-block__item:not(:last-child) {
    margin-bottom: 10px !important; } }
.modal-overlay-new {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000; }
  .modal-overlay-new .modal {
    background: white;
    border-radius: 16px;
    padding: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center; }
    .modal-overlay-new .modal h3 {
      font-style: normal;
      font-weight: 700;
      font-size: 26px;
      line-height: 30px;
      color: #000000;
      padding-right: 35px;
      margin-bottom: 20px; }
  .modal-overlay-new .close-modal {
    background: none;
    border: none;
    cursor: pointer; }
    .modal-overlay-new .close-modal svg {
      width: 15px;
      height: 15px; }
  .modal-overlay-new .btn_flex {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px; }
  .modal-overlay-new .btn_flex a, .modal-overlay-new .btn_flex button {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    border: none; }
  .modal-overlay-new .btn_flex .blue_btn {
    background: #6c757d;
    color: white; }
  .modal-overlay-new .btn_flex .del_btn {
    background: #0066cc;
    color: white; }
  .modal-overlay-new .btn_flex .del_btn:last-child {
    background: #00D066; }

#authModal .btn_flex_new {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px; }
#authModal .del_btn_regis {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #999999;
  transition: color .3s ease-in-out; }
  #authModal .del_btn_regis:hover {
    color: #3399FF; }

/*# sourceMappingURL=main.css.map */
