input, select, textarea {
  width: 100%;
  font-size: 18px;
  font-family: inherit;
  padding: 12px 18px;
  margin: 6px 0 8px 0;
  box-sizing: border-box;
  border: 3px solid #FFD5CD;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  background-color: #FFD5CD;
  color: #002222;
}

input:focus, textarea:focus, select:focus {
  /*border: 3px solid #F53915;*/
  border: 3px solid #a51417;
}

input[type=submit], input[type=reset], input[type=button] {
  float: right;
  clear: both;
  /*background-color: #F53915;*/
  background-color: #a51417;
  color: #000000;
  font-size: 20px;
  font-family: "Lemon Milk";
  border: none;
  width: 300px;
  padding: 16px 32px;
  margin: 4px auto;
  cursor: pointer;
}


.btn-input{
  /*background-color: #F53915;*/
  background-color:#a51417;
  color: #000000;
  font-size: 20px;
  font-family: "Lemon Milk";
  border: none;
  width: 300px;
  padding: 16px 32px;
  margin: 4px auto;
  cursor: pointer;

}

.btn-second{
  display: block;
  background-color:#FFFFFF;
  /*color: #F53915;*/
  color: #a51417;
  
  font-size: 20px;
  font-family: "Lemon Milk";
  /*border: 1px solid #F53915 ;*/
  border: 1px solid #a51417 ;
 /* width: 300px;*/
  padding: 6px 12px;
  margin: 4px auto;
  cursor: pointer;
}



textarea {
  height: 100px;
  resize: none;
}

label.login {
  font-size: 18px;
  color: #002222;
}

label.request-form {
  float: left;
  clear: both;
  font-size: 16px;
   /*color: #2b8282;*/
   color: #555;
  padding-right: 5px;
  /*      border:none;
          display:inline-block;
          padding:6px 12px;
          cursor:pointer;
  */
}

label.checkbox-container {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  padding-right: 5px;
  margin-bottom: 12px;
  cursor: pointer;
  /*color: #2b8282;*/
  color: #555;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container input {
  /* hide default chkbx */
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #EFEFFF;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #F53915;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #2b8282;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkmark-radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color:#C1C3C5;
  border-radius: 50%;
}

.checkbox-container:hover input ~ .checkmark-radio {
  background-color: #F53915;
}

.checkbox-container input:checked ~ .checkmark-radio {
  background-color: #2b8282;
}

.checkmark-radio:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark-radio:after {
  display: block;
}

.checkbox-container .checkmark-radio:after {
  left: 6px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.file-upload {
  border: none;
  display: inline-block;
  background-color: #F53915;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.requests {
  border-bottom: 2px solid #FFFFFF;
  text-align: left;
}

tr {
  background-color: #FFD5CD;
}

tbody tr:hover {
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

tbody tr:nth-child(even) {
  background-color: #FFEFE4;
}

th.requests {
  background-color: #161616;
  color: #FFFBF6;
  font-family: "Lemon Milk";
  font-size: 14px;
  font-weight: normal;
  padding: 6px 14px;
}

td.requests {
  color: #000000;
  font-size: 14px;
  padding: 4px 8px 4px 18px;
}

/*	SCSS written for ZAP (Zimmerman Analytic Platform)
*	by Shannon Dybvig at Washington University as part of the Zimmerman Program
*	Last modified: 2021 June
*/
html {
  margin: 0;
  padding: 0;

  background:#222222 ; 
}

body {
  margin: 0px;
  padding: 0px;
  background:#222222 ; 
  font-family: "Trebuchet MS", sans-serif;
  color: #222222;
  line-height: 1.5;
}

header {
  flex-direction: column;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

footer {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}

main {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
}

section {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
}

button.logout {
  /*margin-left: auto; */
  float: right;
  
  color: #2b8282;
  font-family: "Sterilict";
  font-size: 18px;
  font-weight: normal;
  height: 40px;
 
}

nav ul {
  padding-left: 0;
  list-style-type: none;
}

nav li {
  display: inline-block;
  padding: 2px 14px 2px 0;
}

ul.footer {
  padding-left: 0;
  list-style-type: none;
}

li.footer {
  display: inline-block;
  padding: 2px 14px 2px 0;
}

ul.open-summary {
  list-style-type: circle;
  color: #2b8282;
}

/*      **      	headers                      **      */
h1 {
  font-family: "Lemon Milk";
  font-size: 36px;
  font-weight: normal;
  color:  #a51417;
  margin: 0;
}

h1.login {
  text-align: center;
  padding-bottom: 10px;
}

h2 {
  font-size: 30px;
  margin: 0;
}

h2.section {
  font-family: "Sterilict";
  font-size: 30px;
  font-weight: normal;
  /*color: #F53915;*/
  color: #a51417;
  display: flex;
  width: 100%;
}

h2.solo-section {
  font-family: "Sterilict";
  font-size: 30px;
  font-weight: normal;
  /*color: #F53915;*/
  color:  #a51417;
 
  margin: -18px 0 6px 0;
  width: max-content;
  padding: 0 6px;
  /*background-color: #FFFFFF;*/
  background-color: #f8f9fa;
}

h2.card-section {
  font-family: "Sterilict";
  font-size: 26px;
  font-weight: normal;
  /*color: #F53915;*/
  color: #a51417;
  margin: -18px 0 6px 0;
  width: max-content;
  padding: 0 6px;
  background-color: #FFFFFF;
 
}



h2.requests {
  text-align: center;
  clear: both;
  font-family: "Lemon Milk";
  font-size: 28px;
  font-weight: normal;
  /*color: #F53915;*/
  color: #a51417;
}

h3.section {
  font-family: "Sterilict";
  font-size: 26px;
  font-weight: normal;
  color: #2b8282;
  margin: -18px 0 6px 0;
  width: max-content;
  padding: 0 6px;
   /*background-color: #FFFFFF;*/
   background-color: #f8f9fa;
  
}

h3.card-section {
  font-family: "Sterilict";
  font-size: 22px;
  font-weight: normal;
  color: #2b8282;
  margin: -18px 0 6px 0;
  width: max-content;
  padding: 0 6px;
  background-color: #FFFFFF;
  
  
}


h3.card-section-second {
  font-family: "Sterilict";
  font-size: 22px;
  font-weight: normal;
  color: #3d3d3d;
  margin: -18px 0 6px 0;
  width: max-content;
  padding: 0 6px;
  background-color: #dadada;;
 
}

h3.title-text {
  font-family: "Sterilict";
  font-size: 26px;
  font-weight: normal;
  color: #000606;
  margin: -18px 0 6px 0;
  width: max-content;
  padding: 0 6px;
   /*background-color: #FFFFFF;*/
   background-color: #f8f9fa;
}


h3.inside-section {
  font-family: "Lemon Milk";
  font-size: 26px;
  font-weight: normal;
  color: #2b8282;
  padding: 0;
  margin: 16px 0 4px 0;
}

h4.section {
  font-family: "Sterilict";
  font-size: 22px;
  font-weight: normal;
  color: #2b8282;
  margin: -18px 0 6px 0;
  width: max-content;
  padding: 0 6px;
   /*background-color: #FFFFFF;*/
   background-color: #f8f9fa;
}

h4.card-section {
  font-family: "Sterilict";
  font-size: 22px;
  font-weight: normal;
  color: #2b8282;
  margin: -18px 0 6px 0;
  width: max-content;
  padding: 0 6px;
  background-color: #FFFFFF;
  
}

h4.inside-section {
  font-family: "Lemon Milk";
  font-size: 22px;
  font-weight: normal;
  color: #2b8282;
  padding: 0;
  margin: 16px 0 4px 0;
}

.table-caption{
  font-family: "Sterilict";
  font-size: 22px;
  font-weight: normal;
  color: #2b8282;
  margin: -18px 0 6px 0;
  width: max-content;
  padding: 0 6px;
  background-color: #FFFFFF;
  display: block;
 
}

/*	**		p, a			**	*/
/*	Is this used?
p.basic-info {
        font-size:14px;
        margin:0;
}
*/
p.field-info {
  font-size: 14px;
  margin: 0;
}

p.flagged-information {
  font-size: 22px;
  font-weight: bold;
  color: #2b8282;
  margin: 0;
  padding-top: 20px;
}

p.request-summary {
  font-size: 18px;
  margin: 0;
}

p.footer {
  font-size: 14px;
  color: #002222;
  text-align: center;
  width: 600px;
}

p.form-caption {
  font-size: 12px;
  color: #002222;
  margin-top: 0;
}

p.section {
  font-size: 18px;
  margin: 0;
}

p.warning {
  font-size:18px;
  font-weight:bold;
  /*color: #F53915;*/
  color: #D01C29;
}

a {
  /*color: #F53915;*/
  color: #D01C29;
  text-decoration: none;
}

/*	**		img			**	*/
img.footer {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 0;
}

img.spacer {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7px;
}

/*	**		base divs		**	*/
div.zap-form {
  display: flex;
  flex-direction: column;
  width: 900px;
  margin: auto;
  padding: 10px 0 0 0;
}

div.zap-default {
  display: flex;
  flex-direction: column;
  width: 1400px;
  margin: auto;
  padding: 10px 0 0 0;
}

div.subsection {
  display: flex;
  margin-top: 10px;
  column-gap: 1em;
}

div.summary-box {
  flex-direction: column;
  display: flex;
  border: solid 8px #C6C8CA;
  padding: 0 20px 20px 20px;
}

div.default-display-none {
  display:none;
}

#quick-view {
  flex: 1;
}

#new-since-last {
  flex: 3;
}

div.header-subdiv {
  display: flex;
  flex-direction: row;
}

div.form-divider {
  flex-direction: column;
  display: inline-flex;
  border: none;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

div.form-base {
  flex-direction: row;
  display: flex;
  border: none;
  padding: 0 20px 20px 20px;
}

div#updates {
  /* For holding table of updates */
  flex: 2;
}

div#details {
  /* For capturing analysis/query description */
  flex: 1;
}

div#glance {
  /* For the "At a glance" summary on analysis pages */
  flex: 3;
}

div#downloads {
  /* For containing download buttons on analysis page */
  flex: 1;
}

div#query-summary {
  /* For summarizing query results*/
  flex: 3;
}

div#report {
  /* For containing analyst report/notes */
  flex: 2;
}

div#viz-aside {
  /* For containing alongside viz, if small and only one present */
  flex: 1;
}

div#complications {
  flex: 1;
}

div#login_name {
  color:#2b8282; 
  position:relative;
  
  right: 0px;
}

div.btn-center{
  display: flex;
  justify-content: center;
  align-items: center;
}



/*# sourceMappingURL=zap-clear.css.map */

