/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Remove default padding */
ul[class],
ol[class] {
  padding-left: 0;
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
/* Set core html defaults */
html {
  font-size: 62.5%;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
}
/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.visually-hidden,
.check-1 label input,
.check-2 label input {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.button-base,
.button-support,
.button-copy,
.button-1,
.button-2,
.button-3 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px;
  min-width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border: 0;
  text-align: center;
  border-radius: 25px;
  transition: all 0.2s linear;
}
@media (max-width: 991px) {
  .button-base,
  .button-support,
  .button-copy,
  .button-1,
  .button-2,
  .button-3 {
    min-width: 120px;
  }
}
.button-support {
  height: 30px;
  background: #ffffff;
  color: #192A56;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}
.button-support i {
  color: #00A8FF;
  font-size: 22px;
}
.button-support:hover,
.button-support:focus {
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #0b152f;
}
.button-copy {
  color: #4CD137;
  font-size: 30px;
  min-width: 0;
  width: auto;
  height: auto;
  background: none;
}
.button-copy:hover,
.button-copy:focus {
  text-decoration: none;
  color: #53e73c;
}
.button-1 {
  background: #00A8FF;
  color: #ffffff;
}
.button-1 i {
  color: #ffffff;
  font-size: 14px;
}
.button-1:hover,
.button-1:focus {
  text-decoration: none;
  background-color: #192A56;
}
.button-2 {
  background: #4CD137;
  color: #ffffff;
}
.button-2 i {
  color: #ffffff;
  font-size: 14px;
}
.button-2:hover,
.button-2:focus {
  color: #ffffff;
  text-decoration: none;
  background: #53e73c;
}
.button-3 {
  background: #E84118;
  color: #ffffff;
}
.button-3 i {
  color: #ffffff;
  font-size: 14px;
}
.button-3:hover,
.button-3:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #e84821;
}
.input-base,
.input-1 input,
.select-1 select {
  width: 100%;
  padding: 0 0 5px 0;
  font-size: 1.4rem;
  color: #192A56;
  border: 0;
  border-bottom: 1px solid #DCDDE1;
}
.input-focus,
.input-1 input:focus,
.select-1 select:focus {
  outline: 0;
  border-color: #00A8FF;
}
.input-placeholder {
  color: #7F8FA6;
}
label {
  display: block;
  margin-bottom: 0;
}
.input-row + .input-row {
  margin-top: 3rem;
}
.form-label {
  display: block;
  margin-bottom: 5px;
  font-size: 1.3rem;
  color: #7F8FA6;
}
.check-1 label input ~ .check-label {
  display: block;
  font-size: 1.4rem;
  color: #192A56;
  position: relative;
  padding-left: 26px;
  margin-top: 0;
}
.check-1 label input ~ .check-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  z-index: 1;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #00A8FF;
}
.check-1 label input ~ .check-label:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  z-index: 2;
  background: #00A8FF;
  transform: scale(0);
  transition: all 200ms linear;
}
.check-1 label input:checked ~ .check-label:after {
  transform: scale(1);
}
.check-1 label input[type="radio"] ~ .check-label:before,
.check-1 label input[type="radio"] ~ .check-label:after {
  border-radius: 50%;
}
.check-1 label input[type="checkbox"] ~ .check-label:before,
.check-1 label input[type="checkbox"] ~ .check-label:after {
  border-radius: 4px;
}
.check-2 label input ~ .check-label {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 0 1px #DCDDE1;
  background: #ffffff;
  padding: 15px;
  height: 80px;
}
.check-2 label input ~ .check-label:hover {
  cursor: pointer;
  box-shadow: inset 0 0 0 3px #DCDDE1;
}
.check-2 label input:checked ~ .check-label {
  box-shadow: inset 0 0 0 3px #00A8FF;
}
body {
  display: flex;
  flex-direction: column;
  font-family: 'Rubik', sans-serif;
}
.header {
  background: #ffffff;
  box-shadow: inset 0 4px #00A8FF;
}
@media (max-width: 991px) {
  .header {
    box-shadow: inset 0 2px #00A8FF;
  }
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 0 6px;
}
@media (max-width: 991px) {
  .header .inner {
    padding: 5px 0;
  }
}
.logo {
  display: block;
}
.logo img {
  max-width: 200px;
}
@media (max-width: 991px) {
  .logo img {
    max-width: 150px;
  }
}
.section-step {
  background: #F5F6FA;
  padding: 45px 0;
}
@media (max-width: 991px) {
  .section-step {
    padding: 30px 0;
  }
}
.section-step .inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-step.success {
  background: #00A8FF;
  padding: 10px 0 10px;
}
.section-step.success .page-title {
  font-size: 18px;
  color: #fff;
  margin: 0 0 0 30px;
}
@media (max-width: 991px) {
  .section-step.success .page-title {
    width: 100%;
  }
}
.steps {
  display: flex;
  justify-content: center;
}
.steps .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 180px 8px 180px 180px;
  font-size: 24px;
  color: #DCDDE1;
  background: #ffffff;
  border: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .steps .step-number {
    font-size: 16px;
  }
}
.steps .step-name {
  font-size: 14px;
  color: #192A56;
}
@media (max-width: 991px) {
  .steps .step-name {
    font-size: 12px;
  }
}
.steps a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 180px;
}
.steps a:hover {
  text-decoration: none;
}
.steps .step-item {
  display: flex;
}
.steps .step-item:after {
  content: '';
  display: block;
  width: 100px;
  height: 1px;
  background: #DCDDE1;
  transform: translateY(calc(@step-number-size/ 2));
}
.steps .step-item:last-of-type:after {
  display: none;
}
.steps .step-item.is-active:after {
  background: #00A8FF;
}
.steps .step-item.is-active .step-number {
  color: #192A56;
  background: transparent;
  border: 1px solid #00A8FF;
}
.steps .step-item.is-active .step-name {
  color: #00A8FF;
  font-weight: 500;
}
.steps .step-item.is-completed:after {
  background: #00A8FF;
}
.steps .step-item.is-completed .step-number {
  color: #ffffff;
  background: #00A8FF;
  border: 1px solid #00A8FF;
}
.steps .step-item.is-completed .step-name {
  color: #192A56;
}
.banks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  column-gap: 5px;
  row-gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .banks {
    column-gap: 5px;
    row-gap: 5px;
    margin-bottom: 30px;
  }
}
.section-header {
  background: #7F8FA6;
}
.section-header .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  text-align: center;
}
@media (max-width: 991px) {
  .section-header .inner {
    padding: 10px 0;
  }
}
.section-header .page-title {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}
@media (max-width: 991px) {
  .section-header .page-title {
    font-size: 14px;
  }
}
.section-header.v2 {
  background: #F5F6FA;
}
.section-header.v2 .page-title {
  color: #192A56;
}
.section-content {
  padding-top: 20px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .section-content {
    padding-top: 10px;
  }
}
.summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.summary .summary-row {
  display: grid;
  grid-template-columns: 80px 20px 1fr;
  border: 1px solid #DCDDE1;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 14px;
  color: #7F8FA6;
  align-items: baseline;
}
@media (max-width: 575px) {
  .summary .summary-row {
    border-radius: 4px;
    padding: 15px;
  }
}
.summary .summary-row strong {
  color: #192A56;
  font-weight: 500;
}
.summary .summary-row .summary-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .summary .summary-row .summary-value {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
.result {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid #DCDDE1;
  border-radius: 4px;
}
.result .result-title {
  grid-column-start: 1;
  grid-column-end: -1;
  background: #F5F6FA;
  color: #192A56;
  font-size: 14px;
  font-weight: 500;
  padding: 15px 30px;
}
.result .result-row {
  display: grid;
  grid-template-columns: 120px 20px 1fr;
  padding: 15px 30px;
  border-top: 1px solid #DCDDE1;
  font-size: 14px;
  color: #192A56;
}
.result .result-row strong {
  color: #7F8FA6;
  font-weight: 500;
}
@media (max-width: 575px) {
  .result .result-value {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
.footer {
  margin-top: auto;
}
.footer .footer-pattern {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.footer .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}
.footer .copyright {
  font-size: 14px;
  color: #192A56;
}
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
.showSweetAlert {
  animation: showSweetAlert 0.3s;
}
.showSweetAlert[data-animation=none] {
  animation: none;
}
.showSweetAlert[data-animation=slide-from-top] {
  animation: slideFromTop 0.3s;
}
.showSweetAlert[data-animation=slide-from-bottom] {
  animation: slideFromBottom 0.3s;
}
.hideSweetAlert {
  animation: hideSweetAlert 0.3s;
}
.hideSweetAlert[data-animation=none] {
  animation: none;
}
.hideSweetAlert[data-animation=slide-from-top] {
  animation: slideToTop 0.3s;
}
.hideSweetAlert[data-animation=slide-from-bottom] {
  animation: slideToBottom 0.3s;
}
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
.animateSuccessTip {
  animation: animateSuccessTip 0.75s;
}
.animateSuccessLong {
  animation: animateSuccessLong 0.75s;
}
.sa-icon.sa-success.animate::after {
  animation: rotatePlaceholder 4.25s ease-in;
}
@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
.animateErrorIcon {
  animation: animateErrorIcon 0.5s;
}
@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
.animateXMark {
  animation: animateXMark 0.5s;
}
@keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}
.pulseWarning {
  animation: pulseWarning 0.75s infinite alternate;
}
@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}
.pulseWarningIns {
  animation: pulseWarningIns 0.75s infinite alternate;
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}
.sweet-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 1040;
}
.sweet-alert {
  background-color: #ffffff;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 2000;
}
@media all and (max-width: 767px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
.sweet-alert .form-group {
  display: none;
}
.sweet-alert .form-group .sa-input-error {
  display: none;
}
.sweet-alert.show-input .form-group {
  display: block;
}
.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative;
}
.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: -9px;
  opacity: 0;
  visibility: hidden;
}
.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default;
}
.sweet-alert button.confirm[disabled] {
  color: transparent;
}
.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 50%;
  margin: 20px auto;
  position: relative;
  box-sizing: content-box;
}
.sweet-alert .sa-icon.sa-error {
  border-color: #d43f3a;
}
.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}
.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #d9534f;
  display: block;
  top: 37px;
  border-radius: 2px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  transform: rotate(45deg);
  left: 17px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  transform: rotate(-45deg);
  right: 16px;
}
.sweet-alert .sa-icon.sa-warning {
  border-color: #eea236;
}
.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #f0ad4e;
}
.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #f0ad4e;
}
.sweet-alert .sa-icon.sa-info {
  border-color: #46b8da;
}
.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #5bc0de;
}
.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #5bc0de;
}
.sweet-alert .sa-icon.sa-success {
  border-color: #4cae4c;
}
.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
  content: '';
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: #ffffff;
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  transform: rotate(-45deg);
  transform-origin: 60px 60px;
}
.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  transform: rotate(-45deg);
  transform-origin: 0px 60px;
}
.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(92, 184, 92, 0.2);
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: #ffffff;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #5cb85c;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}
.sweet-alert .btn-default:focus {
  border-color: #cccccc;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(204, 204, 204, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(204, 204, 204, 0.6);
}
.sweet-alert .btn-success:focus {
  border-color: #4cae4c;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(76, 174, 76, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(76, 174, 76, 0.6);
}
.sweet-alert .btn-info:focus {
  border-color: #46b8da;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(70, 184, 218, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(70, 184, 218, 0.6);
}
.sweet-alert .btn-danger:focus {
  border-color: #d43f3a;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(212, 63, 58, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(212, 63, 58, 0.6);
}
.sweet-alert .btn-warning:focus {
  border-color: #eea236;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 162, 54, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 162, 54, 0.6);
}
.sweet-alert button::-moz-focus-inner {
  border: 0;
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-ball-fall.la-dark {
  color: #333;
}
.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-ball-fall {
  width: 54px;
  height: 18px;
}
.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  -moz-animation: ball-fall 1s ease-in-out infinite;
  -o-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite;
}
.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms;
}
.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms;
}
.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms;
}
.la-ball-fall.la-sm {
  width: 26px;
  height: 8px;
}
.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}
.la-ball-fall.la-2x {
  width: 108px;
  height: 36px;
}
.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}
.la-ball-fall.la-3x {
  width: 162px;
  height: 54px;
}
.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}
/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@-moz-keyframes ball-fall {
  0% {
    opacity: 0;
    -moz-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@-o-keyframes ball-fall {
  0% {
    opacity: 0;
    -o-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -o-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    -moz-transform: translateY(-145%);
    -o-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    -moz-transform: translateY(145%);
    -o-transform: translateY(145%);
    transform: translateY(145%);
  }
}
.error--text .v-messages__wrapper .v-messages__message {
  color: red;
  padding: 5px 0 0;
}
.swal2-popup {
  width: 80%!important;
}
@media (max-width: 991px) {
  .swal2-popup {
    width: 95%!important;
  }
}
.swal2-popup .swal2-content {
  font-size: 18px!important;
}
.swal2-popup .swal2-title {
  font-size: 22px!important;
}
.swal2-popup .swal2-styled.swal2-confirm {
  font-size: 14px!important;
  max-width: 80%!important;
  min-width: 80%!important;
}
.helper_button {
  position: fixed;
  right: 0;
  height: 110px;
  width: 35px;
  top: 312px;
  z-index: 99997;
}
.helper_button .helper_btn_content {
  background-color: #24a8ff!important;
  display: block;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40px;
  white-space: nowrap;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
  border-width: 1px 1px 1px 0!important;
  border-color: #fff!important;
  border-style: solid!important;
  border-radius: 0 5px 5px 0!important;
}
.helper_button .helper_btn_content .help_text {
  position: relative;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: rotate(-90deg) translate(-50%, 50%);
  transform: rotate(-90deg) translate(-50%, 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  text-transform: uppercase;
  margin: auto 5px;
  font-size: 22px;
  height: 9px;
  color: #fff;
  text-decoration: none;
}
