.map-panel {
	width: 100%;
	height:  100vh;
	max-height: 600px;
	display: grid;
	grid-template-columns: 1fr 1fr 400px 300px;
	background-color: #dcf7ff;
}

.map-panel__map {
	grid-column-start: 1;
	grid-column-end: span 3;
	grid-row-start: 1;
	z-index: 1;
}

.map-panel__list {
	grid-row-start: 1;
	grid-column-start: 3;
	grid-column-end: span 1;
	z-index: 2;
	background: rgba(255,255,255,.8);
	height:  100%;
	max-height:  100%;
	overflow: scroll;
	padding:  20px;
}

.map-panel__filters {
	grid-row-start: 1;
	grid-column-start: 4;
	grid-column-end: span 1;
	z-index: 3;
}

.map-panel__list ul { 
	list-style: none;
	font-size: .9rem;
	margin:  0;
	padding:  0;
}

.map-panel__list p {
	margin: 0;
	font-size: 1em;
}

.map-panel__list li {
	margin-bottom: 20px;
}

.map-panel__linked-name {
	font-size: 1rem;
	line-height: 1.5;
	margin: 0;
}

.map-panel__details {
	line-height: 1.5;
}

.map-panel__detail {
	display: block;
	margin-bottom:  .5em;
	font-weight: 400;
}

.map-panel__detail i {
    color: #00204d;
}

.map-panel__results-overview {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 600;
    line-height: 24px;
}

.map-panel .scholar-filters__filter-wrap {
    display: block;
    margin: 10px 0;
    font-weight: bold;
}

@media screen and (max-width: 1000px) {
    .map-panel {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 700px;
        max-height: 90vh;
    }
    
    .map-panel__filters {
        grid-column: 1 / span 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .map-panel__filters .heading,
    .map-panel__results-overview {
        width: 100%;
    }
    
    .map-panel__filters p {
        margin-bottom: 0;
    }
    
    .map-panel .scholar-filters__filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
    
    .map-panel .scholar-filters__filter-wrap {
        width: calc(33% - 13px);
        margin-bottom: 0;
    }
    
    .map-panel .scholar-select,
    .map-panel .or-separator {
        width: 100%;
    }
    
    .or-separator {
        margin-top: 10px;
    }
    
    .clear-btn {
        margin-top: 30px;
    }
    
    .map-panel__map {
        grid-row-start: 2;
        grid-column-start: 1;
        grid-column-end: span 1;
    }
    
    .map-panel__list {
        grid-row-start: 2;
        grid-column-start: 2;
        grid-column-end: span 1;
    }
}

@media screen and (max-width: 500px) {
    
    .map-panel .scholar-filters__filter-wrap {
        width: 100%;
        margin-bottom: 0;
    }
}

.map-list-nav strong {
    font-weight: 700;
}

.map-list-nav .button {
    display: inline-block;
    padding: 0 10px;
    margin-bottom: 10px;
}

.button.disabled {
    background-color: #888;
    cursor: default;
}
    
    