html,
body {
  height: 100%;
  width: 100%;
}

h1 {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff;
  font-family: sans-serif;
}

.option_container {
  width: 89vw;
  height: 72.9vh;
  display: flex;
}

.main-option {
  width: 60%;
  height: 100%;
  background-color: #cwcwcw;
  align-items: top;
}

@media (max-width: 991px) {
  .main-option {
    width: 100%;
    height: 100%;
  }
}

.optiondetail-div {
  width: 40%;
  height: 100%;
}

@media (max-width: 991px) {
  .optiondetail-div {
    width: 100%;
    height: 100%;
  }
}

.graphdetail-div {
  width: 60%;
  height: 100%;
}

@media (max-width: 991px) {
  .graphdetail-div {
    width: 100%;
    height: 100%;
  }
}


.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .4s;
  display: flex;
  justify-content: center;
  align-items: top;
}

.main-option:hover .overlay,
.oddata:hover .overlay,
.gddata:hover .overlay {
  opacity: 1;
}

.oddata,
.gddata {
  width: 100%;
  height: calc(90% - 1px);
  //height: 100%;
  background-color: #cwcwcw;
}

.oddata,.gddata  {
  margin-bottom: 1px;
}

.nav-tabs {
	background: #51596a;
}

.nav-tabs a {
	color: #ffffff;
}
a:hover, a:focus, a.click  {
	background: #e37878;
}

div::-webkit-scrollbar {
    width: 2px;
    background-color: rgba(0,0,0,.1);
}
.optiondetail-div::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,.1);
    border-radius: 2px
}

.table-wrapper::-webkit-scrollbar {
  height: 2px; /* reduces thickness */
}

.table-wrapper::-webkit-scrollbar-track {
  background: #111; /* background of the track */
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: green; /* thumb color */
  border-radius: 2px;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 1px;
    padding-left: 1px;
}

.nav>li>a {
    position: relative;
    display: block;
    padding: 8px 10px;
}

.btn-info {
    color: #fff;
    background-color: #555858;
    border-color: #555858;
    font-size: 13px;
    padding: 4px 6px;
}

.mt {
	margin-top: 0px;
}

.mb {
	margin-bottom: 0px;
}

.row {
    margin-right: 0px;
    margin-left:  0px;
}

.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 7px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 120px;
    padding: 2px 0;
    margin: 1px 0 0;
    font-size: 12px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 4px 10px rgba(0,0,0,.175);
    box-shadow: 0 4px 10px rgba(0,0,0,.175);
}

.datepicker-days {
    text-align: center;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

/*Added on 23 Jul 23 */
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li>a:hover {
    color: #fff;
    cursor: default;
    background-color: #0b24e5;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

.modal-dialog {
  position: relative;
  display: table;
  overflow: auto;
  width: auto;
  min-width: 300px;
}
.modal-body { /* Restrict Modal width to 50% */
  overflow-x: auto !important;
  max-width: 50vw !important;
}

.freeze-col {
    position: sticky;
    left: 0;
    background-color: #f2f2f2;
}
