.rc-stop-map-container {
  width: 100%;
  height: 320px;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.rc-map-static,
.rc-destination-stop-map {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rc-destination-stop-map {
  display: none;
}

.section-map-destination > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
}


.section-section-map-destination-title {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

/* Skeleton estilo shimmer */
.rc-map-skeleton {
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}


/*Accordion*/

.accordion {
  width: 100%;
}

.rc-map-accordion-item {
  border-bottom: 1px solid #E1E1E1;
}

.rc-border-none {
  border: none !important;
}

.rc-container-map-address {
  display: flex;
  column-gap: 16px;
}

.accordion .rc-map-accordion-item:last-child {
  border-bottom: none !important;
}


.rc-map-accordion-header {
  display: flex;
  justify-content: space-between;
  padding-block: 24px;
  cursor: pointer;
  position: relative;
}

.rc-map-accordion-header h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
}

.rc-map-accordion-header svg {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.rc-map-accordion-item.open .rc-map-accordion-header svg {
  transform: rotate(0deg);
}

.rc-map-accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: all 0.3s ease;
  padding: 0;
}

.rc-map-accordion-content p {
  color: #1B1E20 !important;

}

.rc-map-accordion-item.open .rc-map-accordion-content {
  padding-bottom: 24px;
  max-height: 500px;
}

.rc-map-accordion-item.rc-map-accordion-one-item .rc-map-accordion-content {
  padding-bottom: 24px;
  max-height: 500px;
}

.rc-btn-map {
  display: flex;
  font-weight: bold;
  column-gap: 8px;
  text-decoration: underline !important;
  color: #C81832;
}

.rc-msg-btn-copied {
  bottom: -22px;
  text-wrap: nowrap;
  left: -60px;
}

@media (max-width: 768px) {
  .rc-stop-map-container {
    height: 200px;
  }

  .rc-map-accordion-header {
    padding-block: 16px;
  }

  .accordion .rc-map-accordion-item:first-child  .rc-map-accordion-header {
    padding-top: 0;
  }

  .rc-map-accordion-header h3 {
    font-size: 14px !important;
  }

  .rc-btn-map {
    font-size: 14px;
  }
}