body{
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  margin: 0;
  color: #424242;
}

h1,h2,h3,h4,h5,h6{
  font-family: 'Open Sans', sans-serif;
}

.h1{
  font-size: 20px;
}

nav{
  background: #ededed;
  border-bottom: 1px solid #999;
  text-align: right;
  margin-bottom: 15px;
  padding: 0 150px;
  display: flex;
  justify-content: space-between;
}

.nav__button{
  padding: 20px 15px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.nav__button-inner{
  position: relative;
  z-index: 1;
}

.nav__button:after {
    content: '';
    display: block;
    background: #d8d8d8;
    height: 100%;
    width: 100%;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
    transform: scale(0.1);
    opacity: 0;
    transition: .15s;
}

.nav__button--active:after{
  transform: scale(1);
  opacity: 1;
  border-radius: 0;
}

.nav__select{
  padding: 0 25px;
  border-top: 0;
  border-bottom: 0;
  background: #f5f5f5;
  color: #424242;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}

.sigWrap{
  margin-bottom: 20px;
}

.sigWrap p{
  padding: 20px;
  margin: 0;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.sigWrap h2{
  padding: 20px;
  margin: 0;
  background: #ededed;
  border: 1px solid #ccc;
  border-radius: 3px 3px 0 0;
}

.hiddenCanvas{
  border: 1px solid #000;
}

.pad{
  border: 1px solid #ccc;
border-radius: 0 0 0 3px;
left: 0;
margin: 0;
display: inline-block;
}

.clearButton, .submitButton{
  width: 100%;
  height: 50px;
  background: #0082c8;
  color: #fff;
  padding: 10px 5px;
  display: block;
  text-decoration: none;
  border-radius: 5px;
  margin: 2px 0;
  text-align: center;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}

.clearButton{
  width: 98px;
height: 202px;
margin: 0;
top: 0;
right: 0;
position: absolute;
border-radius: 0 0 3px 0;
}

.button__link {
  width: 15vw;
  margin: 20px 0;
}

.button__link-no{
  cursor: not-allowed;
  background: #999999;
}

.clearIcon{
  font-size: 2rem;
  display: block;
  margin-top: 25px;
}

.textWrap{
  margin-bottom: 20px;
}

.textWrap h2{
  padding: 20px;
  margin: 0;
  background: #ededed;
  border-bottom: 1px solid;
  border: 1px solid #ccc;
  border-bottom: none;
}

.textBox{
  width: 100%;
  height: 250px;
  border: 1px solid #ccc;
}

.picWrap h2{
  padding: 20px;
  margin: 0;
  background: #ededed;
  border-bottom: 1px solid;
  border: 1px solid #ccc;
  border-bottom: none;
}

.imgPreviews{
  border: 1px solid #ccc;
  margin-bottom: 20px;
  padding: 20px;
}

.addImage{
  background: #0082c8;
  padding: 7px 20px;
  line-height: 30px;
  color: #fff;
  font-family: sans-serif;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
}

.preview{
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: space-between;
}

.imgDelete{
  text-align: center;
  background: #0082c8;
  margin: 5px 0 0 0;
  color: #fff;
  padding: 8px;
  border-radius: 3px;
  cursor: pointer;
}

.imgWrap{
  display: flex;
  flex-direction: column;
  width: 464px;
  max-width: 33%;
  margin-bottom: 10px;
  justify-content: space-between;
  background: #e8e8e8;
  border-radius: 5px;
  overflow: hidden;
}

.image{
  width: 100%;
}

.preview{
  display: flex;
  flex-wrap: wrap;
}

.wrap{
  width: 90%;
  max-width: 1450px;
  margin: auto;
}

header{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.text-center{
  text-align: center;
}
.sigPadWrap{
  position: relative;
}


@import url(http://fonts.googleapis.com/css?family=Roboto:500,700);

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

.container {
  margin: 0 auto;
  border-radius: 3px;
  user-select: none;
}

.items {
  max-width: 550px;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 20px;
  counter-reset: done-items undone-items;
}

.inputLabels {
  position: relative;
  margin: 0;
  padding: 10px 0;
  font-size: 1.2em;
}

.inputLabels::before {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -20px;
  width: 2px;
  background-color: #000000;
}

.inputLabels::after {
  display: block;
  float: right;
  font-weight: normal;
}

.done {
  order: 1;
}

.done::after {
  content: ' (' counter(done-items) ')';
}

.undone {
  order: 3;
}

.undone::after {
  content: ' (' counter(undone-items) ')';
}

/* hide inputs offscreen, but at the same vertical positions as the correpsonding labels, so that tabbing scrolls the viewport as expected */
.container input {
  display: block;
  height: 53px;
  margin: 0 0 -53px -9999px;
  order: 4;
  outline: none;
  counter-increment: undone-items;
}

.container input:checked {
  order: 2;
  counter-increment: done-items;
}

.container label {
  display: block;
  position: relative;
  padding: 11px 0 11px 45px;
  border-top: 1px dashed #fff;
  order: 4;
  cursor: pointer;
  animation: undone .5s;
  line-height: 25px;
}

.container label::before {
  content: '\f096 '; /* square outline */
  display: block;
  position: absolute;
  top: 11px;
  left: 10px;
  font: 1.5em 'FontAwesome';
}

.container label.labelText::before{
  top: 20px;
}

.container label select{
  font-size: 1rem;
  padding: 5px;
  transition: border .5s;
}

.container label select.required{
  border-color: red;
}

.container label:hover, .container input:focus + label {
  background-color: rgba(255, 255, 255, .2);
}

.container input:checked + label {
  order: 2;
  animation: done .5s;
}

.container input:checked + label::before {
  content: '\f046'; /* square checkmark */
}

input.text{
  margin: auto;
  height: 35px;
  display: inline-block;
  counter-increment: none;
  order: initial;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1rem;
  padding: 5px;
  transition: border .5s;
}

input.wifi{
  width: 125px;
}

input.text.required{
  border: 1px solid red;
}

.text-wrap{
  margin: 0 10px;
}

@keyframes done {
  0% {
    opacity: 0;
    background-color: rgba(255, 255, 255, .4);
    transform: translateY(20px);
  }
  50% {
    opacity: 1;
    background-color: rgba(255, 255, 255, .4);
  }
}

@keyframes undone {
  0% {
    opacity: 0;
    background-color: rgba(255, 255, 255, .4);
    transform: translateY(-20px);
  }
  50% {
    opacity: 1;
    background-color: rgba(255, 255, 255, .4);
  }
}


/* spinner */
.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}



table {
color: #333; /* Lighten up font color */
font-family: Helvetica, Arial, sans-serif; /* Nicer font */
width: 640px;
border-collapse:
collapse; border-spacing: 0;
}

td, th { border: 1px solid #CCC; height: 30px; } /* Make cells a bit taller */

th {
background: #F3F3F3; /* Light grey background */
font-weight: bold; /* Make sure they're bold */
}

td {
background: #FAFAFA; /* Lighter grey background */
text-align: center; /* Center our text */
}

.info{
  width: 100%;
  margin: 20px 0;
}

.info td{
  width: 25%;
}

.info td input, .info td select{
  width: 100%;
  height: 27px;
  border: none;
  font-size: 20px;
  padding-left: 10px;
}
