@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

html {
    scroll-behavior: smooth;
}

body {
font-family: "poppins", sans-serif;
padding-bottom: 1px;
padding-top: 0px;
margin-top: 0px;

}


.sidebar {
  height: 100%;
  width: 17vw;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #15417E;
  overflow-x: hidden;
  padding-top: 5px;
  border-right: 0px solid #15417E;
  border-left: 0px solid #15417E;
  }

.sidebar a {
    margin-left: 0.8vw;
}



a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 1.2vw;
  color: white;
  display: block;
}

.sidebar a:hover{
  text-decoration: underline;
  background-color: #c63f17;
  font-size: 1.3vw;

}


.material-icons {
    background-color: #15417E;
    position: relative;
    vertical-align: middle;  
}

.sidebar a:hover .material-icons{
    background-color: #c63f17;
  
  }

.main {
    margin-left: 15vw; /* Same as the width of the sidenav */
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px 2vw 0px 3vw;
    width: 1194px;
    height:99vh;
    background-color: white;
   
    
    /*border-right: 5px solid #15417E;
    border-bottom: 5px solid #15417E; */
}

@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}

#MainFrame {
    width: 1250px;
    height:98vh;
    margin-top: 0px;
    padding-top: 0px;
    border-top: 5px solid #15417E;
    background-color: white;
}

@media only screen and (max-width: 1400px) {
    #MainFrame {
      width: 1250px;
    }
  }

.title1{
    color: black;
    font-size: 3vw;
    text-decoration: none;
    padding-left: 0px;
    padding-top: 0px;
}

.title2{
    color: black;
    font-size: 28px;
    text-decoration: none;
    padding-left: 0px;
    padding-top: 0px;
    margin-top: 0px;
    letter-spacing: 1.2;
    
}

.title3 {
    color: black;
    font-size: 28px;
    text-decoration: none;
    padding-left: 0px;
    padding-top: 0px;
    margin-top: 0px;
    display: inline-block;
}

.title4{
    color: black;
    font-size: 1.5vw;
    text-decoration: none;
    padding-left: 0px;
    padding-top: 0px;
    margin-top: 0px;
    line-height: 1.5;
    
}


.welcomep1{
  color: black;
    font-size: 1.5vw;
    text-decoration: none;
    padding-left: 0px;
}



.navtitle1 {
    color: white;
    font-size: 1.5vw;
    text-decoration: underline;
   
    margin-left: 1.8vw;
}
.navtitle2 {
    color: white;
    font-size: 20px;
    text-decoration: none;
    padding-left: 10px;
}

.nonlink {
   padding: 0px 8px 6px 16px;
  text-decoration: none;
  font-size: 1.3vw;
  color: white;
  display: block;

}

.logo{
  width: 50px;
  float: right;
}

.dropbtn {
        background-color: #15417E;
        color: white;
        padding-left: 10px;
        font-size: 24px;
        cursor: pointer;
        height: 55px;
        border-radius: 5px;
       display: inline-block;
        margin-top: 5px;
        margin-right: 2vw;
      }
      
      .dropdown {
        position: relative;
        display: inline-block;
         transition: 0.3s;
      }
      
      .dropdown-content {
        display: none;
        position: absolute;
        right: 0;
        background-color: #f9f9f9;
        min-width: 260px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        transition: 0.3s;
      }
      
      .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        transition: 0.3s;
        font-size: 24px;
      }
      
      .dropdown-content a:hover {background-color: #f1f1f1;}
      .dropdown:hover .dropdown-content {display: block;}
      .dropdown:hover .dropbtn {background-color: #c63f17;}
      .dropdown:hover .material-icons {background-color: #c63f17;}

      

      


          
      
#mapembed {
    width: 45vw;
    height: 400px;
    border: 2px solid #ccc;
    border-radius: 5px;
    animation: fadeInAnimation ease 3s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }
        @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
}

#popembed {
    width: 400px;
    height: 25vw;
    border-radius: 5px;
    animation: fadeInAnimation ease 4s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }
        @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
}

#loadcontain {
    height: 0.5vw;
}

#loadbar {
    border-radius: 10px;
    height: 0.5vw;
    width: 15vw;
background-color: hsl(197, 100%, 18%);
    animation: colorchange linear 1s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }
        @keyframes colorchange {
            0% {
                background-color: hsl(197, 100%, 18%);
            }
            20% {
                background-color: 	hsl(197, 100%, 35%);
                padding-left: 20vw;
            }
            40% {
                background-color: 	hsl(197, 100%, 50%);
                padding-left: 40vw;
            }
            60% {
                background-color: 	hsl(197, 100%, 80%);
                padding-left: 60vw;
            }
            80% {
                background-color: 	hsl(197, 100%, 90%);
                padding-left: 80vw;
            }
            100% {
                background-color: 	hsl(197, 20%, 95%);
                padding-left: 80vw;
                opacity: 0;
                height: 0px;
            }

}





#calctopath {
        background-color: #15417E;
          position: fixed;
          top: 2%;
          right: 2%;
          color: white; 
          float: right;
          font-family: "poppins", sans-serif;
          font-size: 24px;
          border-radius: 5px;
    }

#calctopath:hover {
    background-color: #c63f17;
    font-size: 26px;
}


#refresh {
    color: black;
    text-decoration: underline;
    padding: 0px;
}

#editsocio {
    width: 750px;
}

#editinvdata {
    width: 900px;
}

#histchart {
    width: 1200px;
  height: 550px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border: 2px solid #ccc;
        border-radius: 5px;
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: center;
}


#chart_div {
  width: 1100px;
  height: 480px;
    }


#pie1 {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 2px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
    text-align: center;
    width: 550px;
    float: left; 
}


#chart_div2 {
    width: 500px;
    height: 480px;
}

#pie2 {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 2px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
    text-align: center;
    width: 550px;
   float: right;   
}

#chart_div3 {
    width: 500px;
    height: 480px;
}

#piecontainer1 {
    width: 1200px;
    height: auto;
margin: 0px;
}

#link{
    color: black;
    text-decoration: underline;
    margin: 0px;
    padding-left: 0px;
}


#actioncontainleft {
    float: left;
}

#actioncontainright {
    float: right;
}


.actionlink {
    color: black;
    font-size: 28px;
    text-decoration: none;
    padding-left: 0px;
    padding-top: 0px;
    margin-top: 0px;
    cursor: pointer;
}

.actionlink:hover {
    color: pink;
    text-decoration: underline;
}

#list1 {
    font-size: 20px;
}


/* width */
::-webkit-scrollbar {
    width: 15px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #e2f1f8; 
    ;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #15417E; 
    
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #c63f17; 
  }

  #datanotes {
    background-color: lightblue;
    padding-left: 1.5vw;
    padding-top: 0.5vw;
    padding-bottom: 1.5vw;
    border-radius: 10px;
}

#exploreText {
    font-size: 1.5vw;
}