/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.for-list-animate {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.for-list-animate.pre-list-animate {
  -webkit-transform: translateY(350px);
  -moz-transform: translateY(350px);
  -o-transform: translateY(350px);
  -ms-transform: translateY(350px);
  transform: translateY(350px);
  opacity: 0;
}
.prepare-animate {
  -webkit-transition: all 0 'linear';
  -moz-transition: all 0 'linear';
  -o-transition: all 0 'linear';
  transition: all 0 'linear';
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 0 !important;
}
#world-map-container {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 40%;
}
@media only screen and (max-width: 767px) {
  #world-map-container {
    top: 30px;
    padding-bottom: 0;
    height: 300px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    position: relative;
  }
}
#world-map-container #world-map {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.jvectormap-container {
  background: transparent !important;
}
#map-list-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 500;
  display: none;
  font: 11px/16px 'proxima_nova_rgbold', Arial, Tahoma, sans-serif;
}
#map-list-overlay.display {
  display: block;
}
#map-list-overlay #map-list {
  width: 300px;
  height: 400px;
  position: absolute;
  top: 50%;
  margin-top: -200px;
  left: 50%;
  background: #111217;
  margin-left: -150px;
}
#map-list-overlay #map-list-title {
  background: #6f7b8b;
  position: relative;
}
#map-list-overlay #map-list-title h2 {
  font: 19px/22px 'proxima_nova_rgbold', Arial, Tahoma, sans-serif;
  margin: 0;
  padding: 10px;
}
#map-list-overlay #map-list-title #map-list-close {
  position: absolute;
  right: 0;
  top: 0;
  font: 19px/22px 'proxima_nova_rgbold', Arial, Tahoma, sans-serif;
  font-weight: 100;
  padding: 10px;
  cursor: pointer;
}
#map-list-overlay #map-list-title #map-list-close:hover {
  background: rgba(0, 0, 0, 0.2);
}
#map-list-overlay #map-list-count {
  font-size: 14px;
  padding: 10px;
  margin: 0;
}
#map-list-overlay #map-list-container {
  position: absolute;
  top: 42px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  box-sizing: border-box;
  border: 1px solid #6f7b8b;
  border-top: none;
}
#map-list-overlay ul {
  padding: 10px;
  padding-top: 0;
  overflow: hidden;
  margin: 0;
  list-style: none;
  /* -webkit-column-count: 3; */
  font: 14px/20px 'proxima_novasemibold', Arial, Tahoma, sans-serif;
}
#map-list-overlay ul li {
  /* overflow: hidden; */
  display: block;
  text-overflow: ellipsis;
  width: 100%;
}
#map-list-overlay ul .band {
  float: left;
  margin: 2px 18px 0 0;
  width: 16px;
  height: 16px;
  text-transform: uppercase;
  text-align: center;
}
#map-list-overlay ul .band-A {
  background: #229bd7;
}
#map-list-overlay ul .band-B {
  background: #00a459;
}
#map-list-overlay ul .band-C {
  background: #92b63e;
}
#map-list-overlay ul .band-D {
  background: #ef9121;
}
#map-list-overlay ul .band-E {
  background: #f26631;
}
#map-list-overlay ul .band-F {
  background: #e02128;
}
#map-list-overlay ul .txt {
  margin-left: 34px;
}
