*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,body{
  height:100%;
}
body{
  background-color: #F1F5F9;
  background-size:cover;
  background-position:Center center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 25px;
  color:#808080;
}

img{
  border: 0;
  max-width:100%;
  vertical-align:middle;
}

a{
  text-decoration: none;
  cursor:pointer;
  color:#e32526;
  transition:.7s color, .7s background-color, .3s opacity;
}
a:focus{
  outline: none;
}
a:hover{
  transition:.3s color, .3s background-color, .3s opacity;
}

h2{
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  color:#000;
  margin-bottom: 20px;
}


h3{
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color:#e32526;
  margin-top: 30px;
  margin-bottom: 0;
  display:block;
}

p{
  margin-bottom: 15px;
}

ul, ol{
  margin: 0 0 15px 30px;
}

.fade{
  min-height:100vh;
  /*background-color:rgba(0,0,0,.3);*/
  z-index:1;
  display:flex;
  align-items:center;
}

.container{
  width: 90%;
  max-width: 700px;
  background-color:#FFF;
  border-radius: 10px;
  margin: 30px auto;
  box-shadow: 0 0 10px #000;
  overflow:hidden;
}
.container.narrow{
  max-width: 600px;
}

.container .pad{
  padding: 40px;
}
.container img.logo{
  max-width: 300px;
  max-height: 150px;
}

.container .welcome{
  padding: 20px 40px;
  background-color:#e32526;
}
.container .welcome .ship{
  font-size: 25px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 15px;
}
.container .welcome h2{
  color:#FFF;
  margin:0;
}

.next{
  border-top: 1px solid #CCC;
}

.button{
  display:block;
  width:100%;
  border-radius: 10px;
  background-color:#e32526;
  padding: 15px;
  color:#FFF;
  position:relative;
  text-align:left;

  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border:0;
  cursor:pointer;
}
.button img{
  position:absolute;
  right:15px;
  top: 18px;
  height: 20px;
  opacity:.5;
  transition:.7s opacity;
}
button.button img{
  top: 15px;
}
.button:hover img{
  opacity: 1;
  transition:.3s opacity;
}


.copy{
  position:absolute;
  bottom:20px;
  right:20px;
  color:#FFF;
  text-align:right;
  font-size: 13px;
  line-height:20px;
  opacity: .7;
}
.copy a{
  color:#FFF;
}

.crumbs{
  display:flex;
  background-color:#FAFAFA;
  border-bottom:1px solid #CCC;
  height: 45px;
  overflow:hidden;
  font-size: 13px;
}
.crumbs div{
  flex:1;
  padding: 0 5px 0 25px;
  height: 45px;
  line-height: 45px;
}

.crumbs div:first-child{
  padding-left: 40px;
}
.crumbs div:last-child{
  padding-right: 40px;
}
.crumbs div.current{
  background-image: url('/images/crumb-left.jpg');
  background-size: auto 100%;
  background-repeat: no-repeat;
  font-weight: 600;
  color:#000;
}
.crumbs div.done{
  background-color: #329CBF;
  color:#FFF;
  font-weight: 600;
}


.types{
  display:flex;
  flex-wrap:wrap;
}
.types input{
  display:none;
}

.types .type{
  display:block;
  width:100%;
  background-color:#FAFAFA;
  cursor:pointer;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 25px;
  transition:.7s background-color;
  color:#333;
}

.types .type:hover{
  background-color:#f1f1f1;
  transition:.3s background-color;
}
.types input:checked + label.type{
  background-color: #006D94;
  background-image: url('/images/tick.svg');
  background-position: right 15px center;
  background-size: 15px auto;
  background-repeat: no-repeat;
  color:#FFF;
}
.types .type .heading{
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
}

.types .half{
  width: 48%;
  margin-right: 4%;
}
.types .half:nth-child(2n+2){
  margin-right:0;
}
.types .half .type{
  padding: 15px 25px;
}

.blocklabel{
  display:block;
  font-size: 16px;
  margin-bottom: 5px;
}

.blurb{
  font-size: 16px;
  margin-bottom: 15px;
}

.form{
  display:flex;
  flex-wrap:wrap;
}
.form .field{
  width: 48%;
  margin-right:4%;
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 26px;
}
.form .field:nth-child(2n+2){
  margin-right: 0;
}
.form .field.full{
  width:100%;
  margin-right:0;
}

.form .field span{
  display:block;
  color:#999;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 10px;
}

.input,.textarea, .select{
  display:block;
  width: 100%;
  padding: 10px;
  border: 1px solid #CCC;
  border-radius: 5px;
  font-family:arial;
  font-size: 14px;
}
.input::placeholder{
  color:#ccc;
}
.textarea{
  height: 100px;
}

.checkbox{
  display:block;
}
.checkbox input{
  display:none;
}

.confirm{
  display:flex;
  flex-wrap:wrap;
}
.confirm .section{
  font-weight: 700;
  width: 25%;
  color:#000;
}
.confirm .details{
  width: 65%;
}
.confirm .edit{
  width: 10%;
}
.confirm .edit a{
  color:#329CBF;
  font-size: 14px;
}
.confirm .edit img{
  width: 20px;
}
.confirm .edit a:hover{
  opacity: .7;
}
