/****************  Content element  *****************/
.tx_recordsonamap_content {
    display: block;
}

/*********************  Map  ***********************/
.tx_recordsonamap_content .map {
    width: 100%;
    min-height: 350px;
    background-color: #eee;
}

/****************  Map contents  ******************/
.tx_recordsonamap_content .map .infoWindowContent {
    padding: 10px;
    line-height: 1.5;
}
.tx_recordsonamap_content .map .infoWindowContent hr {
    margin:15px 0;
}

/****************  Search form  ******************/
.tx_recordsonamap_content .mapSearch > * {
    display: inline-block;
    height: 3rem;
}
.tx_recordsonamap_content .mapSearch .searchField {
    width: 80%;
}
.tx_recordsonamap_content .mapSearch .searchButton {
    width: 19%;
}

/****************  Location list  ******************/
.tx_recordsonamap_content .locations,
.tx_recordsonamap_content .locations .tooManyEntriesMessage {
    margin-top: 3%;
}
.tx_recordsonamap_content .locations .location {
    display: inline-block;
    vertical-align: top;
    width: 300px;
    max-width: 100%;
}
.tx_recordsonamap_content .locations .tooManyEntriesMessage {
    display: none;
    position: relative;
    padding: 10px;
    text-align: center;
}
.tx_recordsonamap_content .locations .tooManyEntriesMessage:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: currentColor;
    opacity: 0.1;
}
.tx_recordsonamap_content .locations.hasTooManyEntries .tooManyEntriesMessage {
    display: block;
}