.map {
  position: relative;
  margin: auto;
  background-color: #ccc;
}
.map img {
  display: block;
  width: 100%;
}
.map-popup {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  width: 90%;
  padding: 1.2rem;
  background-color: rgba(0,0,0,.75);
  color:#fff;
  transition: all 300ms ease-in;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 24px rgba(0,0,0,0.22);
  opacity: 0;
  visibility: hidden;
  text-align: center;
  max-width:300px;
  border:2px solid #ff5d27;
  /*border:2px solid #D62B21;*/
  border-radius:8px;
}
.map-popup > *:first-child { margin-top: 0; }
.map-popup > *:last-child { margin-bottom: 0; }
.map-popup.open {
  opacity: 1;
  visibility: visible;
}
.map-popup img {
    border-radius:4px;
    width:100%;
    margin-bottom:10px;
}
.map-popup h3 {
    font-size: 18px;
    line-height: 1.2;
    text-align: left;
}
.map-popup p {
    font-size: 15px;
    line-height: 1.2;
    text-align: left;
}
    
.chiudi-top {
    width:32px;
    height:32px;
    border-radius:50%;
    border:2px solid #ff5d27;
    /*border:2px solid #D62B21;*/
    background-color:#000;
    position:absolute;
    top:-16px;
    right:-16px;
    text-align:center;
    line-height: 26px;
    font-weight: bold;
    cursor: pointer;
    padding:6px;
}
.chiudi.chiudi-top img {
    filter: invert(0);
}
.chiudi-bottom {
    text-align: right;
    color:#ff5d27;
    /*color:#D62B21;*/
    cursor: pointer;
}    
.marker {
    position: absolute;
    z-index: 1;
    display: inline-block;
    width: 18px;
    height: 18px;
    color: #fff;
    line-height: 18px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    background-color: rgba(255, 93, 39, 0.89);
    /*background-color: rgba(214, 43, 33, 0.89);*/
    border: 0px solid #fff;
    transition: all 300ms;
    font-weight: normal;
    font-size: 16px;
}
.marker:hover {
  color: #ff5d27;
  /*color: #D62B21; */   
  text-decoration: none;
  background-color: #fff;
}
    @media (min-width: 768px) {
        .marker {
          width: 32px;
          height: 32px;
          color: #fff;
          line-height: 28px;
          border: 2px solid rgba(255,255,255,.8);
          font-weight: normal;
          font-size:21px;
        }
    }