/* custom popup */

.custom-popup,
.leaflet-popup-content-wrapper {
    background: #2c3e50;
    color: #fff;
    font-size: 12px;
    line-height: 10px;
    border-radius: 0px;
    min-width: 240px;
}

.custom-popup,
.leaflet-popup-content-wrapper .leaflet-popup-content {}

.custom-popup,
.leaflet-popup-content-wrapper a {
    transition: 0.2s all;
}

.custom-popup, .leaflet-popup-content-wrapper a:hover{
    color: red;
}

.custom-popup,
.leaflet-popup-tip-container {}

.custom-popup,
.leaflet-popup-tip {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* other */

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#header-text {
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(185, 185, 185);
}

.error-message{
    width: 100%;
    position: fixed;
    top: 45%;
    text-align: center;
    color: rgb(54, 54, 54);
    font-size: 25px;
}

.warning-message{
    position: fixed;
    z-index: 999;
    background: rgb(37, 37, 37);
    bottom: 0;
    right: 0;
    color: white;
    padding: 20px;
    font-size: 14px;
    margin: 40px;
}

.search-area{
    position: fixed;
    z-index: 999;
    right: 0;
    padding: 40px;
}

.search-input{
    width: 160px;
    padding: 10px 15px 10px 15px;
    font-size: 16px;
    opacity: 0.5;
    transition: 0.2s all;
}

.search-input:hover{
    opacity: 1;
}

.search-button{
    background: #4CAF50;
    border: none;
    color: white;
    padding: 12px 15px 12px 15px;
    font-size: 16px;
    margin-left: -5px;
    cursor: pointer;
}