/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
@keyframes flash {
    0%   { border: 1px solid transparent; border-bottom-color: #b5b7d0; }
    50%  { border: 1px solid #d74f6d; }
    100% { border: 1px solid transparent; border-bottom-color: #b5b7d0; }
  }

  @keyframes slideDown {
    0%   { top: -10%; }
    100% { top: 20%; }
  }

  .signup-form {
    display: flex;
    justify-content: center;
    min-height: 400px;
    color: #474865;
    font-size: 14px;
  }

  .signup-form h3 {
    font-weight: bold;
    text-align: center;
  }

  .signup-form h5 {
    font-weight: bold;
    letter-spacing: 2px;
    margin: 10px 0 0 0;
  }

  .signup-form .step-final {
    align-items: center;
    justify-content: center;
    min-width: 400px;
  }

  .signup-form .sections {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .signup-form .sections .section {
    padding: 20px;
    width: 50%;
  }
  .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: #808080;
  }

  .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;
    width: 100%;
    border: 1px solid transparent;
    border-bottom-color: #b5b7d0;
    border-radius: 0px;
    background-color: #fff;
    color: #474865;
    font-size: 16px;
  }

  .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 ::-webkit-input-placeholder {
    color: #b5b7d0;
  }
  .signup-form ::-ms-placeholder {
    color: #b5b7d0;
  }
  .signup-form ::placeholder {
    color: #b5b7d0;
  }

  .signup-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('https://staging.premium.gopaktor.com/wp-content/uploads/2019/09/arrow.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 15px;
    line-height: 24px;
  }

  .signup-form select.empty {
    color: #b5b7d0;
  }
  .signup-form select.empty:focus {
    color: #474865;
  }

  .signup-form select option[disabled]:first-child {
    display: none;
  }

  .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 .error-msg {
    display: none;
    color: #d74f6d;
    font-weight: bold;
    font-size: 12px;
  }
  .signup-form .error .error-msg {
    display: block;
  }
  .signup-form .error .error-flash {
    -webkit-animation: flash linear 0.5s infinite;
    animation: flash linear 0.5s infinite;
  }

  .signup-form .tnc {
    margin: 10px 0 30px 0;
    color: #808080;
    text-align: center;
  }

  .signup-form a {
    color: #d74f6d;
    text-decoration: none;
  }

  .signup-form .dots {
    text-align: center;
    margin: 5px 20px;
  }
  .signup-form .dot {
    display: inline-block;
    margin: 0 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #bfbfbf;
  }
  .signup-form .dot.selected {
    background-color: #474865;
  }

  .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: 0 30px;
    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 .step-1 .btn {
    padding: 5px 25px;
    font-size: 20px;
    letter-spacing: 5px;
  }

  .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 .btn[type='submit']:disabled {
    opacity: 0.5;
  }

  .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: -5px;
    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 */

  @media screen and (max-width: 767px) {
    .signup-form h3 {
      font-size: 1.7em;
    }
    .signup-form .form-items {
      margin: 0;
    }
    .signup-form .form-item {
      margin: 15px 0;
    }
    .signup-form .sections {
      flex-direction: column;
    }
    .signup-form .sections .section {
      padding: 0;
      width: 100%;
    }
    .signup-form .footer {
      margin-bottom: 0;
    }
    .signup-form .footer .btn:first-of-type {
      flex: 1;
      margin: 0 15px 0 0;
    }
    .signup-form .footer .btn:last-of-type {
      flex: 1;
      margin: 0 0 0 15px;
    }
    .signup-form .btn {
      padding: 5px 30px;
      font-size: 20px;
    }
    .signup-form .step-1 .btn {
      padding: 10px 50px;
    }
    .signup-form .step-final {
      min-width: 0;
      padding: 0 40px;
    }
  }