#map {
    height: 100vh;
}

#mapContainer {
    position: relative;
}

#mapContainer * {
    box-sizing: border-box;
}

#mapSideBar {
    height: 100vh;
    width: 22rem;
    max-width: 100vw;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fafafa;
    position: absolute;
    top: 3rem;
    left: -22rem;
    transition: .5s;
}

#mapSideBar.opened {
    left: 0;
}

/*
.mapSelectContainer .select2-results {
    background-color:#fafafa;
}
.mapSelect .select2-results li[aria-selected] {
    color: white;
    background-color: #a12323;
}*/
.mapSelectContainer {
    border: 1px solid #ccc !important;
    margin: .4rem 0;
}

.mapSelectContainer * {
    color: #222 !important;
    font-size: 1.2rem;
    font-style: normal;
}

.mapSelectContainer .select2-selection__placeholder {
    color: #666 !important;
}

.mapSelectDropdown {
    border: 0;
    border-bottom: 1px solid #646464;
    background-color: #fafafa;
}

.mapSelectDropdown .select2-results__option[aria-selected="true"] {
    color: #000;
}

.mapSelectDropdown .select2-results__option--highlighted[aria-selected] {
    background-color: #53c4cf;
    color: #fafafa;
}

.mapSelectContainer .select2-selection__choice {
    background-color: #53c4cf !important;
    border-color: #2d969f !important;
    color: white !important;
    margin: 0 .2rem 0.4rem !important;
}

.mapSelectContainer .select2-selection__choice__remove {
    margin: 0 6px 0 -8px !important;
    color: #fafafa !important;
}

#mapTopBar {
    color: #fafafa;
    background-color: #646464;
    height: 3rem;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

#mapFilterToggler {
    display: flex;
    flex-shrink: 0;
    cursor: pointer;
}

#topBarDivider {
    width: 100%;
}

#mapSidebarTogglerBtn {
    height: 18px;
    width: 24px;
    cursor: pointer;
    margin-right: 20px;
    background: url("/dl/images/icons/googlemapicons.png");
    background-position: 0 0;
}

#mapFullscreenTogglerBtn {
    width: 21px;
    height: 21px;
    cursor: pointer;
    background: url("/dl/images/icons/googlemapicons.png");
    background-position: -25px 305px;
    flex-shrink: 0;
}

#mapSidebarTogglerBtn.opened {
    background-position: -24px 0;
}

.mapCompanyBubble {
    color: #111;
    font-size: .9rem;
    max-width: 90vw;
}

.mapCompanyBubble>div:not(:last-child) {
    margin-bottom: 1rem;
}

.mapCompanyBubble>.companyName {
    font-weight: bold;
}

.fakeLink {
    display: inline-block;
    text-decoration: none;
    transition: .33s all ease;
    color: #a12323;
    cursor: pointer;
}

.fakeLink:hover {
    color: #1f957b;
}