.filters-cont{
  display: none;
}
.honeypot {
    position: absolute;
    left: -9999px;
}

.send input{
  border: none;
  background: transparent;
  font-family: "NEXTMono";
  font-size: 1em;
  letter-spacing: -0.08em;
  line-height: 1.4em;
  cursor: pointer;
}
.send input:hover{
  color: white;
}

.contact-cont{
  min-height: calc(100% - (var(--header-height-1) + var(--header-height-2)));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
textarea {
  width:100%;
  resize: none;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: var(--border);
  background: transparent;
  border-radius: 0px;
  padding-top: 1em;
  padding-bottom: 0.5em;
  padding-left: 3em;
  padding-right: 3em;
  font-family: "NordicPavillion";
  font-size: 0.8em;
  line-height: 1.4em;
      height: 3.5em;
}
input:focus, textarea:focus, select:focus{
    outline: none;
}
textarea::placeholder{
  color: darkgrey;
}
.field.col{
  display: flex;
    flex-flow: column;
}

.alert{
  text-align: center;
  padding: 0.5em;
    text-align: center;
    font-family: "NEXTMono";
    font-size: 0.8em;
    letter-spacing: -0.08em;
    line-height: 1.4em;
}

.col-header{
  position: sticky;
  top: calc(var(--header-height-1) + var(--header-height-2) - 1px);
  background: var(--color-bg);
  padding: 10px 0px;
  border-bottom: var(--border);
  border-top: var(--border);

  font-family: "NEXTMono";
  font-size: 0.8em;
  letter-spacing: -0.08em;
  line-height: 1.4em;
}

.cont-0{
  padding: 0.5em;
  text-align: center;
  font-family: "NEXTMono";
  font-size: 0.8em;
  letter-spacing: -0.08em;
  line-height: 1.4em;
}

.cont-1{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 0.5em;
  padding: 0.5em;
}

.send{
  grid-column-start: 1;
  grid-column-end: 4;
  display: grid;
  padding: var(--padding-main);
  margin-top: 1em;

}
.send button{
  width: fit-content;
  margin: auto;
}
.send-message{
  width: fit-content;
  margin: auto;
/*    padding: 0.5em;*/
  border-right: var(--border);
  border-left: var(--border);
  display: flex;
  height: 2em;
  justify-content: space-between;
  align-items: center;
  width: 7vw;
  font-family: "NEXTMono";
  font-size: 0.8em;
  letter-spacing: -0.08em;
  line-height: 1.4em;
  cursor: pointer;

}
.another{
  width: fit-content;
  margin: auto;
/*    padding: 0.5em;*/
  border-right: var(--border);
  border-left: var(--border);
  display: flex;
  height: 2em;
  justify-content: space-between;
  align-items: center;
  width: 10vw;
  font-family: "NEXTMono";
  letter-spacing: -0.08em;
  line-height: 1.4em;
  cursor: pointer;
}


.send-message:hover, .another:hover{
  background: black;
  color: white;
  border: none;
}
.send-message:hover .left-bracket, .send-message:hover .right-bracket, .another:hover .left-bracket, .another:hover .right-bracket{
  border: none;
}
.send-message .left-bracket, .send-message .right-bracket,.another .left-bracket, .another .right-bracket{
  width: 10px;
  border-top: var(--border);
  border-bottom: var(--border);
  height: 100%;
}

@media screen and (orientation:landscape) {
    
}

/*ipad, tablets*/

@media screen and (min-width: 600px) and (max-width: 820px) and (orientation:portrait), (min-width: 821px) and (orientation:portrait){
  .cont-1{
    grid-template-columns: 1fr;
  }
  .send{
    grid-column-end: 1;
  }
  .field.col label{
    border-top: none;
  }
  .topic-header{
    border-top: var(--border) !important;
  }
  .send-message{
    width: auto;
  }
}

@media screen and (max-width: 600px) and (orientation:portrait){
  .cont-1{
    grid-template-columns: 1fr;
  }
  .send{
    grid-column-end: 1;
  }
  .field.col label{
    border-top: none;
  }
  .topic-header{
    border-top: var(--border) !important;
  }
  .send-message{
    width: auto;
  }
  .contact-cont form.cont-1{
    padding-top: 0 !important;
  }
}