/** 
 * @file
 * Network page styles 
 */

.network-map-div {
  width: 200%;
  height: 1000px;
  position: absolute;
  bottom: 5%;
  left: -40%;
  z-index: 0;
  -webkit-pointer-events: none;
  pointer-events: none;
}

.network-map-div::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255,255,255,0);
  background: -moz-linear-gradient(-45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 2%, rgba(255,255,255,0.9) 54%, rgba(255,255,255,0.9) 65%);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(2%, rgba(255,255,255,0)), color-stop(54%, rgba(255,255,255,0.9)), color-stop(65%, rgba(255,255,255,0.9)));
  background: -webkit-linear-gradient(-45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 2%, rgba(255,255,255,0.9) 54%, rgba(255,255,255,0.9) 65%);
  background: -o-linear-gradient(-45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 2%, rgba(255,255,255,0.9) 54%, rgba(255,255,255,0.9) 65%);
  background: -ms-linear-gradient(-45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 2%, rgba(255,255,255,0.9) 54%, rgba(255,255,255,0.9) 65%);
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 2%, rgba(255,255,255,0.9) 54%, rgba(255,255,255,0.9) 65%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
}

section#section-network {
  min-height: 800px;
  overflow: hidden;
}

.map-marker {
  /* adjusting for the marker dimensions
  so that it is centered on coordinates */
  margin-left: -8px;
  margin-top: -8px;
  opacity: 1;
}

.map-marker.map-clickable {
  cursor: pointer;
}

.pulse {
  width: 10px;
  height: 10px;
  border: 5px solid #BF0000;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #716f42;
  z-index: 10;
  position: absolute;
}

.map-marker .dot {
  border: 10px solid #BF0000;
  background: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  -webkit-animation: marker_pulse 3s ease-out;
  -moz-animation: marker_pulse 3s ease-out;
  animation: marker_pulse 3s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
  opacity: 0;
}

@-moz-keyframes marker_pulse {
 0% {
  -moz-transform: scale(0);
  opacity: 0.0;
 }
 25% {
  -moz-transform: scale(0);
  opacity: 0.1;
 }
 50% {
  -moz-transform: scale(0.1);
  opacity: 0.3;
 }
 75% {
  -moz-transform: scale(0.5);
  opacity: 0.5;
 }
 100% {
  -moz-transform: scale(1);
  opacity: 0.0;
 }
}
@-webkit-keyframes "marker_pulse" {
 0% {
  -webkit-transform: scale(0);
  opacity: 0.0;
 }
 25% {
  -webkit-transform: scale(0);
  opacity: 0.1;
 }
 50% {
  -webkit-transform: scale(0.1);
  opacity: 0.3;
 }
 75% {
  -webkit-transform: scale(0.5);
  opacity: 0.5;
 }
 100% {
  -webkit-transform: scale(1);
  opacity: 0.0;
 }
}

@media (max-width: 600px) {
  .network-map-div {
    display: none;
    visibility: hidden;
  }
}