.simpan-sementara{
    display: none;
}
.map-pic{
    width: 100%;
    display: flex;
    justify-content: center;
}
.map-image{
    object-fit: cover;
    width: 100%;
    height: 400px;
}
.div-available-on{
    width: 100%;
    text-align: center;
}
.available-on{
    width: 190px;
}
.map-container{
    position: relative;
}
.map-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #00000080;
    opacity: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: .3s ease-in-out;
}
.map-container:hover .map-overlay{
    transform:scale(1);
    opacity: 1;
}
.map-container:hover .map-text{
    opacity: 1;
}
.map-text {
    transition: .5s ease-in-out;
    opacity: 0;
    background-color: white;
    color: red;
    font-size: 18px;
    position: absolute;
    padding-top: 15px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 15px;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-transform: uppercase;
  }