:root {
  --main-color: #32488f;
}

/* @extend display-flex; */
display-flex, .form-flex, .form-date-group, .steps ul, .title, .title .step-number, .actions ul li a, .form-radio-flex, .form-find {
  display: flex;
  display: -webkit-flex; }

/* @extend list-type-ulli; */
list-type-ulli, .steps ul, .actions ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -webkit-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s; }

input,
textarea {
  outline: none;
  appearance: unset !important;
  -moz-appearance: unset !important;
  -webkit-appearance: unset !important;
  -o-appearance: unset !important;
  -ms-appearance: unset !important; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  -o-appearance: none !important;
  -ms-appearance: none !important;
  margin: 0; }

input:focus,
textarea:focus {
  outline: none;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important; }

input[type=checkbox] {
  appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  -o-appearance: checkbox !important;
  -ms-appearance: checkbox !important; }

input[type=radio] {
  appearance: radio !important;
  -moz-appearance: radio !important;
  -webkit-appearance: radio !important;
  -o-appearance: radio !important;
  -ms-appearance: radio !important; }

.clear {
  clear: both; }

/*h2 {
  font-weight: bold;
  font-size: 30px;
  margin: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}*/

body {
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  font-weight: 400;
  font-family: 'Rubik';
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body.purply {
  background-color: rgb(86, 58, 250);
  background: linear-gradient(325deg, rgba(86, 58, 250, 0.9) 50%, rgba(116, 15, 214, 0.9) 100%);
}

body.greeny {
  background: hsla(148, 89%, 78%, 1);
  background: linear-gradient(90deg, hsla(148, 89%, 78%, 1) 0%, hsla(210, 81%, 22%, 1) 100%);
}

body {
  background: hsla(187, 31%, 95%, 1);
  background: radial-gradient(circle, hsla(187, 31%, 95%, 1) 0%, hsla(216, 31%, 90%, 1) 100%);
}

body.gloomy {
  background: hsla(186, 33%, 94%, 1);
  background: radial-gradient(circle, hsla(186, 33%, 94%, 1) 0%, hsla(216, 41%, 79%, 1) 100%);
}

.main {
  position: relative;
  z-index: 199; }

.container {
  width: 1400px;
  margin: 0 auto;
  border-radius: 15px;
  background: #fff; }

.p {
  padding: 15px;
}

.container-full {
  display: flex;
  flex-flow: column;
  height: calc(100vh - 100px);
  justify-content: center;
  align-items: center;
}

.btn-start {
  display: block;
  color: white;
  background: #900;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Ajuda
--------------------------------------------------------------*/

.helper::before {
  content: url('/form/assets/img/help.png');
  display: inline-block;
  margin-left: 5px;
  transition: all .2s ease;
  -moz-transition: all .2s ease;
  -webkit-transition: all .2s ease;
  vertical-align: middle;
}
.helper:hover::before,
.helper:active::before,
.helper:focus::before {
  filter: invert(1);
}

#help {
  display: none;
  width: 380px;
  position: absolute;
  padding: 30px;
  z-index: 199;
  background: white;
  top: 0;
  bottom: 0;
  right: -380px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  transition: all .3s ease-in;
  overflow: auto;
}

@-webkit-keyframes slide {
  100% { right: 0; }
}
@keyframes slide {
  100% { right: 0; }
}

#help .close {
  padding-top: 20px;
  text-align: right;
}
#help .close::before {
  content: 'x';
  cursor: pointer;
  border: 1px solid #900;
  border-radius: 50%;
  color: #900;
  display: inline-block;
  padding: 2px 10px;
  vertical-align: middle;
  text-align: center;
  transition: all .2s ease;
  -moz-transition: all .2s ease;
  -webkit-transition: all .2s ease;
}
#help .close:hover::before,
#help .close:active::before,
#help .close:focus::before {
  color: white;
  background: #900;
}
#help.show {
  display: block;
  -webkit-animation: slide .2s forwards;
  animation: slide .2s forwards;
}
#help h3 {
  margin: 30px 0;
}

/*html.show-calc .content::before,*/
html.show-help .content::before {
  content: '';
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  background: rgba(0,0,0,0.4);
  z-index: 180;
  position: absolute;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  z-index: 9999;
}

#preloader:before {
  content: "";
  position: fixed;
  top: 10px;
  left: 10px;
  border: 6px solid #5846f9;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

fieldset {
  padding: 20px;
  padding-bottom: 0;
  margin: 0px;
  border: none; }

p.desc {
  /*margin: 0px;
  margin-bottom: 40px;*/
  color: #999; }

.form-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  text-align: left;
}

.form-group:not(.row) .form-label {
  width: 100%;
}

.bg-success-light {
  background-color: #e1f1ea;
}

.text-input {
  font-size: 12px;
  color: #999;
  display: block;
  margin-top: 5px; }
  .text-input span {
    color: #222;
    font-weight: bold; }

input,
select {
  width: 100%;
  display: block;
  border: 1px solid #ebebeb;
  height: 38px;
  box-sizing: border-box;
  background: white;
  padding: 6px 12px;
  color: #222;
  font-size: 17px; }

input[type=radio],
input[type=checkbox] {
  width: auto;
  display: inline-block;
  height: auto;
}

/*#steps-uid-0-p-0 .form-row, #steps-uid-0-p-0 .form-group, #steps-uid-0-p-0 .form-date {
  width: 680px; }*/

.form-flex {
  margin: 0 -10px; }
  .form-flex .form-group {
    width: 50%;
    padding: 0 10px; }

.form-group,
.form-date {
  margin: 0;
  position: relative;
  padding: 10px 0;
  min-height: 50px;
  align-items: center;
}

.form-group.row:nth-child(odd) {
  background-color: #f3f3f3;
}

.form-date-group {
  border: 1px solid transparent;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px; }
  .form-date-group select {
    border: 1px solid #ebebeb;
    width: 100%;
    box-sizing: border-box;
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    -o-appearance: none !important;
    -ms-appearance: none !important;
    position: relative;
    background: 0 0;
    z-index: 10;
    cursor: pointer;
    padding: 6px 12px;
    height: 35px;
    font-size: 14px;
    color: #999;
    box-sizing: border-box;
    background-color: #fff;
    color: #222;
    font-weight: bold; }

.form-date-item {
  position: relative;
  overflow: hidden;
  width: 100px;
  margin-right: 10px; }

.vertical {
  display: block;
  width: 100%;
  overflow: hidden; }
  .vertical .steps {
    float: left;
    width: 20%; }
  .vertical .content,
  .vertical .actions {
    float: right;
    width: 80%; }


.steps ul::before {
  content: '';
  background: white url('/assets/img/logo/marca.png') no-repeat center center;
  background-size: contain;
  z-index: 99;
  display: block;
  width: 50px;
  margin: 0 auto 0 0;
  padding: 10px;
  opacity: .8;
}

.steps ul {
  overflow-x: auto;
  flex-direction: row;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  position: relative;
  padding: 10px; }
  .steps ul li {
    padding: 5px;
    position: relative;
    z-index: 99; }
    .steps ul li a {
      text-decoration: none;
      color: #222; }
  .vertical .steps ul:after {
    position: absolute;
    content: '';
    width: 2px;
    height: 100%;
    background: #ebebeb;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 9; }

.vertical .steps ul {
  flex-direction: column;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
}
.vertical .steps ul li {
  padding-bottom: 10px;
}

.title {
  align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  margin-right: 10px; }
  .title .step-number {
    width: 40px;
    height: 40px;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    background: #ebebeb;
    color: #ccc;
    margin-right: 5px;
    border: 5px solid #fff;
    font-weight: bold; }
  .title .step-text {
    color: #ccc; }

.done .title .step-number {
  background: #299027;
  color: #fff; }
.done .title .step-text {
  color: #299027; }

.current .title .step-number {
  background: #838383;
  color: #fff; }
.current .title .step-text {
  color: #838383; }

.content h3 {
  display: none; }

.content {
  overflow: auto;
  height: 70vh;
}

.send-file {
  border: 0;
  padding: 5px 15px;
  background: #3ea9fd;
  color: white;
  display: inline-block;
  text-align: left;
  cursor: pointer;
}

.sent-file {
  color: var(--main-color);
  background: transparent;
}

.sent-file span {
  margin-left: 5px;
  color: white;
  background: var(--main-color);
  border-radius: 6px;
  padding: 8px 12px;
}

.send-file input[type=file] {
  position: fixed;
  top: -1000px;
}

.send-file .error {
  display: none !important;
}

.content {
  background: #f9f9f9; }

.actions {
  border-top: 1px solid #dedede;
  background-color: #f2f2f2;
  padding: 10px 0; }
  .actions ul {
    padding-left: 20px;
    padding-right: 20px; }
    .actions ul .disabled {
      display: none; }
    .actions ul li {
      float: right; }
      .actions ul li:first-child {
        float: left; }
        .actions ul li:first-child a {
          background: #f2f2f2;
          color: #999;
          padding-left: 5px; }
      .actions ul li a {
        padding: 10px 40px;
        color: #fff;
        background: #49b164;
        border-radius: 6px;
        align-items: center;
        -moz-align-items: center;
        -webkit-align-items: center;
        -o-align-items: center;
        -ms-align-items: center;
        justify-content: center;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -o-justify-content: center;
        -ms-justify-content: center;
        text-decoration: none; }

.form-radio-flex {
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -15px; }
  .form-radio-flex .form-radio-item {
    padding: 0 15px;
    margin-bottom: 25px; }
  .form-radio-flex input {
    width: 0;
    height: 0;
    position: absolute;
    left: -9999px; }
  .form-radio-flex input + label {
    margin: 0px;
    width: 223px;
    height: 133px;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    text-align: center;
    background-color: transparent;
    border: 1px solid transparent;
    text-align: center;
    text-transform: none;
    transition: border-color .15s ease-out,  color .25s ease-out,  background-color .15s ease-out, box-shadow .15s ease-out; }
    .form-radio-flex input + label img {
      width: 100%;
      height: 100%; }
  .form-radio-flex input:checked + label {
    border: 1px solid #4966b1;
    z-index: 1; }
  .form-radio-flex input:focus + label {
    outline: none; }
  .form-radio-flex input:hover {
    border: 1px solid #4966b1; }

    .row>* {
      position: relative;
    }

label.error {
  display: block;
  position: absolute;
  top: 0;
  right: 0; }
  label.error:after {
    font-family: 'FontAwesome';
    position: absolute;
    content: '\f071';
    right: -5px;
    top: 10px;
    font-size: 14px;
    color: #f63726; }

input.error,
select.error {
  border: 1px solid #f63726; }

#find_bank {
  padding: 0 55px;
  width: 680px;
  margin-right: 20px; }
  #find_bank::-webkit-input-placeholder {
    font-weight: 400; }
  #find_bank::-moz-placeholder {
    font-weight: 400; }
  #find_bank:-ms-input-placeholder {
    font-weight: 400; }
  #find_bank:-moz-placeholder {
    font-weight: 400; }

.submit {
  width: 150px;
  background: #666;
  color: #fff;
  font-weight: 400;
  cursor: pointer; }
  .submit:hover {
    background-color: #4d4d4d; }

.form-find {
  position: relative;
  padding-bottom: 70px;
  border-bottom: 1px solid #ebebeb; }

.form-icon {
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 18px;
  color: #999; }

.choose-bank-desc {
  color: #666;
  margin: 0px;
  padding-top: 30px;
  padding-bottom: 35px; }

.slider-margin {
  height: 9px;
  border: none;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  background: #e8e8e8;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  position: relative; }
  .slider-margin .noUi-marker-horizontal.noUi-marker-large, .slider-margin .noUi-marker-horizontal.noUi-marker {
    height: 0px; }
  .slider-margin .noUi-connect {
    background: #4966b1; }
  .slider-margin .noUi-connects {
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px; }
  .slider-margin .noUi-handle {
    width: 15px;
    height: 30px;
    top: -12px;
    background: #e8e8e8;
    outline: none;
    border: none;
    right: -15px;
    border: 1px solid #4966b1;
    border-radius: 0px; }
    .slider-margin .noUi-handle:after, .slider-margin .noUi-handle:before {
      width: 0px; }
    .slider-margin .noUi-handle .noUi-tooltip {
      bottom: -20px;
      border: none;
      background: transparent;
      font-size: 12px;
      color: #4966b1;
      padding: 0; }
  .slider-margin .noUi-pips {
    width: 96%; }
    .slider-margin .noUi-pips .noUi-value {
      top: -41px;
      font-size: 16px;
      color: #ccc; }
      .percentual_slider .slider-margin .noUi-pips .noUi-value:after {
        content: '%'; }
      .price_slider .slider-margin .noUi-pips .noUi-value:after {
        content: '$'; }
    .slider-margin .noUi-pips .noUi-value-horizontal {
      transform: none;
      -moz-transform: none;
      -webkit-transform: none;
      -o-transform: none;
      -ms-transform: none; }

      html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
        right: -15px;
      }

.your-money {
  font-size: 16px;
  color: #222;
  margin: 0px;
  padding-top: 20px; }
  .your-money .money {
    font-size: 28px;
    font-weight: bold; }

@media screen and (max-width: 1024px) {
  .container {
    width: calc(100% - 20px);
    max-width: 100%; }

  .vertical .steps, .vertical .content, .vertical .actions {
    float: none;
    width: 100%; }

  #find_bank {
    width: 100%; }

  .form-radio-flex input + label {
    width: 190px;
    height: 120px; } }
@media screen and (max-width: 992px) {
  .form-radio-flex input + label {
    width: 100px;
    height: 65px; } }
@media screen and (max-width: 768px) {
  .helper::before {
    font-size: 14px;
    padding: 0 9px;
  }
  #help {
    max-width: 99%;
    right: 100%;
  }
  .actions {
    padding-bottom: 30px; }
  .main {
   padding: 10px 0;
  }
  #steps-uid-0-p-0 .form-row, #steps-uid-0-p-0 .form-group, #steps-uid-0-p-0 .form-date {
    width: 100%; }

  .form-flex {
    flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
    margin: 0px; }

  .form-flex .form-group {
    padding: 0px; }

  .slider-margin .noUi-pips {
    width: 94%; } }
@media screen and (max-width: 480px) {
  .form-date-group, .form-find {
    flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column; }

  #find_bank {
    margin-bottom: 20px; }

  .actions ul li a {
    width: 100px; }

  .form-radio-flex {
    margin: 0 -5px; }

  .form-radio-flex .form-radio-item {
    padding: 0 5px; }

  .form-radio-flex input + label {
    width: 90px;
    height: 61px; } }
@media screen and (min-width: 370px) and (max-width: 680px) {
  .steps ul::before {
    background-size: unset;
  }
}

@media all and (min-width: 992px) {
  body {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-label {
    text-align: right;
  }
}

@media all and (min-width: 1400px) {
  .content {
    max-height: 75vh;
  }
}

/* autocomplete */
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
  border-radius: 0;
  padding-bottom: 0;
  padding-top: 1px;
  border: 1px solid #ebebeb;
  min-height: 38px;
}

/* login template  */
:root {
  --input-padding-x: 1.5rem;
  --input-padding-y: .75rem;
}

.card-signin {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-signin .card-title {
  margin-bottom: 2rem;
  font-weight: 300;
  font-size: 1.5rem;
}

.card-signin .card-img-left {
  width: 45%;
  background: scroll center url('/form/assets/img/login.jpg');
  background-size: cover;
}

.card-signin .card-body {
  padding: 2rem;
}

.form-signin {
  width: 100%;
}

.form-signin .btn {
  letter-spacing: .1rem;
  font-weight: bold;
  transition: all 0.2s;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group input {
  height: auto;
  border-radius: 2rem;
}

.form-label-group>input,
.form-label-group>label {
  padding: var(--input-padding-y) var(--input-padding-x);
}

.form-label-group>label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: all .1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown)~label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 12px;
  color: #777;
}

.btn-google {
  color: white;
  background-color: #ea4335;
}

.btn-facebook {
  color: white;
  background-color: #3b5998;
}

.btn-google:hover,
.btn-facebook:hover {
  color: #eee;
  opacity: 0.8;
}

/* nouislider */