
html {
    height: 100%;
}

body {
  background-image: linear-gradient(navy,blue);
  background-repeat: no-repeat;
  height: 100%;
  width: 95%;
  background-attachment: fixed;
  color:white;
}

h1 {
  color: white;
  font-size:40px;
  font-weight:bold;
  margin-bottom:1px"
}

h2 {
  color: white;
}

h3 {
  color: white;
}

h4 {
  font-size: 24px;
  color:gray;
}


p {
  color: lightgray;
}

.container-fluid {
  padding: 0px;
  margin: 25px;
}

.modal-content {
  /*background-image: linear-gradient(gray, navy);*/
  background-color: gray;
  border-color: lightgray;
  border-width: 2px;
}

#state-items {
  display: flex;
  align-items: flex-start;
  justify-content: left;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0vw;
  margin-top: 30px;
}

.item-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: 7px;
}


.item {
  display: flex;
  position: relative;
  width: 60px;
  height: 60px;
  margin: 7px;
  transition: order 0.5s ease-in;
}


.item .name {
  position: absolute;
  /*right: 8px;*/
  top: 2px;
  left: 0px;
  width: 100%;
  text-align: center;
  font-size: 11px;
  visibility: hidden;
}

.item .abbrev {
  position: absolute;
  /*right: 8px;*/
  top: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  font-size: 11px;
}

.item .symbol {
  position: absolute;
  top: 23px;
  left: 7px;
  font-size: 21px;
  text-align: left;
}


.item .group {
  position: absolute;
  /*left: 10px;*/
  bottom: 4px;
  left: 3px;
  font-size: 12px;
  text-align: left;
  visibility: hidden;
}


.item .duration {
  position: absolute;
  top: 15px;
  right: 4px;
  font-size: 9px;
  text-align: right;
}

.item .order {
  position: absolute;
  top: 35px;
  right: 4px;
  font-size: 9px;
  text-align: right;
  visibility: visible;
}



.item.gray-background {
  background-color: gray;
}
.item.yellow-background {
  background-color: yellow;
}
.item.black-background {
  background-color: black;
}
.item.orange-background {
  background-color: orange;
}
.item.purple-background {
  background-color: purple;
}
.item.green-background {
  background-color: green;
}
.item.red-background {
  background-color: red;
}
.item.blue-background {
  background-color: blue;
}
.item.aqua-background {
  background-color: aqua;
}
.item.maroon-background {
  background-color: maroon;
}
.item.fuchsia-background {
  background-color: fuchsia;
}
.item.olive-background {
  background-color: olive;
}
.item.lime-background {
  background-color: lime;
}
.item.navy-background {
  background-color: navy;
}
.item.teal-background {
  background-color: teal;
}
.item.teal-background {
  background-color: teal;
}
.item.darkred-background {
  background-color: darkred;
}
.item.crimson-background {
  background-color: crimson;
}
.item.mediumvioletred-background {
  background-color: mediumvioletred;
}
.item.saddlebrown-background {
  background-color: saddlebrown;
}
.item.darkgoldenrod-background {
  background-color: darkgoldenrod;
}
.item.steelblue-background {
  background-color: steelblue;
}
.item.blueviolet-background {
  background-color: blueviolet;
}
.item.indigo-background {
  background-color: indigo;
}
.item.seagreen-background {
  background-color: seagreen;
}
.item.darkslategray-background {
  background-color: darkslategray;
}
.item.darkslateblue-background {
  background-color: darkslateblue;
}
.item.darkgreen-background {
  background-color: darkgreen;
}
.item.dimgray-background {
  background-color: dimgray;
}
.item.darkgray-background {
  background-color: darkgray;
}



.item-button {
  border-radius: 4px;
  border-color: white;
  opacity: 0.35;
}

.item-button:hover {
  box-shadow: 5px 5px hsla(0, 0%, 0%, 0.9);
  border-color: black;
  opacity: 0.75;
}

.item-button:active,
.item-button.is-checked {
  border-width: 4px;
  border-color: black;
  /*box-shadow: -5px 5px hsla(0, 0%, 0%, 1);*/
  /*box-shadow: 5px 5px hsla(0, 0%, 0%, 1);*/
  box-shadow: 5px 7px 15px 12px rgba(0,0,0,1);
  text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
  opacity: 1;
}



.button {
  font-family: sans-serif;
  font-size: 16px;
  text-shadow: 0 1px white;
  cursor: pointer;
  border: none;
  border-radius: 7px;
  padding: 0.5em 1.0em;
}

.radio-button {
  display: inline-block;
  background: #EEE;
  background-image: linear-gradient( to bottom, hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.4) );
  color: #222;
}

.radio-button:hover {
  background-color: #8CF;
  text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
  color: #222;
}

.radio-button:active,
.radio-button.is-checked {
  background-color: #28F;
}

.radio-button.is-checked {
  color: white;
  text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}

.radio-button:active {
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}


.radio-button-group {
  margin-bottom: 10px;
}

.radio-button-group:after {
  content: '';
  display: block;
  clear: both;
}

.radio-button-group .radio-button {
  float: left;
  border-radius: 0;
  margin-left: 0;
  margin-right: 1px;
}

.radio-button-group .radio-button:first-child { border-radius: 0.5em 0 0 0.5em; }
.radio-button-group .radio-button:last-child { border-radius: 0 0.5em 0.5em 0; }

.dropdown-toggle.button:hover {
  background-color: lightgray;
}

.dropdown-item {
  font-size: 16px;
}

.dropdown-item:hover {
  background-color:navy;
}

.dropdown-menu {
  background-image:linear-gradient(black, blue);
  border-color: gray;
  border-width: 2px;
}


.dropdown-menu {
  background-image:linear-gradient(black, blue);
  border-color: gray;
  border-width: 2px;
}


/*  TIME  */

#datetime {
  font-size: 20px;
  font-weight: bold;
  color: black;
  text-shadow: 0 2px gray;
  background-image: linear-gradient(lightgray, slategray);
  padding:10px;
  margin: 5px;
  border-radius: 10px;
}


#record {
  background-image: linear-gradient(lightgray, pink);
  border-style: solid;
  border-width: 2px;
  border-color: gray;
  font-weight: bold;
}

#record:hover {
  background-image: linear-gradient(white, pink);
}

#record:active {
  box-shadow: inset 0 1px 5px hsla(0, 0%, 0%, 0.8);
}
