.company-locations-map {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.company-locations-map-canvas {
    width: 100%;
    height: 275px;
}

.company-locations-list {
    padding: 12px 26px;
}

.company-location {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    cursor: pointer;
}

.company-location + .company-location {
    border-top: 1px solid #eeeeee;
}

.company-location-code {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #4c5cff;
    color: #fff;

    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;
}

.company-location-info {
    flex: 1;
    min-width: 0;
}

.company-location-info h3 {
    margin: 0 0 2px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.company-location-info p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.4;
}

.company-location-view {
    flex: 0 0 auto;

    color: #4169ff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.company-location-view:hover {
    text-decoration: underline;
}


/* Custom Leaflet marker */

.company-map-marker {
    background: transparent;
    border: 0;
}

.company-map-marker span {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: #4c5cff;
    color: #fff;

    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.company-map-marker span::after {
    content: '';

    position: absolute;

    bottom: -7px;
    left: 50%;

    transform: translateX(-50%);

    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #4c5cff;
}


/* Mobile */

@media (max-width: 767px) {

    .company-locations-map-canvas {
        height: 250px;
    }

    .company-locations-list {
        padding: 10px 18px;
    }

    .company-location {
        align-items: flex-start;
    }

    .company-location-view {
        margin-top: 5px;
    }

}