@font-face {
  font-family: "Ringbearer";
  src: url('/font/RINGM.TTF');
}

.astrenor h2{
  margin: 20px 0px;
  font-size: 2rem;
  font-family: "Ringbearer";
}

.interactive-map {
    color: #a26b34 !important;
  }
  
  .interactive-map svg {
    /* margin-top: -5vh; */
    /* margin-left: 5vw; */
    /* -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px; */
    position: relative;
  }
  .interactive-map .hotspot {
    cursor: pointer;
    padding: 20px;
  }

.interactive-map g.hotspot:hover > path, .interactive-map path.hotspot:hover {
  fill: orange;
}
.interactive-map .bloc-info{
  position: absolute;
  right: 2%;
  min-width: 350px;
}

.interactive-map .hotspot.zoomed > path{
  fill: orange;
  cursor: default;
  z-index: 999;
}

.bloc-info .text-info {
    top: 10%;
    display: none;
    z-index: 10;
}

.text-info.area-info-active.reduced{
    transition: all 0.3s ease-out;
    transform: translateX(100vw) rotate(-90deg);
}
.text-info.area-info-active{
    transition: all 0.3s ease-out;
}

/* Large only */
@media screen and (min-width: 75em){
  .bloc-info .text-info {
    left: 50%;
  }
}

.bloc-info .text-info table {
    margin-top: -10px;
  }
.bloc-info .text-info td {
    width: 15%;
    height: 30px;
  }
.bloc-info .text-info td:first-child {
    font-weight: bold;
  }

.interactive-map #close-map {
    position: absolute;
    fill: #a26b34;
    width: 45px;
    height: 45px;
    right: 5vw;
    top: 80px;
    cursor: pointer;
  }

.zoom-map-area {
    transform-origin: 0% 0%;
  }
  
  
  
  
  
  .circle-marker {
    stroke: #00e5ff; 
    stroke-width: 4px;
    stroke-opacity: 1;
  }
  .circle-fill {
    fill: #00e5ff;
  }
  
  .circle-pulse {
    fill: #00e5ff;
    fill-opacity: 0;
    transform-origin: 50% 50%;
    transform-box: fill-box;
    animation-duration: 2s;
    animation-name: circle-pulsing;
    animation-iteration-count: infinite;
  }
  
  @keyframes circle-pulsing {
    from {
      stroke-width: 8px;
      stroke-opacity: 1;
      transform: scale(0.3);
    }
    to {
      stroke-width: 0;
      stroke-opacity: 0;
      transform: scale(2);
    }
  }
  
  .fill-me {
    /* position: relative; */
    background-color: green;
  }
  /* #area-one-zoom {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
  } */