.map-container {
    border-radius: 32px;
    overflow: hidden;
}

.map-container h4 {
    margin-bottom: 0;
}

.map-container .leaflet-popup-content {
    min-width: 340px;
}

.map-container .leaflet-popup-content .row {
    --gap: 12px;
}

.map-container .leaflet-container .btn-primary {
    color: var(--color-white);
}

#map {
    max-height: 600px;
    min-width: 200px;
    height: 60vh;
    z-index: 1;
}

.map-results-headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 40px;
    padding-bottom: 20px;
    padding-left: 40px;
    gap: 20px;
}

.map-results-title {
    color: var(--color-black);
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.5rem;
}

.map-results-button .btn .icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.map-results-list-container {
    background-color: var(--color-white-gray);
    padding-top: 32px;
    padding-bottom: 140px;
}

.map-results-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.map-results-list-item {
    padding: 0;
}

.map-results-list-item-headline {
    padding: 32px 40px 25px 40px;
    border-bottom: 1px solid var(--color-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width: 900px) {
    .map-results-list-item-headline {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .map-results-list-item-headline {
        padding: 20px 16px 24px 16px;
    }
}

.map-results-list-item-headline-title {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.75rem;
}

@media (max-width: 700px) {
    .map-results-list-item-headline-title {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .map-results-list-item-headline-title .color-icon {
        width: 32px;
        height: 40px;
        flex: 0 0 32px;
    }
}

.map-results-list-item-headline-title span {
    color: var(--color-dim-gray);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem;
}

@media (max-width: 700px) {
    .map-results-list-item-headline-title span {
        font-size: 0.875rem;
        line-height: 1.375rem;
    }
}

@media (max-width: 900px) {
    .map-results-list-item-headline .btn {
        width: 100%;
        justify-content: center;
    }
}

.map-results-list-item-headline .btn .icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.map-results-list-item-content {
    padding: 32px 0 24px 40px;
    display: flex;
    gap: 124px;
}

@media (max-width: 1200px) {
    .map-results-list-item-content {
        padding-right: 40px;
    }
}

@media (max-width: 900px) {
    .map-results-list-item-content {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 700px) {
    .map-results-list-item-content {
        padding: 20px 16px 24px 16px;
    }
}

.map-results-list-item-content-info {
    display: flex;
    flex-direction: column;
    padding-left: 12px;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

@media (max-width: 900px) {
    .map-results-list-item-content-info {
        flex: auto;
        max-width: unset;
        padding-left: 0;
    }
}

.map-results-list-item-content-info-time p {
    margin-top: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25rem;
    color: var(--color-black);
    margin-bottom: 0;
}

.map-results-list-item-content-info-time-content {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25rem;
    color: var(--color-dark-gray);
}

.map-results-list-item-content-info-item {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-light-gray);
    display: flex;
    gap: 12px;
}

.map-results-list-item-content-info-item:last-child {
    border-bottom: unset;
}

.map-results-list-item-content-info-item .icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background-color: var(--color-dark-gray);
}

.map-results-list-item-content-info-item span {
    color: var(--color-dark-gray);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.375rem;
}

.map-results-list-item-content-info-item .open-block,
.map-results-list-item-content-info-item .open-charger-slider {
    display: none;
}

@media (max-width: 900px) {
    .map-results-list-item-content-info-item .open-block,
    .map-results-list-item-content-info-item .open-charger-slider {
        display: block;
    }
}

.map-results-list-item-content-info-item .open-block span:first-child {
    display: block;
}

.map-results-list-item-content-info-item .open-block span:last-child {
    display: none;
}

.map-results-list-item-content-info-item .open-block.show span:first-child {
    display: none;
}

.map-results-list-item-content-info-item .open-block.show span:last-child {
    display: block;
}

.map-results-list-item-content-slider {
    flex: 0 0 calc(66.6666% - 124px);
    max-width: calc(66.6666% - 124px);
    height: unset;
}

@media (max-width: 900px) {
    .map-results-list-item-content-slider {
        flex: auto;
        max-width: unset;
        height: 0;
        overflow: hidden;
    }
}
