﻿/* ///////////////// */

div.world-map img {
  max-width: 100%;
  height: auto;
  width: auto;
}

/* ///////////////// */

.map-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  float: right;
  max-width: 600px;
  margin: -16rem 0 0 0;
}

figcaption.statuslink {
  text-align: center;
  font-size: 90%;
  background-color: transparent;
  width: 100%;
  margin-top: -1.5rem;
}

/* ///////////////// */

.world-map {
  position: relative;
  align-self: center;
  width: 100%;
  pointer-events: none;
}

.world-map-big {
  margin: 15px auto;
}

.world-map .pin {
  position: absolute;
  width: 12px;
  height: 12px;
  display: inline-block;
  animation: pin-drop 1s ease-in;
}

.world-map .ok {
  position: absolute;
  width: 12px;
  height: 12px;
  display: inline-block;
  animation: ok-drop 1s ease-in;
}

/* ///////////////// */

.world-map .newyork {
  animation-delay: .8s;
}

.world-map .london {
  animation-delay: .6s;
}

.world-map .luxembourg {
  animation-delay: .4s;
}

.world-map .amsterdam {
  animation-delay: .10s;
}

.world-map .sanfrancisco {
  animation-delay: .10s;
}

.world-map .sydney {
  animation-delay: .4s;
}

.world-map .ashburn {
  animation-delay: .4s;
}

.world-map .wsi {
  animation-delay: .4s;
}

.world-map .wsi {
  animation-delay: .8s;
}



/* //////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////// */


/* //////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////// */

.world-map .ok:before {
  content: "";
  display: inline-block;
  background: #fff;
  box-shadow: 0 0 5px 2px #008000;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.world-map .ok:hover:before {
  background: #008000;
}

.world-map .ok:after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  border: 4px solid #008000;
  border-radius: 50%;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-animation: map-ok 1.5s infinite reverse ease-in;
  animation: map-ok 1.5s infinite reverse ease-in;
}

.world-map .ok:hover:after {
  -webkit-animation: map-ok .6s infinite ease-out;
  animation: map-ok .6s infinite ease-out;
}

/* //////////////////////////////////////////////////////////////////////// */
.world-map .pin:before {
  content: "";
  display: inline-block;
  background: #fff;
  box-shadow: 0 0 5px 2px #FF0000;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.world-map .pin:hover:before {
  background: #FF0000;
}

.world-map .pin:after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  border: 4px solid #FF0000;
  border-radius: 50%;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-animation: map-pin 1.5s infinite reverse ease-in;
  animation: map-pin 1.5s infinite reverse ease-in;
}

.world-map .pin:hover:after {
  -webkit-animation: map-pin .6s infinite ease-out;
  animation: map-pin .6s infinite ease-out;
}
/* //////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////// */



/* //////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////// */

/* ///////////////// */
/* ///////////////// */

@-webkit-keyframes map-pin {
  0% {
    width: 0;
    height: 0;
    opacity: .25;
  }

  50% {
    opacity: .5;
  }

  90% {
    width: 12px;
    height: 12px;
    opacity: .15;
  }

  100% {
    opacity: 0;
  }
}

/* ///////////////// */
@-webkit-keyframes map-ok {
  0% {
    width: 0;
    height: 0;
    opacity: .25;
  }

  50% {
    opacity: .5;
  }

  90% {
    width: 12px;
    height: 12px;
    opacity: .15;
  }

  100% {
    opacity: 0;
  }
}
/* ///////////////// */
/* ///////////////// */

.world-map .newyork {
  bottom: 61%;
  right: 67.7%;
}

.world-map .newyork:after {
  animation-delay: 1.4s;
}

.world-map .london {
  bottom: 65%;
  right: 52%;
}

.world-map .london:after {
  animation-delay: .4s;
}

.world-map .luxembourg {
  bottom: 62.5%;
  right: 48%;
}

.world-map .luxembourg:after {
  animation-delay: .4s;
}


.world-map .amsterdam {
  bottom: 65.5%;
  right: 49.5%;
}

.world-map .amsterdam:after {
  animation-delay: 1.2s;
}

.world-map .sanfrancisco {
  bottom: 58%;
  right: 82%;
}

.world-map .sanfrancisco:after {
  animation-delay: 1s;
}

.world-map .sydney {
  bottom: 20%;
  right: 13%;
}

.world-map .sydney:after {
  animation-delay: .4s;
}

.world-map .wsi {
  bottom: 21%;
  right: 14%;
}

.world-map .wsi:after {
  animation-delay: 1.0s;
}


.world-map .ashburn {
  bottom: 60%;
  right: 70%;
}

.world-map .ashburn:after {
  animation-delay: 1.0s;
}

.world-map .hillsboro {
  bottom: 62%;
  right: 81%;
}

.world-map .hillsboro:after {
  animation-delay: .5s;
}


/* ///////////////// */
