.zoom-container {
    width: 40px;
    position: fixed;
    bottom: 15px;
    left: 15px;
    line-height: 37px;
    color: white;
    font-size: 25px;
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=30);
    text-align: center;
    cursor: pointer;
    z-index: 999;
    border-radius: 50%;
}

.zoom-container > button {
    margin: 5px;
    opacity: 0.6;
}

.zoom-container > button:hover {
    opacity: 1;
}

.zoom-container > button[disabled="disabled"]:hover {
    opacity: 0.6;
}
/* detail info popup */
ul.infoPopup {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    color: #333;
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.2);
}

ul.infoPopup li {
    min-width: 150px;
    max-width: 250px;
    padding: 7px 15px 10px 15px;
    background-color: #fff;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #ecf0f1;
}

ul.infoPopup li:first-child {
    background: #ecf0f1;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
    text-align: center;
}

ul.infoPopup li:last-child {
    border-bottom: 0;
    border-radius: 0 0 5px 5px;
}

ul.infoPopup li > span {
    font-weight: bold;
}

ul.infoPopup li > span > span {
    font-weight: normal;
}

/* context menu popup */
ul.contextMenu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    color: #333;
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.2);
    z-index: 1031;
}

ul.contextMenu * {
    transition: color 0.4s, background 0.4s;
}

ul.contextMenu li {
    min-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    padding: 5px 15px;
    background-color: #fff;
    border-bottom: 1px solid #ecf0f1;
    cursor: pointer;
}

ul.contextMenu li a {
    color: #333;
    text-decoration: none;
}

ul.contextMenu li:hover {
    background-color: #ecf0f1;
}

ul.contextMenu li:hover a {
    color: #2c3e50;
}
ul.contextMenu li:hover a:hover {
    color: #2980b9;
}

ul.contextMenu li:first-child {
    border-radius: 5px 5px 0 0;
}

ul.contextMenu li:last-child {
    border-bottom: 0;
    border-radius: 0 0 5px 5px;
}

.map-container .tab-content {
    background-color: white;
}

@media (max-width: 400px) {
    .map-container .tab-content {
        height: calc(100vh - 56px - 80px - 56px);
    }
    .map-container .tab-content::-webkit-scrollbar {
        width: 3px;
        height: 3px;
    }
}

@media (min-width: 400px) {
    .map-container .tab-content {
        height: calc(100vh - 53px - 100px - 56px);
    }
}
