html {
  font-size: 16px;
}
body {
  background-color: black;
  color: white;
  text-decoration: none;
  text-align: center;
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.5rem;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

table {
  color: lightgrey;
  font-weight: light;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  table-layout: fixed;
  /*! width: 100%; */
  
  /*! overflow-x: auto; */
}
thead {
  text-transform: uppercase;
  font-weight: bold;
}
tbody {
    font-size: 0.9rem;
}
td {
  padding: 5px 10px;
}

tr {
  border-bottom: 0.25px ridge #051317;
}

a {
  text-decoration: none;
  color: white;
}

.hidden {
  display: none;
}
.open_data_ref_link {
  color: purple;
}

.open_data_ref_link:before {
  content: "🔎";
  font-size: 0.65rem;
  vertical-align: super;
}


col.org_spend_yoy-name, col.vendor_spend_yoy-name {
  min-width: 30%;
}
col.org_spend_yoy-value, col.vendor_spend_yoy-value  {
  /*! width: 15%; */
  white-space: nowrap;
}

.format-currency {
  text-align: right;
}


#disclaimer {
  font-size: 0.7rem;
}
.disclaimer::before {
  content: "Disclaimer: This is not an official source of data representation... it's a proof of concept."
}

#menu-container, .container_instrument_type{
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px;
  background-color: rgba(31,41,55,.3);
}

.container_instrument_type{
  font-size: .8rem; 
  max-width:fit-content;
  display: none;
}
.instrument_type_option{
  display: none !important;
  font-size: .8rem; 
  max-width: 200px;
}
  
.menu-item, .instrument_type_option  {
  color: white;
  border: 2px solid rgba(55, 65, 81, 0.5);
  cursor: pointer;
  border-radius: 10px;
  padding: 3px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item.selected, .instrument_type_option.selected {
  font-weight: bolder;
  background-color: rgba(30,58,138,.2);
}

.table_pagination a {
  margin: 6px;
}


.table_footer {
  display: flex;
  margin: auto;
  width: 100%;
  justify-content: space-around;
}
.table_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  /*! border: 1px solid lightblue; */
  /*! border-radius: 30px; */
  padding-bottom: 5px;
  overflow-x: auto;
}

.sort-option::after {
  color: lightblue;
  content: '↕';
  cursor: pointer;
}
.sort-by.descending::after {
  color: yellow;
  content: '↓';
}
.sort-by::after {
  color: yellow;
  content: '↑';
}


.pagination_start_items::before {
  content: '<<';
  cursor: pointer;
}
.pagination_prev_items::before {
  content: '<';
  cursor: pointer;
}
.pagination_next_items::before {
  content: '>';
  cursor: pointer;
}
.pagination_end_items::before {
  content: '>>';
  cursor: pointer;
}

.selected {
  color: yellow;
}

/*
@media screen and (max-width: 800px ) {
  html {
    font-size: 95%;
  }
}

@media screen and (max-width: 750px ) {
  html {
    font-size: 80%;
  } 
}


@media screen and (max-width: 650px ) {
  html {
    font-size: 75%;
  } 
}

@media screen and (max-width: 450px ) {
  html {
    font-size: 50%;
  } 
}

*/
div.parent_container {
  width: 95%;
  margin: auto;
}




.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

span.toggle-text::before {
  content: "Yes";
}


.overlay-content.features-disabled p::before {
  content: "It may take a minute or two to load features. Continue to use the site until it's loaded.";
}

.overlay-content.features-enabled-complete p::before {
  content: "You can now sort by all columns.";
}

/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 25%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #27AE60;
	color: white;
}

.sources {
  padding-top: 10px;
  font-size: 1.5rem;
  a {
    color: lightskyblue;
    font-size: 1rem;
  }
}


#enable-features-button {
  background-color: rgba(31,41,55,.3);;
  border: 2px solid rgba(55, 65, 81, 0.5);
  border-radius: 10px;
  color: white;
  padding: 10px;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  
  cursor: pointer;
  
}
.container_enable_features {
  border-top:1px dotted lightblue;
  border-bottom: 1px dotted lightblue;
  margin: 10px auto;
  max-width: 50%;
}

td a {
  white-space: nowrap;
}
td.format-currency {
  white-space: nowrap;
}
tfoot {
  font-weight: bold;
}