#newSignup {
  background: rgba(255, 255, 255, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: "Gotham Rounded SSm A", "Gotham Rounded SSm B", "Helvetica Neue", Helvetica, Arial, sans-serif;
  z-index: 999999999;
  /* The container */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
#newSignup .font {
  color: #606060;
  line-height: 18px;
  font-size: 11.5px;
  font-weight: 500;
}
#newSignup .step {
  width: 800px;
  background-color: #FFF;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 40px;
  max-height: calc(100% - 80px);
  overflow-y: auto;
  position: relative;
}
#newSignup .step .closeButton {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D5D8D5;
  position: absolute;
  top: 5px;
  left: 5px;
  cursor: pointer;
}
#newSignup .step .closeButton:hover {
  background: #606060;
}
#newSignup .step .top .pbLogo {
  width: 48px;
  display: block;
  margin: 0 auto;
}
#newSignup .step .top h1 {
  color: #44B2E2;
  font-size: 28px;
  font-weight: 300;
  line-height: 34px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  margin: 16px 0 12px 0;
}
#newSignup .step .top .intro {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 19px;
}
#newSignup .step .top .dotContainer {
  position: relative;
  margin-bottom: 26px;
}
#newSignup .step .top .dotContainer .lineD {
  position: absolute;
  top: 7px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #D7D7D7;
  z-index: 0;
}
#newSignup .step .top .dotContainer ul.dots {
  width: 100px;
  margin: 0 auto;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  text-align: center;
}
#newSignup .step .top .dotContainer ul.dots li {
  width: 6px;
  height: 6px;
  background-color: #D8D8D8;
  display: inline-block;
  border-radius: 6px;
  margin: 0 6px;
  vertical-align: middle;
}
#newSignup .step .top .dotContainer ul.dots li.active {
  background-color: #44B2E2;
  width: 8px;
  height: 8px;
}
#newSignup .step label {
  display: block;
  margin-bottom: 20px;
  position: relative;
}
#newSignup .step label input[type="text"],
#newSignup .step label input[type="password"] {
  width: 96%;
  padding: 11px 2%;
  border: 1px solid #D7D7D7;
  border-radius: 3px;
  background-color: #FFF;
  box-shadow: inset 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  color: #606060;
}
@media only screen and (max-width: 900px) {
  #newSignup .step label input[type="text"],
  #newSignup .step label input[type="password"] {
    font-size: 16px;
  }
}
#newSignup .step label .checkLabel {
  text-transform: uppercase;
  position: relative;
  top: 5px;
  left: 10px;
}
#newSignup .step .error {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -17px;
  padding: 10px;
  background: rgba(255, 182, 193, 0.36);
  min-width: 130px;
}
#newSignup .step .error:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: rgba(255, 182, 193, 0.36);
  border-width: 10px;
  margin-top: -10px;
}
@media only screen and (max-width: 900px) {
  #newSignup .step .error {
    top: -18px;
    z-index: 3;
  }
  #newSignup .step .error:after {
    top: 100%;
    left: 50%;
    border-right-color: transparent;
    border-top-color: rgba(255, 182, 193, 0.36);
    margin-top: 0;
    margin-left: -10px;
  }
}
#newSignup .step .button {
  border-radius: 3px;
  background-color: #44B2E2;
  margin-top: 25.5px;
  display: block;
  padding: 10px;
  text-transform: uppercase;
  color: #FFF;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 13px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
#newSignup .step .button .spinner {
  margin: 0;
  width: 70px;
  text-align: center;
  position: absolute;
  top: 10px;
  display: none;
}
#newSignup .step .button .spinner div {
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
#newSignup .step .button .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
#newSignup .step .button .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media only screen and (max-width: 900px) {
  #newSignup .step .button .spinner {
    top: -20px;
    left: 37%;
  }
  #newSignup .step .button .spinner div {
    background-color: #44B2E2;
  }
}
#newSignup .step .button.pricingB {
  opacity: 0.6;
}
#newSignup .step .button.pricingB:hover {
  opacity: 1;
}
#newSignup .step .button.notReady {
  opacity: 0.5;
}
#newSignup .step .button.pending {
  opacity: 0.7;
}
#newSignup .step .button.pending .spinner {
  display: block;
}
#newSignup .step2 .types {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 10px;
}
#newSignup .step2 .types .free,
#newSignup .step2 .types .pro {
  width: 46%;
}
#newSignup .step2 .types .free h2,
#newSignup .step2 .types .pro h2 {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  text-transform: uppercase;
  color: #666;
  font-family: "Gotham Rounded SSm B", "Gotham Rounded SSm A", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
#newSignup .step2 .types .free h2 .month,
#newSignup .step2 .types .pro h2 .month {
  font-size: 11px;
}
#newSignup .step2 .types .free ul,
#newSignup .step2 .types .pro ul {
  list-style-type: none;
  font-size: 13px;
}
#newSignup .step2 .types .free ul li,
#newSignup .step2 .types .pro ul li {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #D7D7D7;
}
#newSignup .step2 .types .free ul li.notIncluded,
#newSignup .step2 .types .pro ul li.notIncluded {
  text-decoration: line-through;
  opacity: 0.5;
}
@media only screen and (max-width: 900px) {
  #newSignup .step2 .types {
    display: block;
  }
  #newSignup .step2 .types .free,
  #newSignup .step2 .types .pro {
    width: 100%;
  }
  #newSignup .step2 .types .free {
    margin-bottom: 40px;
  }
}
#newSignup .step3 .browser {
  position: relative;
  margin-bottom: 20px;
}
#newSignup .step3 .browser .browser-mockup {
  border-top: 3em solid rgba(230, 230, 230, 0.7);
  box-shadow: 0 0.1em 1em 0 rgba(0, 0, 0, 0.4);
  position: relative;
  border-radius: 3px 3px 0 0;
}
#newSignup .step3 .browser .browser-mockup:before {
  display: block;
  position: absolute;
  content: '';
  top: -2.2em;
  left: 1em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #f44;
  box-shadow: 0 0 0 2px #f44, 1.5em 0 0 2px #9b3, 3em 0 0 2px #fb5;
}
#newSignup .step3 .browser .browser-mockup.with-url:after {
  display: block;
  position: absolute;
  content: '';
  top: -2.56em;
  left: 5.5em;
  width: calc(90%);
  height: 2.2em;
  border-radius: 2px;
  background-color: white;
}
#newSignup .step3 .browser .browser-mockup > * {
  display: block;
}
#newSignup .step3 .browser .addressBar {
  position: absolute;
  top: 13px;
  left: 87px;
}
#newSignup .step3 .browser .addressBar span.https {
  color: #477f3b;
  padding-right: 1px;
}
#newSignup .step3 .browser .loader,
#newSignup .step3 .browser .loader:after {
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
#newSignup .step3 .browser .loader {
  display: none;
  position: absolute;
  top: 7px;
  right: 13px;
  margin: 0;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 0.5em solid rgba(0, 0, 0, 0.1);
  border-right: 0.5em solid rgba(0, 0, 0, 0.1);
  border-bottom: 0.5em solid rgba(0, 0, 0, 0.1);
  border-left: 0.5em solid rgba(0, 0, 0, 0.4);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#newSignup .step3 .browser .loader.pending {
  display: block;
}
#newSignup .step3 .makeDomain {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  position: relative;
}
#newSignup .step3 .makeDomain label {
  width: 49%;
}
#newSignup .step3 .makeDomain label select {
  width: 100%;
  padding: 11px 2%;
  border: 1px solid #ccc;
  height: 39px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(/pb3/application/_img/app/selectarrow4.png) 98% no-repeat #fff;
  box-shadow: inset 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  color: #606060;
  font-size: 12px;
}
#newSignup .step3 .makeDomain .changeMe {
  position: absolute;
  right: 34px;
  top: 50%;
  margin-top: -27px;
  padding: 10px;
  background: rgba(144, 238, 144, 0.71);
  min-width: 130px;
}
#newSignup .step3 .makeDomain .error {
  margin-top: -27px;
  right: 1px;
}
#newSignup .step3 .makeDomain .changeMe:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: rgba(144, 238, 144, 0.71);
  border-width: 10px;
  margin-top: -10px;
}
@media only screen and (max-width: 900px) {
  #newSignup .step3 .makeDomain .changeMe {
    top: -18px;
    z-index: 3;
  }
  #newSignup .step3 .makeDomain .changeMe:after {
    top: 100%;
    left: 50%;
    border-right-color: transparent;
    border-top-color: rgba(144, 238, 144, 0.71);
    margin-top: 0;
    margin-left: -10px;
  }
}
@media only screen and (max-width: 900px) {
  #newSignup .step3 .browser .browser-mockup:before {
    box-shadow: none;
  }
  #newSignup .step3 .browser .browser-mockup.with-url:after {
    left: 11%;
    width: 86%;
  }
  #newSignup .step3 .browser .addressBar {
    left: 13%;
  }
}
#newSignup .step4 .agreeWrap {
  text-align: center;
  margin-top: 10px;
  position: relative;
}
#newSignup .step4 .agreeWrap .agree {
  display: inline-block;
  text-align: left;
}
#newSignup .step4 .agreeWrap .agree label a {
  color: #606060;
  text-decoration: underline;
}
#newSignup .step4 .agreeWrap .error {
  top: 0;
}
#newSignup .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#newSignup .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
#newSignup .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #D7D7D7;
  border-radius: 3px;
  background-color: #FFF;
  box-shadow: inset 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}
#newSignup .container:hover input ~ .checkmark {
  background-color: #eee;
}
#newSignup .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#newSignup .container input:checked ~ .checkmark:after {
  display: block;
}
#newSignup .container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #44B2E2;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
