#lbsmap{
    position: relative;
    width: 1100px;
    height:550px;
    background:url(planisfero.jpg) 0 0 no-repeat;
    /*border:1px dotted black;*/
    margin:0 auto;
    font-family: Montserrat, sans-serif;
  }
  
  .lbs-headquarter-sn {
    width:20px;
    height:20px;
    background:url(cubo.png) 0 0 no-repeat;
  }
  div.lbs-headquarter-sn:hover:before{
    content: "LBS Headquarter - Senegal";
    font-family: Montserrat, sans-serif;
    color: black;
    font-weight: 700;
    font-size: 14px;
    position: absolute;
    left: -75px;
    top: -20px;
    white-space: nowrap;
    cursor: pointer;
  }
  
  .lbs-headquarter-it {
    width:20px;
    height:20px;
    background:url(cubo.png) 0 0 no-repeat;
  }
  div.lbs-headquarter-it:hover:before{
    content: "LBS Headquarter - Italy";
    font-family: Montserrat, sans-serif;
    color: black;
    font-weight: 700;
    font-size: 14px;
    position: absolute;
    left: -65px;
    top: -20px;
    white-space: nowrap;
    cursor: pointer;
  }
  
  /*event*/
  @-webkit-keyframes event {
    0% {
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes event {
    0% {
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  .event{opacity: 0;}
  .event.active{
    animation-name: event;
    animation-duration: 5s;
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  
    -webkit-animation-name: event;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }

/*
  #zone1.active{animation-delay: 0;}
  #zone2.active{animation-delay: 2.5s;}
  #zone3.active{animation-delay: 5s;}
*/

  /*boxmsg*/
  .boxmsg{
    position:relative;
    width:220px;
    height:100px;
    text-transform: uppercase;
  }
  .boxmsg div.evt_title{
    font-family: Montserrat, sans-serif !important;
    background-color: rgba(196, 196, 196, 0.0);
    color: #000000 !important;
    padding: 5px !important;
    font-size:15px !important;
    line-height: 20px !important;
    font-weight: 700 !important;
  }
  .boxmsg div.info{
    font-size:10px !important;
    color: #000000 !important;
    line-height: 10px !important;
    text-transform: lowercase !important;
    padding-bottom:5px !important;
  }
  .boxmsg p{
    font-size:11px !important;
    font-family: Montserrat, sans-serif !important;
    line-height: 15px !important;
    margin:0 !important;
    color: #000000 !important;
    background-color: rgba(196, 196, 196, 0.0) !important;
    padding: 5px !important;
  }

  /*echo animation*/
  @-webkit-keyframes echo {
    0% {
      padding: 0;
      margin: 0;
      opacity: 1;
    }
    100% {
      padding: 30px;
      margin: -30px;
      opacity: 0;
    }
  }
  @keyframes echo {
    0% {
      padding: 0;
      margin: 0;
      opacity: 1;
    }
    100% {
      padding: 30px;
      margin: -30px;
      opacity: 0;
    }
  }
  .echos {
    position: relative;
    left: 50%;
    bottom: 0;
  }
  .firstecho:before{
    font-weight: 700;
      font-size: 18px;
      content: "";
      position: absolute;
      left: 1px;
      top: -35px;
  }
  .firstecho{
    position: absolute;
    width:8px;
    height:8px;
    margin: -2px;
    background-color:#F2A726;
    border-radius: 50%;
    display: inline-block;
    padding: 0;
  }
  .echo {
    position: absolute;
    border: 2px solid #F2A726;
    border-radius: 50%;
    display: inline-block;
    padding: 0;
  
    animation-name: echo;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
  
    -webkit-animation-name: echo;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-out;
  }
  .echo:nth-of-type(2) {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
  }
  .echo:nth-of-type(3) {
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
  }