.name{
  font-size: 40px;
}

path {
    stroke: white;
    fill: #94ac78 !important;

    transition: fill .4s ease;
    transform-origin: center center;
}

path:hover {
    fill: #3f5246 !important;
    cursor: pointer;
    transform: scale(1.005, 1.005);
}

path:click {
    fill: #3f5246 !important;
    cursor: pointer;
    transform: scale(1.005, 1.005);
}

#map-container {
    display: flex;
    justify-content: center;
    align-items: center;
} 

#us-map {
    display: block;
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 100%;
}

#details-box {
    box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.7);
    opacity: 0%;
    padding: 1rem;
    border-radius: 8px;
    font-size: 12px;
    position: fixed;
    color: black;
    font-family: "Poppins";
    background-color: #f5e6ce;
    width: fit-content;
    transform: translateX(-50%);
    transition: opacity .4s ease;
    z-index: 1;
}


#side-info {
    top: 25%;
    left: 50%;
    width: 75%;
    height: 50%;
    
    background: #D9D9D9;

    box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.7);
    opacity: 0%;
    padding: 2%;
    border-radius: 8px;
    
    position: absolute;
    color: black;
    font-family: "Poppins";
    background-color: #f5e6ce;
    transform: translateX(-50%);
    transition: opacity .4s ease;
    z-index: auto;
    display: flex;
}

#data-info {
    font: 24px;
    padding: 2%;
    font-family: "Poppins";
    color: red;
}

#state-name {
    font-size: 2.5em;
    color: #91a3b0;
}

.text-body {
    font-size: 0.9vw;
}

.tabed-text{
    margin: 20px;
}

* {
  margin: 0;
  padding: 0;
}


.section-bar-map{
    margin-top: 0;
    height: 6.5%;
    /*background: linear-gradient(to right, white, black);*/
    background-color: #2a415f;
    text-align: center;
    padding-top: 1%;
    padding-right: 1%;
    
  }

  li.section-bar-style-map{
    display:inline-block;
    font-size: 180%;
    font-family: "DejaVu Sans Mono", monospace;
    padding-left: 1.33%;
  }

  a.map-bar-text:link {
    color: rgb(199, 196, 196);
  }

  a.map-bar-text:hover {
    color: white;
    font-weight: bold;
  }

  a.map-bar-text:visited{
    color: rgb(199, 196, 196);
  }
  a.map-bar-text:focus{
    color: rgb(199, 196, 196);
  }
  a.map-bar-text:active{
    color: rgb(199, 196, 196);
  }