body {
  font-family: "OpenSans", sans-serif;
  color: #24221F;
  background: #f5f5f5 url(/images/wizard/bg-line.jpg) repeat-y center center;
}

.none {
  display: none !important;
}

.visible {
  display: block !important;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex-none {
  -webkit-box-flex: none;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

.flex-1, .flex-one {
  -webkit-box-flex: 1 1 0.00%;
  -webkit-flex: 1 1 0.00%;
  -ms-flex: 1 1 0.00%;
  flex: 1 1 0.00%;
}

.align-center {
  align-items: center
}

.justify-center {
  justify-content: center;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.cd-product-builder {
  overflow: hidden;
  height: 100%;
}

.cd-builder-steps {
  position: relative;
}

.builder-step > section {
  padding-bottom: 50px;
}

.cd-builder-steps > ul {
}
.cd-builder-steps .builder-step {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  -webkit-transition: visibility .5s;
  transition: visibility .5s;
}
.cd-builder-steps .builder-step.active {
  position: relative;
  z-index: 2;
  visibility: visible;
}

.cd-builder-main-nav {
  margin-top: 30px;
}

/* -------------------------------- 

Step content - basic style

-------------------------------- */
.cd-step-content {
  opacity: 0;
  /* this is the animation of a section moving right (go back to a prev step) - selection already made */
  -webkit-animation: cd-center-to-right .5s 0s backwards;
  animation: cd-center-to-right .5s 0s backwards;
  width: 100%;
}

.cd-step-content header {
  position: relative;
  margin-bottom: 1em;
}
.cd-step-content h1 {
  font-size: 2.4rem;
}

.cd-step-content .options-list > li {
  /* basic style for list of options */
  margin-bottom: 20px;
  cursor: pointer;
  background: #fff;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  -webkit-box-shadow: 0px 20px 31px -4px rgba(0,0,0,0.08);
  -moz-box-shadow: 0px 20px 31px -4px rgba(0,0,0,0.08);
  box-shadow: 0px 20px 31px -4px rgba(0,0,0,0.08);
}

.cd-step-content .types-list > li {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.cd-step-content .options-list > li.selected {
  border-color: #4eb3ea;
}
.cd-step-content .radio, .cd-step-content .check {
  position: relative;
  display: inline-block;
  height: 36px;
  width: 36px;
}

.cd-step-content .types-list .radio {
  display: none;
}

.cd-step-content .headers-list .radio {
  display: inline-block;
}

.cd-step-content .radio::after, .cd-step-content .radio::before, .cd-step-content .check::after, .cd-step-content .check::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 100%;
  /* Force hardware acceleration */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cd-step-content .radio::before, .cd-step-content .check::before {
  /* yellow circle/square */
  border: 2px solid #EDEDED;
  background: #ffffff;
  -webkit-transition: background-color .3s, border-color .3s, -webkit-transform .3s;
  transition: background-color .3s, border-color .3s, -webkit-transform .3s;
  transition: background-color .3s, transform .3s, border-color .3s;
  transition: background-color .3s, transform .3s, border-color .3s, -webkit-transform .3s;
}
.cd-step-content .radio::after, .cd-step-content .check::after {
  /* check icon */
  background: url(/images/wizard/cd-icon-check.svg) no-repeat center center;
}
.cd-step-content .radio::before {
  border-radius: 50%;
}
.cd-step-content .check::before {
  border-radius: 4px;
}
.cd-step-content .selected .radio::before, .cd-step-content .selected .check::before {
  background: #4eb3ea;
  border-color: #4eb3ea;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-animation: cd-bounce .5s;
  animation: cd-bounce .5s;
}
.active .cd-step-content {
  /* this is the animation of the selected step */
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: cd-right-to-center .5s .2s backwards;
  animation: cd-right-to-center .5s .2s backwards;
}
.move-left .cd-step-content {
  /* this is the animation of a section moving left - selection already made */
  -webkit-animation: cd-center-to-left .5s 0s backwards;
  animation: cd-center-to-left .5s 0s backwards;
}
.active.back .cd-step-content {
  /* this is the animation of the selected step - moving down*/
  -webkit-animation: cd-left-to-center .5s .2s backwards;
  animation: cd-left-to-center .5s .2s backwards;
}
.cd-step-content header {
  margin-bottom: 20px;
}
.cd-step-content h1 {
  font-size: 23px;
  text-align: center;
  color: #6a6a6a;
}

.cd-step-content h2 {
  font-size: 23px;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.cd-step-content .options-list > li {
  margin-bottom: 0;
}
.cd-step-content .options-list > li.disabled {
  cursor: auto;
}

.cd-step-content .options-list.cd-col-2::after {
  clear: both;
  content: "";
  display: block;
}
.cd-step-content .options-list.cd-col-2 > li {
  width: 50%;
  float: left;
  margin-right: 45px;
}
.cd-step-content .options-list.cd-col-2 > li:nth-of-type(2n) {
  margin-right: 0;
}

.cd-step-content .types-list.cd-col-2 > li,
.cd-step-content .types-list.cd-col-2 > li:nth-of-type(2n) {
  width: 25%;
  margin-right: 0px;
}

.cd-step-content .types-list.cd-col-2 > li:last-child {
  margin-right: 0;
}

.cd-step-content {
  /* this padding takes care of both top and bottom fixed navigations */
  margin: 0 auto;
}
.cd-step-content header {
  display: none;
}

.cd-step-content {
  max-width: 1200px;
}

@-webkit-keyframes cd-right-to-center {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes cd-right-to-center {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-left-to-center {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes cd-left-to-center {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-center-to-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
}
@keyframes cd-center-to-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
}
@-webkit-keyframes cd-center-to-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes cd-center-to-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@-webkit-keyframes cd-bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
  60% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@keyframes cd-bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
  60% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

.cd-builder-steps .models-list {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
}

.cd-builder-steps .types-list, 
.cd-builder-steps .step-content {
  display: block;
  background: #fff;
}

.cd-builder-steps .types-list li {
  -webkit-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}

.cd-builder-steps .types-list li:hover {
  z-index: 99;
  -webkit-box-shadow: 0px 20px 31px -4px rgba(0,0,0,0.08);
  -moz-box-shadow: 0px 20px 31px -4px rgba(0,0,0,0.08);
  box-shadow: 0px 20px 31px -4px rgba(0,0,0,0.08);
}

.cd-builder-steps .types-list li.coming-soon:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.cd-builder-steps .models-list > li {
  padding: 30px 25px 20px 25px;
  box-sizing: border-box;
  position: relative;
}

.cd-builder-steps .creation-type > li {
  padding: 2.7em 25px;
}

.cd-builder-steps .models-list .name {
  display: block;
  font-size: 24px;
  margin-top: .2em;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.cd-builder-steps .models-list > li:not(.disabled):before {
  content: "";
  position: absolute;
  bottom: 0px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  left: 50%;
  height: 3px;
  width: 0;
  background: #eb6a56;
}

.cd-builder-steps .models-list > li:hover:before {
  left: 0;
  width: 100%;
}

.cd-builder-steps .types-list .name {
  font-size: 18px;
}

.cd-builder-steps .models-list img {
  display: block;
  max-width: 80%;
  margin: 10px auto 2.2em;
}

.cd-builder-steps .headers-list img {
  margin-bottom: 25px;
}

.cd-builder-steps .models-list .price {
  display: block;
  color: #999;
  margin-bottom: 25px;
  line-height: 1.5;
  font-size: 16px;
  box-sizing: border-box;
  padding: 0 17%;
}

.coming-soon img ,
.coming-soon span {
  opacity: .5;
}

.coming-soon:after {
  content: "COMING SOON";
  color: #fff;
  background: #4eb3ea;
  padding: 13px 0;
  width: 130px;
  position: absolute;
  top: 30px;
  left: 50%;
  margin-left: -65px;
}

.business-type {
  width: 100%;
  max-width: 420px;
  padding: 20px;
  border: none;
  color: #6a6a6a;
  margin: 20px auto 50px;
  display: block;
  outline: none;
  text-align: center;
  font-size: 16px;
  border-bottom: 1px solid #999;
  transition: border-color 0.3s ease;
}

.business-type:hover,
.business-type:focus {
  border-color: #4eb3ea;
}


input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; } /* Firefox 18- */
input:focus::-moz-placeholder { color:transparent; } /* Firefox 19+ */
input:focus:-ms-input-placeholder { color:transparent; } /* oldIE ;) */

.list-wrapper {
  float: left;
  width: 100%;
  position: relative;
}

.cd-product-builder > .cd-builder-steps:before {
  content: '';
  width: 100%;
  height: 100px;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  left: 0;
  background: #eb6a56;
  z-index: -1;
  display: none;
}

.cd-builder-steps .models-list .selected .radio::before {
  /* show a loading animation while you wait for the HTML to be loaded */
  background: transparent;
  border-color: #EDEDED;
  border-right-color: #4eb3ea;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation: cd-load .6s infinite;
  animation: cd-load .6s infinite;
}
.cd-builder-steps .models-list .selected.loaded .radio::before {
  /* content has been loaded - show the yellow circle + check icon */
  background: #4eb3ea;
  border-color: #4eb3ea;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-animation: cd-bounce .5s;
  animation: cd-bounce .5s;
}

@-webkit-keyframes cd-load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes cd-load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* -------------------------------- 

Builder top navigation

-------------------------------- */

.cd-product-builder .main-header {
  display: block;
  width: 100%;
  padding: 4% 0 1%;
  text-align: center;
}

.cd-product-builder .main-header h1 {
  font-size: 34px;
  margin: 10px auto;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.loadingBarContent {
  width: 52px;
  height: 52px;
  position: absolute;
  top: 40% !important;
  left: 50%;
  margin-left: -26px;
  z-index: 2;

  -webkit-animation: circle infinite .75s linear;
  -moz-animation: circle infinite .75s linear;
  -o-animation: circle infinite .75s linear;
  animation: circle infinite .75s linear;

  border: 2px solid #2f323a;
  border-top-color: rgba(0, 0, 0, .2);
  border-right-color: rgba(0, 0, 0, .2);
  border-bottom-color: rgba(0, 0, 0, .2);
  border-radius: 100%;
}

@-webkit-keyframes circle
{
  0.00%
  {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100%
  {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes circle
{
  0.00%
  {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100%
  {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes circle
{
  0.00%
  {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100%
  {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle
{
  0.00%
  {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100%
  {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#loadingBarOverlay {
  background : rgb(247, 247, 247);
  width: 100%;
  float: left;
  height: 100%;
  position: absolute;
  z-index: -1;
  opacity: 0;
}

#loadingBarOverlay.visible {
  z-index: 1;
  opacity: 1;
}

.generated-website-container {
  width: 94%;
  float: left;
  margin-left: 3%;
  position: relative;
}

.generated-website-container > iframe {
  float: left;
  width: 100%;
  display: block;
  height: 100%;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.button-blue {
  padding: 23px 30px;
  background: #4eb3ea;
  color: #fff;
  margin: 0 auto 30px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  float: none;
  width: 218px;
  display: block;
  text-align: center;
  border-radius: 35px;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.button-blue:hover {
  background: #48a7da;
}

.button-blue.disabled {
  background: #aee2ff !important;
}

.red-button {
  background: #eb6a56;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  margin-right: 5px;
}

.red-button:hover {
  background: #d25d4b;
}

.sticky-lane {
  width: 100%;
  height: 0;
  background: #fff;
  z-index: 9;
  overflow: hidden;
  -moz-transition: opacity 0.3s ease, height 0.3s ease;
  -webkit-transition: opacity 0.3s ease, height 0.3s ease;
  transition: opacity 0.3s ease, height 0.3s ease;
  box-sizing: border-box;
}

.sticky-lane.visible {
  opacity: 1;
  height: 90px;
  box-shadow: 0 0 39px rgba(0, 0, 0, 0.1);
}

.sticky-lane .control-btn {
  display: none;
}

.sticky-lane.confirm-visible .control-btn {
  display: block;
}

.sticky-lane .wrapper {
  width: 90%;
  padding: 15px 0;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.sticky-lane .back-btn, .sticky-lane .next-btn {
  color: #444;
  padding: 23px 0;
  font-size: 13px;
  text-transform: uppercase;
}

.sticky-lane .back-btn p {
  margin-right: 10px;
  display: inline-block;
}

.sticky-lane .next-btn p {
  margin-left: 10px;
  display: inline-block;
}

.sticky-lane .button-blue {
  width: auto;
  margin-bottom: 0;
}

.f-left {
  float: left !important;
}

.f-right {
  float: right !important;
}

.form-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.centered {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.step-wrapper {
  background: #fff;
  padding: 70px 50px;
  -webkit-box-shadow: 0px 20px 31px -4px rgba(0,0,0,0.08);
  -moz-box-shadow: 0px 20px 31px -4px rgba(0,0,0,0.08);
  box-shadow: 0px 20px 31px -4px rgba(0,0,0,0.08);
}

.cd-step-content.wide-content {
  max-width: 100%;
}

.error {
  color: rgb(196, 38, 87);
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  width: 100%;
  float: left;
}

.button-blue p {
  display: inline-block;
  margin-left: 30px;
}

.width-space-top {
  margin-top: 20px;
}

.ui-autocomplete {
  max-height: 318px;
  overflow: auto;
}

.ui-autocomplete .ui-menu-item.ui-state-focus {
  background: #f7f7f7;
  cursor: pointer;
}

.mobile-nav {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .generated-website-container {
    width: 100%;
    margin-left: 0;
  }

  .cd-step-content .options-list.cd-col-2.step-init {
    display: block;
    padding: 0 15px;
  }

  .cd-step-content .options-list .js-option {
    width: 50% !important;
  }

  .cd-step-content .options-list.cd-col-2.step-init > li {
    margin: 15px 0;
    width: 100% !important;
  }

  .cd-builder-steps .models-list .price {
    padding: 0;
  }

  .cd-builder-steps .options-list img {
    max-width: 90%
  }

  .cd-builder-steps .step-init img {
    max-width: 50%;
  }

  .cd-builder-steps .creation-type > li {
    padding: 25px;
  }

  .cd-step-content header {
    margin-bottom: 10px;
  }

  .step-wrapper {
    padding: 35px;
  }

  .cd-builder-steps .models-list > li {
    padding: 15px;
  }

  .cd-step-content h2 {
    margin-bottom: 20px;
    font-size: 19px;
  }

  .cd-product-builder .main-header h1 {
    font-size: 24px;
  }

  .sticky-lane.visible {
    height: 70px;
  }

  .sticky-lane .wrapper {
    padding: 9px 0;
  }

  .cd-step-content h2 {
    line-height: 1.3;
  }

  .button-blue {
    padding: 20px 30px;
  }

  .sticky-lane .back-btn, .sticky-lane .next-btn {
    padding: 20px 0;
  }

  .mobile-nav {
    display: block !important;
  }

  .desktop-nav {
    display: none !important;
  }

  .form-wrapper {
    padding: 45px 35px;
    box-sizing: border-box;
  }

}