
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

body,
html {
  font-family: 'Roboto', sans-serif;
}

:root {
  --rotovizgrey: #546975;
  --rotovizred: #d10501;
}

/* Control Radio Buttons */ 
input[type="radio"] {
  cursor: pointer;
  position: absolute;
	opacity: 0;
	width: 0;		
}

.klb-group label {
  color: lightgrey;
  font-size: 20px;
}

.klb-group input[type="radio"].clear:checked + label {
  color: lightgrey;
}

.klb-group input[type="radio"].lock:checked + label {
  color: darkgreen;
}

.klb-group input[type="radio"].block:checked + label {
  color: red;
}

.klb-group input[type="radio"].remove + label {
  color: darkgrey;
}


.klb-group i {
  margin-right: 10px;
}

/* DATA TABLE TABS */
#tabhighlight {
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding-right: 2px;
  padding-left: 2px;
}

.nav-tabs {
  background-color: var(--rotovizgrey);
  border-bottom: 1px solid var(--rotovizgrey);
  margin-bottom: 10px;
}

ul.nav-tabs {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  text-align: center;
  padding: 0;
}

.nav-tabs li {
  flex-grow: 1;
}
.nav-tabs li a {
  color: white !important;
  border: none !important;
  margin: auto;
}

.nav-tabs li a:hover,
.nav-tabs li a:focus,
.nav-tabs > .active > a {
  background-color: black !important;
  color: white !important;
  border: none !important;
  border-radius: 0 !important;
}

/* Group Remove Button */
.groupRemove,
.groupRemove:hover,
.groupRemove:focus,
.groupRemove:active {
  padding: 0;
  border: none;
  font-size: 20px;
  color: darkgrey;
  background-color: transparent;
  /* show a hand cursor on hover; some argue that we
  should keep the default arrow cursor for buttons */
  cursor: pointer;
}

/* Data Table Fields */
table.dataTable input[type=number] { 
  color: darkred;  
  text-align: right;
  float: right;
  width: 100%;
}

table.dataTable {
  font-size: 14px;
  white-space: nowrap;
}

.dataTables_filter {
  width: 50%;
  background-color: lightgreen;
  border: 1px solid green;
  border-radius: 5px;
  text-align:left;
  float:left;
  display: block;
}
.dataTables_filter input[type="search"] {
  margin: 5px;
  text-align:left;
}

/* Button Groups
*/
.btn-group {
  vertical-align: baseline;
}

.btn-default.active, .btn-default:active, .open>.dropdown-toggle.btn-default {
  color: white;
  background-color: var(--rotovizred);
}

/* Checkbox For User Add */
input[type=checkbox].groupAdd { display:none; } /* to hide the checkbox itself */

/* basic, unchecked icon */
input[type=checkbox].groupAdd + label:before { 
  font-family: FontAwesome;
  display: inline-block;
  font-size: 20px;
  content: "\f234"; 
  color:lightgrey; 
} 

/* checked icon */
input[type=checkbox].groupAdd:checked + label:before { 
  content: "\f234"; 
  color: darkgreen; 
} 


/* Drop Down Panel Style */
.panel-default>.panel-heading {
  background-color: var(--rotovizred);
  color: white;
  font-weight: 600;
}


/* Compute Lineups Div / Button */
.compute-lineups> .btn-default {
  color: white;
  background-color:var(--rotovizred);
  font-size:20px;
  width: 40%;
  margin: 10px auto;
}

.compute-lineups {
  text-align:center;
  border-bottom: 2px solid darkgrey;
  width:100%;
  margin: 10px auto;
}

/* add to group Button 
*/
button.dt-button {
  color: white !important;
  background: darkgreen !important;
  border: 3px solid darkgreen !important;
  border-radius:4px !important;
  font-size: 14px !important;
  padding: 2px 10px !important;
  transition: all 0.25s ease;
}

button.dt-button:hover {
  color: white !important;
  background: green !important;
}

button.dt-button:focus,
button.dt-button:active {
  color: rgba(0,0,0,0) !important;
  background: green !important;
}


/* Slider Input CSS 
*/
.irs-bar {
  background: var(--rotovizred) !important;
  border: 0 solid grey !important;
}
.irs-from, .irs-to, .irs-single {
  background: var(--rotovizred) !important;
}

.form-control[disabled] {
  background-color: red; 
  visibility: hidden;
  display:none;
}

.options-class .form-group {
  margin: 0;
}


.summary-table {
  width:80% !important;
  margin:auto !important;
}

.help-box {
  width:80%; 
  background-color: lightgrey; 
  margin:auto; 
  border: 1px solid lightgrey;
  border-radius:10px;
}

.help-box p {
  margin: 15px;
}


/* Div Options class
*/
.options-class {
  border: 1px solid var(--rotovizgrey);
  padding: 20px 10px;
  width:100%;
  display: flex;
  justify-content: space-between;
}

.options-class label {
  display: none;
}

.options-text {
  margin: auto 15px;
  font-size:18px;
  font-weight:600;
}

/* Checkboxes for Customization*/
div.checkbox > label {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

div.checkbox > label input {
  opacity: 0;
  width: 0;
  height: 0;
}

div.checkbox input[type=checkbox] + span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 34px;
  -webkit-transition: .4s;
  transition: .4s;
}

div.checkbox input[type=checkbox] + span:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius:50%;
  -webkit-transition: .4s;
  transition: .4s;
}

div.checkbox input[type=checkbox]:checked + span {
  background-color: var(--rotovizred);
}

div.checkbox input[type=checkbox]:focus + span {
  box-shadow: 0 0 1px lightgrey;
}

div.checkbox input[type=checkbox]:checked + span:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.options-class .form-control,
.options-class .selectize-input{
  font-size: 20px;
  margin-bottom:0;
  border: 1px solid #666;
}

/* Tables for Lineups 
*/
#lineup_results {
  display: flex;
  flex-wrap: wrap;
  background-color: #EEE;
}
.lineup-item {
  font-size: 10pt;
  width: 600px;
  margin: 10px auto 20px auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
/*.lineup-item {
  display:inline-block; 
  width: 33%; 
  padding:5px;
  font-size:9pt;
}*/
/*
#page-header{
  height: 290px;
}
*/

.container {
  position: absolute;
  top: 300px;
  left: 0;
  right: 0;
  bottom: 0;
  width:100%;
  background: tomato;
  overflow: auto;
}