.map {
    width: 100vw;
    height: 100vh;
    background-color: #333;
}

/* [class*="copyrights-pane"] {
    display: none !important;
} */

.popover {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    width: 160px;
    opacity: 1;
    overflow: hidden;
    max-height: 235px;
}

.popover-title {
    margin: 0;
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 7%;
    font-size: medium;
}

.popover-content {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 93%;
    overflow-y: auto;
    gap: 5px;
}

.popover-inner {
    width: 100%;
    height: 30%;
    display: flex;
    overflow: hidden;
}

.close {
    margin-top: 2px;
    margin-right: 2px;
    border-radius: 10px;
    align-self: flex-end;
    position: absolute;
    width: 15px;
    height: 15px;
    background-image: url('/static/resources/close.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: rgb(224, 224, 224);
}

.popover-city {
    cursor: pointer;
    padding-left: 3px;
    border-radius: 10px;
    width: 80%;
    justify-content: space-between;
    background-color: rgb(224, 224, 224);
    display: flex;
}

.popover-city:hover {
    background-color: #767676;
}

.popover-city-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popover-city-count {
    padding-left: 3px;
    padding-right: 3px;
    border-radius: 10px;
    background-color: #6FB1F6;
    color: white;
}