.easy-map-container {
display: flex;
flex-wrap: wrap; }
.easy-map-sidebar {
flex: 0 0 20%; background: #fff;
padding: 5px 5px 0px 5px;
box-sizing: border-box;
overflow-y: auto;
max-height: 400px;
}
.easy-map-sidebar>label {
font-weight: bold;
display: flex;
align-items: center;
padding: 5px 5px;
font-size: 18px;
}
.easy-map-content {
flex: 0 0 80%; background: #fff;
box-sizing: border-box;
} @media (max-width: 768px) {
.easy-map-sidebar,
.easy-map-content {
flex: 0 0 100%; }
}
.easy-map-category {
padding-bottom: 5px;
}
.easy-map-category>label {
font-weight: bold;
display: flex;
align-items: center;
cursor: pointer;
font-size: 16px;
}
.easy-map-locations {
list-style: none;
margin: 5px 0 0 15px;
padding: 0;
display: none;
}
.easy-map-locations li {
cursor: pointer;
padding: 4px;
border-radius: 3px;
font-size: 15px;
}
.easy-map-locations li:hover {
background: #e9ecef;
}