#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter
  .li_filter
  .brand
  img {
  max-height: 33px !important;
  width: 100%;
}

#container_filters_sp * {
  font-family: "Gotham Book", sans-serif;
}

#container_filters_sp .content_filters {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 1rem;
}

#container_filters_sp .content_filters .father_li_filter {
  display: flex;
  flex-direction: column;
  position: relative;
}

#container_filters_sp .content_filters .father_li_filter .label_filter p {
  font-size: 16px;
  margin: 0;
  color: #000;
  font-weight: 500;
  font-family: "Gotham Book";
  text-transform: uppercase;
}

#container_filters_sp .content_filters .father_li_filter .label_filter svg {
  width: 16px;
  height: 16px;
  fill: #ef3e29;
  rotate: 90deg;
}

#container_filters_sp .content_filters .father_li_filter .label_filter {
  background: #fff;
  display: flex;
  padding: 6px 14px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #383d49;
  cursor: pointer;
  transition: 0.25s;
  border-radius: 0px;
  gap: 0.5rem;
}

#container_filters_sp .content_filters .father_li_filter .label_filter:hover,
#container_filters_sp .content_filters .father_li_filter.active .label_filter {
  background: #1e1e1e0f;
}

#container_filters_sp.sticky
  .content_filters
  .father_li_filter
  .label_filter:hover,
#container_filters_sp.sticky
  .content_filters
  .father_li_filter.active
  .label_filter {
  background: #fff;
}

#container_filters_sp .content_filters .father_li_filter .bodycontent_filter {
  position: absolute;
  min-width: 300px;
  max-width: 400px;
  left: 0px;
  background: #fff;
  border: 1px solid #1e1e1e36;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 375px;
  transition: 0.25s;
  transform: translateY(64px);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-radius: 0px;
  top: calc(100% + 32px);
}

#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter
  .li_filter {
  display: flex;
  gap: 0.5rem;
}

#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter
  .li_filter
  .check {
  flex: 0 0 26px;
}

#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter
  .li_filter
  .check
  label {
  padding: 0;
}

.container {
  --input-focus: #f6d42f;
  --input-out-of-focus: #cfcfcf;
  --bg-color: #1e1e1e;
  --bg-color-alt: #666;
  --main-color: #323232;
  position: relative;
  cursor: pointer;
}

.container input {
  position: absolute;
  opacity: 0;
}

.checkmark {
  width: 22px;
  height: 22px;
  position: relative;
  top: 0;
  left: 0;
  border: aliceblue;
  border-radius: 5px;
  background-color: var(--input-out-of-focus);
  transition: all 0.3s;
}

.container input:checked ~ .checkmark {
  background-color: #ef3e29;
}

.checkmark:after {
  content: "";
  width: 7px;
  height: 12px;
  position: absolute;
  top: 3px;
  left: 8px;
  display: none;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.container input:checked ~ .checkmark:after {
  display: block;
}

#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter
  .li_filter
  .text_filter
  span {
  font-size: 14px;
  font-weight: 500;
  color: #ef3e29;
  text-transform: uppercase;
}

#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter
  .li_filter
  .text_filter {
  flex: 1 1 50%;
}

#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter
  .ov {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  overflow: auto;
  padding-bottom: 0.5rem;
}

#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter
  .ov::-webkit-scrollbar {
  width: 6px;
  background: #1e1e1e30;
}

#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter
  .ov::-webkit-scrollbar-thumb {
  width: 6px;
  background: #1e1e1e96;
}

#container_filters_sp
  .content_filters
  .father_li_filter.active
  .bodycontent_filter {
  opacity: 1;
  visibility: visible;
  z-index: 110;
  transform: translateY(0px);
}

#container_filters_sp
  .content_filters
  .father_li_filter.active
  .bodycontent_filter
  .quit_filter {
  position: absolute;
  width: 1.75rem;
  height: 1.75rem;
  right: -0.75rem;
  top: -1.25rem;
  background: #ef3e29;
  z-index: 10;
  cursor: pointer;
  transition: 0.25s;
  border-radius: 50%;
}

#container_filters_sp
  .content_filters
  .father_li_filter.active
  .bodycontent_filter
  .quit_filter:after,
#container_filters_sp
  .content_filters
  .father_li_filter.active
  .bodycontent_filter
  .quit_filter:before {
  content: "";
  width: 1.25rem;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
}

#container_filters_sp
  .content_filters
  .father_li_filter.active
  .bodycontent_filter
  .quit_filter:after {
  transform: translate(-50%) rotate(-45deg);
}

#container_filters_sp
  .content_filters
  .father_li_filter.active
  .bodycontent_filter
  .quit_filter:hover {
  scale: 0.875;
}

#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter.range
  .ov {
  overflow: hidden;
  padding: 24px 18px;
}

#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter.range {
  min-width: 350px;
  max-width: 450px;
}

.irs--big .irs-from,
.irs--big .irs-to,
.irs--big .irs-single {
  background: #ef3e29 !important;
  color: #fff !important;
  font-weight: 600;
}

.irs--big .irs-handle {
  border: none !important;
  background: #ef3e29 !important;
  box-shadow: none !important;
}

.irs--big .irs-bar {
  border: #ef3e29 !important;
  background: #ef3e29 !important;
  border: #1e1e1e !important;
}

.irs--big .irs-line {
  background: #1e1e1e3d !important;
}

.empty_posts_list_filter_sp {
  display: inline-block;
  background: #ececec;
  padding: 10px 30px;
}

.empty_posts_list_filter_sp p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

#container_list_posts_filter_sp * {
  font-family: "Gotham Book", sans-serif;
}

#container_list_posts_filter_sp .container_list_filters {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#container_list_posts_filter_sp .container_list_filters .body_list_filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
  margin-top: 4rem;
}

.vehicle_item {
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1rem;
  border-bottom: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.vehicle_item .head {
  flex: 1 0 250px;
  overflow: hidden;
  position: relative;
}

.vehicle_item .body {
  gap: 1rem;
  flex: 1 1 calc(100% - 266px);
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 0 16px 16px 0;
  position: relative;
  overflow: hidden;
}

.vehicle_item .body .l > div svg,
.vehicle_item .body .l > a svg {
  width: 1rem;
  height: 1rem;
  fill: #fff;
  transition: 0.25s;
}

.vehicle_item .body .r {
  display: flex;
  flex-direction: column;
}

.vehicle_item .body .r .f2 {
  font-size: 24px;
  font-weight: 600;
  color: #1e1e1e;
  flex: 1 0 35px;
  margin-bottom: 0.5rem;
}

.vehicle_item .body .r .f1 a {
  font-size: 20px;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.5rem;
}

.vehicle_item .body .r .f1 {
  flex: 1 0 50px;
  margin-bottom: 0.5rem;
}

.vehicle_item .body .r .f3 {
  display: flex;
  gap: 0.5rem;
  flex: 1 0 30px;
}

.vehicle_item .body .r .f3 .tag_list_vehicle {
  background: #1e1e1e1a;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 8px;
}

.vehicle_item .body .l {
  display: flex;
  gap: 1rem;
}

.vehicle_item .body .l > a,
.vehicle_item .body .l > div {
  background: #1e1e1e;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 20px;
  border: 2px solid #1e1e1e;
  color: aliceblue;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: 0.25s;
  flex: 1 1 0;
  border-radius: 8px;
}

.vehicle_item .body .l > a:hover,
.vehicle_item .body .l > div:hover {
  background: transparent;
  color: #1e1e1e;
}

.vehicle_item .body .l > a:hover svg,
.vehicle_item .body .l > div:hover svg {
  fill: #1e1e1e;
  transform: translateX(10px);
}

.vehicle_item .body .l > a {
  background: #f6d42f;
  border-color: #f6d42f;
  color: #1e1e1e;
}

.vehicle_item .body .l > a svg {
  fill: #1e1e1e;
}

.vehicle_item .body .r .f2 span {
  font-size: 14px;
  background: green;
  color: #fff;
  padding: 2px 8px;
  margin-left: 0.25rem;
  border-radius: 8px;
}

.vehicle_item .head a {
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.25s;
}

.vehicle_item .head a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle_item .head a .toggle_img_change_vehicle_card {
  flex: 1 0 250px;
  max-height: 225px;
}

.vehicle_item .head .controls_gallery_card_vehicle {
  position: absolute;
  z-index: 10;
  left: 0;
  background: #1e1e1ead;
  width: 2rem;
  height: 4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 15px 15px 0;
  cursor: pointer;
  transition: 0.25s;
  opacity: 0;
  visibility: hidden;
}

.vehicle_item .head:hover .controls_gallery_card_vehicle {
  opacity: 1;
  visibility: visible;
}

.vehicle_item .head .controls_gallery_card_vehicle svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #fff;
}

.vehicle_item .head .controls_gallery_card_vehicle.next {
  right: 0;
  left: auto;
  border-radius: 15px 0 0 15px;
}

.vehicle_item .head a .controls_gallery_card_vehicle:hover {
  background: #1e1e1e;
}

.vehicle_item * {
  user-select: none;
}

.empty_posts_list_filter_sp {
  display: inline-block;
  background: #ececec;
  padding: 10px 30px;
}

.empty_posts_list_filter_sp p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

/* --------- Alert ----------------- */
#container_alert_admin {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #10101017;
  backdrop-filter: blur(4px);
  top: 0;
  left: 0;
  z-index: 1000;
}

#container_alert_admin .alert {
  background: #fff;
  width: 40%;
  margin: 2rem auto;
  display: flex;
  padding: 16px 24px;
  box-sizing: border-box;
  gap: 1rem;
  position: relative;
}

#container_alert_admin .alert .box_icon {
  flex: 0 0 6%;
  display: flex;
  align-items: center;
}

#container_alert_admin .alert .box_icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

#container_alert_admin .alert .box_text {
  flex: 0 1 88%;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

#container_alert_admin .alert .box_x {
  flex: 0 0 6%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#container_alert_admin .alert .box_x span {
  cursor: pointer;
  height: 2rem;
  width: 2rem;
  position: relative;
  border-radius: 50%;
  transition: 0.25s;
}

#container_alert_admin .alert .box_x span::after,
#container_alert_admin .alert .box_x span::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
}

#container_alert_admin .alert .box_x span::after {
  transform: translate(-50%) rotate(-45deg);
}

#container_alert_admin .alert .box_x span:hover {
  background: #33333329;
}

#container_alert_admin .alert::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 6px;
  background: gray;
  left: 0;
  top: 0;
}

#container_alert_admin .alert.warning::before {
  background: #ef3e29;
}

#container_alert_admin .alert.warning .box_icon svg {
  fill: #ef3e29;
}

#container_alert_admin .alert.success::before {
  background: #08ae08;
}

#container_alert_admin .alert.success .box_icon svg {
  fill: #08ae08;
}

.subbox_field {
  display: flex;
  gap: 1rem;
}

.subbox_field .cfield {
  flex: 1 1 90%;
  display: flex;
  justify-content: flex-start;
}

.subbox_field .cicon {
  flex: 1 1 7%;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.subbox_field .cicon svg {
  width: 2rem;
  height: 2rem;
  fill: #818181;
  transition: 0.25s;
}

.subbox_field .cfield input {
  width: 100%;
  border-radius: 0;
  background: transparent;
  transition: 0.25s;
  outline: none;
  border: none;
  border-bottom: 1px solid #818181;
  color: #f6d42f;
}

/* --------- Alert ----------------- */
/* --------- Loader ----------------- */
#container_loader_ml_us {
  background: #101010ad;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  top: 0;
  left: 0;
}

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

.loader_ml {
  width: 48px;
  height: 48px;
  margin: auto;
  position: relative;
}

.loader_ml:before {
  content: "";
  width: 48px;
  height: 5px;
  background: #f6d42f73;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow324 0.5s linear infinite;
}

.loader_ml:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #f6d42f;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  animation: jump7456 0.5s linear infinite;
}

@keyframes jump7456 {
  15% {
    border-bottom-right-radius: 3px;
  }

  25% {
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }

  75% {
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow324 {
  0%,
  100% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1);
  }
}

#quoe_movil {
  display: none;
}

.quoe_movil_modal {
  display: none;
}

#quoter_ml .content .body .row:last-child label {
  position: relative;
  transform: translateY(0px);
  left: 0;
  top: 0;
  margin-bottom: 1rem;
  font-size: 16px !important;
  line-height: 1.5em;
  color: #1e1e1e;
  display: block;
}

#quoter_ml .content .body .row:last-child label input {
  margin-right: 0.5rem;
}

#quoter_ml .content .body .row:last-child label a {
  font-weight: 600;
  color: #1e1e1e;
  text-decoration: underline;
}

/* --------- Loader ----------------- */
#modal_quote_vehicle_list_ml {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
}

#modal_quote_vehicle_list_ml .content_modal {
  width: 700px;
  display: flex;
  position: relative;
}

#modal_quote_vehicle_list_ml .content_modal .l_side,
#modal_quote_vehicle_list_ml .content_modal .r_side {
  width: 50%;
  box-sizing: border-box;
}

#modal_quote_vehicle_list_ml .content_modal .l_side {
  display: flex;
  position: relative;
  border-radius: 16px 0 0 16px !important;
}

#modal_quote_vehicle_list_ml .content_modal .r_side {
  background: #faf4f4;
  box-sizing: content-box;
  display: flex;
  border-radius: 0 16px 16px 0;
}

#modal_quote_vehicle_list_ml .content_modal .r_side #quoter_ml {
  height: 100%;
  display: flex;
  width: 100%;
}

.quit_modal_quote_list_vehicles_ml {
  position: absolute;
  width: 2rem;
  height: 2rem;
  z-index: 10;
  right: 0;
  top: 0;
  cursor: pointer;
  background: #bb0000;
  border-radius: 50%;
}

#modal_quote_vehicle_list_ml .content_modal .r_side #quoter_ml .head {
  background: #1e1e1e;
  padding: 16px;
  border-radius: 0 16px 0 0;
}

#modal_quote_vehicle_list_ml
  .content_modal
  .r_side
  #quoter_ml
  .head
  .title_quote {
  color: #fff;
  font-size: 20px;
  margin: 0;
}

#modal_quote_vehicle_list_ml .content_modal .r_side #quoter_ml .body {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#modal_quote_vehicle_list_ml .content_modal .r_side #quoter_ml .body .row {
  margin: 0 !important;
}

#modal_quote_vehicle_list_ml .content_modal #quoter_ml .content .body .row {
  border: 2px solid rgba(0, 0, 0, 0.15);
  position: relative;
  border-radius: 16px;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row
  input,
#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row
  textarea {
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  font-weight: 400;
  padding: 0.5rem;
  padding-bottom: 0.25rem;
  position: relative;
  z-index: 10;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row
  label {
  position: absolute;
  font-size: 14px;
  background: #faf4f4;
  padding: 2px 8px;
  left: 0.5rem;
  top: -0.5rem;
  transform: translateY(15px);
  transition: 0.25s;
  font-size: 16px;
  color: #a5a1a1;
  z-index: 10;
  width: auto !important;
}

#modal_quote_vehicle_list_ml .content_modal #quoter_ml .content .body .row,
#modal_quote_vehicle_list_ml .content_modal #quoter_ml .content .body .row * {
  transition: 0.25s;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row.active
  label {
  transform: translateY(-4px);
  color: #1e1e1e;
  font-size: 13px;
  z-index: 11;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row
  textarea {
  height: 100px !important;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row.active {
  border-color: #1e1e1e !important;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row:last-child {
  border: none;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row
  textarea {
  height: 100px !important;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row:last-child {
  border: none;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row
  button {
  background: #f6d42f;
  border: 2px solid #f6d42f;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 600;
  transition: 0.25s;
  padding: 10px 30px;
  outline: none;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row
  button:hover {
  background: #faf4f4;
}

#modal_quote_vehicle_list_ml .content_modal .r_side #quoter_ml .content {
  width: 100%;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row:last-child
  label {
  position: relative;
  transform: translateY(0px);
  left: 0;
  top: 0;
  margin-bottom: 0.5rem;
  font-size: 14px !important;
  line-height: 1.5em;
  color: #1e1e1e;
  display: block;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row:last-child
  label
  input {
  margin-right: 0.25rem;
}

#modal_quote_vehicle_list_ml
  .content_modal
  #quoter_ml
  .content
  .body
  .row:last-child
  label
  a {
  font-weight: 600;
  color: #1e1e1e;
  text-decoration: underline;
}

#modal_quote_vehicle_list_ml .content_modal .l_side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}

#modal_quote_vehicle_list_ml .content_modal .l_side::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1e1e1ea1;
  left: 0;
  top: 0;
  border-radius: 16px 0 0 16px !important;
}

.quit_modal_quote_list_vehicles_ml::before,
.quit_modal_quote_list_vehicles_ml::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 2px;
  background: #fff;
  transform: translate(-50%) rotate(45deg);
  left: 50%;
  top: 50%;
}

.quit_modal_quote_list_vehicles_ml::after {
  transform: translate(-50%) rotate(-45deg);
}

#container_filters_sp .content_filters .father_li_filter.hidefml {
  display: none;
}

.send_range_value_filter {
  width: 100%;
  font-size: 16px !important;
  padding: 8px 16px !important;
  border-radius: 0px !important;
  font-weight: 600;
  color: #fff !important;
  border: 2px solid #000;
  background: #000;
}

.send_range_value_filter:hover,
.send_range_value_filter:active,
.send_range_value_filter:focus {
  color: #000 !important;
  background: transparent !important;
}

#container_list_posts_filter_sp .container_list_filters .head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 16px 0 0 16px;
}

#container_list_posts_filter_sp .container_list_filters .head .count_num_list {
  background: #ef3e29;
  color: #fff;
  margin: 0;
  font-size: 16px;
  padding: 6px 14px;
  font-weight: 600;
  display: inline;
  border-radius: 0px;
  line-height: 1.75rem;
  text-transform: uppercase;
}

#container_list_posts_filter_sp .container_list_filters .head .bottom {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

#container_list_posts_filter_sp
  .container_list_filters
  .head
  .bottom
  .mini_filters {
  background: #ef3e29;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  transition: 0.25s !important;
  border-radius: 0px;
  border: 2px solid #ef3e29;
}

#container_list_posts_filter_sp
  .container_list_filters
  .head
  .bottom
  .mini_filters
  p {
  margin: 0;
}

#container_list_posts_filter_sp
  .container_list_filters
  .head
  .bottom
  .mini_filters
  span {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

#container_list_posts_filter_sp
  .container_list_filters
  .head
  .bottom
  .mini_filters
  span::before,
#container_list_posts_filter_sp
  .container_list_filters
  .head
  .bottom
  .mini_filters
  span::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 2px;
  background: #ef3e29;
  top: 50%;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: 0.25s;
}

#container_list_posts_filter_sp
  .container_list_filters
  .head
  .bottom
  .mini_filters
  span::after {
  transform: translate(-50%) rotate(-45deg);
}

#container_list_posts_filter_sp
  .container_list_filters
  .head
  .bottom
  .mini_filters
  span:hover::after {
  transform: translate(-50%) rotate(45deg);
}

#container_list_posts_filter_sp
  .container_list_filters
  .head
  .bottom
  .mini_filters
  span:hover::before {
  transform: translate(-50%) rotate(-45deg);
}

#container_list_posts_filter_sp
  .container_list_filters
  .head
  .bottom
  .mini_filters:hover {
  background: #ffffff;
  color: #ef3e29;
}

#container_list_posts_filter_sp
  .container_list_filters
  .head
  .bottom
  .mini_filters:hover
  span {
  background: #ef3e29;
}

#container_list_posts_filter_sp
  .container_list_filters
  .head
  .bottom
  .mini_filters:hover
  span::before,
#container_list_posts_filter_sp
  .container_list_filters
  .head
  .bottom
  .mini_filters:hover
  span::after {
  background: #ffffff;
}

.quit_modal_movil_filters_ml {
  display: none;
}

.button_filter_mobile_ml {
  display: none;
}

#posts_list_for_filter_sp_pagination ul {
  padding: 0;
  display: flex;
  gap: 1rem;
}

#posts_list_for_filter_sp_pagination ul li {
  list-style: none;
  background: #fff;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 0px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
}

#posts_list_for_filter_sp_pagination ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #1e1e1e;
}

#posts_list_for_filter_sp_pagination ul li.active {
  background: #ef3e29;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
}

#posts_list_for_filter_sp_pagination ul li.active a {
  color: #ffffff;
}

#posts_list_for_filter_sp_pagination ul li.disabled {
  background: #fff;
}

.sll_dest_vehicle_ml_in_cards svg {
  width: 1rem;
  height: 1rem;
  fill: #1e1e1e;
}

.sll_dest_vehicle_ml_in_cards {
  background: #f6d42f;
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 100;
  color: #1e1e1e;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 8px;
}

#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter
  .li_filter
  .brand {
  flex: 1 1 3rem;
}

#container_filters_sp
  .content_filters
  .father_li_filter
  .bodycontent_filter.more_space
  .ov {
  padding-left: 8px;
  padding-right: 8px;
  overflow-x: hidden;
}

#container_list_posts_filter_sp .container_list_filters .head .top {
  display: flex;
  align-items: center;
}

.field_order_vehicles {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-left: 10px;
}

.field_order_vehicles .box_options_order_vehicles {
  background: #fff;
  position: absolute;
  top: calc(100% + 16px);
  border: 1px solid #cacaca;
  padding: 0;
  width: 100%;
  left: 0;
  border-radius: 0px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.125);
  transition: 0.25s;
  transform: translateY(64px);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.field_order_vehicles > label {
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 0px;
  color: #ef3e29;
  border: 1px solid #c7c7c7;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  cursor: pointer;
  transition: 0.25s;
  user-select: none;
  line-height: 1.75rem;
  text-transform: uppercase;
  flex-direction: row-reverse;
  width: 100%;
}

.field_order_vehicles > label svg {
  width: 16px;
  height: 16px;
  fill: #575757;
}

.field_order_vehicles > label:hover,
.field_order_vehicles.active > label {
  background: #efefef;
}

.field_order_vehicles .box_options_order_vehicles .content_this_order {
  display: flex;
  flex-direction: column;
}

.field_order_vehicles .box_options_order_vehicles .content_this_order span {
  padding: 8px 16px;
  border-radius: 0px;
  color: #ef3e29;
  font-weight: 400;
  font-size: 16px;
  transition: 0.25s;
  cursor: pointer;
  text-align: right;
  border-bottom: 1px solid #000;
}

.field_order_vehicles
  .box_options_order_vehicles
  .content_this_order
  span:hover,
.field_order_vehicles
  .box_options_order_vehicles
  .content_this_order
  span.active {
  color: #fff;
  background: #1e1e1e;
  box-shadow: none;
}

.field_order_vehicles .box_options_order_vehicles > span {
  position: absolute;
  width: 1.75rem;
  height: 1.75rem;
  right: -0.75rem;
  top: -1.25rem;
  background: #ef3e29;
  z-index: 10;
  cursor: pointer;
  transition: 0.25s;
  border-radius: 50%;
}

.field_order_vehicles .box_options_order_vehicles > span:hover {
  scale: 0.85;
}

.field_order_vehicles .box_options_order_vehicles > span::before,
.field_order_vehicles .box_options_order_vehicles > span::after {
  content: "";
  width: 1.25rem;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
}

.field_order_vehicles .box_options_order_vehicles > span::after {
  transform: translate(-50%) rotate(-45deg);
}

.field_order_vehicles.active .box_options_order_vehicles {
  z-index: 45;
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.sell_vehicle_list_2 {
  background: red;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 2px;
  position: absolute;
  width: 200px;
  right: -52px;
  rotate: 28deg;
  top: 15px;
}

#container_filters_sp .content_filters .father_li_filter.hide_brand {
  display: none;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp {
  position: relative;
  height: 100%;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .head {
  width: 100%;
  border-radius: 0px;
  height: 400px;
  margin-bottom: 1rem;
  position: relative;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .head
  a {
  width: 100%;
  height: 100%;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .head
  a
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  height: calc(100% - 400px);
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr1 {
  flex: 1 0 48px;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr1
  a {
  font-size: 24px;
  font-weight: 600;
  font-family: "Gotham Bold", sans-serif;
  line-height: 1.25rem;
  color: #383d49;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr2 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /* gap: 1rem; */
  font-size: 24px;
  font-weight: 400;
  color: #383d49;
  flex: 1 0 25px;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  * {
  font-family: "Gotham Book", sans-serif;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr4
  a {
  background: #ef3e29;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 16px;
  padding: 5px 8px;
  border: 2px solid #ef3e29;
  transition: 0.25s !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  font-family: "Gotham Bold";
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr4
  a:hover {
  background: transparent !important;
  color: red;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr4 {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr3 {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr3
  span {
  font-size: 14px;
  padding: 4px 8px;
  font-family: "Gotham Book", sans-serif;
  cursor: pointer;
  font-weight: 600;
  color: #ef3e29;
  transition: 0.25s !important;
  background: #ef3e2921;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr3
  span:hover,
#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr3
  span.active {
  background: #ef3e29;
  color: #fff;
}

.wrapper {
  width: 200px;
  height: 60px;
  position: relative;
  z-index: 1;
}

.circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  left: 15%;
  transform-origin: 50%;
  animation: circle7124 0.5s alternate infinite ease;
}

@keyframes circle7124 {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}

.circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow046 0.5s alternate infinite ease;
}

@keyframes shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }

  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}

.shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .head
  .loader_in_element {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

.btn_sp.filter_sp {
  position: relative;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .loader_in_element {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.woocommerce .filter_sp_page .loader::before {
  display: none !important;
}

.woocommerce .filter_sp_page .loader {
  display: none !important;
}

.filter_sp_page .loader_in_element .loader {
  display: block !important;
  --height-of-loader: 4px;
  --loader-color: #ef3e29;
  width: 130px;
  height: var(--height-of-loader);
  border-radius: 30px;
  background-color: rgba(255, 255, 255);
  position: relative;
}

.filter_sp_page .loader_in_element .loader::before {
  content: "";
  display: block !important;
  position: absolute;
  background: var(--loader-color);
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 30px;
  animation: moving 1s ease-in-out infinite;
  margin: 0px !important;
}

#container_loader_filter_sp {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #10101017;
  backdrop-filter: blur(4px);
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

#container_loader_filter_sp .loader {
  display: block !important;
  --height-of-loader: 6px;
  --loader-color: #ef3e29;
  width: 230px;
  height: var(--height-of-loader);
  border-radius: 30px;
  background-color: rgba(255, 255, 255);
  position: relative;
}

#container_loader_filter_sp .loader::before {
  content: "";
  display: block !important;
  position: absolute;
  background: var(--loader-color);
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 30px;
  animation: moving 1s ease-in-out infinite;
  margin: 0 !important;
}

@keyframes moving {
  50% {
    width: 100%;
  }

  100% {
    width: 0;
    right: 0;
    left: unset;
  }
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .head
  a
  img {
  transition: 0.25s;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .head
  a
  img:hover {
  scale: 0.95;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters.two_columns {
  grid-template-columns: repeat(2, 1fr);
}

.field_order_vehicles
  .box_options_order_vehicles
  .content_this_order
  span:last-child {
  border: none;
}

#container_filters_sp .content_filters::-webkit-scrollbar {
  height: 6px;
  background: #adafb473;
}

#container_filters_sp .content_filters::-webkit-scrollbar-thumb {
  height: 6px;
  background: #ef3e29;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr3
  span.color {
  background: none;
  padding: 0;
  transition: 0.25s !important;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr3
  span.color
  .circle_variation_color {
  border: 1px solid rgba(0, 0, 0, 0.25);
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr3
  span.color:hover {
  scale: 0.9;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr3
  span.img {
  padding: 0px;
  width: 24px;
  height: 24px;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .body
  .pr3
  span.img
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#posts_list_for_filter_sp_pagination {
  display: flex;
  justify-content: center;
}

.head a .btn_sp.filter_sp {
  background: #ef3e297a;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 16px;
  padding: 18px 8px;
  border: 2px solid transparent;
  transition: 0.25s !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  font-family: "Gotham Bold";
  border-radius: 0px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  outline: none !important;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .head
  a {
  position: relative;
}

.head:hover a .btn_sp.filter_sp {
  opacity: 1;
  visibility: visible;
}

.head a .btn_sp.filter_sp.add_product_to_cart:hover {
  background: #ef3e29;
  border-color: #ef3e29 !important;
}

.content_product_filter_sp .loader_in_element {
  z-index: 20;
}

#container_list_posts_filter_sp
  .container_list_filters
  .body_list_filters
  .content_product_filter_sp
  .head
  a
  .no_stock_replace_btn {
  background: #ef3e29;
  position: absolute;
  white-space: nowrap;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1rem;
  padding: 3px 8px;
  right: 0;
  top: 0;
}

@media (max-width: 1360px) and (min-width: 1201px) {
  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .body
    .pr4
    a {
    font-size: 18px;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .body
    .pr4
    a {
    font-size: 16px;
    line-height: 12px;
  }
}

@media (max-width: 1025px) {
  .head a .btn_sp.filter_sp {
    display: none !important;
  }

  #container_list_posts_filter_sp .container_list_filters .body_list_filters {
    grid-template-columns: repeat(2, 1fr);
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .body
    .pr4
    a {
    font-size: 16px;
    line-height: 12px;
  }

  .btns_list_vehicle_item_ml.quote_vehicle_list {
    white-space: nowrap;
  }

  .field_order_vehicles .box_options_order_vehicles {
    left: -105%;
  }

  #container_filters_sp {
    background: #fff;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    padding: 2rem 1rem;
    top: 0;
    left: 0;
    padding-top: 4rem;
    transition: 0.25s;
    transform: translateX(-100%);
  }

  #container_filters_sp .content_filters {
    height: 100%;
    overflow: auto;
    flex-direction: column;
  }

  #container_filters_sp .content_filters .father_li_filter .bodycontent_filter {
    left: 0;
    max-width: 100%;
    transform: translateY(0px);
  }

  #container_filters_sp
    .content_filters
    .father_li_filter.active
    .bodycontent_filter {
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.125);
  }

  #container_filters_sp
    .content_filters
    .father_li_filter.active
    .bodycontent_filter
    .quit_filter {
    right: 0;
    width: 1.5rem;
    height: 1.5rem;
    top: -1rem;
  }

  #container_filters_sp
    .content_filters
    .father_li_filter.active
    .bodycontent_filter
    .quit_filter:after,
  #container_filters_sp
    .content_filters
    .father_li_filter.active
    .bodycontent_filter
    .quit_filter:before {
    width: 1rem;
  }

  .quit_modal_movil_filters_ml {
    display: flex;
    position: absolute;
    width: 2rem;
    height: 2rem;
    background: #d30808;
    z-index: 10;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    border-radius: 50%;
  }

  .quit_modal_movil_filters_ml::before,
  .quit_modal_movil_filters_ml::after {
    content: "";
    width: 1.5rem;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
  }

  .quit_modal_movil_filters_ml::after {
    transform: translate(-50%) rotate(-45deg);
  }

  .button_filter_mobile_ml {
    display: flex;
    position: fixed;
    bottom: 2rem;
    right: 0.75rem;
    z-index: 100;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.125);
    padding: 8px 16px !important;
    font-size: 18px !important;
    color: #fff !important;
    font-weight: 500 !important;
    background: #ef3e29 !important;
    border: 2px solid #ef3e29 !important;
    line-height: 1.75rem;
    transition: 0.25s !important;
    align-items: center;
  }

  .button_filter_mobile_ml svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    fill: #fff;
  }

  #container_filters_sp.active {
    transform: translateX(0);
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .head
    .bottom
    .mini_filters {
    font-size: 12px;
    padding: 4px 12px;
    gap: 0.25rem;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .head
    .bottom
    .mini_filters
    span {
    width: 1rem;
    height: 1rem;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .head
    .bottom
    .mini_filters
    span::before,
  #container_list_posts_filter_sp
    .container_list_filters
    .head
    .bottom
    .mini_filters
    span::after {
    width: 0.5rem;
  }

  #container_list_posts_filter_sp .container_list_filters .head .bottom {
    gap: 0.5rem;
  }

  #container_filters_sp .content_filters .father_li_filter .bodycontent_filter {
    top: calc(100% + 20px);
  }
}

@media (max-width: 767px) {
  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .head
    a
    .no_stock_replace_btn {
    font-size: 12px;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters.two_columns {
    grid-template-columns: 1fr;
    padding: 0 10%;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .body
    .pr3
    span.color
    .circle_variation_color {
    width: 16px;
    height: 16px;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .body
    .pr3
    span.img {
    width: 16px;
    height: 16px;
  }

  .field_order_vehicles > label {
    font-size: 10px;
    gap: 0.5rem;
    padding: 2px 6px;
  }

  .field_order_vehicles .box_options_order_vehicles .content_this_order span {
    font-size: 12px;
  }

  .field_order_vehicles .box_options_order_vehicles .content_this_order {
    gap: 0px;
  }

  .field_order_vehicles .box_options_order_vehicles {
  }

  .empty_posts_list_filter_sp p {
    font-size: 12px;
  }

  .empty_posts_list_filter_sp {
    padding: 6px 12px;
  }

  .card_slide_vehicle_ml .head {
    height: 100px;
  }

  .empty_posts_list_filter_sp p {
    font-size: 12px;
  }

  .empty_posts_list_filter_sp {
    padding: 6px 12px;
  }

  .vehicle_item {
    flex-direction: column;
    gap: 0;
  }

  .sell_vehicle_list_2 {
    font-size: 12px;
    right: -58px;
    top: 13px;
  }

  .vehicle_item .head {
    width: 100%;
    flex: 1 0 200px;
    max-height: 200px;
  }

  .vehicle_item .body {
    flex: 1;
    gap: 1rem;
    padding: 0.5rem 1rem;
  }

  .vehicle_item .body .r .f2 {
    font-size: 18px;
    flex: 1 0 27px;
  }

  .vehicle_item .body .r .f2 span {
    font-size: 12px;
    padding: 2px 6px;
  }

  .vehicle_item .body .r .f1 a {
    font-size: 16px;
  }

  .vehicle_item .body .r .f1 {
    flex: 1 0 50px;
  }

  .vehicle_item .body .r .f3 .tag_list_vehicle {
    font-size: 12px;
    padding: 2px 6px;
    line-height: normal;
  }

  .vehicle_item .body .l {
    flex-direction: column;
    gap: 0.5rem;
  }

  .vehicle_item .body .l > a,
  .vehicle_item .body .l > div {
    font-size: 13px;
  }

  .vehicle_item {
    border-bottom: none;
  }

  .vehicle_item .head a .toggle_img_change_vehicle_card {
    flex: 1 0 100%;
    max-height: 200px;
  }

  .vehicle_item .head .controls_gallery_card_vehicle {
    opacity: 1;
    visibility: visible;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .head
    .count_num_list {
    font-size: 10px !important;
    padding: 2px 6px;
  }

  #container_filters_sp {
    background: #fff;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    padding: 2rem 1rem;
    top: 0;
    left: 0;
    padding-top: 4rem;
    transition: 0.25s;
    transform: translateX(-100%);
  }

  #container_filters_sp .content_filters {
    height: 100%;
    overflow: auto;
  }

  #container_filters_sp .content_filters .father_li_filter .bodycontent_filter {
    left: 0;
    max-width: 100%;
    transform: translateY(0px);
  }

  #container_filters_sp
    .content_filters
    .father_li_filter.active
    .bodycontent_filter {
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.125);
    max-width: 100%;
    min-width: 290px;
    width: 100%;
  }

  #container_filters_sp
    .content_filters
    .father_li_filter.active
    .bodycontent_filter
    .quit_filter {
    right: 0;
    width: 1.5rem;
    height: 1.5rem;
    top: -1rem;
  }

  #container_filters_sp
    .content_filters
    .father_li_filter.active
    .bodycontent_filter
    .quit_filter:after,
  #container_filters_sp
    .content_filters
    .father_li_filter.active
    .bodycontent_filter
    .quit_filter:before {
    width: 1rem;
  }

  .quit_modal_movil_filters_ml {
    -webkit-font-smoothing: subpixel-antialiased;
    display: flex;
    position: absolute;
    width: 2rem;
    height: 2rem;
    background: #ef3e29;
    z-index: 10;
    top: 1rem;
  }

  .quit_modal_movil_filters_ml::before,
  .quit_modal_movil_filters_ml::after {
    content: "";
    width: 1.5rem;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
  }

  .quit_modal_movil_filters_ml::after {
    transform: translate(-50%) rotate(-45deg);
  }

  .button_filter_mobile_ml {
    display: flex;
    position: fixed;
    bottom: 2rem;
    right: 0.75rem;
    z-index: 100;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.125);
    padding: 4px 8px !important;
    font-size: 14px !important;
    color: #fff !important;
    font-weight: 500 !important;
    border-radius: 0px !important;
  }

  .button_filter_mobile_ml svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
  }

  #container_filters_sp.active {
    transform: translateX(0);
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .head
    .bottom
    .mini_filters {
    font-size: 12px;
    padding: 4px 12px;
    gap: 0.25rem;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .head
    .bottom
    .mini_filters
    span {
    width: 1rem;
    height: 1rem;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .head
    .bottom
    .mini_filters
    span::before,
  #container_list_posts_filter_sp
    .container_list_filters
    .head
    .bottom
    .mini_filters
    span::after {
    width: 0.5rem;
  }

  #container_list_posts_filter_sp .container_list_filters .head .bottom {
    gap: 0.5rem;
  }

  #container_filters_sp .content_filters .father_li_filter .bodycontent_filter {
    top: calc(100% + 20px);
  }

  #modal_quote_vehicle_list_ml .content_modal .l_side {
    display: none;
  }

  #modal_quote_vehicle_list_ml .content_modal .r_side {
    width: 100%;
    border-radius: 16px;
  }

  #modal_quote_vehicle_list_ml .content_modal .r_side #quoter_ml .head {
    border-radius: 16px 16px 0 0;
  }
}

.containe_brands_content {
  background: #cfcfcf2b;
  padding: 24px;
  border-radius: 32px;
  font-size: 16px;
  line-height: 2rem;
}

.containe_brands_content {
  color: #1e1e1e;
}

.containe_brands_content h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.containe_brands_content h2 {
  font-size: 44px;
  margin-bottom: 16px;
}

.containe_brands_content h3 {
  font-size: 40px;
  margin-bottom: 16px;
}

.containe_brands_content h4 {
  font-size: 36px;
  margin-bottom: 16px;
}

.containe_brands_content h5 {
  font-size: 32px;
  margin-bottom: 16px;
}

.containe_brands_content h6 {
  font-size: 28px;
  margin-bottom: 16px;
}

.containe_brands_content a {
  font-weight: 500;
  padding: 4px 12px;
  background: #f6d42f;
  border-radius: 8px;
  color: #1e1e1e;
  line-height: normal;
  transition: 0.25s;
  border: 2px solid #f6d42f;
}

.containe_brands_content a:hover {
  background: transparent;
  border-color: #1e1e1e;
}

.containe_brands_content img {
  max-width: 400px;
  display: block;
  border-radius: 16px !important;
  margin: 16px 0;
}

#container_filters_sp .content_filters .father_li_filter .label_filter * {
  user-select: none;
}

.li_filter_hidden {
  display: none;
}

@media (max-width: 767px) {
  .containe_brands_content {
    padding: 16px;
    font-size: 14px;
  }

  .containe_brands_content h1 {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .containe_brands_content h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .containe_brands_content h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .containe_brands_content h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .containe_brands_content h5 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .containe_brands_content h6 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .containe_brands_content a {
    padding: 2px 8px;
    background: #f6d42f;
    border-radius: 8px;
    color: #1e1e1e;
    line-height: normal;
    transition: 0.25s;
    border: 2px solid #f6d42f;
  }

  .containe_brands_content img {
    max-width: 200px;
    display: block;
    border-radius: 16px;
    margin: 8px 0;
  }

  #container_list_posts_filter_sp .container_list_filters .body_list_filters {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 1.5rem;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .head {
    height: 200px;
    margin-bottom: 0.5rem;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .head
    a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .head
    a
    img {
    width: 100%;
    height: 100%;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .body
    .pr1
    a {
    font-size: 16px;
    line-height: 18px;
    display: inline-block;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .body
    .pr1 {
    flex: 1 0 49px;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .body
    .pr2 {
    font-size: 20px !important;
    gap: 0.5rem;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .body
    .pr3 {
    gap: 0.25rem;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .body
    .pr3
    span {
    font-size: 10px;
    padding: 3px 6px;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .body
    .pr4
    a {
    font-size: 16px;
    white-space: nowrap;
    padding: 4px 6px;
    letter-spacing: 1px;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .body_list_filters
    .content_product_filter_sp
    .body
    .pr4 {
    margin-top: 0.5rem;
  }

  #posts_list_for_filter_sp_pagination ul li {
    width: 1.75rem;
    height: 1.75rem;
  }

  #posts_list_for_filter_sp_pagination ul li a {
    font-size: 12px;
  }

  #posts_list_for_filter_sp_pagination ul {
    flex-wrap: wrap;
  }

  #container_alert_admin .alert {
    width: 95%;
    margin: 1rem auto;
    /* margin-top: 1rem; */
  }

  #container_alert_admin .alert .box_text {
    font-size: 12px;
  }

  .field_order_vehicles > label svg {
    width: 14px;
    height: 14px;
  }

  #container_filters_sp .content_filters .father_li_filter .bodycontent_filter {
    min-width: 290px;
  }

  #container_filters_sp
    .content_filters
    .father_li_filter
    .bodycontent_filter.range {
    min-width: 290px;
    width: 100%;
  }

  #container_list_posts_filter_sp
    .container_list_filters
    .head
    .bottom
    .mini_filters
    p {
    font-size: 12px !important;
  }
}
