html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
#map {
    position: relative;
    width: 100.0%;
    height: 100.0%;
    left: 0.0%;
    top: 0.0%;
}
div.map-card {
    position: absolute;
    max-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.3);
    right: 15px;
    top: 15px;
    z-index: 0;
    color: #0089ed;
    font-size: 14px;
    padding: 15px;
}
div.addmc {
    z-index: 1000;
}
div.addmc button {
    z-index: 1000;
}
div.map-card button.mcc {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #0089ed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-size: 16px;
    padding-bottom: 3px;
}
div.map-card-text-title {
    padding-right: 30px;
    color: #1a1a1a;
    font-size: 16px;
    margin-bottom: 10px;
}
div.map-card-text p {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    color: #0089ed;
}
div.nazad {
    position: absolute;
    left: 10px;
    top: 80px;
    z-index: 1100;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    border-radius: 5px;
}
div.nazad a {
    padding: 5px 20px;
    font-size: 14px;
    color: #0089ed;
    background-color: #fff;
    border-radius: 5px;
    display: inline-block;
}
div.nazad a:hover {
    text-decoration: none;
    background-color: #0089ed;
    color: #fff;
}
div.map-btn-group {
    position: absolute;
    left: 50%;
    top: 20px;
    z-index: 1100;
    transform: translate(-50%);
}
h3.map-title {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
    padding: 10px 20px;
    color: #0089ed;
    text-align: center;
    min-width: 78vw;
    margin: 0;
}
div.person-list {
    position: absolute;
    top: 120px;
    left: 10px;
    z-index: 1100;
    max-width: 200px;
    background-color: #fff;
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}
div.person-list button {
    border: 1px solid rgba(0, 137, 237, 0.5);
    background-color: #fff;
    border-radius: 5px;
    color: #0089ed;
}
div.person-list button:hover {
    background-color: #0089ed;
    color: #fff;
}
div.person-list button:focus {
    outline: none;
    box-shadow: none;
}
div.person-list ul {
    overflow-y: scroll;
    max-height: calc(100vh - 250px);
}
button.all-view-address {
    margin-bottom: 6px;
    display: inline-block;
}
div.all-view-address-div {
    display: flex;
    justify-content: center;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul li {
    margin-top:8px;
    text-align: center;
    margin-right: 8px;
}
ul li button {
    min-width: 80px;
}
/* width */
div.person-list ul::-webkit-scrollbar {
    width: 8px;
}

/* Track */
div.person-list ul::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
div.person-list ul::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

/* Handle on hover */
div.person-list ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}
button.all-bt {
    display: none;
}
button.all-bt:focus {
    outline: none;
    box-shadow: inherit;
}
p.index-number {
    font-size: 14px;
    text-align: center;
    color: #0089ed;
    margin-bottom: 6px;
}

@media (max-width: 800px) {
    div.map-btn-group {
        left: 50px;
        right: 5px;
        top: 10px;
        transform: inherit;
    }
    h3.map-title {
        font-size: 14px;
        padding: 10px;
    }
    div.person-list {
        top: 130px;
        left: 5px;
        padding: 5px;
    }
    ul li button {
        min-width: 50px;
    }
    button.all-view-address {
        display: none;
    }
    button.all-bt {
        display: block;
        position: absolute;
        border: 1px solid #0089ed;
        background-color: #fff;
        border-radius: 5px;
        color: #0089ed;
        top: 80px;
        right: 10px;
        z-index: 1100;
        border: 1px solid rgba(0, 137, 237, 0.5);
    }
    p.index-number {
        position: absolute;
        top: -50px;
        background-color: #fff;
        width: 180px;
        border-radius: 5px;
        padding: 3px;
    }
    div.nazad {
        display: none;
    }
}