/* 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-secundrabad {
  right: 23%;
  top: 51%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.secundrabad {
  top: 47%;
  left:78%;
}
#places-map .marker-vijayawada {
  left: 55%;
  top: 40%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.vijayawada {
  top: 36%;
  left: 56%;
}
#places-map .marker-eluru {
  left: 57%;
  top: 36%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.eluru {
  top: 32%;
  left: 58%;
}
#places-map .marker-visakapatinam {
  left: 63%;
    top: 28%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.visakapatinam {
  top: 24%;
    left: 64%;
}
#places-map .marker-mountroad { 
  left: 27%;
  top: 19%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.mountroad {
  top: 15%;
    left: 28%;
}
#places-map .marker-nandanam { 
  left: 26%;
    top: 24%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.nandanam {
  top: 20%;
  left: 27%;
}
#places-map .marker-salem { 
  left: 14%;
  top: 34%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.salem {
  top: 30%;
  left: 15%;
}
#places-map .marker-erode { 
  left: 10%;
  top: 36%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.erode { 
  top: 32%;
  left: 11%;
}
#places-map .marker-coimbatore { 
  left: 7%;
  top: 42%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.coimbatore { 
  top: 38%;
  left: 8%;
}
#places-map .marker-tirupur { 
  left: 10%;
  top: 43%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.tirupur { 
  top: 39%;
  left: 11%;
}
#places-map .marker-karur { 
  left: 14%;
  top: 42%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.karur { 
  top: 38%;
  left: 15%;
}
#places-map .marker-madurai { 
  left: 14%;
  top: 52%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#map-info.madurai { 
  top: 48%;
  left: 15%;
}

#places-map .marker-palwal { 
  left: 53%;
    top: 60%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: url(../img/bred-pin.png);
  width: 28px;
  height: 39px;
}
#places-map .marker-palwal: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: -1px;
  opacity: 0;
  position: absolute;
  top: -1px;
  -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;
}
#map-info.palwal {
  top: 56%;
  left: 56%;
}

#places-map .marker-haryana { 
  left: 39%;
  top: 46%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: url(../img/bred-pin.png);
  width: 28px;
  height: 39px;
}
#places-map .marker-haryana :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: -1px;
  opacity: 0;
  position: absolute;
  top: -1px;
  -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;
}
#map-info.haryana {
  top: 43%;
  left: 41%;
}
#places-map .marker-up { 
  left: 52%;
    top: 50%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: url(../img/bred-pin.png);
  width: 28px;
  height: 39px;
}
#places-map .marker-up :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: -1px;
  opacity: 0;
  position: absolute;
  top: -1px;
  -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;
}
#map-info.up {
  top: 47%;
    left: 55%;
}