.home-vehicle-ui {
  --home-ui-field-bg: #333333;
  --home-ui-field-bg-hover: #323436;
  --home-ui-field-border: #3a3c3e;
  --home-ui-icon-bg: #1e1f20;
  --home-ui-switch-bg: #262728;
  --home-ui-switch-border: #404244;
  --home-ui-text: #fff;
  --home-ui-text-muted: #a8adb4;
  --home-ui-text-dim: #8a9099;
  --home-ui-icon: #b8bcc2;
}

.home-vehicle-selected.home-vehicle-ui {
  width: 100%;
  margin: 0 0 14px;
  display: flex;
  align-items: stretch;
  min-height: 44px;
  gap: 0;
  box-sizing: border-box;
}

.home-vehicle-selected__card {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 14px;
  min-width: 0;
  min-height: 44px;
  box-sizing: border-box;
  color: var(--home-ui-text);
  text-decoration: none;
  cursor: pointer;
  background: var(--home-ui-field-bg);
  border: 1px solid var(--home-ui-field-border);
  border-radius: 2px;
  transition: background 0.15s;
}

.home-vehicle-selected__card:hover,
.home-vehicle-selected__card:focus {
  background: var(--home-ui-field-bg-hover);
  color: var(--home-ui-text);
  text-decoration: none;
  outline: none;
}

.home-vehicle-selected__actions {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  gap: 0;
  margin-left: 7px;
}

.home-vehicle-selected__action-label {
  display: inline;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: inherit;
}

.home-vehicle-selected__catalog,
.home-vehicle-selected__edit {
  flex: 0 0 auto;
  width: auto;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--home-ui-field-border);
  border-radius: 2px;
  background: var(--home-ui-field-bg);
  color: var(--home-ui-icon);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  transition: color 0.15s, background 0.15s;
}

@media (max-width: 999.98px) {
  .home-vehicle-selected.home-vehicle-ui {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .home-vehicle-selected__card {
    width: 100%;
  }

  .home-vehicle-selected__actions {
    margin-left: 0;
    width: 100%;
    gap: 8px;
  }

  .home-vehicle-selected__catalog,
  .home-vehicle-selected__edit {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 10px;
  }

  .home-vehicle-selected__edit {
    margin-left: 0;
  }
}

@media (min-width: 1000px) {
  .home-vehicle-selected__catalog,
  .home-vehicle-selected__edit {
    flex: 0 0 auto;
    padding: 0 14px;
  }

  .home-vehicle-selected__edit {
    margin-left: 7px;
  }
}

.home-vehicle-selected__catalog {
  text-decoration: none;
}

.home-vehicle-selected__catalog:hover,
.home-vehicle-selected__catalog:focus,
.home-vehicle-selected__edit:hover,
.home-vehicle-selected__edit:focus {
  color: var(--home-ui-text);
  background: var(--home-ui-field-bg-hover);
  outline: none;
  text-decoration: none;
}

.home-vehicle-selected__catalog svg,
.home-vehicle-selected__edit svg {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-vehicle-selected__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--home-ui-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.home-vehicle-selected__icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.home-vehicle-selected__info {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.home-vehicle-selected__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--home-ui-text);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-vehicle-selected__subtitle {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
  color: var(--home-ui-text-muted);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.voiturep-vehicle-selected-wrap {
  width: 100%;
  margin-bottom: 1rem;
}
