/* Custom App CSS Below --------------------------------- */
/*Fonts ––––––––––––––––––––––––––––––––––––––––––––––––––*/
@import url('https://fonts.googleapis.com/css?family=Nunito&display=swap');

/* Main Layout ––––––––––––––––––––––––––––––––––––––––––––––––––*/
body {
  font-family: "Nunito";
  background-color: #052837;
  color: #d8d8d8;
  margin: 0;
  padding: 0;
}
button {
  font-family: "Nunito";
  color: #fff;
  background-color: #66c;
  border: 2px solid #66c;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  display: block;
}
h1 {
  font-family: "Nunito";
  font-weight: bold;
  letter-spacing: 2.1px;
  font-size: 28px;
  padding-left: 12px;
}

h2, h3, h4, h5 {
  font-family: "Nunito";
  text-align: center;
  font-weight: bold;
  letter-spacing: 2.1px;
  font-size: 21px;
  padding-left: 12px;
}
p {
  font-family: "Nunito";
  font-weight: 400;
  font-size: 14px;
  padding-left: 12px;
}
a {
  text-decoration: none;
}
.text-padding{
  padding: 5px;
}

/* Main Layout */

.page-layout {
  display: flex;
  flex-direction: row;
  overflow: auto;
  width: 100vw;
  height: 100vh;
}

.div-user-controls {
  padding: 40px;
  width: 30%;
  min-width: 500px;
  background-color: #052837;
  overflow: auto;
}

.div-for-charts{
  display: flex;
  flex-direction: column;
  width: 70%;
  background: #F5F5F5;
  padding: 10px;
  gap: 10px;
  overflow: auto;
}

/* Graph Layout ––––––––––––––––––––––––––––––––––––––––––––––––––*/

.single-chart-container {
  border: 1px solid #B7B7B7;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 10px;
}

#graph_1 {
  flex-grow: 1;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}

#graph2 {
  flex-grow: 1;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}

.mapboxgl-canvas, .mapboxgl-map {
  min-width: 100%;
}

/* Graph Control Objects ––––––––––––––––––––––––––––––––––––––––––––––––––*/

.div-for-dropdown {
  padding-top: 12px;
  padding-bottom: 12px;
}

.div-for-slider {
  width: 97%;
  text-align: center;
}

.logo {
  height: 115px;
  padding-bottom: 12px;
  margin-left: 8px;
}

.info-tooltip-icon {
  width: 20px;
  height: 20px;
}

.Select-control, .Select-menu-outer, .Select-multi-value-wrapper, .select-up, .is-open .Select-control {
  background-color: #1E1E1E;
  color: white;
  
}

#bar-selector .Select-multi-value-wrapper{
  max-height: 82px;
  overflow-y: auto;
  margin: 0px 0px -3px 0px;
}

.Select-control{
  border: 0.5px solid #dbdbdb44;
}

.has-value.Select--single>.Select-control .Select-value .Select-value-label, .has-value.is-pseudo-focused.Select--single>.Select-control .Select-value .Select-value-label {
  color: white;
}
._dash-app-content {
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}
.has-value.Select--single>.Select-control .Select-value .Select-value-label, .has-value.is-pseudo-focused.Select--single>.Select-control .Select-value .Select-value-label{
  color: #d8d8d8;
  font-weight: 400;
  font-size: 14px;
}

._dash-undo-redo {
  display: none;
}

/* For Mobile Phones and small screens ––––––––––––––––––––––––––––––––––––––––––––––––––*/
@media only screen and (max-width: 768px) {

  h1, h2, h3, p {
    text-align: center;
  }

  body {
    display: block;
    margin: 0px;
    overflow-y: scroll;
  }

  .page-layout {
    flex-direction: column;
    height: auto;
  }

  .div-for-charts {
    padding: 0px;
    width: 100%;
  }

  .div-user-controls {
    padding: 10px;
    width: 100%;
  }
  
  .single-chart-container {
    padding: 0px;
    border: none;
  }
} 

/* width */
::-webkit-scrollbar {
  width: 10px !important;
  display: block !important;
}

/* Track */
::-webkit-scrollbar-track {
  background: #1e1e1e !important; 
  border-radius: 10px !important;
  display: block !important;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: transparent; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #d8d8d870 !important; 
}


