/*
 * --- Primary Colors ---
 */
/*
 * --- Informational Colors ---
 *
 * Use these colors for alerts or informational text.
 */
/*
 * --- Supporting Colors ---
 *
 * These colors would primarily be used with text.
 */
/*
 * --- Feature Colors ---
 *
 * Colors used primarily in the dashboard to brand distribution channels
 */
/*
 * --- Background Colors ---
 */
/*
* --- Gradients ---
 */
/*
 * --- Text Colors ---
 *
 * When using text on a light background stick to Black or Slate.
 * Use White or Light Gray on dark backgrounds. Silver is reserved
 * for disabled states.
 */
/*
 * --- Original ---
 *
 * This is our original color variables. Some have been updated
 * to use the new color variables for StockBlocks and some of the
 * non standard variables are being left as is.
 */
/* TODO: anchor these styles to an ID */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

#join-flow #wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
#join-flow #header {
  overflow: hidden;
  padding: 10px 0 15px;
  margin: 0 -15px 30px;
  border-bottom: 1px solid #d7d7d7;
}
#join-flow #header .logo {
  overflow: hidden;
  margin: 0 auto;
  max-width: 214px;
}
#join-flow #header .logo img {
  display: block;
  width: 100%;
}

.progress-tracker {
  display: table;
  list-style: none;
  table-layout: fixed;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #000000;
  line-height: 18px;
  position: relative;
  max-width: 584px;
  margin: 0 auto 8px;
  counter-reset: item;
  padding: 0 12px;
}
.progress-tracker:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  content: "";
  background: #bababa;
}
.progress-tracker li {
  display: table-cell;
  vertical-align: top;
  width: 33.33%;
  position: relative;
  padding: 20px 0 0;
}
.progress-tracker li:after {
  position: absolute;
  left: 50%;
  top: 0;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  color: #ffffff;
  z-index: 2;
  font-weight: 700;
  background: #bababa;
  content: counters(item, ".") " ";
  counter-increment: item;
  font-size: 20px;
  line-height: 20px;
  padding: 3px;
}
.progress-tracker li:first-child:after {
  left: 1px;
}
.progress-tracker li:first-child span {
  float: left;
  margin: 0 0 0 -13px;
}
.progress-tracker li:last-child:after {
  left: auto;
  right: -16px;
}
.progress-tracker li:last-child span {
  float: right;
  margin: 0 -15px 0 0;
}
.progress-tracker li.done:after {
  background: #404040;
}

.form-block {
  margin: 0 auto;
  max-width: 320px;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.form-block .form-holder {
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin: 0 0 20px;
  padding: 20px 20px 30px;
  position: relative;
  width: 485px;
}
.form-block .slideset {
  width: 99999px;
  float: left;
}
.form-block .slide {
  float: left;
  margin: 0 10px;
  width: 300px;
  text-align: center;
}
.form-block .slide:after {
  content: " ";
  display: block;
  clear: both;
}
.form-block .slide.active {
  z-index: 1;
}
.form-block h1 {
  font-family: proxima_nova_ltsemibold, sans-serif;
  text-align: center;
  font-size: 24px;
  line-height: 25px;
  margin: 0 0 20px;
  color: #252525;
  font-weight: 600;
}
.form-block .row-holder {
  margin: 0 0 6px;
  position: relative;
}
.form-block .row-holder:after {
  content: " ";
  display: block;
  clear: both;
}
.form-block .row-holder.password:before {
  position: absolute;
  right: 2px;
  top: 3px;
  height: 28px;
  width: 49px;
  content: "";
  background: #ffffff;
  z-index: 10;
}
.form-block p {
  font-family: proxima_nova_rgregular, sans-serif;
  font-size: 16px;
  text-align: left;
  color: #252525;
}
.form-block .form-control {
  width: 100%;
  line-height: 20px;
  color: #7d7d7d;
  padding: 5px 8px;
  height: 35px;
  border: solid 2px #e1e1e1;
  box-shadow: none;
  border-radius: 3px;
  font-size: 16px;
  -webkit-appearance: none;
}
.form-block .form-control:focus {
  border: solid 2px #404040;
}
.form-block .form-control::-webkit-input-placeholder {
  color: #c4c4c4;
}
.form-block .form-control:-moz-placeholder {
  color: #c4c4c4;
}
.form-block .form-control::-moz-placeholder {
  color: #c4c4c4;
  opacity: 1;
}
.form-block .form-control:-ms-input-placeholder {
  color: #c4c4c4;
}
.form-block .error .form-control {
  color: #f30424;
  border-color: #f30424;
}
.form-block .error .form-control::-webkit-input-placeholder {
  color: #f30424;
}
.form-block .error .form-control:-moz-placeholder {
  color: #f30424;
}
.form-block .error .form-control::-moz-placeholder {
  color: #f30424;
  opacity: 1;
}
.form-block .error .form-control:-ms-input-placeholder {
  color: #f30424;
}
.form-block .show {
  position: absolute;
  right: 11px;
  top: 11px;
  z-index: 15;
  color: #404040;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.form-block .show:hover {
  text-decoration: none;
  color: #000000;
}
.form-block .btn {
  display: block;
  width: 100%;
  white-space: normal;
  font-size: 20px;
  line-height: 22px;
  border-radius: 5px;
  padding: 9px 10px 13px;
  font-weight: 700;
}
.form-block .btn .ico {
  display: inline-block;
  vertical-align: top;
  margin: 1px 0 0 6px;
}
.form-block .already-user {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #252525;
}
.form-block .already-user a {
  text-decoration: underline;
}
.form-block .already-user a:hover {
  text-decoration: none;
}
.form-block .slide-inner {
  text-align: center;
  font-size: 16px;
  line-height: 19px;
  position: absolute;
  background: #f7f7f7;
  top: 20px;
  bottom: 0;
  left: 100%;
  color: #7d7d7d;
  min-height: 750px;
  width: 295px;
  z-index: 55;
  margin: 0 0 0 13px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.form-block .slide-inner:after {
  content: " ";
  display: block;
  clear: both;
}
.form-block .slide-inner p {
  margin: 0 0 14px;
}
.form-block .slide-inner h1 {
  margin: 0 0 22px;
}
.form-block .slide-inner .btn {
  padding: 8px 10px 15px;
}
.form-block .slide-inner .form-holder {
  padding: 20px 20px 30px;
}
.form-block .email-field {
  margin: 0 0 29px;
}
.form-block .email-field:after {
  content: " ";
  display: block;
  clear: both;
}
.form-block .email-field label {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 10px;
  font-weight: 400;
}
.form-block .email-field .form-control {
  text-align: center;
}
.form-block .icon-envelope {
  display: inline-block;
  vertical-align: top;
  font-size: 140px;
  line-height: 120px;
  color: #a1a1a1;
  position: relative;
  margin: 0 0 17px;
}
.form-block .icon-envelope span {
  font-size: 10px;
  color: #ffffff;
  width: 22px;
  height: 22px;
  padding: 4px 0 0;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 100%;
  border: solid 2px #ffffff;
  background: #000000;
  position: absolute;
  right: -10px;
  top: -4px;
}
.form-block .later-link {
  display: block;
  padding: 15px;
}
.form-block ul {
  list-style-type: none;
  padding-left: 0;
}
.form-block li {
  padding-left: 0;
  text-align: left;
}
.form-block label {
  font-family: proxima_nova_rgregular, sans-serif;
  font-size: 16px;
  line-height: 1.38;
  font-weight: normal;
  color: #7d7d7d;
}
.form-block label input {
  margin-right: 5px;
}
.form-block label input:hover {
  cursor: pointer;
}
.form-block label:hover {
  cursor: pointer;
}
.form-block label.error {
  color: #f00;
  text-align: left;
  font-size: 12px;
  width: 100%;
  padding-left: 2px;
  margin-bottom: 0px;
}
.form-block label.error:hover {
  cursor: default;
}

.form-block.form-active {
  min-height: 533px;
}
.form-block.form-active .slide-inner {
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  left: 13px;
  margin: 0;
}

.logout-link {
  position: absolute;
  right: 0px;
  bottom: -10px;
}

.header-relative {
  position: relative;
  width: 100%;
  height: 100%;
}

.portfolio-size .select-wrapper {
  border: 2px solid #e1e1e1;
  border-radius: 2px;
  width: 100%;
}
.portfolio-size select {
  border: none;
  color: #7d7d7d;
  background-color: #ffffff;
  width: 100%;
  height: 36px;
  padding: 14px 10px 15px 10px;
  font-size: 16px;
}

.portfolio-sites {
  padding-top: 30px;
}

.portfolio-urls {
  padding-top: 15px;
}
.portfolio-urls input {
  width: 100%;
  height: 40px;
  padding: 14px 10px 12px 10px;
  margin-top: 5px;
  border-radius: 2px;
  border: solid 2px #e1e1e1;
  color: #7d7d7d;
  font-size: 16px;
}
.portfolio-urls .other-url {
  text-align: left;
}
.portfolio-urls .other-url div {
  width: 110%;
}
.portfolio-urls .other-url input {
  width: 91%;
}
.portfolio-urls .other-url i {
  color: #7d7d7d;
  margin-left: 5px;
}
.portfolio-urls .other-url i:hover {
  cursor: pointer;
}
.portfolio-urls .add-field {
  text-align: left;
  margin-top: 10px;
}
.portfolio-urls a {
  font-family: proxima_nova_rgregular, sans-serif;
  font-size: 16px;
  color: #7d7d7d;
}
.portfolio-urls a i {
  margin-right: 5px;
}
.portfolio-urls button {
  margin-top: 30px;
}

.progress-tracker.three-steps:after {
  background-image: linear-gradient(left, #404040 50%, #bababa 50%);
  background-image: -o-linear-gradient(left, #404040 50%, #bababa 50%);
  background-image: -moz-linear-gradient(left, #404040 50%, #bababa 50%);
  background-image: -webkit-linear-gradient(left, #404040 50%, #bababa 50%);
  background-image: -ms-linear-gradient(left, #404040 50%, #bababa 50%);
}

.progress-tracker.four-steps.collect-info:after {
  background-image: linear-gradient(left, #404040 34%, #bababa 34%);
  background-image: -o-linear-gradient(left, #404040 34%, #bababa 34%);
  background-image: -moz-linear-gradient(left, #404040 34%, #bababa 34%);
  background-image: -webkit-linear-gradient(left, #404040 34%, #bababa 34%);
  background-image: -ms-linear-gradient(left, #404040 34%, #bababa 34%);
}

.progress-tracker.four-steps.confirm-email:after {
  background-image: linear-gradient(left, #404040 66%, #bababa 66%);
  background-image: -o-linear-gradient(left, #404040 66%, #bababa 66%);
  background-image: -moz-linear-gradient(left, #404040 66%, #bababa 66%);
  background-image: -webkit-linear-gradient(left, #404040 66%, #bababa 66%);
  background-image: -ms-linear-gradient(left, #404040 66%, #bababa 66%);
}

@media only screen and (min-width: 768px) {
  #join-flow #header {
    margin: 0 0 51px;
    padding: 19px 0 21px;
  }
  .progress-tracker {
    padding: 0;
    font-size: 18px;
    line-height: 20px;
  }
  .progress-tracker li {
    padding: 26px 0 0;
  }
  .progress-tracker li:after {
    font-size: 24px;
    line-height: 26px;
    width: 36px;
    margin: -16px 0 0 -18px;
    height: 36px;
  }
  .progress-tracker li:last-child span {
    margin: 0 -38px 0 0;
  }
  .progress-tracker.four-steps li.collect-info {
    left: -4%;
  }
  .progress-tracker.four-steps li.confirm-email {
    left: 4%;
  }
  .form-block {
    padding: 30px 0 30px;
    max-width: 535px;
    margin: 0 auto;
  }
  .form-block .form-holder {
    margin: 0 0 20px;
    padding: 24px 89px 20px 89px;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.2);
  }
  .form-block .slide {
    width: 485px;
    margin: 0 30px;
  }
  .form-block h1 {
    font-size: 24px;
    margin: 0 0 25px;
    line-height: 26px;
  }
  .form-block .btn {
    padding: 8px 10px 13px;
    font-size: 24px;
    line-height: 26px;
  }
  .form-block .btn .ico {
    margin: 0 0 0 6px;
  }
  .form-block .already-user {
    font-size: 18px;
    line-height: 22px;
  }
  .form-block .slide-inner {
    margin: 0 0 0 60px;
    width: 485px;
    min-height: 503px;
    bottom: 30px;
  }
  .form-block .slide-inner .form-holder {
    padding: 24px 30px 49px;
  }
  .form-block .icon-mail {
    font-size: 82px;
    line-height: 82px;
    margin: 0 0 17px;
  }
  .form-block .icon-mail span {
    width: 26px;
    height: 26px;
    right: -14px;
    top: -8px;
    padding: 3px 0 0;
  }
  .form-block.form-active {
    min-height: 560px;
  }
  .form-block.form-active .slide-inner {
    left: 30px;
  }
}
@media only screen and (max-width: 768px) {
  #join-flow #wrapper .form-area {
    padding: 0;
  }
}
