/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
@keyframes slideDown {
    0%   { top: -10%; }
    100% { top: 20%; }
  }

  .signup-form {
    display: flex;
    justify-content: center;
    min-height: 500px;
    color: #474865;
  }

/*   .signup-form .step-2 h3,
  .signup-form .step-3 h3 {
    text-align: center;
    font-size: 18px;
  } */
/*   .signup-form .step-final {
    align-items: center;
    justify-content: center;
  } */
  .signup-form .step-final > * {
    width: 95%;
  }

  .signup-form .sections {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .signup-form .sections .section {
    flex: 1;
  }
  .signup-form .sections .section-1 {
    padding-right: 30px;
  }
  .signup-form .sections .section-2 {
    padding-left: 30px;
  }

  .signup-form .form-step {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .signup-form .form-step.active {
    display: flex;
  }

  .signup-form form {
    display: flex;
    flex-direction: column;
  }

  .signup-form .form-items {
    display: flex;
    margin-bottom: 20px;
  }

  .signup-form .form-item {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .signup-form .form-item:not(:last-of-type) {
    margin-right: 20px;
  }
  .signup-form .form-item > div {
    display: flex;
    align-items: center;
  }
  .signup-form .form-item > div input {
    flex: 1;
  }

  .signup-form label {
    color: #454963;
    font-family: 'BrandonText-Regular';
  }

  .signup-form input[type='text'],
  .signup-form input[type='number'],
  .signup-form input[type='email'],
  .signup-form input[type='tel'],
  .signup-form select {
    padding: 5px 0;
    border: 0px;
    border-bottom: 0.5px solid #cacad2;
    border-radius: 0px;
    background-color: #fff;
    color: #474865;
    font-size: initial;
  }

  .signup-form input:focus,
  .signup-form select:focus {
    outline: none;
  }

  .signup-form input[type=number]::-webkit-inner-spin-button,
  .signup-form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .signup-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('https://staging.letsgaigai.com/wordpress/wp-content/uploads/2019/09/arrow.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 15px;
    line-height: 22px;
  }

  .signup-form .birthday-selector {
    display: flex;
  }
  .signup-form .birthday-selector select {
    flex: 1;
  }
  .signup-form .birthday-selector select:not(:last-of-type) {
    margin-right: 15px;
  }

  .signup-form input[type='file'] {
    display: none;
  }
  .signup-form .file-input-wrapper {
    display: flex;
    align-items: center;
    margin: 10px 0;
  }
  .signup-form .file-input-wrapper .file-input {
    margin-right: 10px;
    margin-bottom: 0;
    padding: 0 15px;
    width: fit-content;
    border-radius: 5px;
    border: 1px solid #474865;
    cursor: pointer;
  }

  .signup-form .tnc {
    margin: 10px 0 30px 0;
    color: #808080;
    font-family: 'BrandonText-Regular';
    line-height: 1.5;
    text-align: center;
  }

  .signup-form a {
    color: #d74f6d;
    text-decoration: none;
  }

  .signup-form .footer {
    display: flex;
    margin: 20px 0;
  }

  .signup-form .footer .btn:first-of-type {
    margin: 0 30px 0 auto;
  }

  .signup-form .footer .btn:last-of-type {
    margin: 0 auto 0 30px;
  }

  .signup-form .btn {
    margin: 0 auto;
    padding: 5px 0;
    width: 125px;
    border: 2px solid transparent;
    border-radius: 5px;
    background-color: #d74f6d;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
  }

  .signup-form .btn.prev {
    border: 2px solid #d74f6d;
    background-color: #fff;
    color: #d74f6d;
  }

  .signup-form .btn[type='submit']:hover,
  .signup-form .btn[type='submit']:active,
  .signup-form .btn[type='submit']:focus {
    border-color: transparent;
    background-color: #d74f6d;
  }

  .signup-form .logo {
    align-self: center;
    margin-top:0px;
    padding-bottom:5px;
    padding-top:5px;
    width: 40%;
  }

  .signup-form .modal {
    display: none;
    position: fixed;
    top: 20%;
    left: 0;
    z-index: 1000;
    width: 100%;
    -webkit-animation-name: slideDown;
    animation-name: slideDown;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }

  .signup-form .modal .modal-content {
    display: flex;
    margin: 100px auto;
    padding: 20px;
    width: fit-content;
    max-width: 90%;
    border-radius: 5px;
    border: 1px solid #721c24;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.2);
    background-color: #f8d7da;
    color: #721c24;
    line-height: 1.5;
  }

  .signup-form .modal .modal-text {
    padding-right: 20px;
  }

  .signup-form .modal .modal-dismiss {
    position: relative;
    width: 15px;
    height: 15px;
    cursor: pointer;
  }

  .signup-form .modal .dismiss_x {
    position: absolute;
    left: 5px;
    width: 2px;
    height: 15px;
    background-color: #721c24;
  }
  .signup-form .modal .dismiss_x:first-child {
    transform: rotate(45deg);
  }
  .signup-form .modal .dismiss_x:last-child {
    transform: rotate(-45deg);
  }

  /* Slider - Start */
  [slider] {
    position: relative;
    margin: 10px 0px;
    height: 14px;
    border-radius: 10px;
    text-align: left;
  }
  [slider] > div {
    position: absolute;
    left: 0px;
    right: 15px;
    height: 14px;
  }
  [slider] > div > [inverse-left] {
    position: absolute;
    left: 0;
    margin: 0 7px;
    height: 5px;
    border-radius: 10px;
    background-color: #a6a1b1;
  }
  [slider] > div > [inverse-right] {
    position: absolute;
    right: 0;
    height: 5px;
    border-radius: 10px;
    background-color: #a6a1b1;
  }
  [slider] > div > [range] {
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 14px;
    background-color: #474865;
  }
  [slider] > div > [thumb] {
    position: absolute;
    top: -5px;
    z-index: 2;
    margin-left: 0px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #474865;
    text-align: left;
    outline: none;
    cursor: pointer;
  }
  [slider] > input[type=range] {
    position: absolute;
    top: -2px;
    z-index: 3;
    width: 100%;
    height: 14px;
    -webkit-appearance: none;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    pointer-events: none;
  }
  div[slider] > input[type=range]::-ms-track {
    -webkit-appearance: none;
    background: transparent;
    color: transparent;
  }
  div[slider] > input[type=range]::-moz-range-track {
    -moz-appearance: none;
    background: transparent;
    color: transparent;
  }
  div[slider] > input[type=range]:focus::-webkit-slider-runnable-track {
    background: transparent;
    border: transparent;
  }
  div[slider] > input[type=range]:focus {
    outline: none;
  }
  div[slider] > input[type=range]::-ms-thumb {
    pointer-events: all;
    width: 28px;
    height: 28px;
    border-radius: 0px;
    border: 0 none;
    background: red;
  }
  div[slider] > input[type=range]::-moz-range-thumb {
    pointer-events: all;
    width: 28px;
    height: 28px;
    border-radius: 0px;
    border: 0 none;
    background: red;
  }
  div[slider] > input[type=range]::-webkit-slider-thumb {
    pointer-events: all;
    width: 28px;
    height: 28px;
    border-radius: 0px;
    border: 0 none;
    background: red;
    -webkit-appearance: none;
  }
  div[slider] > input[type=range]::-ms-fill-lower {
    background: transparent;
    border: 0 none;
  }
  div[slider] > input[type=range]::-ms-fill-upper {
    background: transparent;
    border: 0 none;
  }
  div[slider] > input[type=range]::-ms-tooltip {
    display: none;
  }
  [slider] > div > [sign] {
    position: absolute;
    top: 10px;
    z-index: 3;
    margin-left: -8px;
    width: 28px;
    height: 28px;
    color: #454963;
    text-align: center;
  }
  [slider] > div > [sign] > span {
    font-weight: 700;
    line-height: 28px;
  }
  [slider]:hover > div > [sign] {
    opacity: 1;
  }
  /* Slider - End */

  /* Multiple Select - Start */
  .select7_container {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 30px;
    border-bottom: 0.5px solid #cacad2;
    line-height: 22px;
    user-select: none;
  }
  .select7_placeholder {
    position: absolute;
    top: 45%;
    left: 6px;
    font-weight: bold;
    transform: translateY(-50%);
  }
  .select7_arrow {
    float: right;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background-image: url('https://staging.letsgaigai.com/wordpress/wp-content/uploads/2019/09/arrow.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 15px;
  }
  .select7_items {
    margin-top: 5px;
  }
  .select7_item {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 0 5px;
    border-radius: 5px;
    border: 1px solid #474865;
    font-size: 0.8rem;
    user-select: none;
  }
  .select7_content {
    padding-right: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .select7_select {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .select7_del {
    position: absolute;
    top: 4px;
    right: 12px;
  }
  .select7_del:hover {
    cursor: pointer;
  }
  .select7_hide {
    display: none;
  }
  .select7_x {
    position: absolute;
    top: 0;
    width: 2px;
    height: 12px;
    background-color: #474865;
  }
  .select7_x:first-child {
    transform: rotate(45deg);
  }
  .select7_x:last-child {
    transform: rotate(-45deg);
  }
  /* Multiple Select - End */

  @media screen and (max-width: 767px) {
    .signup-form .form-items {
      flex-direction: column;
      margin: 0;
    }
    .signup-form .form-item {
      margin: 15px 0;
    }
    .signup-form .form-item:not(:last-of-type) {
      margin-right: 0;
    }
    .signup-form .footer .btn:first-of-type,
    .signup-form .footer .btn:last-of-type {
      margin: 0 auto;
    }
    .signup-form .sections {
      flex-direction: column;
    }
    .signup-form .sections .section {
      padding: 20px 0;
    }
    .signup-form .sections .section-1 {
      border: 0px;
    }
  }
