*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  color: #384047;
}

p {
  margin: 0;
  margin-bottom: 5px;
}

form,
div.form {
  max-width: 320px;
  margin: 10px auto;
  padding: 10px 20px;
  background: #f4f7f8;
  border-radius: 8px;
}

hr {
  max-width: 320px;
}

h1 {
  margin: 0 0 30px 0;
  text-align: center;
  word-wrap: normal; 
  word-break: break-word;
}

img {
  display: block;
  margin: auto;
  margin-bottom: 15px;
}

label > img {
  display: inline;
  margin: 0;
  margin-right: 5px;
}

input[type="text"] {
  text-transform: capitalize;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select {
  background: rgba(255,255,255,0.1);
  border: none;
  font-size: 16px;
  height: auto;
  margin: 0;
  outline: 0;
  padding: 15px;
  width: 100%;
  background-color: #e8eeef;
  color: #393c3d;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
  margin-bottom: 15px;
}

input[type="checkbox"],
input[type="radio"]  {
  margin: 0 10px 10px 0;
}

input[type="checkbox"]:required:invalid {
  color: #BE4C54;
}

::-webkit-input-placeholder {
  text-transform: initial;
  color: #c5d2db;
}

:-moz-placeholder { 
  text-transform: initial;
  color: #c5d2db;
}

::-moz-placeholder {  
  text-transform: initial;
  color: #c5d2db;
}

:-ms-input-placeholder { 
  text-transform: initial;
  color: #c5d2db;
}

td > label,
td > input[type="radio"] {
  background: none;
  background-color: none;
  box-shadow: none;
  margin: 0px 15px 5px 10px;
  text-align: center;
}

select {
  padding: 6px;
  height: 32px;
  border-radius: 2px;
}

button {
  padding: 19px 39px 18px 39px;
  color: #FFF;
  background-color: #4bc970;
  font-size: 18px;
  text-align: center;
  font-style: normal;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #3ac162;
  border-width: 1px 1px 3px;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
  margin-bottom: 10px;
}

button.secondary {
  padding: 19px 39px 18px 39px;
  color: #FFF;
  background-color: #EB9B00;
  font-size: 18px;
  text-align: center;
  font-style: normal;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #E19100;
  border-width: 1px 1px 3px;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
  margin-bottom: 10px;
}

button:disabled {
  background-color: #dddddd;
  border: 1px solid #bebebe;
}

fieldset {
  border: none;
  margin-bottom:10px;
}

fieldset#captcha {
  padding-top: 0;
  text-align: center;
  margin-bottom:10px;
}

legend {
  font-size: 1.3em;
  margin-bottom: 10px;
  line-height: 30px;
}

legend#success {
  padding-top: 20px;
  text-align: center;
}

legend#error {
  padding-top: 20px;
  text-align: center;
}

#steps3 {
  margin-bottom: 0px;
}

label {
  display: block;
  margin-bottom: 8px;
  word-wrap: normal; 
  word-break: break-word;
}

label.light {
  font-weight: 300;
  display: inline;
}

table {
  border: 0;
  margin-left: auto;
  margin-right: auto;
}

table#calendars > tbody > tr > td:first-child {
  padding-right: 20px;
}

table#times > tbody > tr {
  width: 100%;
  text-align: center;
}

tbody {
  display: block;
}

td {
  width: auto;
  vertical-align:top;
  text-align: center;
}

td > legend {
  font-size: 1.2em;
}

table#calendar > tbody > tr td {
  height: 25px;
  width: 25px;
  text-align: center;
  vertical-align: middle;
}

.number {
  background-color: #5fcf80;
  color: #fff;
  height: 30px;
  width: 30px;
  display: inline-block;
  font-size: 0.8em;
  margin-right: 4px;
  line-height: 30px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  border-radius: 100%;
  padding-bottom: 5px;
}

.alert-box {
  color:#555;
  border-radius:10px;
  font-size:12px;
  padding:10px 10px 10px 36px;
  margin: 0px 0 10px 0;
  display: block;
}

.error {
  background:#ffecec url('../img/error.png') no-repeat 10px 50%;
  border:1px solid #f5aca6;
}
.success {
  background:#e9ffd9 url('../img/success.png') no-repeat 10px 50%;
  border:1px solid #a6ca8a;
}
.warning {
  background:#fff8c4 url('../img/warning.png') no-repeat 10px 50%;
  border:1px solid #f2c779;
}
.notice {
  background:#e3f7fc url('../img/notice.png') no-repeat 10px 50%;
  border:1px solid #8ed9f6;
}

.center {
  text-align: center;
}

input[type="checkbox"]#chkPrivacy {
  margin: 0;
}

.g-recaptcha {
  display: inline-block;
}

@media all and (min-width: 480px) {

  form,
  div.form,
  hr {
    max-width: 480px;
  }
}

@media all and (max-width: 480px) {

  table#calendars {
    display: block;
    width: 100%;
  }

  table#calendars > tbody > tr > td{
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  table#calendars > tbody > tr:first-child > td {
    margin-bottom: 0;
  }

  table#calendars > tbody > tr > td:first-child {
    padding-right: 0;
  }

  table#calendars > tbody > tr{
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  .g-recaptcha{
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
  }
}


/* Progress Toolbar */

.flexer,
.progress-indicator{
  display:-webkit-box;
  display:-moz-box;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:flex
}

.no-flexer,.progress-indicator.stacked{
  display:block
}

.no-flexer-element{
  -ms-flex:0;
  -webkit-flex:0;
  -moz-flex:0;
  flex:0
}

.flexer-element,.progress-indicator>li{
  -ms-flex:1;
  -webkit-flex:1;
  -moz-flex:1;
  flex:1
}

.progress-indicator{
  margin:0 0 1em;
  padding:0;
  font-size:80%;
  text-transform:uppercase
}

.progress-indicator>li{
  list-style:none;
  text-align:center;
  width:auto;
  padding:0;
  margin:0;
  position:relative;
  text-overflow:ellipsis;
  color:#bbb;
  display:block
}

.progress-indicator>li:hover{
  color:#6f6f6f
}

.progress-indicator>li.completed,.progress-indicator>li.completed .bubble{
  color:#5fcf80
}

.progress-indicator>li .bubble{
  border-radius:1000px;
  width:20px;
  height:20px;
  background-color:#bbb;
  display:block;
  margin:0 auto .5em;
  border-bottom:1px solid #888
}

.progress-indicator>li .bubble:after,.progress-indicator>li .bubble:before{
  display:block;
  position:absolute;
  top:9px;
  width:100%;
  height:3px;
  content:'';
  background-color:#bbb
}

.progress-indicator>li.completed .bubble,.progress-indicator>li.completed .bubble:after,.progress-indicator>li.completed .bubble:before{
  background-color:#5fcf80;
  border-color:#247830
}

.progress-indicator>li .bubble:before{
  left:0
}

  .progress-indicator>li .bubble:after{
  right:0
}

.progress-indicator>li:first-child .bubble:after,.progress-indicator>li:first-child .bubble:before{
  width:50%;
  margin-left:50%
}

.progress-indicator>li:last-child .bubble:after,.progress-indicator>li:last-child .bubble:before{
  width:50%;
  margin-right:50%
}

.progress-indicator>li.active,.progress-indicator>li.active .bubble{
  color:#337AB7
}

.progress-indicator>li.active .bubble,.progress-indicator>li.active .bubble:after,.progress-indicator>li.active .bubble:before{
  background-color:#337AB7;
  border-color:#122a3f
}

.progress-indicator>li a:hover .bubble,.progress-indicator>li a:hover .bubble:after,.progress-indicator>li a:hover .bubble:before{
  background-color:#5671d0;
  border-color:#1f306e
}

.progress-indicator>li a:hover .bubble{
  color:#5671d0
}

.progress-indicator>li.danger .bubble,.progress-indicator>li.danger .bubble:after,.progress-indicator>li.danger .bubble:before{
  background-color:#d3140f;
  border-color:#440605
}

.progress-indicator>li.danger .bubble{
  color:#d3140f
}

.progress-indicator>li.warning .bubble,.progress-indicator>li.warning .bubble:after,.progress-indicator>li.warning .bubble:before{
  background-color:#edb10a;
  border-color:#5a4304
}

.progress-indicator>li.warning .bubble{
  color:#edb10a
}

.progress-indicator>li.info .bubble,.progress-indicator>li.info .bubble:after,.progress-indicator>li.info .bubble:before{
  background-color:#5b32d6;
  border-color:#25135d
}

.progress-indicator>li.info .bubble{
  color:#5b32d6
}

.progress-indicator.stacked>li{
  text-indent:-10px;
  text-align:center;
  display:block
}

.progress-indicator.stacked>li .bubble:after,.progress-indicator.stacked>li .bubble:before{
  left:50%;
  margin-left:-1.5px;
  width:3px;
  height:100%
}

.progress-indicator.stacked .stacked-text{
  position:relative;
  z-index:10;
  top:0;
  margin-left:60%!important;
  width:45%!important;
  display:inline-block;
  text-align:left;
  line-height:1.2em
}

.progress-indicator.stacked>li a{
border:none
}

.progress-indicator.stacked.nocenter>li .bubble{
  margin-left:0;
  margin-right:0
}

.progress-indicator.stacked.nocenter>li .bubble:after,.progress-indicator.stacked.nocenter>li .bubble:before{
  left:10px
}

.progress-indicator.stacked.nocenter .stacked-text{
  width:auto!important;
  display:block;
  margin-left:40px!important
}

@media handheld,screen and (max-width:400px){
  .progress-indicator{
      font-size:60%
  }
}