/**
 * [Template] Signup2
 */
/**
 * Mixins
 */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

/**
 * Vars
 */
/**
 * Hide elements
 */
header.site-header,
header.main-site-header,
.section-header, .section-footer,
.section-sitenavigation,
#page,
.asheville-footer,
.tulsa-background,
.page-footer {
  display: none !important;
}

/**
 * Base
 */
body.page-template-template-signup2 a {
  color: #2998ff;
}
body.page-template-template-signup2 a:hover, body.page-template-template-signup2 a:focus {
  text-decoration: underline;
}

/**
 * Tooltip
 */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}
[data-tooltip]:before, [data-tooltip]:after {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
[data-tooltip]:before {
  position: absolute;
  bottom: -100%;
  padding: 6px 10px;
  width: 190px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  content: attr(data-tooltip);
  text-align: left;
  font-size: 13px;
  line-height: 18px;
  margin: 0;
  margin-left: 27px;
  transform: translateY(3px) translateX(-2px);
  transition: 0.25s;
  height: 48px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  [data-tooltip]:before {
    bottom: 0;
    position: relative;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
  }
}
[data-tooltip]:after {
  position: absolute;
  left: 0;
  width: 0;
  border-top: 5px solid transparent;
  border-right: 5px solid rgba(0, 0, 0, 0.8);
  border-bottom: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  border-left: 5px solid transparent;
  margin-left: 17px;
  margin-top: 2px;
  transition: 0.25s;
  transform: translateX(-2px);
}
[data-tooltip]:hover:before, [data-tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}
[data-tooltip]:hover:before {
  transform: translateY(3px);
}
[data-tooltip]:hover:after {
  transform: translateX(0);
}
[data-tooltip].tooltip-error:before {
  background-color: #d0021b;
}
@media (max-width: 767px) {
  [data-tooltip].tooltip-error:before {
    background: none;
  }
}
[data-tooltip].tooltip-error:after {
  border-right-color: #d0021b;
}
@media (max-width: 1100px) {
  [data-tooltip]:before {
    width: 170px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  [data-tooltip]:after {
    display: none !important;
  }
  [data-tooltip]:before {
    width: calc(100vw - 65px);
    left: calc(-100vw + 74px);
    padding-top: 10px;
    padding-bottom: 10px;
    transform: translateY(40px);
    width: 100%;
    padding-left: 0;
    transform: none;
    left: 0;
    margin-left: 0;
    height: auto;
    color: #d0021b;
    padding: 0 10px;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.1;
  }
}

/* custom tooltips */
.tooltip-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../icon-help.html");
  background-size: contain;
}
.tooltip-icon.tooltip-error {
  background-image: none;
  pointer-events: none;
}

/**
 * Signup general
 */
.signup-wrapper {
  background: #F6F6F6;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 800px;
  transition: 0.2s;
}
.signup-wrapper:after {
  content: "";
  transition: 0.5s;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
@media (max-width: 767px) {
  .signup-wrapper {
    position: relative;
    min-height: calc(100vh - 60px);
    padding: 20px 0 0 0;
    background: #fff;
    flex-direction: column;
    justify-content: space-between;
  }
  .signup-wrapper:after {
    background-position: right;
  }
  .signup-wrapper form {
    width: 100%;
  }
}
.signup-wrapper form {
  container: none;
}

.step1-form-title {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #3f4648;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  .step1-form-title {
    margin-bottom: 25px;
  }
}

/**
 * Connecteam Logo
 */
.has-background .connecteam-logo {
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 50px 0 0 0;
}
.has-background .steps-window {
  height: 645px;
}
.has-background .bg-signup {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
  object-position: top left;
}
.has-background .steps-window:before {
  display: none;
}
.has-background .steps-window .content-wrapper {
  display: none;
}
.has-background .steps-window .form-wrapper {
  width: 100%;
}

.connecteam-logo {
  text-align: center;
  padding: 44px 0 68px 0;
  transition: 0.2s;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .connecteam-logo {
    padding: 25px 0;
    display: none;
  }
  .connecteam-logo img {
    max-height: 18px;
  }
}

/**
 * Footer text
 */
.footer-text {
  color: #848080;
  font-size: 12px;
  line-height: 18px;
  opacity: 0.8;
  position: relative;
  bottom: 0;
  text-align: center;
  margin: 21px auto 0 auto;
  transition: 0.2s;
  z-index: 2;
  max-width: 728px;
}
@media (max-width: 767px) {
  .footer-text {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    margin: 0;
    font-weight: 400;
    font-size: 11px;
    padding: 11px 5px;
    border-top: 1px solid #eaeaea;
    width: 100%;
    text-align: start;
  }
}
.footer-text p {
  margin: 0;
}

/**
 * Loader modal
 */
.loader-modal {
  width: 560px;
  height: 390px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  flex-direction: column;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}
.loader-modal .loader-img {
  height: 70px;
  margin-bottom: 10px;
  transform: rotate(180deg);
}
.loader-modal .loader-text {
  color: #404648;
  font-size: 19px;
  line-height: 26px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .loader-modal {
    width: auto;
    left: 15px;
    right: 15px;
    height: 300px;
  }
  .loader-modal .loader-text {
    font-size: 17px;
  }
}

/**
 * Steps window
 */
.steps-window {
  width: 728px;
  height: 534px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 52px 44px -30px rgba(0, 0, 0, 0.11);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  transition: 0.5s;
  z-index: 3;
}
.steps-window:before {
  content: "";
  display: block;
  height: 100%;
  width: 43%;
  background-image: url("data:image/svg+xml,%3Csvg width='313' height='534' viewBox='0 0 313 534' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='313' height='534' fill='%23EFEBFF'/%3E%3Cpath d='M313 447.545C311.858 445.853 310.669 444.188 309.432 442.552C290.253 417.185 259.612 398.888 213.817 395.455C131.466 389.281 62.9063 428.265 3.24566 462.189C2.16088 462.806 1.07892 463.421 0 464.035L0 468.275C0.547172 467.964 1.09497 467.653 1.64339 467.341L4.76305 465.568C64.6307 431.53 132.324 393.043 213.541 399.132C258.398 402.495 288.018 420.343 306.491 444.776C308.836 447.876 311.003 451.086 313 454.389V447.545Z' fill='%23B09AFF' fill-opacity='0.4'/%3E%3Cpath d='M0 231.563C9.66801 240.04 21.4805 245.3 34.4378 248.165C60.8488 254.004 92.2444 249.941 120.739 242.618C138.661 238.012 156.524 227.916 174.006 216.482C181.447 211.616 188.774 206.54 196.023 201.518L196.026 201.516L196.028 201.515L196.036 201.509L196.04 201.507C205.964 194.631 215.742 187.857 225.463 181.862C242.218 171.528 258.268 163.872 273.491 162.532C287.208 161.326 300.404 165.236 313 177.38V172.373C300.419 161.353 287.064 157.637 273.168 158.86C257.044 160.278 240.378 168.331 223.528 178.723C213.789 184.73 203.809 191.641 193.773 198.59L193.772 198.591L193.771 198.592C186.516 203.615 179.232 208.659 171.988 213.397C154.572 224.787 137.129 234.599 119.821 239.047C91.5295 246.318 60.8039 250.219 35.2337 244.565C22.4757 241.744 11.0587 236.558 1.8524 228.277C1.225 227.712 0.607425 227.133 0 226.539V231.563Z' fill='%23B09AFF' fill-opacity='0.4'/%3E%3Cpath d='M100.815 0H104.612C106.334 7.02113 107.755 14.2216 108.841 21.6131C115.515 67.0495 104.368 100.952 83.814 125.218C63.307 149.43 33.5917 163.868 3.39354 170.755C2.26316 171.012 1.13183 171.26 0 171.496V167.728C0.858282 167.545 1.71629 167.355 2.57381 167.16C32.2505 160.392 61.157 146.263 81.0006 122.835C100.798 99.4622 111.73 66.6535 105.193 22.1489C104.08 14.5673 102.607 7.18882 100.815 0Z' fill='%23B09AFF' fill-opacity='0.4'/%3E%3C/svg%3E%0A");
  border-radius: 20px 0 0 20px;
  transition: 0.5s ease-out;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.steps-window[style*=gradient]:before {
  background-image: linear-gradient(209deg, var(--gradient-top, #51ecd8), var(--gradient-bottom, #2998ff));
}
.steps-window .content-wrapper {
  width: 43%;
  height: 100%;
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  display: flex;
  overflow: hidden;
}
.steps-window .content-wrapper .content-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.5s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
}
.steps-window .content-wrapper img {
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
  position: relative;
  top: 1px;
}
.steps-window .form-wrapper {
  width: 57%;
  height: 100%;
  color: #848080;
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.steps-window .form-wrapper .inner {
  width: 100%;
}
.steps-window .form-wrapper .inner > div {
  display: block;
  position: absolute;
  top: 40px;
  bottom: 40px;
  right: 30px;
  left: 30px;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
}
.steps-window .small-text {
  font-size: 13px;
  line-height: 18px;
}
@media (max-width: 767px) {
  .steps-window {
    width: 100% !important;
    height: 520px;
    box-shadow: none;
  }
  .steps-window:before {
    width: 100%;
    border-radius: 10px;
    background: #fff;
  }
  .steps-window .content-wrapper {
    display: none;
  }
  .steps-window .form-wrapper {
    width: 100% !important;
    padding: 15px 17px;
  }
  .steps-window .form-wrapper .inner > div {
    top: 15px;
    bottom: 15px;
    left: 17px;
    right: 17px;
  }
}

/**
 * Form
 */
input[type=text], input[type=email], input[type=password], select, .select-dropdown-btn {
  border: 1px solid #D9D9D9;
  font-size: 15px;
  color: #7C8487;
  height: 50px;
  width: 100%;
  border-radius: 12px;
  background: #fff;
  padding: 10px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.25s;
  -webkit-appearance: none;
}
input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, select:focus, .select-dropdown-btn:focus {
  outline: 0;
  box-shadow: inset 0px 0px 4px 0px #d9d9d9;
}
@media (max-width: 767px) {
  input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, select:focus, .select-dropdown-btn:focus {
    box-shadow: none;
  }
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, select::-webkit-input-placeholder, .select-dropdown-btn::-webkit-input-placeholder {
  opacity: 1;
  color: #7C8487;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
input[type=text]:-moz-placeholder, input[type=email]:-moz-placeholder, input[type=password]:-moz-placeholder, select:-moz-placeholder, .select-dropdown-btn:-moz-placeholder {
  opacity: 1;
  color: #7C8487;
  -moz-transition: 0.25s;
  transition: 0.25s;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, select::-moz-placeholder, .select-dropdown-btn::-moz-placeholder {
  opacity: 1;
  color: #7C8487;
  -moz-transition: 0.25s;
  transition: 0.25s;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, select:-ms-input-placeholder, .select-dropdown-btn:-ms-input-placeholder {
  opacity: 1;
  color: #7C8487;
  -ms-transition: 0.25s;
  transition: 0.25s;
}
@media (max-width: 767px) {
  input[type=text], input[type=email], input[type=password], select, .select-dropdown-btn {
    height: 40px;
    font-size: 14px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #d8d8d8;
    border-radius: 0;
    padding: 6px 10px;
  }
}

.form-row {
  margin-bottom: 15px;
  width: 100%;
}

.field-wrap {
  position: relative;
}
.field-wrap label {
  margin-bottom: 7px;
  color: #848080;
  display: block;
  text-align: left;
  width: 100%;
  margin-top: 15px;
}
.field-wrap .tooltip-icon {
  position: absolute;
  right: 15px;
  top: 18px;
}
@media (max-width: 767px) {
  .field-wrap .tooltip-icon {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    flex-basis: 100%;
  }
}

.two-inputs {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .two-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
}
.two-inputs .field-wrap {
  flex: 1;
}
@media (min-width: 768px) {
  .two-inputs .field-wrap:last-child input {
    border-start-start-radius: 0;
    border-end-start-radius: 0;
  }
  .two-inputs .field-wrap:first-child input {
    border-start-end-radius: 0;
    border-end-end-radius: 0;
  }
  .two-inputs .field-wrap:first-child {
    margin-inline-end: -1px;
  }
}

/**
 * Specific fields
 */
input[type=checkbox] {
  visibility: hidden;
  display: none;
}

.field-checkbox {
  text-align: left;
  position: relative;
}
.field-checkbox label {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}
.field-checkbox label:before {
  content: "";
  border: 1px solid #d9d9d9;
  padding: 9px;
  border-radius: 2px;
  margin: 0 9px 0 0;
  position: relative;
}
.field-checkbox label:after {
  content: "";
  width: 11px;
  height: 7px;
  position: absolute;
  top: 6px;
  left: 5px;
  border: 3px solid #7c8487;
  border-top: 0;
  border-right: 0;
  background: transparent;
  opacity: 0;
  transition: 0.1s;
  transform: rotate(-45deg);
}
.field-checkbox label:hover::after {
  opacity: 0.3;
}
.field-checkbox input[type=checkbox] {
  visibility: hidden;
}
.field-checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.password-visibility {
  display: inline-block;
  background: url("../png/icon-eye.png");
  width: 20px;
  height: 12px;
  background-size: contain;
  cursor: pointer;
  position: absolute;
  right: 13px;
  top: 18px;
  transition: 0.2s;
}
.password-visibility:hover {
  opacity: 0.9;
}
.password-visibility.password-visible {
  background-image: url("../png/icon-eye-green.png");
}

.field-select .dropdown {
  position: relative;
}
.field-select .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 0;
  margin: 2px 0 0;
  font-size: 15px;
  list-style: none;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  width: 100%;
  max-height: 285px;
  overflow-y: scroll;
}
.field-select .dropdown-menu li {
  display: block;
}
.field-select .dropdown-menu li:first-child {
  display: none;
}
.field-select .dropdown-menu li:last-child a {
  border-bottom: 0;
}
.field-select .dropdown-menu a {
  display: block;
  color: #7c8487;
  padding: 10px 0;
  border-bottom: 1px solid #d9d9d9;
}
.field-select .dropdown-menu a:hover {
  text-decoration: none;
  background: #7c8487;
  color: #fff;
}
.field-select .dropdown.open .dropdown-menu {
  display: block;
}

.select {
  display: flex;
  align-items: center;
  text-align: start;
  flex-wrap: wrap;
}
.select select {
  cursor: pointer;
}
.select:after {
  content: "";
  position: absolute;
  inset-inline-end: 18px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #d9d9d9;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0;
  vertical-align: middle;
  border-top: 7px solid #D9D9D9;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

/**
 * Field error
 */
@media (min-width: 768px) {
  input[type=text].field-error, input[type=email].field-error, input[type=password].field-error, select.field-error, .select-dropdown-btn.field-error {
    border-color: #D0021B;
    color: #D0021B !important;
  }
  input[type=text].field-error::-webkit-input-placeholder, input[type=email].field-error::-webkit-input-placeholder, input[type=password].field-error::-webkit-input-placeholder, select.field-error::-webkit-input-placeholder, .select-dropdown-btn.field-error::-webkit-input-placeholder {
    color: #D0021B !important;
  }
  input[type=text].field-error:-moz-placeholder, input[type=email].field-error:-moz-placeholder, input[type=password].field-error:-moz-placeholder, select.field-error:-moz-placeholder, .select-dropdown-btn.field-error:-moz-placeholder {
    color: #D0021B !important;
  }
  input[type=text].field-error::-moz-placeholder, input[type=email].field-error::-moz-placeholder, input[type=password].field-error::-moz-placeholder, select.field-error::-moz-placeholder, .select-dropdown-btn.field-error::-moz-placeholder {
    color: #D0021B !important;
  }
  input[type=text].field-error:-ms-input-placeholder, input[type=email].field-error:-ms-input-placeholder, input[type=password].field-error:-ms-input-placeholder, select.field-error:-ms-input-placeholder, .select-dropdown-btn.field-error:-ms-input-placeholder {
    color: #D0021B !important;
  }
}
/**
 * Show Tooltip when error or phone field hover
 */
.field-wrap:hover .show-tooltip-error + [data-tooltip].tooltip-error:before, .field-wrap:hover .show-tooltip-error + [data-tooltip].tooltip-error:after {
  visibility: visible;
  opacity: 1;
}
.field-wrap:hover .show-tooltip-error + [data-tooltip].tooltip-error:before {
  transform: translateY(3px);
}
.field-wrap:hover .show-tooltip-error + [data-tooltip].tooltip-error:after {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .field-wrap:hover .show-tooltip-error + [data-tooltip].tooltip-error:before {
    transform: translateY(0);
  }
}

.phone-field-wrap:not(.show-tooltip-error):hover [data-tooltip].tooltip-info:before, .phone-field-wrap:not(.show-tooltip-error):hover [data-tooltip].tooltip-info:after {
  visibility: visible;
  opacity: 1;
}
.phone-field-wrap:not(.show-tooltip-error):hover [data-tooltip].tooltip-info:before {
  transform: translateY(3px);
}
.phone-field-wrap:not(.show-tooltip-error):hover [data-tooltip].tooltip-info:after {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .phone-field-wrap:not(.show-tooltip-error):hover [data-tooltip].tooltip-info:before {
    transform: translateY(42px);
  }
}

/**
 * Buttons
 */
.main-btn {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 13px 40px;
  transition: all 0.15s ease-out;
  border: 0;
  -webkit-appearance: none;
  box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.14);
  position: relative;
  background: var(--color-blue);
  font-size: 17px;
  font-weight: 400;
  border-radius: 50px;
  line-height: 20px;
  width: auto;
  cursor: pointer;
}
@media (min-width: 768px) {
  .main-btn {
    text-transform: uppercase;
  }
}
@media (max-width: 767px) {
  .main-btn {
    background-image: linear-gradient(to right, #4fcac0, #39e3b3);
    padding: 10px 20px;
  }
}
.main-btn:hover, .main-btn:active {
  background-color: var(--color-blue-dark);
}

.ghost-btn {
  font-size: 15px;
  color: #848080;
  display: inline-block;
  margin-right: 15px;
}

.x-btn {
  width: 30px;
  height: 30px;
  -webkit-appearance: none;
  background: none;
  border: 0;
  position: absolute;
}
.x-btn:after, .x-btn:before {
  left: 13px;
  content: " ";
  height: 20px;
  width: 2px;
  background-color: #d9d9d9;
  position: absolute;
  top: 3px;
  transition: 0.2s;
}
.x-btn:before {
  transform: rotate(45deg);
}
.x-btn:after {
  transform: rotate(-45deg);
}
.x-btn:hover:after, .x-btn:hover:before {
  background-color: silver;
}

.form-buttons-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 30px;
}

/**
 * Step1
 */
.step1 .submit_btn {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .step1 .submit_btn {
    width: 100%;
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  .step1 .steps-window .form-wrapper .inner > div {
    top: 40px;
  }
}

.login-text {
  margin-top: 36px;
}
@media (max-width: 767px) {
  .login-text {
    margin-top: 20px;
  }
}

/**
 * Step2
 */
.step2 .submit_btn {
  padding-left: 30px;
  padding-right: 30px;
}
.step2 .step2-image-svg {
  position: relative;
}
.step2 .step2-image-svg svg {
  margin-top: 25px;
  box-shadow: 0 27px 49px 0 rgba(0, 0, 0, 0.43);
  border-radius: 40px;
}
.step2 .step2-image-svg svg * {
  font-family: "Plus Jakarta Sans", sans-serif;
}
.step2 .step2-image-svg svg #Nav-Background-Blur {
  transition: 0.25s;
}

.step-emailExists {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.step-emailExists > div {
  transition: 0.5s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}
.step-emailExists__button {
  cursor: pointer;
}
.step-emailExists__title {
  font-size: 25px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  margin: 10px 0 3px;
}
.step-emailExists__text {
  font-size: 18px;
  font-weight: 400;
  color: #3f4648;
  line-height: 1.4;
  margin-bottom: 30px;
}
.step-emailExists .companyFound, .step-emailExists .emailSent {
  display: block;
  font-weight: 600;
}
.step-emailExists .dropdown {
  display: none;
}
.step-emailExists select {
  display: block !important;
  width: 268px;
  margin-top: 15px;
  -moz-text-align-last: center;
  text-align-last: center;
  -webkit-appearance: none;
  background-image: url("../svg/arrow-down.svg");
  background-position: 94% center;
  background-repeat: no-repeat;
}
.step-emailExists .backToSignup {
  color: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: -20px;
  cursor: pointer;
  transition: 0.3s;
}
.step-emailExists .backToSignup:hover {
  color: rgba(0, 0, 0, 0.8);
}

.step-emailExists.clearFields .backToSignup:not(.clearEmailAndPassword) {
  display: none;
}
.step-emailExists:not(.clearFields) .backToSignup.clearEmailAndPassword {
  display: none;
}

[data-step=foundOneCompany] .step-emailExists__foundOneCompany,
[data-step=foundManyCompanies] .step-emailExists__foundManyCompanies,
[data-step=EmailHasToken] .step-emailExists__EmailHasToken,
[data-step=EmailNoToken] .step-emailExists__EmailNoToken {
  opacity: 1;
  pointer-events: all;
}

.iframe-localStorage {
  display: none !important;
}

.step1-image,
.step2-image-svg {
  transform: translateY(20px);
  opacity: 0;
  animation-delay: 0.5s !important;
}

/* Steps states */
.signup-wrapper.step1 .step1-form, .signup-wrapper.stepEmail .step1-form {
  opacity: 1 !important;
  pointer-events: all !important;
  transition: 0s !important;
  transition-delay: 0.25s !important;
}
.signup-wrapper.step1 .step2-form, .signup-wrapper.stepEmail .step2-form {
  transition: 0s !important;
}
.signup-wrapper.step1 .step1-content, .signup-wrapper.stepEmail .step1-content {
  transition-delay: 0.4s;
  opacity: 1;
}
.signup-wrapper.step1 .step2-content, .signup-wrapper.stepEmail .step2-content {
  transition-delay: 0s;
}
.signup-wrapper.step1 .step1-image, .signup-wrapper.stepEmail .step1-image {
  animation: fadeInUp 0.4s ease-out forwards;
}
.signup-wrapper.step2:after {
  opacity: 1;
}
.signup-wrapper.step2 .step1-content {
  transition-delay: 0s;
  opacity: 0;
}
.signup-wrapper.step2 .step2-content {
  transition-delay: 0.4s;
  opacity: 1;
}
.signup-wrapper.step2 .step2-form {
  opacity: 1 !important;
  pointer-events: all !important;
  transition-delay: 0.2s !important;
}
.signup-wrapper.step2 .form-wrapper {
  width: 49%;
}
.signup-wrapper.step2 .content-wrapper, .signup-wrapper.step2 .steps-window:before {
  width: 51%;
}
.signup-wrapper.step2 .steps-window {
  width: 790px;
  height: 545px;
}
@media (max-width: 767px) {
  .signup-wrapper.step2 .steps-window {
    height: 400px;
  }
}
.signup-wrapper.step2 .step2-image-svg {
  animation: fadeInUp 0.5s ease-out forwards;
}
.signup-wrapper.stepEmail .step-emailExists {
  opacity: 1 !important;
  pointer-events: all !important;
  transition-delay: 0.25s !important;
}
.signup-wrapper.stepEmail .step1-form {
  opacity: 0 !important;
  pointer-events: none !important;
}
.signup-wrapper.loader {
  background: #fff;
}
.signup-wrapper.loader:after {
  opacity: 1;
}
.signup-wrapper.loader .steps-window {
  opacity: 0;
  pointer-events: none;
  transition: none;
}
.signup-wrapper.loader .loader-modal {
  pointer-events: all;
  opacity: 1;
}
.signup-wrapper.step2 .connecteam-logo, .signup-wrapper.step2 .footer-text, .signup-wrapper.loader .connecteam-logo, .signup-wrapper.loader .footer-text {
  opacity: 0;
  pointer-events: none;
}

/*********/
/** RTL **/
/*********/
body.rtl .step2 .step2-image-svg svg {
  direction: ltr;
}
body.rtl input[type=text], body.rtl input[type=email], body.rtl input[type=password], body.rtl select, body.rtl .select-dropdown-btn {
  text-align: right;
}
body.rtl .steps-window:before {
  left: auto;
  right: 0;
  border-radius: 0 10px 10px 0;
}
body.rtl .password-visibility {
  left: 13px;
  right: auto;
}
body.rtl .field-wrap .tooltip-icon {
  left: 15px;
  right: auto;
}
body.rtl [data-tooltip]:after {
  left: auto;
  right: 0;
  margin-left: 0;
  margin-right: 17px;
  border-left: 5px solid rgba(0, 0, 0, 0.8);
  border-right: 0;
  transform: translateX(-5px);
  -webkit-transform: translateX(-5px);
}
body.rtl [data-tooltip]:before {
  margin-left: 0;
  margin-right: 27px;
  transform: translateY(3px) translateX(2px);
  text-align: right;
}
body.rtl [data-tooltip].tooltip-error:after {
  border-left-color: #d0021b;
}
body.rtl .field-wrap:hover .show-tooltip-error + [data-tooltip].tooltip-error:after {
  transform: translateX(-5px);
}
body.rtl .phone-field-wrap:not(.show-tooltip-error):hover [data-tooltip].tooltip-info:after {
  transform: translateX(-5px);
}
body.rtl .field-checkbox label:before {
  margin: 0 0 0 9px;
}
body.rtl .field-checkbox label:after {
  left: auto;
  right: 5px;
}
body.rtl .intl-tel-input.allow-dropdown .flag-container, body.rtl .intl-tel-input.separate-dial-code .flag-container {
  right: 0;
  left: auto;
}
body.rtl .intl-tel-input.allow-dropdown input, body.rtl .intl-tel-input.allow-dropdown input[type=text], body.rtl .intl-tel-input.allow-dropdown input[type=tel], body.rtl .intl-tel-input.separate-dial-code input, body.rtl .intl-tel-input.separate-dial-code input[type=text], body.rtl .intl-tel-input.separate-dial-code input[type=tel] {
  padding-right: 114px;
  padding-left: 35px;
}
body.rtl .intl-tel-input .selected-flag {
  padding-left: 0;
  padding-right: 24px;
}
body.rtl .intl-tel-input .selected-flag .iti-arrow {
  right: auto;
  left: 22px;
}
body.rtl .intl-tel-input .flag-container:after {
  right: auto;
  left: 0;
}
body.rtl .intl-tel-input .country-list .flag-box, body.rtl .intl-tel-input .country-list .country-name {
  margin-right: 0;
  margin-left: 6px;
}
body.rtl .intl-tel-input .country-list {
  text-align: right;
}
body.rtl .field-wrap label {
  text-align: right;
}
body.rtl .ghost-btn {
  margin-right: 0;
  margin-left: 15px;
}
@media (max-width: 767px) {
  body.rtl .two-inputs .field-wrap:last-child {
    margin-right: 0;
  }
  body.rtl [data-tooltip]:before {
    right: calc(-100vw + 74px);
    left: auto;
  }
  body.rtl .step1 .submit_btn {
    text-align: center;
  }
}

.tooltip-error {
  display: none;
}

.field-error.show-tooltip-error ~ .tooltip-error {
  display: block;
}

@media (min-width: 768px) {
  .step1-form-title-logoIcon, .label-material {
    display: none !important;
  }
}
@media (max-width: 767px) {
  body.page-template-template-signup2:before {
    content: "";
    background: rgba(41, 152, 255, 0.1);
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
  body.page-template-template-signup2:after {
    content: "";
    background: rgb(41, 152, 255);
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    z-index: 20;
    animation: signup-progress 1.5s ease-out;
    animation-delay: 1s;
    animation-fill-mode: forwards;
  }
  body.rtl.page-template-template-signup2:after {
    left: auto;
    right: 0;
  }
  .step1-form-title-logoIcon {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 13px;
  }
  .step1-form-title-logoIcon img {
    border-radius: 13px;
    max-width: 44px;
    box-shadow: 0 2px 7px 0 rgba(49, 154, 201, 0.39);
  }
  .step1-form-title {
    font-size: 25px;
    font-weight: 800;
    font-family: var(--font-family-primary);
    color: #000;
    text-align: left;
    line-height: 1.24;
  }
}
@media (max-width: 767px) and (max-width: 400px) {
  .step1-form-title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .rtl .step1-form-title {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .steps-window .form-wrapper {
    font-family: var(--font-family-primary);
    color: #6c6c6c;
  }
}
@media (max-width: 767px) {
  .main-btn {
    background: var(--color-blue);
    font-size: 20px;
    font-family: var(--font-family-primary);
    box-shadow: none;
    padding: 15px;
  }
  .main-btn:hover {
    background: var(--color-blue-dark);
  }
}
@media (max-width: 767px) {
  .steps-window .small-text {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .login-text {
    margin-top: 17px;
  }
}
@media (max-width: 767px) {
  .footer-text {
    border: 0;
    color: #6c6c6c;
    font-size: 15px;
    line-height: 1.4;
    padding-right: 17px;
    padding-left: 17px;
  }
}
@media (max-width: 767px) {
  [data-tooltip]:before {
    color: #ec4545;
    font-family: var(--font-family-primary);
    padding: 0;
  }
}
@media (max-width: 767px) {
  input[type=text], input[type=email], input[type=password], select, .select-dropdown-btn {
    padding: 6px 0;
    font-family: var(--font-family-primary);
    font-size: 17px;
  }
  input[type=text].field-error, input[type=email].field-error, input[type=password].field-error, select.field-error, .select-dropdown-btn.field-error {
    border-color: #ec4545;
  }
}
@media (max-width: 767px) {
  .password-visibility.password-visible {
    background-image: url(../png/icon-eye-blue.png);
  }
}
@media (max-width: 767px) {
  .field-wrap {
    position: relative;
    padding: 0;
    margin: 0;
    border: none;
    overflow: visible;
  }
  .field-wrap input {
    box-sizing: border-box;
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #d8d8d8;
    font-size: 17px;
    outline: none;
    cursor: text;
  }
  .field-wrap input::-webkit-input-placeholder {
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
    color: transparent;
  }
  .field-wrap input:not(:focus)::-webkit-input-placeholder {
    color: transparent;
  }
  .field-wrap label {
    position: absolute;
    top: 6px;
    left: 0px;
    font-size: 17px;
    color: #7C8487;
    transform-origin: 0 -150%;
    transition: transform 300ms ease;
    pointer-events: none;
    margin: 0;
    width: auto !important;
  }
  .rtl .field-wrap label {
    left: auto;
    right: 0;
    transform-origin: right -150%;
  }
  .field-wrap input:not(:-moz-placeholder-shown) ~ label {
    transform: scale(0.7);
    top: 3px;
    color: #2998ff;
  }
  .field-wrap input:focus ~ label ~ label,
  .field-wrap input:not(:placeholder-shown) ~ label,
  .field-wrap select:has(option:checked:not(:disabled)) ~ label {
    transform: scale(0.7);
    top: 3px;
    color: #2998ff;
  }
  .field-wrap select:has(option:checked:disabled) ~ label {
    opacity: 0;
  }
}
@media (max-width: 767px) {
  body.rtl [data-tooltip]:before {
    margin-right: 0;
    right: 0;
    transform: none;
  }
}
@media (max-width: 767px) {
  body.rtl .field-wrap .tooltip-icon {
    left: 0;
  }
}
@keyframes signup-progress {
  from {
    width: 0%;
  }
  to {
    width: 25%;
  }
}
/*# sourceMappingURL=template-signup2.css.map */
