body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f4f4f4;
}

.contain{
    display:grid;
    grid-template-columns:400px 1fr;
    height:100vh;
}

.sidebar{
    background:white;
    padding:20px;
    overflow:auto;
    box-shadow:0 0 20px rgba(0,0,0,.1);
}

h2{
    margin-top:0;
}

input,select,button{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
}

button{
    background:black;
    color:white;
    cursor:pointer;
}

#map{
    width:100%;
    height:100%;
}

.result{
    background:#f8f8f8;
    padding:15px;
    border-radius:8px;
}

.price{
    font-size:28px;
    font-weight:bold;
}
@media (max-width:768px){

    .contain{
        grid-template-columns:1fr;
        grid-template-rows:auto 50vh;
        height:auto;
    }

    .sidebar{
        box-shadow:none;
        padding:18px;
    }

    #map{
        height:50vh;
        min-height:350px;
    }

    .sidebar{
        /*margin-top: 90px !important;*/
        padding-top:90px !important;
    }

}
