.hub_logistic_breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  justify-content: space-between;
  max-width: 800px;
  margin: auto;
  background: white;
  border-radius: 5px;
  padding: 10px;
}
.hub_logistic_breadcrumb li {
  flex: 1;
  text-align: center;
  position: relative;
  color: #aaa;
  font-weight: bold;
}
.hub_logistic_breadcrumb li.active {
  color: #2c7be5;
  background: transparent;
}
.hub_logistic_breadcrumb li::before {
  content: attr(data-step);
  display: inline-block;
  background: #ddd;
  color: #555;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  margin-right: 8px;
}
.hub_logistic_breadcrumb li.active::before {
  background: #2c7be5;
  color: #fff;
}
.hub_logistic_breadcrumb li + li::after {
  content: '';
  position: absolute;
  top: 12px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #ddd;
  z-index: -1;
}
.hub_logistic_breadcrumb li.active + li::after {
  background: #2c7be5;
}

.hub_logistic_container_top_bottoms {
  display: flex;
  align-items: center; /* Centra verticalmente */
  justify-content: center; /* Centra horizontalmente */
  gap: 20px; /* Separación entre divs y el icono */
  margin: 20px 0;
}
.hub_logistic_container {
  display: flex;
  align-items: center; /* Centra verticalmente */
  justify-content: center; /* Centra horizontalmente */
  gap: 20px; /* Separación entre divs y el icono */
  margin: 20px 0;
}

.hub_logistic_address {
  border: 1px solid #ccc;
  padding: 20px;
  width: 420px;
  text-align: center;
  border-radius: 8px;
  background-color: #fff;
  margin-top: 50px;
}

.hub_logistic_address h2 {
  margin-bottom: 10px;
}

.hub_logistic_address button {
  margin-top: 10px;
  padding: 5px 10px;
  cursor: pointer;
  background: transparent;
  border-radius: 3px;
  border: solid 1px #ccc;
}

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

.hub_logistic_separator i {
  font-size: 36px;
  color: #555;
}

.hub_logistic_items_container {
  display: block;
  text-align: center;
  border: dashed #2222;
  margin-bottom: 50px;
  background: #e5a22c0a;
  padding-bottom: 150px;
}
.hub-logistic-summary-content .logistic_items ul{
  list-style: none;
}
.hub_logistic_items_container .cube .face.front {
  width: 120px;
}
.hub_logistic_items_container .cube .face.top {
  height: 120px;
}
.hub_logistic_items_container .cube .box_height {
  right: -70px;
}
.hub-logistic-container-step-action {
  position: fixed;
  width: 100%;
  background: white;
  bottom: 0px;
  padding: 20px;
  left: 0px;
  box-shadow: 0 1px 5px 1px rgb(21 24 26 / 30%);
  text-align: center;
}
.hub-logistic-breadcrumb-link {
  cursor: pointer;
}
.hub-logistic-container-step-action .hub-logistic-next-step,
.hub-logistic-container-step-action .generate-shipping-guide,
.hub-logistic-container-step-action .generateShippingGuide {
  margin-left: 20px;
}
.hub-logistic-summary-content,
.hub-logistic-summary-shipping-companies-list {
  margin-bottom: 250px;
  padding: 35px;
  align-items: center;
  text-align: center;
}
.hub-addresses-summary {
  display: flex; 
  gap: 50px; 
  margin-top: 20px;
  justify-content: center;
}
.envelopes_summary ul, .boxes_summary ul , .pallets_summary ul{
  list-style: none;
}
.hub-logistic-companies-list {
  list-style: none;
  margin: auto;
  max-width: 800px;
  margin-top: 50px;
}
.hub-logistic-companies-list .company-content{
  display: flex;
  padding-bottom: 20px;
  border-bottom:  solid 1px #1111;
}
.hub-logistic-img-logo {
  width: 100%;
  max-width: 150px;
  vertical-align: middle;
  margin-left: 30px;
}
.hub-shipping-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.hub-shipping-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #ddd;
}

.hub-shipping-service:hover {
  background-color: #f9f9f9;
}

.hub-shipping-service input[type="radio"] {
  margin-right: 12px;
  accent-color: #007bff; /* color del radio */
  cursor: pointer;
  max-width: 50px;
}

.hub-shipping-service-content {
  display: flex;
  align-items: center;
  width: 100%;
}

.hub-shipping-name {
  font-weight: 600;
}

.hub-shipping-price {
  margin-left: auto;
  font-weight: bold;
  color: #007bff;
}

.hub-shipping-service:has(input:checked) {
  background-color: white;
}
.loader-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff80;
    display: none; /* oculto por defecto */
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 9999; /* opcional, por si debe ir arriba de todo */
    transition: all 0.2s ease;
}

/* Clase para mostrarlo */
.loader-services.active {
    display: flex;
    user-select: none;
}
