.checklist {margin-top: 50px;}
.checklist h6 {margin-bottom: 0px;}
.checklist .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 40px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checklist .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checklist .checkmark {
  position: absolute;
  margin-top: 6px;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checklist .container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checklist .container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checklist .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checklist .container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checklist .container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contact-form .button.form-button.sendFormButton:hover {background: #213A59;}
.contact-form .button.form-button.sendFormButton {
background: #23DC52;
color: #FFF;
text-transform: uppercase;
font-weight: bold;
width: auto;
padding: 15px 60px;
margin: 0;
border: none;  
}

/**
 * jQuery Steps
 */
.wizard section {
    margin-left: 30px;
    margin-top: 20px;  
}
.wizard h3.title {display: none;}
.wizard>.steps>ul>li, .wizard>.actions>ul>li {float: left;}
.wizard>.steps>ul>li {width: 25%;}
.wizard ul>li, .tabcontrol ul>li {
    display: block;
    padding: 0;  
}
.wizard>.steps a, .wizard>.steps a:hover, .wizard>.steps a:active {
    display: block;
    width: auto;
    margin: 0 .5em .5em;
    padding: 1em 1em;
    text-decoration: none;
    border-radius: 5px;  
}
.wizard>.steps .number {
    font-size: 1.429em;
}
.wizard>.steps .current a, .wizard>.steps .current a:hover, .wizard>.steps .current a:active {
    background: #2184be;
    color: #fff;
    cursor: default;  
}
.wizard>.steps .disabled a, .wizard>.steps .disabled a:hover, .wizard>.steps .disabled a:active {
    background: #eee;
    color: #aaa;
    cursor: default;
}
.wizard>.steps .done a, .wizard>.steps .done a:hover, .wizard>.steps .done a:active {
    background: #9dc8e2;
    color: #fff;  
}
.wizard>.actions {
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
}
.wizard>.actions>ul {
    display: inline-block;
    text-align: right;
    margin-left: 20px;
}
.wizard ul, .tabcontrol ul {
    list-style: none!important;
    padding: 0;
    margin: 0;
}
.wizard>.actions>ul>li {margin: 0 .5em;}
.wizard>.steps>ul>li, .wizard>.actions>ul>li {float: left;}
.wizard>.actions a, .wizard>.actions a:hover, .wizard>.actions a:active {
    color: #fff;
    font-size: 14px;
    line-height: 22.652px;
    font-weight: 700;
    padding: 10px 20px;
    background: #23dc52;
    float: left;
    margin: 15px 0;
}

.wizard .current-info, .wizard ul li.disabled a, .wizard ul li.disabled a {display: none !important;}

@media (min-width: 1281px) {
    .wizard > .actions > ul {margin-right: 10%;}
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
    .wizard > .actions > ul {margin-right: 10%;}    
}