/* Breakpoints
// ========================================================================== */
/* 320px */
/* 480px */
/* 599px */
/* 600px */
/* 768px */
/* 967px */
/* 960px */
/* 1400px */
/* Colors 
// ========================================================================== */
/* Convert px to ems
// ========================================================================== */
/* Mixins
// ========================================================================== */
/* Media Query Watcher
// ========================================================================== */
#getActiveMQ-watcher {
  font-family: "break-0";
}
@media (min-width: 20em) {
  #getActiveMQ-watcher {
    font-family: "break-1";
  }
}
@media (min-width: 30em) {
  #getActiveMQ-watcher {
    font-family: "break-2";
  }
}
@media (min-width: 37.5em) {
  #getActiveMQ-watcher {
    font-family: "break-3";
  }
}
@media (min-width: 48em) {
  #getActiveMQ-watcher {
    font-family: "break-4";
  }
}
@media (min-width: 60em) {
  #getActiveMQ-watcher {
    font-family: "break-5";
  }
}

/* =Map Pin Animation
// ========================================================================== */
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

/* =Places Map
// ========================================================================== */
#places-map {
  position: relative;
}
#places-map h1 {
  font-size: 1.3125em;
  margin-top: 0.9523809524em;
  text-align: center;
}
@media (min-width: 37.5em) {
  #places-map h1 {
    font-size: 2.1875em;
    margin-top: 0.9428571429em;
  }
}
#places-map .wu-logo {
  display: none;
  height: 3.875em;
  width: 11.3125em;
}
@media (min-width: 60em) {
  #places-map .wu-logo {
    background: url(https://jeffbridgforth.com/codepen/wu-logo.jpg) no-repeat;
    display: block;
    position: absolute;
    bottom: 1.875em;
    left: 2em;
  }
}
@media (min-width: 87.5em) {
  #places-map .wu-logo {
    left: 50%;
    margin-left: -43.75em;
  }
}
#places-map img {
  height: auto;
  position: relative;
  z-index: 1;
}
.secondary-page #places-map .content {
  margin: 0;
  position: relative;
}
@media (min-width: 60em) {
  .secondary-page #places-map .content {
    margin: 0 auto;
  }
}
#places-map .map {
  position: relative;
 text-align: center;
}
#places-map .map-pins {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
}

#places-map .map-location-marker {
  background: url(../img/red-pin.png) no-repeat;
  cursor: pointer;
  position: absolute;
  height: 21px;
  margin-top: -1.875em;
  margin-left: -0.7857142857em;
  width:15px;
  z-index: 3;
}
@media (min-width: 48em) {
  .js #places-map .map-location-marker {
    visibility: hidden;
  }
  .js #places-map .map-location-marker.bounceInDown {
    visibility: visible;
  }
}
#places-map .map-location-marker:after {
  -webkit-animation: pulsate 2s ease-in-out infinite;
  -moz-animation: pulsate 2s ease-in-out infinite;
  animation: pulsate 2s ease-in-out infinite;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 30px;
  content: "";
  display: block;
  height: 31px;
  left: -9px;
  opacity: 0;
  position: absolute;
  top: -8px;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  width: 31px;
  z-index: 2;
}

#page-places {
  position: relative;
}

#map-info {
  background: #333;
  color: #fff;
  position: absolute;
  top: -1.5625em;
  left: 50%;
  margin-left: -7.8125em;
  padding:10px 15px;
  width: 15.625em;
  z-index: 10;
}
#map-info .close-btn {
  background: url(http://jeffbridgforth.com/codepen//close-btn.png) no-repeat;
  cursor: pointer;
  display: block;
  height: 0.6875em;
  width: 0.6875em;
  position: absolute;
  right: 10px;
    top: 10px;
}
@media (min-width: 30em) {
  #map-info {
    top: 50%;
    margin-top: -8.875em;
  }
}
@media (min-width: 60em) {
  #map-info {
    margin-left: -8.875em;
    width: 17.75em;
  }
}
@media (min-width: 48em) {
  #map-info {
    margin-left: 0;
    margin-top: 0;
  }
  #map-info:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width:10px 11px 10px 0;
    border-color: transparent #333 transparent transparent;
    position: absolute;
    left: -9px;
  }
 
}
#map-info h1 {
  float: left;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
  margin-top: 0;
  color: #fff;
  font-weight: normal; width: 100%; text-align: left;
}
#map-info a {
  color: #70b333;
  display: block;
  font-size: 14px;
  float: left;
  margin-right: 2.5em;
  margin-top: 5px;
  text-decoration: none;
  font-weight: 500;
  line-height: normal;
}
#map-info img {
  height: auto;
  max-width: 100%;
}

#places-map .marker-kozhikode {
    left: 15%;
    top: 40%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.kozhikode {
    top: 35%;
    left: 16%;
}

#places-map .marker-ernakulam {
  left: 21%;
  top: 63%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.ernakulam {
  top: 58.5%;
  left: 22%;
}

#places-map .marker-poonamallee {
  right: 42%;
  top: 30%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.poonamallee {
  top: 25%;
  left: 59%;
}

#places-map .marker-vellore {
  right: 48%;
  top: 30%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.vellore {
  top: 25%;
  left: 53%;
}

#places-map .marker-krishnagiri {
  left: 46.5%;
  top: 34%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.krishnagiri {
  top: 29.5%;
  left: 47.5%;
}

#places-map .marker-villupuram {
  right: 43.2%;
  top: 46%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.villupuram {
  top: 41%;
  left: 57.5%;
}

#places-map .marker-bangalore-highways {
  left: 44.5%;
  top: 44%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.bangalore-highways {
  top: 39%;
  left: 45.5%;
}

#places-map .marker-salem {
  left: 47%;
  top: 45%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.salem {
  top: 40.5%;
  left: 48%;
}

#places-map .marker-namakkal {
  left: 47%;
  top: 49.2%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.namakkal {
  top: 44.5%;
  left: 48%;
}

#places-map .marker-vallipuram {
  left: 45.5%;
  top: 52%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.vallipuram {
  top: 47.5%;
  left: 46.5%;
}

#places-map .marker-tiruchengode {
  left: 42%;
  top: 48%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.tiruchengode {
  top: 44%;
  left: 43%;
}

#places-map .marker-trichy {
  left: 49.5%;
  top: 55%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.trichy {
  top: 50%;
  left: 50.5%;
}

#places-map .marker-coimbatore {
  left: 38.3%;
  top: 60%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.coimbatore {
  top: 55%;
  left: 39.5%;
}

#places-map .marker-madurai {
  left: 46%;
  top: 67.5%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.madurai {
  top: 62.5%;
  left: 47%;
}

#places-map .marker-thirunelveli {
  left: 41.5%;
  top: 82%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.thirunelveli {
  top: 77%;
  left: 42.7%;
}

#places-map .marker-bangalore {
  left: 88.2%;
  top: 76%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.bangalore {
  top: 71%;
  left: 89.5%;
}

#places-map .marker-bellary {
  left: 82%;
  top: 54%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.bellary {
  top: 49%;
  left: 83%;
}

#places-map .marker-hubli {
  left: 72%;
  top: 43%;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#map-info.hubli {
  top: 38%;
  left: 73%;
}



