:root {
    --primary: #101828;
    --border-color: #EAECF0;
    --med-text: #475467;
    --light-text: #7E8BA3;
    /* --brand-color: rgb(0,109,170); */
    --brand-color: #379392;
    --brand-color-hover: #2a7271;
  /* --brand-color: rgb(93,97,229); */
    /* --brand-color-hover: rgb(1, 94, 148); */
    /* --brand-color-hover: rgb(60,64,216); */
    --max-width: 80rem;
    --sm-break: 49rem;
    --accent-color: #b3f6e8;
    --featured: #fff7d3;
    --featured-border-color: #e8e2bc;
}
@view-transition {
  navigation: auto;
}
#primary{
  view-transition-name: primary;
}
.local body {
  border-top: 10px solid var(--brand-color);
  position: relative;
}

.local body::before {
  content: "Local";
  position: fixed;
  top: 0;
  right: 0;
  background: var(--brand-color);
  color: white;
  padding: 2px 8px;
  font-size: 12px;
  z-index: 9999;
  border-bottom-left-radius: 4px;
}
 body {
    font: 100%/1.4em 'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";

    color: var(--primary);
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;

  }
  body > *{
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-items: top;
  }
  body > style,
  body > script{
    display: none;
  }
  h1{
    margin: 1em 0;
    line-height: 1.3em;
}
h2 {
  line-height: 1.3em;
  font-size: 2em;
  margin: 2rem auto;
}
h3{
    margin: 2em 0 1em;
}
.lc {
    max-width: 65rem;
    width: 100%;
    padding: 0 1em;
    margin: auto;
    box-sizing: border-box;
  }
  main.lc{
    width: 100%;
    background: #fff;
    min-height: 100vh;
    overflow: hidden;
    max-width: 40em;
}
input,
  textarea {
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    font-size: 1em;
    padding: 0.6em 0.4em;
  }
  .statusLabel{
    padding: .3rem .5rem;
    border-radius: .3em;
    font-size: .9em;
    font-weight: bold;
    position: relative;

}
#canny-changelog-iframe{
  min-height: auto;
}
.statusLabel.in-hand{
    background-color: rgb(253,246,222);
    color: rgb(104,85,28);
}
.statusLabel.in-hand::before{
    background-color: rgb(104,85,28);
}
.statusLabel.grading{
  color: rgb(43,85,145);
  background-color: rgb(231,242,254)
}
.statusLabel.grading:before{
  background-color: rgb(43,85,145);
}
.statusLabel.incoming{
  color: rgb(116,69,36);
  background-color: rgb(250,241,233)
}
.statusLabel.incoming:before{
  background-color: rgb(116,69,36);
}
.statusLabel.will-grade{
  color: rgb(126,63,206);
  background-color: rgb(218,209,230)
}
.statusLabel.will-grade:before{
  background-color: rgb(126,63,206);
}
.statusLabel.not-grading{
  color: rgb(43,92,92);
  background-color: rgb(218,248,248)
}
.statusLabel.not-grading:before{
  background-color: rgb(43,92,92);
}
.statusLabel.for-sale{
  color: rgb(115,13,81);
  background-color: rgb(251,223,242)
}
.statusLabel.for-sale:before{
  background-color: rgb(115,13,81);
}
.statusLabel.holding{
  color: rgb(52,69,86);
  background-color: rgb(230,235,239)
}
.statusLabel.holding:before{
  background-color: rgb(52,69,86);
}
.statusLabel.sold{
  color: rgb(20,82,41);
  background-color: rgb(222,247,231)
}
.statusLabel.sold:before{
  background-color: rgb(20,82,41);
}
contain-element > .grid-two-up:first-child,
contain-element > .grid-three-up:first-child{
  margin: 2em 0 0;
}
.grid-four-up{
  display: grid;
    align-items: baseline;
    grid-column-gap: 1em;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (min-width: 49rem){
  .grid-large-auto{
    display: grid;
    align-items: baseline;
    grid-template-columns: repeat(auto-fit, minmax(10px, auto));;
    grid-column-gap: 1em;
  }
  .grid-three-up{
    display: grid;
      align-items: baseline;
      grid-template-columns: 1fr 1fr 1fr;
      grid-column-gap: 1em;
      grid-auto-rows: 1fr;
      align-items: stretch;
  }
  .grid-two-up{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1em;
  }
  .grid-two-up p{
      justify-self: end;
  }
}
.form-list {
    list-style-type: none;
    padding: 0;
    margin: 3em 0 2em;
    width: 100%;
}
h3+.form-list{
    margin-top: 1em;
}
.form-list .note{
    display: block;
    margin: 0;
    font-size: .9em;
    color: var(--medium);
    font-style: italic;
}
.form-list .note + .note{
  margin-top: 1.2em;
}
.form-list li{
    display: block;
    margin-bottom: 2em;
}
.form-list label{
    display: block;
    margin-bottom: .5em;
}
.form-list label small{
  display: block;
  color: var(--medium);
}
.form-list .inline label{
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.8em;
    font-size: 1rem;
}
.form-list input[type="text"],
.form-list input[type="email"],
.form-list input[type="url"],
.form-list input[type="password"] {
    padding: .7em 1em;
    width: 100%;
    box-sizing: border-box;
}
.form-list select{
    border: 1px solid var(--light);
    width: 100%;
    padding: .7em 1em;
    font-size: 1rem;
}
.form-list textarea{
    width: 100%;
    height: 25em;
}
.form-list textarea.concise{
  height: 10em;
}
.form-list input[type="submit"] {
    width: 100%;
    padding: 1em;
}
.form-list b{
    color: red;
}
select{
    border: 1px solid var(--border-color);
width: 100%;
padding: .7em 1em;
font-size: 1rem;
  }

.btn{
  background: var(--brand-color);
  color: #fff;
  padding: .5em 1.4em;
  text-decoration: none;
  border-radius: .3em;
  box-sizing: border-box;
}
.btn:hover{
  background: var(--brand-color-hover)
}
input[type="submit"].btn,
button.btn{
  border: 0;
  font-size: 1rem;
  line-height: 1.4em;
}
.btn-light{
  background: #fff;
  color: var(--primary);
  border: 1px solid #e7e7e7;
  box-shadow: 0 0 0 1px #e7e7e7;
  text-transform: uppercase;
}
.btn-light:hover{
  background: #f7f7f7;
}
.btn-alt{
    padding: .5em 1.4em;
    color: var(--brand-color);
    background: white;
    border: 1px solid var(--brand-color);
    text-decoration: none;
    border-radius: .3em;
    box-sizing: border-box;
    position: relative;
    transition: all 0.2s ease-in-out;
  }
  .btn-alt:hover{
    background: var(--border-color);
  }
/* class to hide content visually leaving it available to screenreaders.
See notes in cookbook recipe.
https://github.com/h5bp/html5-boilerplate/issues/1985#issuecomment-394096182
https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939
*/
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/* table styles */
table{
  width: 100%;
  margin: 1em auto;
  border: 1px solid var(--border-color);
  border-radius: .4em;
  border-collapse: collapse;
}
td {
  padding: .8em .5em;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
  border-left:1px solid var(--border-color);
}
thead{
border-radius:.4em;
}
thead th{
  border-bottom: 1px solid var(--border-color);
  padding: .8em .5em;
  color: var(--med-text);
  font-weight: normal;
  font-size: .8em;
}
th{
text-align: left;
}
tbody{
  font-size: .9em;
}
tbody td{
border: 0;
border-bottom: 1px solid var(--border-color);
vertical-align: middle;
}
tfoot td{
  border: 0;
  border-top: 1px solid var(--border-color);
  padding: .8em .5em;
  font-weight: bold;
  font-size: .9em;
}
.num{
  text-align: right;
}