@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");



.map-section {
    width: 100%;
}

/* Title Of map page */

.map-section h1 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.map-container {
    display: flex;
    width: 100%;
    width: 90%;
    margin: 0 auto;
}

.map-info {
    /* width: 30%; */
    width: 450px;
    height: 100%;
    /* background-color: aquamarine; */
    padding: 0 10px;
    font-family: "Montserrat", sans-serif;
}

#map {
    flex: 1;
    /* height: 100%; */
    height: 500px;
    background-color: rgb(0, 102, 51);;
}

.seach-box-adress {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 2px;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

/* Style of input */
.seach-box-adress input {
    width: 80%;
    height: 35px;
    background: transparent;
    border: 0;
    padding-left: 10px;
}

.seach-box-adress input:focus {
    background-color: none;
    outline: none;
}
.seach-box-adress button {
    width: 20%;
    background: rgb(0, 102, 51);
    color: #fff;
    /* border: 1px solid black; */
    border: 0px;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.9);
}

.seach-box-adress button:hover {
    background: rgba(0, 102, 51, 0.9);
}

.shops-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
    margin-top: 10px;
}

/* Modifica stile della scrollbar */

/* Per i browser WebKit (Chrome, Safari) */
.shops-list::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff; /* Colore dello sfondo del track */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(0, 102, 51); /* Colore dell'handle */
    border-radius: 5px;
}




.shop-location {
    padding: 10px 0px;
    width: 100%;
    transition: background-color 0.2s;
}
.shop-location a {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-size: 14px;
}

.shop-location:hover {
    background-color: rgb(231, 231, 231)
}

.shop-location:hover a {
    /* font-weight: 600; */
}
.fa-map-marker.red {
    font-size: 20px;
    color: red;
}

.active-shop {
    font-weight: 500;
}

@media only screen and (min-width: 800px) and (max-width: 1100px) {
  
   /* #map {
    width: 60%;
    height: 400px;
   }

   .map-info {
    width: 40%;
   } */
  }
  @media only screen and (min-width: 450px) and (max-width: 799px) {

    .map-container {
        flex-direction: column;
    }
  
    #map {
     width: 100%;
     flex: unset;
    }
 
    .map-info {
     width: 100%;
     text-align: center;
    }
   }
   @media only screen and (max-width: 449px) {

    .map-container {
        flex-direction: column;
        width: 95%;
    }
  
    #map {
     width: 100%;
     height: 300px;
     flex: unset;
    }
 
    .map-info {
     width: 100%;
     text-align: center;
    }
    
    .shop-location a {
        font-size: 13px;
    }
   }