.map-section {
    position: relative;
}

.map-container {
    border: 2px solid var(--brown);
    border-radius: 24px;
    overflow: hidden;
}
.map-places-list {
    position: absolute;
    left: 16px;
    top: 16px;
    bottom: 16px;
    right: 16px;
    z-index: 1;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-place {
    padding: 24px;
    width: fit-content;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--brown);
    border-radius: 24px;
    background-color: var(--white);
}

.map-place-title {
    margin: 24px 0px 0px;
    line-height: 1em;
}

.map-place-time {
    margin: 16px 0px 0px;
    line-height: 1em;
    opacity: 0.5;
}

.map-place-btn {
    margin: 40px 0px 0px;
}

.map-place-btn.btn.btn-with-small-icon .icon svg {
    width: auto;
    height: auto;
    transform: none;
}

.custom-marker {
  background-color: #FFD600;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
    .map-container {
        height: 740px !important;
    }

    .map-places-list {
        flex-direction: row;
        flex-wrap: wrap;
        height: fit-content;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .map-places-list {
        flex-direction: column;
        width: auto;
    }

    .map-place {
        width: 100%;
    }
}