body{
    margin: 0px;
}

.map-main{
    z-index: 2;
    opacity: .90;
    width: 100%;
    height: 100%;
}

.map{
    z-index: 1;
    position: fixed;
    width: 100%;
    height: 100%;
}

.search{
    z-index: 3;
    position: fixed;
    width: 400px;

    top: 50%;
    left: 50%;

    margin-top: -100px;
    margin-left: -200px;
    
    border-radius: 10px;
    border: 5px solid rgba(0, 0, 0, 0.144);

    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search > input{
    font-size: 18px;
    padding: 10px;

    border-radius: 5px;
    border: none;
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    outline: none;
    
    width: 100%;
}

.search-result{
    background-color: rgb(236, 236, 236);
    width: 100%;
    max-height: 200px;
    overflow: auto;
}

.search-result-item{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 10px;
    padding: 5px;
    background-color: rgb(210, 210, 210);
    border-radius: 5px;
    color: rgb(83, 83, 83);
}
.search-result-item:hover{
    cursor: pointer;
    background-color: rgb(220, 220, 220);
}

.search-result-close{
    z-index: 4;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;

    border-radius: 20px;
    border: 4px solid rgba(0, 0, 0, 0.144);

    position: absolute;
    bottom: -18px;
    left: 45%;
    background-color: rgb(161, 161, 161);

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(83, 83, 83);
}
.search-result-close:hover{
    cursor: pointer;
    background-color: rgb(139, 138, 138);
    color: rgb(209, 209, 209);
}