.location-wrapper {
    display: flex;
    gap: 1rem;
    padding: 1rem 2rem;
    flex-wrap: wrap;

}
.location-tile {
    flex: 1 1 0px;
    background: #fff;
    align-self: flex-start;
    width: 0;
    min-width: 111px;
}
.location-tile img {
    height: 80px;
    width: 100%;
    object-fit: cover;
}
.location-tile p {
    font-size: 14px;
    line-height: 1.2em;
    font-family: 'Roboto Condensed', Sans-serif;

}
@media (max-width: 1280px) {
    .location-tile p {
        font-size: 12px;
        line-height: 1.2em;
        font-family: 'Roboto Condensed', Sans-serif;

    }
}
.location-tile-preview {
    padding: 1rem;
    height: 110px;
}
.location-tile-preview .headline {
    font-size: 16px;
}
.location-tile-content {
    padding: 0 1rem;
    height: 0px;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s all ease;
}
.location-tile-content--show .location-tile-content{
    visibility: visible;
	/* height:170px; */
    height: auto;
    opacity: 1;
	padding-bottom: 10px;
}
.location-tile-action svg {
    transition: 0.25s;
}
.location-tile-content--show .location-tile-action svg {
    transform: rotateZ(180deg);
}
.location-tile-action {
    padding: 0.2rem;
    background: #E9E9E9;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}