body {
  width: 100%;
  margin: 0px;
  padding: 0px;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  color: #666;
}
a {
  color: #666;  
}
canvas {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
h2 {
  padding: 3px;
  margin: 3px;
}
h3 {
  padding: 3px;
  margin: 3px;
}

.headrow {
  position: relative;
  margin: 0 auto;
  padding: 7px;
  background: rgb(204, 204, 204);
  background: linear-gradient(
    0deg,
    rgba(204, 204, 204, 1) 0%,
    rgba(255, 255, 255, 1) 10%
  );
}

.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.headerSelect {
  width: 150px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
  margin: 0px;
  box-shadow: 0 0 15px 4px rgba(0,0,0,0.06);
}

.dropbtn {
  background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
  background-color: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  display: inline-block;
  cursor: pointer;
  color: #666666;
  font-size: 15px;
  padding: 8px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #ffffff;
  box-shadow: 0 0 8px 4px rgba(0,0,0,0.06);
}

.dropbtn:hover {
  background: linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
  background-color: #e9e9e9;
}

.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 90%;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;}

.hidden {
  visibility: hidden;
}

.panel-wrap {
  position: fixed;
  top: 55px;
  bottom: 0;
  right: 0;
  width: 25em;
  transform: translateX(100%);
  transition: 0.2s ease-out;
}
.panel-wrap-out {
  transform: translateX(0%);
}
.panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  color: #000;
  overflow: auto;
  padding: 0.5em;
}

.error {
  margin-top: 7px;
  color: red;
  font-size: 12px;
}
form {
  padding: 3px;
  margin-top: 7px;
  margin-right: 20px;
  border-radius: 3px 3px 3px 3px;
  background-color: #fff;
}
.btnFooter {
  margin-top: 30px;
}
.myButton {
  box-shadow: inset 0px 1px 0px 0px #ffffff;
  background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
  background-color: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  display: inline-block;
  cursor: pointer;
  color: #666666;
  font-size: 15px;
  padding: 8px 24px;
  text-decoration: none;
  box-shadow: 0 0 8px 4px rgba(0,0,0,0.06);
}
.myButton:hover {
  background: linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
  background-color: #e9e9e9;
}
.myButton:active {
  position: relative;
  top: 1px;
}

button,
input,
select {
  font-size: 100%;
}
textarea {
  font-size: 80%;
  /*height: 250px;*/
  height: 30em;
}
input[type='text'],
select,
textarea {
  width: 100%;
  padding: 7px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  box-shadow: 0 0 8px 4px rgba(0,0,0,0.06);
}

.row {
  display: flex;
  flex-direction: row;
  margin-bottom: 3px;
}
.flex-left {
  width: 75%;
  padding-left: 10px;
}
.flex-right {
  width: 25%;
  text-align: right;
  padding-right: 10px;
}
.flex-right a {
  color: red;
}
.exchangeDeleteLink,
.queueDeleteLink {
  text-decoration: none;
  font-size: 0.3;
}