.top_bar{
  width: 100%;
  background-color: #1d1d1d;
  padding: 10px;
  position: fixed;
}
.container_2{
  width: 100%;
  background-color: #f2f2f2;
}
.container_form{
  width: 80%;
  margin: 0 auto;
  padding: 20vh 0;
}
.back{
  top: 50px;
  left: 50px;
  color: #676767;
}
.back:hover{
  color: white;
}
.back h4{
  margin:0;
  font-weight: 100;
}
.skjema{
  display: inline-block;
  width: 48%;
}
.inform{
  display: inline-block;
  width: 50%;
  vertical-align: top;
}
.inform .colored{
  padding: 10px 2%;
  background-color: #FFAE01;
}
.inform .colored h2{
  margin: 6%;
}
input{
  font-family: 'Merriweather', serif;
}
input[type="text"]{
  display: block;
  width: calc(100% - 40px);
  padding: 10px 10px;
  border: none;
  /*border-bottom: solid 4px #1d1d1d;*/
  box-shadow: inset 0 -2px 0 0 #1d1d1d;
  background-color: transparent;
  margin-bottom: 4px;
}
input[type="text"]:hover{
  box-shadow: inset 0 -4px 0 0 #1d1d1d;
}
input[type="text"]:focus{
  background-color: white;
  color: #1d1d1d;
  outline: none;
}
input[type=checkbox]{
  width: 24px;
  height: 24px;
  vertical-align: sub;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border: solid 2px #1d1d1d;
  margin-right: 10px;
  border-radius: 50%;
}
input[type=checkbox]:hover{
  background-color: white;
}
input[type="checkbox"]:checked{
  background-color: #1d1d1d;
  box-shadow: inset 0px 0px 0px 3px #f2f2f2;
}
input[type=submit]{
  background-color: transparent;
  padding: 20px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 40px;
  color: #1d1d1d;
  cursor: pointer;
  border: solid 4px #1d1d1d;
  max-width: 100%;
  margin-bottom: 40px;
}
input[type=submit]:hover{
  color: #f2f2f2;
  background-color: #1d1d1d;
  border: solid 4px #1d1d1d;
}
label.error{
  color: white;
  background-color: #1d1d1d;
  padding: 5px 10px;
  margin-top: 5px;
}
form h5{
  /*font-family: 'Merriweather', serif;*/
  margin-bottom: 2px;
  color: #1d1d1d;
  font-size: 1.1em;
  font-weight: 100;
}
.thematics li{
  line-height: 1.8em;
}
.amount{
   font-size: 2em;
   color: #1d1d1d;
}
#ferdig, #error{
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: rgba(0, 0, 0, .8);
  top: 0;
  left: 0;

  transition: opacity 0.5s, z-index 1s;
  opacity: 0 ;
  z-index: -10 ;
}
#error{
  z-index: 9999;
  opacity: 1;
}
.visible{
  z-index: 99999 !important;
  opacity: 1 !important;
}
#ferdig, #error h1{
  color: #f2f2f2;
}
.ferdig_boks, .error_boks{
  position: relative;
  width: 40%;
  height: auto;
  margin: 20vh auto auto auto;
  padding: 30px 50px;
  text-align: center;
  background-color: #FFAE01;
}
#kryss{
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 3em;
  color: #1d1d1d;
  margin: 0;
  padding: 20px;
  line-height: .5em;
  cursor: pointer;
}
#kryss:hover{
  color: #f2f2f2;
}
#returnmessage{
  display: none;
}
/*TABLETTOS*/
@media only screen and (max-width: 1024px) {
  .skjema, .inform{
    display: block;
    width: 100%;
  }
  input[type=submit]{
    padding: 20px;
    background-color: #1d1d1d;
    color: #f2f2f2;
    font-size: 16px;
    letter-spacing: 1px;
  }
  .ferdig_boks, .error_boks{
    width: 80%;
    padding: 10px 20px;
  }
}
