
  
  .no-touch #cd-vertical-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
  }
  .no-touch #cd-vertical-nav li {
    text-align: right;
  }
  .no-touch #cd-vertical-nav a {
    display: inline-block;
    /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .no-touch #cd-vertical-nav a:after {
    content: "";
    display: table;
    clear: both;
  }
  .no-touch #cd-vertical-nav a span {
    float: right;
    display: inline-block;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
  .no-touch #cd-vertical-nav a:hover span {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  .no-touch #cd-vertical-nav a:hover .cd-label {
    opacity: 1;
  }
  .no-touch #cd-vertical-nav a.is-selected .cd-dot {
    height: 20px;
    width: 20px;
    background-color: #08254F;  /*white;*/
    border: 3px solid #31A2E2;  /*#ffcc00;*/
    margin-left: -3px;
    margin-right: -3px;
    margin-top: -3px;
  }
  .no-touch #cd-vertical-nav .cd-dot {
    position: relative;
    /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
    top: 4px;
    height: 20px;
    width: 20px;
    border-radius: 90%;
    background-color: #fff; /*#d88683;*/
    /*border: 1px solid #ffcc00;*/
    -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
    -moz-transition: -moz-transform 0.2s, background-color 0.5s;
    transition: transform 0.2s, background-color 0.5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  .no-touch #cd-vertical-nav .cd-label {
    position: relative;
    margin-right: 10px;
    padding: .4em .5em;
    color: #08254F;  /*#0078FF;white;*/
    font-size: 14px;
    font-size: 0.9rem;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0;
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
  }
  
  /* Touch devices */
  .touch .cd-nav-trigger {
    display: block;
    z-index: 2;
    position: fixed;
    bottom: 30px;
    right: 5%;
    height: 44px;
    width: 44px;
    border-radius: 0.25em;
    background: rgba(255, 255, 255, 0.9);
  }
  .touch .cd-nav-trigger span {
    position: absolute;
    height: 4px;
    width: 4px;
    background-color: #3e3947;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  .touch .cd-nav-trigger span::before, .touch .cd-nav-trigger span::after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
  }
  .touch .cd-nav-trigger span::before {
    top: -9px;
  }
  .touch .cd-nav-trigger span::after {
    bottom: -9px;
  }
  
  .touch #cd-vertical-nav {
    position: fixed;
    z-index: 1;
    right: 5%;
    bottom: 30px;
    width: 90%;
    max-width: 400px;
    max-height: 90%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-transform-origin: right bottom;
    -moz-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    -o-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    border-radius: 0.25em;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .touch #cd-vertical-nav a {
    display: block;
    padding: 1em;
    border-bottom: 1px solid rgba(62, 57, 71, 0.1);
  }
  .touch #cd-vertical-nav a span:first-child {
    display: none;
  }
  .touch #cd-vertical-nav a.is-selected span:last-child {
    color: #d88683;
  }
  .touch #cd-vertical-nav.open {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  .touch #cd-vertical-nav.open + .cd-nav-trigger {
    background-color: transparent;
  }
  .touch #cd-vertical-nav.open + .cd-nav-trigger span {
    background-color: rgba(62, 57, 71, 0);
  }
  .touch #cd-vertical-nav.open + .cd-nav-trigger span::before, .touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
    background-color: #3e3947;
    height: 3px;
    width: 20px;
    border-radius: 0;
    left: -8px;
  }
  .touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 1px;
  }
  .touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    bottom: 0;
  }
  .touch #cd-vertical-nav li:last-child a {
    border-bottom: none;
  }
  

  @media only screen and (min-width: 768px) {
    .touch .cd-nav-trigger, .touch #cd-vertical-nav {
      bottom: 40px;
    }
  
  }
  
  /* @media only screen and (max-width: 1024px) {
  #stlast h3, #stleft h3, #stcenter h3,  #stright h3, #stfinal1 h3, #stfinal2 h3, #stfinal3 h3, #stfinal4 h3 {
  
    display: none; 
  
  }
  
   #stlast h4, #stleft h4, #stcenter h4,  #stright h4, #stfinal1 h4, #stfinal2 h4, #stfinal3 h4, #stfinal4 h4 {
   display: none;
   }
  } */
  
  y {
    color: #ffcc00;
  }
  

  nav,
  nav * {
      font-family: Impact !important;
      z-index: 2000 !important;
      list-style:none ;
      -webkit-text-stroke: 0.25px #FFFFFF;
      text-stroke: 0.25px #FFFFFF;
      font-size: 20px;
  }



.center {
    display: flex;
    /* flex-wrap: wrap; */
    text-align: center;
    align-content: center;
    align-items: center;
    align-self: center;
    justify-content: center;
}

.vertical-divider {
    display: inline;
    /* border-left: 2px solid #08254F; */
    border-left: 2px solid #9997;
    height: 50px;
    margin-left: -1px;
}

#stats-panel {
    position: absolute;
    top:600px;
    left: 50%;
    transform: translate(-50%, -50%);
    /* height: 150px; */
    /* width: 600px; */
    background-color: #FFFFFF;
    z-index: 1000;
    box-shadow: 0px 3px 5px rgb(0 0 0 / 10%);
    display: flex;
    align-items: center;
}

.stat-card:hover {
    /* display: block; */
    height:calc(150px + 20px);
    width:calc(200px + 20px);
    background-color: #0078FF;
    box-shadow: 0px 3px 5px rgb(0 0 0 / 10%);
    margin: -10px;
    z-index: 1001;
    -webkit-transition: -webkit-transform 0.2s, height 0.3s;
    -moz-transition: -moz-transform 0.2s, height 0.3s;
    transition: transform 0.2s, height 0.3s;
    /* -webkit-transition: -webkit-transform 0.2s, widht 0.5s;
    -moz-transition: -moz-transform 0.2s, widht 0.5s;
    transition: transform 0.2s, widht 0.5s;
    -webkit-transition: -webkit-transform 0.2s, margin 0.5s;
    -moz-transition: -moz-transform 0.2s, margin 0.5s;
    transition: transform 0.2s, margin 0.5s; */
}

.stat-card:hover .t1 {
    font-Size: 85px;
    color: #FFFFFF;
    margin: 0 10px;
}

.stat-card:hover .t1-1,
.stat-card:hover .t2 {
    color: #FFF9;
}
.stat-card:hover .t3 {
    /* font-Size: 10px; */
    color: #BBB;
}

.stat-card {
    display: flex;
    flex-direction: column;
    height:150px;
    width:200px;
}

.impact {
    font-family: Impact !important;
}

.t1 {
    display: block;
    font-Size: 70px;
    color: #08254F;
    line-height: 1;
}

.opac {
    opacity: 0.5;
}

.bold {
    font-weight: bold;
}

.t1-1,
.t2 {
    font-size: 18px;
    color: #08254F;
}
.t3 {
    font-Size: 14px;
    color: #999;
}


#stats-panel-top3 {
  visibility: hidden;
  position: absolute;
  top:790px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF55;
  z-index: 1000;
  /* box-shadow: 0px 3px 5px rgb(0 0 0 / 10%); */
  display: flex;
  align-items: center;
}

#stats-panel-top3-title {
  display:block;
  width: 100%;
  position: absolute;
  top:0px;
  left: 50%;
  transform: translate(-50%, -97%);
  /* background-color: #FFFFFF77; */
  z-index: 1000;
  /* box-shadow: 0px 3px 5px rgb(0 0 0 / 10%); */
  align-items: center;
  font-Size: 26px;
  color: #08254F;
  text-align: center;
}

.stat-card2 {
  display: flex;
  flex-direction: column;
  height:130px;
  width:200px;
}

.vertical-divider2 {
  display: inline;
  /* border-left: 2px solid #08254F; */
  border-left: 2px solid #9997;
  height: 100px;
  margin-left: -1px;
}

.t1-top3 {
  display: block;
  font-Size: 50px;
  color: #08254F;
  line-height: 1;
}

.icon-db {
	width: 30px;
	height: 30px;
  margin: 2px 5px -32px;
  margin-left: auto;
  display: inline-block;
	background: url("../images/Icon_DB.png") no-repeat center/contain;
  cursor: pointer;
  visibility: hidden;
  position: relative;
  z-index: 2000;
}
.icon-back {
	width: 30px;
	height: 30px;
  margin: 42px 5px -72px;
  display: inline-block;
	background: url("../images/Icon_Back.png") no-repeat center/contain;
  cursor: pointer;
  visibility: hidden;
  position: relative;
  z-index: 2000;
}

#map-back {
	margin: 5px 0 -5px 0;
}
.invert { filter: invert(100%); }

.icon-back.active,
.stat-card:hover .icon-db,
/* .vizPane:hover .icon-db, */
/* .vizPane2:hover .icon-db, */
/* #d3-map:hover .icon-db, */
.icon-db.active{
  visibility: visible;
}

.icon-db>div {
  pointer-events: none;
}

#cd-vertical-nav li {
  width: 25px;
}

#cd-vertical-nav>ul {
  padding-inline-start: 0px !important;
}

.vizPane2 .icon-back,
.vizPane2 .icon-db {
  float:right; 
  margin-right: 5rem;
}



.toggle-org-container,
.toggle-map-container {
  display: flex; 
  flex-direction: row; 
  width: 100%;
  width: 240px; 
  /* height: 50px !important;  */
  border-radius: 25px; 
  border: 2px solid #0078FF; 
  background-color:  #FFFFFF;
  padding: 2px; 
  cursor: pointer; 
  font-size: 1.2rem;
  margin: 5px 0;
  margin-right: auto;
}

.toggle-org-container {
  width: 340px;
  margin-left: -10px;
  margin-right: -10px
}


.toggle-left {
  border-top-left-radius: 21px;
  border-bottom-left-radius: 21px;
}
/* .toggle-middle {
  margin-right: 1px;
} */
.toggle-right {
  border-top-right-radius: 21px;
  border-bottom-right-radius: 21px;
}

.toggle-button {
  width: 120px;
  height: 42px;
  margin-right: 1px;
  background-color: #ffffff;
  color: #0078FF ;
  white-space: nowrap;
}

.toggle-active {
  background-color: #0078FF !important;
  color: #FFFFFF !important;
}


@media only screen and (max-width: 840px) {

  #menu-section {
    width:100%;
    height: 850px;
    min-height: 400px;
  }
  #menu-section-top {
    top:0;
      width:100%;
      height: 520px;
    min-height: 200px;
    background: #555 url("../images/mwa_bg_top.jpg") no-repeat;
      background-size: cover;
      background-clip: border-box;
  }

  #menu-section-bottom {
    top: 50%;
      width:100%;
      height: 330px;
    min-height: 200px;
    background: #F1F1F1 url("../images/diagonal-noise_light.png");
    /* background-color: #F1F1F1; */
  }


  .vertical-divider {
      display: flex;
      /* border-left: 2px solid #08254F; */
      border-top: 2px solid #9997;
      border-left: 0px solid #9997;
      width: 150px;
      height: 0px;
      margin: 0 auto;
      margin-top: -1px;
      z-index: 1000;
  }

  #stats-panel {
      display: block;
      height: auto;
      width: 300px;
      align-content: center;
      align-items: center;
      align-self: center;
      justify-content: center;
      top: 70px;
      transform: translate(-50%,0);
  }
  .stat-card:hover {
      position: relative;
      height:calc(150px + 20px);
      width:calc(100% + 20px);
      /* padding: 0 calc(50% - 100px); */
      z-index: 1001;
      -webkit-transition: -webkit-transform 0.2s, width 0.3s;
      -moz-transition: -moz-transform 0.2s, width 0.3s;
      transition: transform 0.2s, width 0.3s;
  }

  .stat-card {
      display: flex;
      width: 100%;
      /* padding: 0 calc(50% - 100px); */
  }

  #stats-panel-top3 {
    /* visibility: hidden !important; */
    top:790px;
  }

  .stat-card2 {
    display: flex;
    flex-direction: column;
    height:130px;
    width:125px;
  }

}


@media only screen and (max-width: 960px) {

  .vizPane .icon-db {
    margin-right: 1rem !important;
  }

  .vizPane2 .icon-back,
  .vizPane2 .icon-db {
    margin-right: -1rem !important;
  }

  .toggle-org-container,
  .toggle-map-container {

    font-size: 1rem;
  }

  .toggle-org-container {
    width: 300px;
  }
  
  .toggle-org-container .toggle-button {
    width: 100px;
  }

}

@media only screen and (max-width: 840px) {
  .toggle-org-container {
    margin-left:-20px;
    margin-right:-20px;
  }
}
