* {
  padding: 0;
  margin: 0;
  border: 0;
}

body {
  font-family: "Asap", sans-serif;
  background: #f2e7d0;
}

.inactive {
  color: red;
}

.incomplete {
  color: orange;
}

.fa-bars {
  display: none !important;
}

a{
  color:darkblue;
  text-decoration: underline;
}

header img {
  float: left;
  margin-left: 40px;
}

.headerbar {
  background: #fff;
  height: 70px;
  margin: 0px;
  padding: 15px 225px;
  background-image: url("/images/header-bg.png");
  background-repeat: repeat;
}

.headerbarbottom {
  background: #1f2327;
  height: 30px;
  margin: 0px;
}

.wrapper {
  background: #fdf8ee;
  margin: 10px auto;
  max-width: 1000px;
  padding: 20px 40px 40px;

  margin-bottom: 60px; /*height of footer*/
}

.wrapper h1 {
  text-transform: uppercase;
  font-weight: bold;
}

.wrapper-login{
  text-align: center;
}

.pagefooter {
  color: #fdf8ee;
  padding-top: 10px;
  margin: 0;
  width: 100%;
}

.help-block {
  color: red;
}

.brown {
  background: #bd7b57;
  color: #fdf8ee;
  text-align: center;
  padding: 3px;
}

.btn-brown {
  background: #bd7b57;
  color: #fdf8ee;
}

#footer {
  background: #1f2327;
  padding: 10px;
  position: fixed;
  left: 0px;
  bottom: 0px;
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  /* display: none; */
  visibility: hidden;
}

label {
  font-weight: bold;
}

.break_url{
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;

  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;

  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* ###################### 
RESPONSIVE LAYOUT CSS
/* ###################### */

@media (max-width: 650px) {
  /* responsive layout break point */
  .wrapper {
    margin: 0 5px 0 5px;
  }

  .mat_row {
    margin-top: 15px;
  }

  #twocolumn {
    column-count: 1;
  }

  .survey textarea.sm {
    width: 75%;
    height: 40px;
  }

  .survey textarea.lg {
    width: 100%;
    height: 100px;
  }

  .fa-bars {
    display: flex !important;
  }
}

