th,
td {
  text-align: left;
}

.calculator{
  padding: 30px 100px;
  background: #ecf2e6;
}


.cal-output{
  background-color: #FFFFFF;
  border-style: solid;
  border-width: 2px 0px 0px 2px;
  max-width: 100%;
  width: 80vw;
  border-color: #478400;
  box-shadow: 2px 8px 10px -2px rgba(0,0,0,0.5);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 22px 22px 22px 22px;
  padding: 42px 64px 42px 64px;
  border-radius: 28px 28px 28px 28px;
}


@media (max-width:500px){
  .calculator{
    padding: 20px;
  }
  .cal-output{
    width: 90vw;
    padding: 20px 10px 20px 10px;
  }
}
@media (max-width:991px){
  .flex-fill{
    max-width: 100% !important;
  }
}

.d-lg-flex{
  margin-top: 20px !important;
}

.cal-input .form-control{
  background: #406cb4;
  height: 50px;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 1px 1px 1px 2px #406db491;
  outline: none;
  border: 2px solid #406cb4;
}
.cal-input label{
  font-family: 'Open Sans',sans-serif;
  font-weight: 600;
  color: #000;
  font-size: 18px;
  margin-top: 5px;
}

h3{
  display: none;
}

table .form-control{
  border: none;
  background: transparent;
  font-size: 12px;
  padding: 0px;
  color: #03331E;
}

.form-control:disabled, .form-control[readonly]{
  background-color: transparent;
}

/* Table Styles */

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #075F68; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #075F68; 
}


.table-wrapper{
    /* margin: 10px 70px 70px; */
    margin-top:50px;
    margin-bottom:20px;
    box-shadow: 0px 35px 50px rgba( 0, 0, 0, 0.2 );
}

.title-table{
  font-size: 20px;
}

.fl-table {
    border-radius: 5px;
    font-size: 12px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
}

.fl-table td, .fl-table th {
    /* text-align: center; */
    padding: 8px;
}

.fl-table td {
    border-right: 1px solid #f8f8f8;
    font-size: 12px;
}

.fl-table thead th {
    color: #ffffff;
    background: #6ECC6E;
}

.bg-green{
  background: #10B26C !important;
}
.bg-blue1{
  text-align: center;
  background: #03331E  !important;
}
.bg-blue2{
  /* background: #2d6cd3 !important; */
  text-align: center;
  background: #EA5C5C  !important;
}

.fl-table thead th:nth-child(odd) {
    color: #ffffff;
    /* background: #324960; */
    background: #075F68;
}

.fl-table tr:nth-child(even) {
    background: #F8F8F8;
}



/* Responsive */

/* @media (max-width: 767px) {
    .fl-table {
        display: block;
        width: 100%;
    }
    .table-wrapper:before{
        content: "Scroll horizontally >";
        display: block;
        text-align: right;
        font-size: 11px;
        color: white;
        padding: 0 0 10px;
    }
    .fl-table thead, .fl-table tbody, .fl-table thead th {
        display: block;
    }
    .fl-table thead th:last-child{
        border-bottom: none;
    }
    .fl-table thead {
        float: left;
    }
    .fl-table tbody {
        width: auto;
        position: relative;
        overflow-x: auto;
    }
    .fl-table td, .fl-table th {
        padding: 20px .625em .625em .625em;
        height: 60px;
        vertical-align: middle;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        width: 120px;
        font-size: 13px;
        text-overflow: ellipsis;
    }
    .fl-table thead th {
        text-align: left;
        border-bottom: 1px solid #f7f7f9;
    }
    .fl-table tbody tr {
        display: table-cell;
    }
    .fl-table tbody tr:nth-child(odd) {
        background: none;
    }
    .fl-table tr:nth-child(even) {
        background: transparent;
    }
    .fl-table tr td:nth-child(odd) {
        background: #F8F8F8;
        border-right: 1px solid #E6E4E4;
    }
    .fl-table tr td:nth-child(even) {
        border-right: 1px solid #E6E4E4;
    }
    .fl-table tbody td {
        display: block;
        text-align: center;
    }
} */


.highcharts-figure, .highcharts-data-table table {
    min-width: 100%; 
    max-width: 100%;
    margin: 1em auto;
}

#container {
    height: 400px;
}

.highcharts-data-table table {
	font-family: Verdana, sans-serif;
	border-collapse: collapse;
	border: 1px solid #EBEBEB;
	margin: 10px auto;
	text-align: center;
	width: 100%;
	max-width: 100%;
}
.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #222;
}
.highcharts-data-table th {
	font-weight: 600;
    padding: 0.5em;
}
.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
    padding: 0.5em;
}
.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
    background: #A2B290;
}
.highcharts-data-table tr:hover {
    background: #A2B290
;
}

.highcharts-axis .highcharts-yaxis{
  display: none !important;
}


.button-save{
  font-size: 20px;
  font-weight: 600;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #478400;
  border-radius: 12px 12px 12px 12px;
  padding: 5px 30px 5px 30px;
  /* width: 150px; */
}

.form-control:disabled, .form-control[readonly] {
    background-color: #406cb4;
    color: white;
}