.spider-leg-container {
  width: 1px;
  height: 1px;
  overflow: display;
  will-change: transform;
}

.spider-leg-container:hover { cursor: pointer }

.spider-leg-container .spider-leg-pin {
  position: relative;
  z-index: 1;
}

.spider-leg-container .spider-leg-pin.default-spider-pin{
  position: relative;
  width: 25px;
  height: 41px;
  margin-left: -11.5px;
  margin-top: -38.5px;
  background-image: url(../images/marker-icon_2.png);
}

.spider-leg-container .spider-leg-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: #343434;
  opacity: 0.45;
  transform-origin: bottom;
  z-index: 0;
  height: 0;
}

.spider-leg-container:hover .spider-leg-line { opacity: 1 }

/* Animations specific styles */

.spider-leg-container.animate {
  -webkit-transition: margin 0.15s linear;
  -moz-transition: margin 0.15s linear;
  -ms-transition: margin 0.15s linear;
  -o-transition: margin 0.15s linear;
  transition: margin 0.15s linear;
}

.spider-leg-container.initial,
.spider-leg-container.exit {
  margin-left: 0 !important;
  margin-top: 0 !important;
  height: 0;
}

.spider-leg-container.animate .spider-leg-line {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;

  -webkit-transition-delay: inherit;
  -moz-transition-delay: inherit;
  -ms-transition-delay: inherit;
  -o-transition-delay: inherit;
  transition-delay: inherit;
}

.spider-leg-container.animate.initial .spider-leg-line,
.spider-leg-container.animate.exit .spider-leg-line { height: 0 !important }

.spider-leg-container .spider-leg-pin{
  position: relative;
  width: 22px;
  height: 22px;
  margin-left: -8px;
  margin-top: -18px;
  background-image: url(../images/marker-icon_2.png);
  background-position: 0 0;
  background-repeat: no-repeat;
}
.spider-leg-container .spider-leg-line {
  background-color: #f4f4f4;
}
.spider-leg-container:hover .spider-leg-line {
  background-color: #009DE0;
}

body .filter-container .filter-panel{
  /* display: flex; */
  height: 200px;
  flex-direction: column;
  flex-wrap: wrap;
}
body .filter-container .filter-panel[data-destination="8495"]{
  height: 370px;
}
body .filter-container .filter-panel.active{
  display: flex;
}
body .filter-container .filter-panel > *{
  /* order: 0;
  flex: 0 1 auto;
  align-self: auto; */
}

body .filter-container .filter-tabs button {
  font-size: 14px;  
}

#networkMapPopup{
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
}
#popup_close{
  position: absolute;
  top: 10px;
  right: 10px; 
}
#popup_title{
  font-size: 20px;
}
#networkMapPopup_content{
  z-index: 2;
  width: 80%;
  height: 70%;
  background-color: #fff;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
}
#networkMapPopup_overlay{
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0,0,0,0.4);
  left: 0px;
  right: 0;
  top: 0;
  bottom: 0;
}
#networkMapPopup_innner_content{
  margin-left: 40px;
  margin-top: 60px;
  overflow: hidden;
  overflow-y: scroll;
  height: calc(100% - 80px);
  width: calc(80% - 10px);
}
.filter_locations{
  height: 920px;
  overflow: hidden;
  overflow-y: scroll;
  padding: 0 10px 0 0;
  margin-right: 10px;
}

.filter_locations li{
  font-size: 16px;
}

@media(max-height: 700px){
  .filter_locations{
    height: 420px;
  }
}