@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');


/* Main Color Variables  */
:root {
    --maincolor: #141543;
    --accentcolor: 	rgba(254, 202, 140, 1);
    --sidepanelcolor: #DFEBF7;
    --mainbackground: white;
    --accent2: #0c3d91;
    --fonttext: black;
  }

html {
    scroll-behavior: smooth;
}

body {
font-family: "poppins", sans-serif;
padding-bottom: 1px;
padding-top: 0px;
margin-top: 0px;
background-color: var(--mainbackground);

}

/* Navigation Sidebar Styling  */

.sidebar {
  height: 100%;
  width: 17vw;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: var(--maincolor);
  overflow-x: hidden;
  padding-top: 5px;
  border-right: 0px solid var(--maincolor);
  border-left: 0px solid var(--maincolor);
  }


.sidebar a {
    margin-left: 0.8vw;
   
}


/* Sidebar Text and Icons  */

a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 1.1vw;
  color: white;
  display: block;
}

.sidebar a:hover{
  text-decoration: none;
  background-color: var(--accent2);
  margin-right: 10px;
  border-radius: 4px;
  border: 2px solid white
}



.material-icons {
    background-color: var(--maincolor);
    position: relative;
    vertical-align: middle;  
}

.sidebar a:hover .material-icons{
    background-color: var(--accent2);
  
  }

  .material-icons-outlined {
    background-color: var(--maincolor);
    position: relative;
    vertical-align: middle;  
}

.sidebar a:hover .material-icons-outlined{
  background-color: var(--accent2);

}

#SideNavigationLine {
  color: #f5f5f5;
 
  width: 80%;
}




/* Main viewing Div  */


.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: var(--mainbackground);
   
    
    /*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;}
}


/* Main IFRAME  */

#MainFrame {
    width: 1250px;
    height:99%;
    margin-top: 0px;
    padding-top: 0px;
    border-top: 5px solid var(--maincolor);
    border-right: 5px solid var(--maincolor);
    background-color: var(--mainbackground);
    margin-bottom: 0px;
    padding-bottom: 0px;
}

@media only screen and (max-width: 1400px) {
    #MainFrame {
      width: 1250px;
    }
  }

/*Adding CSS from index */
#logodiv {
    vertical-align: middle;
    background-color: var(--maincolor);
    padding: 1px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 10px;
    margin-right: 20px;
  }
  
  #logodiv2 {
    vertical-align: middle;
    background-color: var(--maincolor);
    padding: 8px;
    padding-top: 10px;
    margin-top: 0px;
    position: fixed;
    left: 0%;
    bottom: 0%;
  }
  
  #logotext {
  font-size: 1.4vw;
  vertical-align: middle;
  color: white;
  padding-left: 5px;
  
  }
  
  #logotext2 {
  font-size: 0.8vw;
  vertical-align: middle;
  color: black;
  width: 16vw;
  }
  
  
  #Topline {
    height: 5px;
    width: 1250px;
    background-color: var(--maincolor);
    position: fixed;
    top: 0;
    left: 0;
  }
  
  #Bottomline{
    height: 5px;
    width: 1250px;
    background-color: var(--maincolor);
    position: fixed;
    bottom: 0;
    left: 0;
  }
  
  #SideLine{
    height: 100%;
    width: 16.5%;
    position: fixed;
    right: 0%;
    background-color: var(--sidepanelcolor);
    z-index: -1;
    
  }

  #BottomBar {
    height: 5px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--maincolor);
  }
  
  .accordion {
    background-color: var(--maincolor);
    color: white;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.2vw;
   transition: 0.3s;
    font-family: 'poppins', sans-serif;
    margin-left: 0.9vw;
    padding: 6px 8px 6px 16px;
  }
  
  .active, .accordion:hover {
    background-color: var(--maincolor); 
    
  }
  
  .active, .accordion:hover .material-icons{
    background-color: var(--maincolor); 
  }
  
  .panel {
    padding: 0 18px;
    display: none;
    background-color: var(--maincolor);
    overflow: hidden;
  }
  
  .accordion2 {
    background-color: var(--maincolor);
    color: white;
    cursor: pointer;
   
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.2vw;
   transition: 0.3s;
    font-family: 'poppins', sans-serif;
    margin-left: 0.8vw;
    padding: 6px 8px 6px 16px;
  }
  
  .panel2 {
    padding: 0 5px;
    display: none;
    background-color: var(--maincolor);
    overflow: hidden;
  }
  
  
  #SideNavigationIcons{
    font-size:1.3vw; 
    color:white;
    margin-right: 10px;
  }

/*End of Sidebar Styling */


/*Styling of Content */


#DashHeadingIcon{
  font-size: 45px;
  color: black;
  background-color: var(--mainbackground);
  display: inline-block;
}

.DashHeadingTitle{
  color: black;
  font-size: 32px;
  text-decoration: none;
  padding-left: 0px;
  padding-top: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  display: inline-block;
}

.DashHeadingTitleHidden {
  color: black;
  font-size: 32px;
  text-decoration: none;
  padding-left: 0px;
  padding-top: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  display: none;
}
 




#MainDash{
  background-color: var(--mainbackground);
}


.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: none;
   
    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;
}

#OptionsButtonIcon{
  font-size: 48px;
  background-color: var(--accentcolor);
}

/*Styling of Pathway Calculator */





#Graph1 {
width: 500px;
height: 500px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
border: 2px solid black;
border-radius: 4px;
padding: 10px;
padding-top: 0px;
font-size: 30px;
text-align: center;
line-height: 1;
background-color: white;
}

#Graph2 {
width: 500px;
height: 500px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
border: 2px solid black;
border-radius: 4px;
padding: 10px;
padding-top: 0px;
font-size: 30px;
text-align: center;
line-height: 1;
background-color: white;
}

#Graph3 {
width: 1055px;
height: 500px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
border: 2px solid black;
border-radius: 4px;
padding: 10px;
padding-top: 0px;
font-size: 30px;
text-align: center;
line-height: 1;
background-color: white;
}

#container1 {
display: grid;
column-gap: 30px;
grid-template-columns: auto auto ;
background-color: white;
padding: 0px;
border-radius: 10px;
grid-template-rows: auto;
margin-left: 0px;
width: 1100px;
}

#header {
width: 1100px;
}
#calcbutton {
float: right;
display:block;
background-color: var(--maincolor);
border: none;
cursor: pointer;
border-radius: 4px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); 
color: white;
height: 40px;
font-size: 24px;
margin-top: 10px;
}

input {
background-color: #f5f5f5;
font-family: 'Poppins' sans-serif;
font-size: 20px;
color: var(--maincolor);
}


input[type="text"]:hover {
color: #ffffff;
background-color: var(--maincolor);
}

input[type="text"]:active {
color: #ffffff;
background-color: var(--maincolor);
}

.accordionwelcometext {
background-color: white;
color: black;
cursor: pointer;
padding: 10px;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
font-family: "poppins", sans-serif;
font-size: 2.4vw;
margin-top: 0px;
padding-bottom: 0px;
padding-left: 0px;


}

.accordianwelcomepanel {
background-color: white;
display: none;
}

#AccordianDataButton {
background-color: white;
color: black;
cursor: pointer;
padding: 10px;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
font-family: "poppins", sans-serif;
font-size: 32px;
margin-top: 0px;
padding-bottom: 0px;
margin-left: 0px;
padding-left: 0px;
font-weight: bold;
}






#InstructionsIcons {
background-color: white;
font-size: 25px; 
color: black;
}

input[type="text"] {
vertical-align: top;
}

#texttoprint {
vertical-align: top;
width: 1100px;
min-height: 100px;  
white-space: normal;
background-color: white;
color: black;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
font-family: "poppins", sans-serif;
font-size: 1.3vw;
}

table {
width: 1100px;
}

#PrintTitle{
display: none;
}

#printbutton{
font-family: "poppins", sans-serif;
}

#ExpandOffer{
width: 1100px;
}





/*These are the print settings */

@media print {
/*Elements that aren't normally shown but do show in report */

#PrintTitle{
display: block;
}

.DashHeadingTitleHidden{
  display: block;
}

/*Elements that are normally shown but aren't when reported */

#calcbutton {
display: none;
}
.accordionwelcometext{
display: none;
}

.title1 {
display: none;
}

#printbutton{
display: none;
}

#ExpandOffer{
display: none;
}


#texttoprint{
font-family: "poppins", sans-serif;
font-size: 20px;
}

}

/* END OF PATHWAY CALCULATOR STYLES */



/*Styling of DropDown Button */


.dropbtn {
        background-color: var(--accentcolor);
        color: black;
        padding-left: 10px;
        font-size: 24px;
        cursor: pointer;
        height: 55px;
        border-radius: 5px;
        border-color: var(--accentcolor);
        display: inline-block;
        margin-top: 5px;
        margin-right: 2vw;
        font-family: "Poppins";
        
      }
      
      .dropdown {
        position: relative;
        display: inline-block;
         transition: 0.3s;
      }
      
      .dropdown-content {
        display: none;
        position: absolute;
        right: 0;
        background-color: #f9f9f9;
        min-width: 300px;
        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: var(--accentcolor);}
      .dropdown:hover .material-icons {background-color: var(--accentcolor);}

      
          
      
#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: var(--maincolor);
          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: var(--accentcolor);
    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;
}

/* Styling of Scrollbar */
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--sidepanelcolor); 
    
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--maincolor); 
    border-radius: 0px;
    
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--accent2); 
  }