﻿#map {
    height: calc(100vh - 200px); /* The height is 400 pixels */
    width: 100%; /* The width is the width of the web page */
}

#dealer-location-cards {
    height: calc(100vh - 200px); /* The height is 400 pixels */
}

.markers-div {
    align-items: center;
    background-color: var(--bs-dark);
    border-radius: 50%;
    color: #263238;
    display: flex;
    font-size: 14px;
    gap: 15px;
    height: 30px;
    justify-content: center;
    padding: 4px;
    position: relative;
    transition: all 0.3s ease-out;
    width: 30px;
}

.markers-div::after {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid var(--bs-dark);
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: 93%;
    transform: translate(-50%, 0);
    transition: all 0.3s ease-out;
    width: 0;
    z-index: 1;
}

.markers-div.selected {
    
    background-color: var(--bs-primary);
}

.markers-div.selected::after {
    border-top: 9px solid var(--bs-primary);
}

.markers-div .icon {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
}

.markers-div .icon svg {
    height: 20px;
    width: auto;
}
