/*! mixins */
/*----------------------------------------------
 *key options                                  
 *- top-left,top-right,bottom-left,bottom-right
-----------------------------------------------*/
/*---------------------------------------
 *media queries                         
 *- break points options from variables:
 *  $bp-xs: 576px;                        
 *  $bp-sm: 768px;                        
 *  $bp-md: 992px;                        
 *  $bp-lg: 1200px;                       
----------------------------------------*/
.l-map {
  font-size: 0;
  width: 100%;
  height: 100%;
}
.l-map--2D .l-map__3D,
.l-map--2D .l-map__drag-handle,
.l-map--2D .l-map__compare,
.l-map--2D .l-map__timeline,
.l-map--2D .l-map__help {
  display: none;
}
.l-map--3D .l-map__2D,
.l-map--3D .l-map__drag-handle,
.l-map--3D .l-map__compare,
.l-map--3D .l-map__timeline,
.l-map--3D .l-map__help {
  display: none;
}
.l-map--verti .l-map__2D,
.l-map--verti .l-map__3D {
  width: 100%;
  height: 50%;
}
.l-map--verti .l-map__drag-handle {
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.l-map--verti .l-map__drag-handle:hover {
  height: 15px;
  opacity: 0.7;
}
.l-map--verti .l-map__drag-handle:before, .l-map--verti .l-map__drag-handle:after {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
}
.l-map--verti .l-map__drag-handle:before {
  top: -1px;
}
.l-map--verti .l-map__drag-handle:after {
  bottom: -1px;
}
.l-map--verti .l-map__compare,
.l-map--verti .l-map__timeline,
.l-map--verti .l-map__help {
  display: none;
}
.l-map--hori .l-map__2D,
.l-map--hori .l-map__3D {
  width: 50%;
  height: 100%;
}
.l-map--hori .l-map__drag-handle {
  position: absolute;
  height: 100%;
  width: 1px;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.l-map--hori .l-map__drag-handle:hover {
  width: 15px;
  opacity: 0.7;
}
.l-map--hori .l-map__drag-handle:before, .l-map--hori .l-map__drag-handle:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
}
.l-map--hori .l-map__drag-handle:before {
  left: -1px;
}
.l-map--hori .l-map__drag-handle:after {
  right: -1px;
}
.l-map--hori .l-map__compare,
.l-map--hori .l-map__timeline,
.l-map--hori .l-map__help {
  display: none;
}
.l-map--compare .l-map__2D,
.l-map--compare .l-map__3D,
.l-map--compare .l-map__drag-handle,
.l-map--compare .l-map-timeline,
.l-map--compare .l-map-help {
  display: none;
}
.l-map--compare .l-map__drag-handle--compare {
  display: block;
}
.l-map--timeline .l-map__2D,
.l-map--timeline .l-map__3D,
.l-map--timeline .l-map__drag-handle,
.l-map--timeline .l-map__compare,
.l-map--timeline .l-map__help {
  display: none;
}
.l-map--help {
  padding-top: 38px;
}
.l-map--help .l-map__2D,
.l-map--help .l-map__3D,
.l-map--help .l-map__drag-handle,
.l-map--help .l-map__timeline,
.l-map--help .l-map__compare {
  display: none;
}
.l-map__frame {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.l-map__drag-handle {
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  z-index: 3;
  transition: all 0.3s ease 0s;
}
[class*=-verti] .l-map__drag-handle {
  cursor: n-resize;
}
[class*=-hori] .l-map__drag-handle {
  cursor: w-resize;
}
.l-map__drag-handle-hint {
  position: absolute;
  left: 0;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  bottom: 30%;
  transition: 0.3s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  color: #1f1f1f;
}
.l-map__drag-handle-hint-left {
  transform: translate(-100%, -50%);
  border-radius: 36px 0 0 36px;
}
.l-map__drag-handle-hint-right {
  transform: translate(0, -50%);
  border-radius: 0 36px 36px 0;
}
.l-map__drag-handle--compare {
  position: absolute;
  height: 100%;
  width: 1px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  z-index: 3;
  transition: all 0.3s ease 0s;
  cursor: w-resize;
}
.l-map__drag-handle--compare:hover {
  width: 15px;
  opacity: 0.7;
}
.l-map__drag-handle--compare:hover .l-map__drag-handle-hint {
  left: 7.5px;
}
.l-map__drag-handle--compare:before, .l-map__drag-handle--compare:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
}
.l-map__drag-handle--compare:before {
  left: -1px;
}
.l-map__drag-handle--compare:after {
  right: -1px;
}
.l-map__compare--sync .l-map__drag-handle--compare {
  background-color: rgba(255, 255, 255, 0.95);
  width: 3px;
  cursor: default;
}
.l-map__compare--sync .l-map__drag-handle--compare:hover {
  width: 3px;
  opacity: 1;
}
.l-map__compare--sync .l-map__drag-handle--compare .l-map__drag-handle-hint {
  display: none;
}
.l-map__compare-feature-bar {
  position: absolute;
  width: 100%;
  top: 38px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l-map__compare-feature-bar select {
    width: 100px;
  }
  .l-map__compare-feature-bar [class*=icon-] {
    margin: 0 !important;
  }
}
.l-map__compare-new {
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.l-map__compare-new .l-loading {
  top: 84px;
}
.l-map__compare--swipe .l-map__compare-new .l-loading {
  position: fixed;
  top: 122px;
}
.l-map__compare-old {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}
.l-map__compare--sync .l-map__compare-old {
  width: 50%;
  left: 50%;
}
.l-map__compare-old .l-loading {
  top: 84px;
}
.l-map__compare--swipe .l-map__compare-old .l-loading {
  position: fixed;
  top: 122px;
}
.l-map__help {
  overflow: auto;
}

.l-map-info {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  color: rgba(0, 0, 0, 0.85);
  bottom: 0;
  left: 1px;
  padding: 5px;
  border-radius: 5px 5px 0 0;
  font-size: 12px;
  white-space: nowrap;
}
.l-map-info:hover {
  z-index: 99;
}
.l-map-info span {
  position: relative;
  font-size: 12px;
  font-weight: bold;
  margin-right: 5px;
  padding: 0 3px;
  text-shadow: 0 0 1px rgb(255, 255, 255);
}
.l-map-info span:last-child {
  margin-right: 0;
}
.l-map-info span:last-child:after {
  content: none;
}
.l-map-info span:after {
  content: "";
  position: absolute;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  right: -2.5px;
  top: 0;
  height: 100%;
}/*# sourceMappingURL=l-map.css.map */