@import url('https://fonts.googleapis.com/css?family=Prompt:200,300');

body, html{
  font-family:'Prompt', tahoma, "lucida grande", verdana, arial, sans-serif;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
*{
  box-sizing: border-box;
}
a{
  text-decoration: none;
  color: DodgerBlue;
}
input{
  font-family:'Prompt', tahoma, "lucida grande", verdana, arial, sans-serif;
}
.main_content{
  padding: 40px 10px 10px 10px;
  margin: 0 auto;
  max-width: 800px;
}
.pad_main{
  padding: 0 10px;
}
.form_1{
  padding: 10px;
  margin: 0 auto 15px auto;
  max-width: 400px;
  border-radius: 5px;
}
.form_1 hr{
  margin: 30px 0;
  border-top: 1px solid #666;
  border-bottom: none;
}
.form_1 footer{
  padding-top: 20px;
}
.form_1 h3{
  margin-top: 0;
}
.form_1 label{
  display: block;
  font-size: 14px;
  font-weight: bold;
}
.form_1 .input_error{
  color: red;
  padding-left: 7px;
}
.form_1 input{
  font-family:'Prompt', tahoma, "lucida grande", verdana, arial, sans-serif;
  font-size: 16px;
  width: 100%;
  padding: 0 10px;
  height: 50px;
  line-height: 50px;
}
.form_1 textarea{
  font-family:'Prompt', tahoma, "lucida grande", verdana, arial, sans-serif;
  font-size: 16px;
  min-height: 100px;
  width: 100%;
  padding: 10px;
}
.form_1 select{
  font-family:'Prompt', tahoma, "lucida grande", verdana, arial, sans-serif;
  font-size: 16px;
  width: 100%;
  height: 50px;
  padding: 0 10px;
}

.col-3{
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
}
.col-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*grid-template-columns: auto auto;*/
  grid-gap: 10px;
}

.form_1 button{
  font-family:'Prompt', tahoma, "lucida grande", verdana, arial, sans-serif;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}


.form_1 fieldset{
  border: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.form_1 legend{
  font-size: 14px;
  font-weight: bold;
}


.form_2 fieldset{
  border: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.form_2 legend{
  font-size: 13px;
  font-weight: bold;
}
.form_2 input,
.form_2 select,
.form_2 textarea,
.form_2 button{
  font-family:'Prompt', tahoma, "lucida grande", verdana, arial, sans-serif;
  font-size: 14px;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  border: 1px solid DimGray;
  border-radius: 3px;
}
.form_2 input[type="text"],
.form_2 input[type="date"],
.form_2 input[type="datetime-local"],
.form_2 input[type="search"],
.form_2 select,
.form_2 textarea{
  width: 100%;
}
.form_2 input[type="checkbox"],
.form_2 input[type="radio"]{
  height: auto;
  line-height: normal;
  width: auto;
  margin: 0 3px 0 0;
}
.form_2 textarea{
  padding: 5px 10px !important;
  line-height: normal;
  height: auto;
}
.form_2 button, .form_2 input[type="submit"]{
  cursor: pointer;
  border: none;
  background-color: SeaGreen;
  color: white;
  display: inline-block;
  width: auto;
  display: inline-block !important;
}
.form_2 hr{
  margin: 20px 0;
  border-top: 1px solid #CCC;
  border-bottom: none;
}
.form_2 .tickbox{
  display: inline-block;
  margin-bottom: 5px;
}
.form_2 .tickbox input{
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
}
.form_2 .tickbox div{
  height: 30px;
  line-height: 30px;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  font-family:'Prompt', tahoma, "lucida grande", verdana, arial, sans-serif;
  font-size: 14px;
  padding: 0 10px;
  border: 1px solid DimGray;
}
.form_2 .tickbox input:checked + div{
  background-color: SlateGrey;
  color: white;
  border: 1px solid SlateGrey;
}


table{
  font-size: 14px;
}

button{
  cursor: pointer;
}


.sub-menu{
  height: 50px;
  background-color: CornflowerBlue;
  color: white;
  padding: 0 10px;
  position: fixed;
  top: 50px;
  width: 100%;
  z-index: 1000;
}
.sub-menu content{
  margin: 0 auto;
  padding: 10px 0;
  display: grid;
  grid-template-columns: auto fit-content(100px);
  grid-column-gap: 10px;
  max-width: 800px;
}
.sub-menu button{
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  white-space: nowrap;
  border-radius: 3px;
  border: none;
}
.sub-menu input{
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  border-radius: 3px;
  border: none;
}
.sub-menu select{
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  border-radius: 3px;
  border: none;
}