
.h3_title{
    font-size: 2em !important;
    font-weight: 700;
    line-height: 1.2;
    color: #4c4846;
}

.Chart_container{
    min-height: 20em;
}


.google-visualization-table .gradient{
    background-color: #2b82bc;
    background-image: none;
    font-weight: 800;
    height: 4em;
    color: white;
    font-size: 1.5rem !important;

}
.google-visualization-table-table td{
    font-size: 1.7rem !important;
    height: 3em;
    text-align: right;
}

.google-visualization-table-table td.frozen-column{
    background-color: #191818;
    color: #ccc7c0;
    font-weight: 700;
    border-right: none;
    width: 10em;
}
.chart_content{
    border-radius: 5px;
}

#table_div{
    padding: 1em;
    border: 2px #ccc7c0;
    border-style: solid solid solid solid;
    
}
/*--------------- Tabs------------- */
/* .tab-wrapper{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    color: white;
}
.solid_color{
    z-index: -2;
    position: absolute;
    min-height: 100%;
    width: 100%;
    background-color: #ccc7c0;
}
.container {
    display: block;
    position: relative;
    cursor: pointer;;
    font-size: 22px;
    font-weight: 700;
    padding: .5em 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  .checkmark {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .container:hover input ~ .checkmark {
    background-color: #4c4846;
  }

    .container input:checked ~ .checkmark {
        background-color: #4c4846;
  } */
  


/* ------------ drop down menu ----------- */
.container {
    margin-top: 0;
    padding: 1em;
  }
  
  .select-box {
    display: flex;
    width: 400px;
    flex-direction: column;
  }
  
  .select-box .options-container {
    background: #2f3640;
    color: #f5f6fa;
    max-height: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.4s;
    border-radius: 8px;
    overflow: hidden;
  
    order: 1;
  }
  
  .selected {
    background: #2f3640;
    border-radius: 8px;
    margin-bottom: 8px;
    color: #f5f6fa;
    position: relative;
  
    order: 0;
  }
  
  .selected::after {
    content: "";
    background: url("img/arrow-down.svg");
    background-size: contain;
    background-repeat: no-repeat;
  
    position: absolute;
    height: 100%;
    width: 25px;
    right: 10px;
    top: 15px;
  
    transition: all 0.4s;
  }
  
  .select-box .options-container.active {
    max-height: 240px;
    opacity: 1;
    overflow-y: scroll;
  }
  
  .select-box .options-container.active + .selected::after {
    transform: rotateX(180deg);
    top: -15px;
  }
  
  .select-box .options-container::-webkit-scrollbar {
    width: 8px;
    background: #0d141f;
    border-radius: 0 8px 8px 0;
  }
  
  .select-box .options-container::-webkit-scrollbar-thumb {
    background: #525861;
    border-radius: 0 8px 8px 0;
  }
  
  .select-box .option,
  .selected {
    padding: 12px 24px;
    cursor: pointer;
  }
  
  .select-box .option:hover {
    background: #414b57;
  }
  
  .select-box label {
    cursor: pointer;
    /* padding: 0 100% 0 0; */
  }
  
  .select-box .option .radio {
    display: none;
  }

/* ----------------------------------------------------- */
@media only screen and (max-width: 600px) {
    .google-visualization-table-table td{
        font-size: 1.5rem !important;
    }
}

