a,
a:active,
a:focus,
button {
  cursor: pointer;
  background-color: transparent;
}
a,
a:active,
a:focus,
button,
mark {
  background-color: transparent;
}
h3,
p {
  line-height: 1.5;
}
h2,
h4,
h6,
p,
ul {
  margin: 0;
}
body,
h1,
main {
  display: block;
}
.nprogress-custom-parent,
main {
  overflow: hidden;
  position: relative;
}
.content,
body,
h1,
main {
  position: relative;
}
:root {
  --color-1-darkest: #8a8a8a;
  --color-1-dark: #c4c4c4;
  --color-1-darker: #e8e8e8;
  --color-1-dimmed: #f5f6f7;
  --color-1: #fff;
  --color-2: #333;
  --color-2-brightened: #282d32;
  --color-2-brighter: #696970;
  --color-3: #55aa00;
  --color-4: #f37c7b;
  --color-5-lightest: #fee9e7;
  --color-5: #e66353;
  --color-6: #0fc1a1;
  --color-6-dimmed: #14b89a;
  --color-7: #1cc637;
  --color-7-dimmed: #21ba3a;
  --gender-specific-color-1: var(--color-3);
  --gender-specific-glow: 0 2px 10px 0 var(--gender-specific-color-1);
  --color-7-glow: 0 2px 10px 0 var(--color-7);
  --color-8: #66cc00;
  --color-8-dimmed: #55aa00;
  --color-9: #f3f9ef;
  --color-10: #d9d9d9;
  --color-11: #59b100;
  --color-primary-orange: #f48c6c;
  --base-font-family: "Poppins", sans-serif;
  --max-content-width: 110rem;
  --max-content-width-narrow: 80rem;
  --content-bottom-padding: 5rem;
  --nav-height: 6rem;
  --footer-height: 25rem;
  --padding: 2rem;
  --border-radius: 0.4rem;
  --border-radius-large: 2rem;
  --shadow: 0 11px 20px rgba(16, 56, 107, 0.1);
  --card-shadow: 0 4px 7px rgba(16, 56, 107, 0.09),
    0 4px 7px rgba(16, 56, 107, 0.12);
}
body,
html {
  width: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  background-color: var(--color-1);
  -webkit-text-size-adjust: 100%;
}
.content,
.narrowContent,
main {
  margin: 0 auto;
  width: 100%;
}
html {
  box-sizing: border-box;
  font-size: 50%;
  scroll-behavior: smooth;
}
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  color: var(--color-2);
}
h1,
h2 {
  font-size: 5rem;
}
*,
:after,
:before {
  font-family: var(--base-font-family);
  box-sizing: inherit;
}
[hidden] {
  display: none !important;
}
main {
  height: 100%;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: var(--content-bottom-padding);
}
h1 {
  margin: 0 0 3rem;
  font-weight: 900;
}
h3 {
  width: 100%;
  max-width: 71rem;
  margin: 2rem 0;
  text-align: center;
  letter-spacing: 1px;
  font-size: 2.5rem;
}
.big-title,
h4 {
  font-size: 3rem;
}
h5 {
  margin: 2rem 0 1rem;
  font-size: 2.5rem;
  font-weight: 600;
}
h6 {
  font-size: 1.8rem;
  font-weight: 700;
}
.big-title,
b,
strong {
  font-weight: 600;
}
a,
a:active,
a:focus {
  text-decoration: none;
  font-size: 1.6rem;
  color: var(--color-2);
}
button {
  border: none;
}
.btn-green {
  background: #6c0;
  border-radius: 5px;
}
input,
video {
  border: none;
  outline: 0;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input::placeholder {
  font-family: inherit;
  color: silver;
}
img {
  border-style: none;
}
ul {
  padding: 0;
}
li {
  list-style-type: none;
}
p {
  font-size: 1.5rem;
  color: var(--color-2-brighter);
}
.content {
  max-width: var(--max-content-width);
  padding: 0;
}
.narrowContent {
  max-width: var(--max-content-width-narrow);
  padding: var(--padding);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    transform-origin: 50% 0;
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    transform-origin: 50% 0;
    opacity: 1;
  }
}
@media screen and (min-width: 350px) {
  html {
    font-size: 55%;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 1261px) {
  main {
    padding-top: 10rem;
    padding-bottom: var(--content-bottom-padding);
  }
}
@media screen and (max-width: 1260px) and (min-width: 768px) {
  p {
    font-size: 2rem;
  }
  main {
    padding-top: 2rem;
    padding-bottom: var(--content-bottom-padding);
  }
}
@media screen and (min-width: 768px) {
  .content {
    padding: 0 var(--padding);
  }
}
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gender-specific-color-1);
  z-index: 9999;
}
#nprogress .peg,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
#nprogress .peg {
  right: 0;
  width: 100px;
  height: 100%;
  display: block;
  box-shadow: 0 0 10px var(--gender-specific-color-1),
    0 0 5px var(--gender-specific-color-1);
  -webkit-transform: rotate(3deg) translate(0, -4px);
  -ms-transform: rotate(3deg) translate(0, -4px);
  transform: rotate(3deg) translate(0, -4px);
  opacity: 1;
}
.col-50,
.col-m-50 {
  float: left;
  width: 50%;
}
.col-50-invers {
  float: right;
  width: 50%;
}
.col-s-50 {
  float: left;
  width: 50%;
  padding: 0;
  margin: 0;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.mt-1 {
  margin-top: 1rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}
.mt-10 {
  margin-top: 10rem !important;
}
.mr-1 {
  margin-right: 1rem !important;
}
.mr-2 {
  margin-right: 2rem !important;
}
.mr-3 {
  margin-right: 3rem !important;
}
.mr-4 {
  margin-right: 4rem !important;
}
.mr-5 {
  margin-right: 5rem !important;
}
.mr-10 {
  margin-right: 10rem !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mb-10 {
  margin-bottom: 10rem !important;
}
.ml-1 {
  margin-left: 1rem !important;
}
.ml-2 {
  margin-left: 2rem !important;
}
.ml-3 {
  margin-left: 3rem !important;
}
.ml-4 {
  margin-left: 4rem !important;
}
.ml-5 {
  margin-left: 5rem !important;
}
.ml-10 {
  margin-left: 10rem !important;
}
.pt-1 {
  padding-top: 1rem !important;
}
.pt-2 {
  padding-top: 2rem !important;
}
.pt-3 {
  padding-top: 3rem !important;
}
.pt-4 {
  padding-top: 4rem !important;
}
.pt-5 {
  padding-top: 5rem !important;
}
.pt-10 {
  padding-top: 10rem !important;
}
.pr-1 {
  padding-right: 1rem !important;
}
.pr-2 {
  padding-right: 2rem !important;
}
.pr-3 {
  padding-right: 3rem !important;
}
.pr-4 {
  padding-right: 4rem !important;
}
.pr-5 {
  padding-right: 5rem !important;
}
.pr-10 {
  padding-right: 10rem !important;
}
.pb-1 {
  padding-bottom: 1rem !important;
}
.pb-2 {
  padding-bottom: 2rem !important;
}
.pb-3 {
  padding-bottom: 3rem !important;
}
.pb-4 {
  padding-bottom: 4rem !important;
}
.pb-5 {
  padding-bottom: 5rem !important;
}
.pb-10 {
  padding-bottom: 10rem !important;
}
.ma {
  margin: auto;
}
.max-w-500 {
  max-width: 500px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .t-text-left {
    text-align: left !important;
  }
  .t-text-center {
    text-align: center !important;
  }
  .t-text-right {
    text-align: right !important;
  }
  .t-hide {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .d-text-left {
    text-align: left !important;
  }
  .d-text-center {
    text-align: center !important;
  }
  .d-text-right {
    text-align: right !important;
  }
  .d-hide {
    display: none;
  }
}
@media screen and (max-width: 1160px) {
  .col-m-50 {
    width: 100%;
    margin-top: 0;
  }
}
.text-center {
  text-align: center;
}
.br-10 {
  border-radius: 10px;
}
input:focus::placeholder {
  color: transparent;
}
.big-title {
  margin-bottom: 4rem;
}
.medium-title,
.title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}
.medium-title {
  font-weight: 500;
}
.title {
  font-weight: 600;
}
.subtitle {
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
.flex-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.hide {
  display: none;
}
.spacer-1 {
  height: 1rem;
}
.spacer-2 {
  height: 2rem;
}
.spacer-3 {
  height: 3rem;
}
.spacer-4 {
  height: 4rem;
}
.spacer-5 {
  height: 5rem;
}
.spacer-10 {
  height: 10rem;
}
@media (min-aspect-ratio: 16/9) and (max-width: 1200px) {
  nav {
    display: none;
  }
  main {
    padding-top: 3rem !important;
  }
  .box {
    padding-top: 0 !important;
  }
  button.owner,
  button.renter {
    font-size: 2rem !important;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
.legal-back-link {
  font-size: 1.2rem;
  color: #355ec9;
  padding-bottom: 4rem;
  display: block;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
footer {
  background-color: #3c4044;
  width: 100%;
}
footer .button-row {
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .contact {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact div {
  margin: 0.2rem 0;
  font-size: 1.4rem;
}
.button-row ul {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-row ul li {
  color: #fff;
}
.button-row ul li:not(:last-child) {
  margin-right: 1.5rem;
}
.button-row ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .col-50 {
    width: 100%;
    margin-top: 0;
  }
  .m-text-left {
    text-align: left !important;
  }
  .m-text-center {
    text-align: center !important;
  }
  .m-text-right {
    text-align: right !important;
  }
  .m-hide {
    display: none;
  }
  .subtitle,
  .title {
    margin-bottom: 1rem;
  }
  footer .button-row {
    height: 3rem;
  }
  .button-row ul li a {
    font-size: 1rem;
    font-weight: 400;
  }
  .button-row ul {
    padding: 0 2rem;
    text-align: center;
  }
}



a,
a:active,
a:focus,
button {
  cursor: pointer;
  background-color: transparent;
}
a,
a:active,
a:focus,
button,
mark {
  background-color: transparent;
}
h3,
p {
  line-height: 1.5;
}
h2,
h4,
h6,
p,
ul {
  margin: 0;
}
body,
h1,
main {
  display: block;
}
.nprogress-custom-parent,
main {
  overflow: hidden;
  position: relative;
}
.content,
body,
h1,
main {
  position: relative;
}
:root {
  --color-1-darkest: #8a8a8a;
  --color-1-dark: #c4c4c4;
  --color-1-darker: #e8e8e8;
  --color-1-dimmed: #f5f6f7;
  --color-1: #fff;
  --color-2: #333;
  --color-2-brightened: #282d32;
  --color-2-brighter: #696970;
  --color-3: #55aa00;
  --color-4: #f37c7b;
  --color-5-lightest: #fee9e7;
  --color-5: #e66353;
  --color-6: #0fc1a1;
  --color-6-dimmed: #14b89a;
  --color-7: #1cc637;
  --color-7-dimmed: #21ba3a;
  --gender-specific-color-1: var(--color-3);
  --gender-specific-glow: 0 2px 10px 0 var(--gender-specific-color-1);
  --color-7-glow: 0 2px 10px 0 var(--color-7);
  --color-8: #66cc00;
  --color-8-dimmed: #55aa00;
  --color-9: #f3f9ef;
  --color-10: #d9d9d9;
  --color-11: #59b100;
  --color-primary-orange: #f48c6c;
  --base-font-family: "Poppins", sans-serif;
  --max-content-width: 110rem;
  --max-content-width-narrow: 80rem;
  --content-bottom-padding: 5rem;
  --nav-height: 6rem;
  --footer-height: 25rem;
  --padding: 2rem;
  --border-radius: 0.4rem;
  --border-radius-large: 2rem;
  --shadow: 0 11px 20px rgba(16, 56, 107, 0.1);
  --card-shadow: 0 4px 7px rgba(16, 56, 107, 0.09),
    0 4px 7px rgba(16, 56, 107, 0.12);
}
body,
html {
  width: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  background-color: var(--color-1);
  -webkit-text-size-adjust: 100%;
}
.content,
.narrowContent,
main {
  margin: 0 auto;
  width: 100%;
}
html {
  box-sizing: border-box;
  font-size: 50%;
  scroll-behavior: smooth;
}
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  color: var(--color-2);
}
h1,
h2 {
  font-size: 5rem;
}
*,
:after,
:before {
  font-family: var(--base-font-family);
  box-sizing: inherit;
}
[hidden] {
  display: none !important;
}
main {
  height: 100%;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: var(--content-bottom-padding);
}
h1 {
  margin: 0 0 3rem;
  font-weight: 900;
}

.big-title,
h4 {
  font-size: 3rem;
}
h5 {
  margin: 2rem 0 1rem;
  font-size: 2.5rem;
  font-weight: 600;
}
h6 {
  font-size: 1.8rem;
  font-weight: 700;
}
.big-title,
b,
strong {
  font-weight: 600;
}
a,
a:active,
a:focus {
  text-decoration: none;
  font-size: 1.6rem;
  color: var(--color-2);
}
button {
  border: none;
}
.btn-green {
  background: #6c0;
  border-radius: 5px;
}
input,
video {
  border: none;
  outline: 0;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input::placeholder {
  font-family: inherit;
  color: silver;
}
img {
  border-style: none;
}
ul {
  padding: 0;
}
li {
  list-style-type: none;
}
p {
  font-size: 1.5rem;
  color: var(--color-2-brighter);
}
.content {
  max-width: var(--max-content-width);
  padding: 0;
}
.narrowContent {
  max-width: var(--max-content-width-narrow);
  padding: var(--padding);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    transform-origin: 50% 0;
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    transform-origin: 50% 0;
    opacity: 1;
  }
}
@media screen and (min-width: 350px) {
  html {
    font-size: 55%;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 1261px) {
  main {
    padding-top: 10rem;
    padding-bottom: var(--content-bottom-padding);
  }
}
@media screen and (max-width: 1260px) and (min-width: 768px) {
  p {
    font-size: 2rem;
  }
  main {
    padding-top: 2rem;
    padding-bottom: var(--content-bottom-padding);
  }
}
@media screen and (min-width: 768px) {
  .content {
    padding: 0 var(--padding);
  }
}
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gender-specific-color-1);
  z-index: 9999;
}
#nprogress .peg,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
#nprogress .peg {
  right: 0;
  width: 100px;
  height: 100%;
  display: block;
  box-shadow: 0 0 10px var(--gender-specific-color-1),
    0 0 5px var(--gender-specific-color-1);
  -webkit-transform: rotate(3deg) translate(0, -4px);
  -ms-transform: rotate(3deg) translate(0, -4px);
  transform: rotate(3deg) translate(0, -4px);
  opacity: 1;
}
.col-50,
.col-m-50 {
  float: left;
  width: 50%;
}
.col-50-invers {
  float: right;
  width: 50%;
}
.col-s-50 {
  float: left;
  width: 50%;
  padding: 0;
  margin: 0;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.mt-1 {
  margin-top: 1rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}
.mt-10 {
  margin-top: 10rem !important;
}
.mr-1 {
  margin-right: 1rem !important;
}
.mr-2 {
  margin-right: 2rem !important;
}
.mr-3 {
  margin-right: 3rem !important;
}
.mr-4 {
  margin-right: 4rem !important;
}
.mr-5 {
  margin-right: 5rem !important;
}
.mr-10 {
  margin-right: 10rem !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mb-10 {
  margin-bottom: 10rem !important;
}
.ml-1 {
  margin-left: 1rem !important;
}
.ml-2 {
  margin-left: 2rem !important;
}
.ml-3 {
  margin-left: 3rem !important;
}
.ml-4 {
  margin-left: 4rem !important;
}
.ml-5 {
  margin-left: 5rem !important;
}
.ml-10 {
  margin-left: 10rem !important;
}
.pt-1 {
  padding-top: 1rem !important;
}
.pt-2 {
  padding-top: 2rem !important;
}
.pt-3 {
  padding-top: 3rem !important;
}
.pt-4 {
  padding-top: 4rem !important;
}
.pt-5 {
  padding-top: 5rem !important;
}
.pt-10 {
  padding-top: 10rem !important;
}
.pr-1 {
  padding-right: 1rem !important;
}
.pr-2 {
  padding-right: 2rem !important;
}
.pr-3 {
  padding-right: 3rem !important;
}
.pr-4 {
  padding-right: 4rem !important;
}
.pr-5 {
  padding-right: 5rem !important;
}
.pr-10 {
  padding-right: 10rem !important;
}
.pb-1 {
  padding-bottom: 1rem !important;
}
.pb-2 {
  padding-bottom: 2rem !important;
}
.pb-3 {
  padding-bottom: 3rem !important;
}
.pb-4 {
  padding-bottom: 4rem !important;
}
.pb-5 {
  padding-bottom: 5rem !important;
}
.pb-10 {
  padding-bottom: 10rem !important;
}
.ma {
  margin: auto;
}
.max-w-500 {
  max-width: 500px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .t-text-left {
    text-align: left !important;
  }
  .t-text-center {
    text-align: center !important;
  }
  .t-text-right {
    text-align: right !important;
  }
  .t-hide {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .d-text-left {
    text-align: left !important;
  }
  .d-text-center {
    text-align: center !important;
  }
  .d-text-right {
    text-align: right !important;
  }
  .d-hide {
    display: none;
  }
}
@media screen and (max-width: 1160px) {
  .col-m-50 {
    width: 100%;
    margin-top: 0;
  }
}
.text-center {
  text-align: center;
}
.br-10 {
  border-radius: 10px;
}
input:focus::placeholder {
  color: transparent;
}
.big-title {
  margin-bottom: 4rem;
}
.medium-title,
.title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}
.medium-title {
  font-weight: 500;
}
.title {
  font-weight: 600;
}
.subtitle {
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
.flex-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.hide {
  display: none;
}
.spacer-1 {
  height: 1rem;
}
.spacer-2 {
  height: 2rem;
}
.spacer-3 {
  height: 3rem;
}
.spacer-4 {
  height: 4rem;
}
.spacer-5 {
  height: 5rem;
}
.spacer-10 {
  height: 10rem;
}
@media (min-aspect-ratio: 16/9) and (max-width: 1200px) {
  nav {
    display: none;
  }
  main {
    padding-top: 3rem !important;
  }
  .box {
    padding-top: 0 !important;
  }
  button.owner,
  button.renter {
    font-size: 2rem !important;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
.legal-back-link {
  font-size: 1.2rem;
  color: #355ec9;
  padding-bottom: 4rem;
  display: block;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
footer {
  background-color: #3c4044;
  width: 100%;
}
footer .button-row {
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .contact {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact div {
  margin: 0.2rem 0;
  font-size: 1.4rem;
}
.button-row ul {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-row ul li {
  color: #fff;
}
.button-row ul li:not(:last-child) {
  margin-right: 1.5rem;
}
.button-row ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .col-50 {
    width: 100%;
    margin-top: 0;
  }
  .m-text-left {
    text-align: left !important;
  }
  .m-text-center {
    text-align: center !important;
  }
  .m-text-right {
    text-align: right !important;
  }
  .m-hide {
    display: none;
  }
  .subtitle,
  .title {
    margin-bottom: 1rem;
  }
  footer .button-row {
    height: 3rem;
  }
  .button-row ul li a {
    font-size: 1rem;
    font-weight: 400;
  }
  .button-row ul {
    padding: 0 2rem;
    text-align: center;
  }
}



.step-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}


a,
a:active,
a:focus,
button {
  cursor: pointer;
  background-color: transparent;
}
a,
a:active,
a:focus,
button,
mark {
  background-color: transparent;
}
h3,
p {
  line-height: 1.5;
}
h2,
h4,
h6,
p,
ul {
  margin: 0;
}
body,
h1,
main {
  display: block;
}
.nprogress-custom-parent,
main {
  overflow: hidden;
  position: relative;
}
.content,
body,
h1,
main {
  position: relative;
}
:root {
  --color-1-darkest: #8a8a8a;
  --color-1-dark: #c4c4c4;
  --color-1-darker: #e8e8e8;
  --color-1-dimmed: #f5f6f7;
  --color-1: #fff;
  --color-2: #333;
  --color-2-brightened: #282d32;
  --color-2-brighter: #696970;
  --color-3: #55aa00;
  --color-4: #f37c7b;
  --color-5-lightest: #fee9e7;
  --color-5: #e66353;
  --color-6: #0fc1a1;
  --color-6-dimmed: #14b89a;
  --color-7: #1cc637;
  --color-7-dimmed: #21ba3a;
  --gender-specific-color-1: var(--color-3);
  --gender-specific-glow: 0 2px 10px 0 var(--gender-specific-color-1);
  --color-7-glow: 0 2px 10px 0 var(--color-7);
  --color-8: #66cc00;
  --color-8-dimmed: #55aa00;
  --color-9: #f3f9ef;
  --color-10: #d9d9d9;
  --color-11: #59b100;
  --color-primary-orange: #f48c6c;
  --base-font-family: "Poppins", sans-serif;
  --max-content-width: 110rem;
  --max-content-width-narrow: 80rem;
  --content-bottom-padding: 5rem;
  --nav-height: 6rem;
  --footer-height: 25rem;
  --padding: 2rem;
  --border-radius: 0.4rem;
  --border-radius-large: 2rem;
  --shadow: 0 11px 20px rgba(16, 56, 107, 0.1);
  --card-shadow: 0 4px 7px rgba(16, 56, 107, 0.09),
    0 4px 7px rgba(16, 56, 107, 0.12);
}
body,
html {
  width: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  background-color: var(--color-1);
  -webkit-text-size-adjust: 100%;
}
.content,
.narrowContent,
main {
  margin: 0 auto;
  width: 100%;
}
html {
  box-sizing: border-box;
  font-size: 50%;
  scroll-behavior: smooth;
}
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  color: var(--color-2);
}
h1,
h2 {
  font-size: 5rem;
}
*,
:after,
:before {
  font-family: var(--base-font-family);
  box-sizing: inherit;
}
[hidden] {
  display: none !important;
}
main {
  height: 100%;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: var(--content-bottom-padding);
}
h1 {
  margin: 0 0 3rem;
  font-weight: 900;
}

.big-title,
h4 {
  font-size: 3rem;
}
h5 {
  margin: 2rem 0 1rem;
  font-size: 2.5rem;
  font-weight: 600;
}
h6 {
  font-size: 1.8rem;
  font-weight: 700;
}
.big-title,
b,
strong {
  font-weight: 600;
}
a,
a:active,
a:focus {
  text-decoration: none;
  font-size: 1.6rem;
  color: var(--color-2);
}
button {
  border: none;
}
.btn-green {
  background: #6c0;
  border-radius: 5px;
}
input,
video {
  border: none;
  outline: 0;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input::placeholder {
  font-family: inherit;
  color: silver;
}
img {
  border-style: none;
}
ul {
  padding: 0;
}
li {
  list-style-type: none;
}
p {
  font-size: 1.5rem;
  color: var(--color-2-brighter);
}
.content {
  max-width: var(--max-content-width);
  padding: 0;
}
.narrowContent {
  max-width: var(--max-content-width-narrow);
  padding: var(--padding);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    transform-origin: 50% 0;
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    transform-origin: 50% 0;
    opacity: 1;
  }
}
@media screen and (min-width: 350px) {
  html {
    font-size: 55%;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 1261px) {
  main {
    padding-top: 10rem;
    padding-bottom: var(--content-bottom-padding);
  }
}
@media screen and (max-width: 1260px) and (min-width: 768px) {
  p {
    font-size: 2rem;
  }
  main {
    padding-top: 2rem;
    padding-bottom: var(--content-bottom-padding);
  }
}
@media screen and (min-width: 768px) {
  .content {
    padding: 0 var(--padding);
  }
}
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gender-specific-color-1);
  z-index: 9999;
}
#nprogress .peg,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
#nprogress .peg {
  right: 0;
  width: 100px;
  height: 100%;
  display: block;
  box-shadow: 0 0 10px var(--gender-specific-color-1),
    0 0 5px var(--gender-specific-color-1);
  -webkit-transform: rotate(3deg) translate(0, -4px);
  -ms-transform: rotate(3deg) translate(0, -4px);
  transform: rotate(3deg) translate(0, -4px);
  opacity: 1;
}
.col-50,
.col-m-50 {
  float: left;
  width: 50%;
}
.col-50-invers {
  float: right;
  width: 50%;
}
.col-s-50 {
  float: left;
  width: 50%;
  padding: 0;
  margin: 0;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.mt-1 {
  margin-top: 1rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}
.mt-10 {
  margin-top: 10rem !important;
}
.mr-1 {
  margin-right: 1rem !important;
}
.mr-2 {
  margin-right: 2rem !important;
}
.mr-3 {
  margin-right: 3rem !important;
}
.mr-4 {
  margin-right: 4rem !important;
}
.mr-5 {
  margin-right: 5rem !important;
}
.mr-10 {
  margin-right: 10rem !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mb-10 {
  margin-bottom: 10rem !important;
}
.ml-1 {
  margin-left: 1rem !important;
}
.ml-2 {
  margin-left: 2rem !important;
}
.ml-3 {
  margin-left: 3rem !important;
}
.ml-4 {
  margin-left: 4rem !important;
}
.ml-5 {
  margin-left: 5rem !important;
}
.ml-10 {
  margin-left: 10rem !important;
}
.pt-1 {
  padding-top: 1rem !important;
}
.pt-2 {
  padding-top: 2rem !important;
}
.pt-3 {
  padding-top: 3rem !important;
}
.pt-4 {
  padding-top: 4rem !important;
}
.pt-5 {
  padding-top: 5rem !important;
}
.pt-10 {
  padding-top: 10rem !important;
}
.pr-1 {
  padding-right: 1rem !important;
}
.pr-2 {
  padding-right: 2rem !important;
}
.pr-3 {
  padding-right: 3rem !important;
}
.pr-4 {
  padding-right: 4rem !important;
}
.pr-5 {
  padding-right: 5rem !important;
}
.pr-10 {
  padding-right: 10rem !important;
}
.pb-1 {
  padding-bottom: 1rem !important;
}
.pb-2 {
  padding-bottom: 2rem !important;
}
.pb-3 {
  padding-bottom: 3rem !important;
}
.pb-4 {
  padding-bottom: 4rem !important;
}
.pb-5 {
  padding-bottom: 5rem !important;
}
.pb-10 {
  padding-bottom: 10rem !important;
}
.ma {
  margin: auto;
}
.max-w-500 {
  max-width: 500px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .t-text-left {
    text-align: left !important;
  }
  .t-text-center {
    text-align: center !important;
  }
  .t-text-right {
    text-align: right !important;
  }
  .t-hide {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .d-text-left {
    text-align: left !important;
  }
  .d-text-center {
    text-align: center !important;
  }
  .d-text-right {
    text-align: right !important;
  }
  .d-hide {
    display: none;
  }
}
@media screen and (max-width: 1160px) {
  .col-m-50 {
    width: 100%;
    margin-top: 0;
  }
}
.text-center {
  text-align: center;
}
.br-10 {
  border-radius: 10px;
}
input:focus::placeholder {
  color: transparent;
}
.big-title {
  margin-bottom: 4rem;
}
.medium-title,
.title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}
.medium-title {
  font-weight: 500;
}
.title {
  font-weight: 600;
}
.subtitle {
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
.flex-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.hide {
  display: none;
}
.spacer-1 {
  height: 1rem;
}
.spacer-2 {
  height: 2rem;
}
.spacer-3 {
  height: 3rem;
}
.spacer-4 {
  height: 4rem;
}
.spacer-5 {
  height: 5rem;
}
.spacer-10 {
  height: 10rem;
}
@media (min-aspect-ratio: 16/9) and (max-width: 1200px) {
  nav {
    display: none;
  }
  main {
    padding-top: 3rem !important;
  }
  .box {
    padding-top: 0 !important;
  }
  button.owner,
  button.renter {
    font-size: 2rem !important;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
.legal-back-link {
  font-size: 1.2rem;
  color: #355ec9;
  padding-bottom: 4rem;
  display: block;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
footer {
  background-color: #3c4044;
  width: 100%;
}
footer .button-row {
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .contact {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact div {
  margin: 0.2rem 0;
  font-size: 1.4rem;
}
.button-row ul {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-row ul li {
  color: #fff;
}
.button-row ul li:not(:last-child) {
  margin-right: 1.5rem;
}
.button-row ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .col-50 {
    width: 100%;
    margin-top: 0;
  }
  .m-text-left {
    text-align: left !important;
  }
  .m-text-center {
    text-align: center !important;
  }
  .m-text-right {
    text-align: right !important;
  }
  .m-hide {
    display: none;
  }
  .subtitle,
  .title {
    margin-bottom: 1rem;
  }
  footer .button-row {
    height: 3rem;
  }
  .button-row ul li a {
    font-size: 1rem;
    font-weight: 400;
  }
  .button-row ul {
    padding: 0 2rem;
    text-align: center;
  }
}


.main-2.loading::after {
  content: 'Loading...';
  display: block;
  text-align: center;
  padding: 20px;
  font-size: 18px;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  font-size: 18px;
  font-weight: bold;
}

.suffix-icon {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.suffix-icon.visible {
  opacity: 1 !important;
}
.error-message {
  display: none;
  color: red;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}
.error-message.visible {
  display: block;
}

.main-8 .svelte-vu4dln{
  max-width: 68rem;
    min-height: unset;
    padding: 5rem;
    border-radius: var(--border-radius);
    animation: scaleIn .7s .1s backwards;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: var(--color-1);
    text-align: center;
    overflow: hidden;
}


.main-9 .svelte-1bkuhvy{
  max-width: 68rem;
    min-height: unset;
    padding: 5rem;
    border-radius: var(--border-radius);
    animation: scaleIn .7s .1s backwards;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: var(--color-1);
    text-align: center;
    overflow: hidden;
}

.spinner.svelte-vu4dln {
  width: 20px !important;
  height: 20px !important;
}



.item.svelte-vu4dln {
  font-size: 14px;
  transition: color .4s;
  margin-left: 1.5rem;
  align-items: center;
  display: flex;
  text-align: left;
  padding: 5px;
}


.spinner.svelte-vu4dln {
  width: 20px !important;
  height: 20px !important;
}

.svelte-vu4dln li{
  padding: 5px !important;
  display: inline-flex !important; 
  font-weight: 600;
}

.svelte-vu4dln ul {
  padding-top: 10px !important;
}


.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-top-color: #55aa00;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner.completed {
  display: none;
}

.spinner-container{
  align-content: center;
}

.checkmark {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url("checkmark_green.svg");
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.item.completed {
  color: #55aa00;
  font-weight: 600;
}





a,
a:active,
a:focus,
button {
  cursor: pointer;
  background-color: transparent;
}
a,
a:active,
a:focus,
button,
mark {
  background-color: transparent;
}
h3,
p {
  line-height: 1.5;
}
h2,
h4,
h6,
p,
ul {
  margin: 0;
}
body,
h1,
main {
  display: block;
}
.nprogress-custom-parent,
main {
  overflow: hidden;
  position: relative;
}
.content,
body,
h1,
main {
  position: relative;
}
:root {
  --color-1-darkest: #8a8a8a;
  --color-1-dark: #c4c4c4;
  --color-1-darker: #e8e8e8;
  --color-1-dimmed: #f5f6f7;
  --color-1: #fff;
  --color-2: #333;
  --color-2-brightened: #282d32;
  --color-2-brighter: #696970;
  --color-3: #55aa00;
  --color-4: #f37c7b;
  --color-5-lightest: #fee9e7;
  --color-5: #e66353;
  --color-6: #0fc1a1;
  --color-6-dimmed: #14b89a;
  --color-7: #1cc637;
  --color-7-dimmed: #21ba3a;
  --gender-specific-color-1: var(--color-3);
  --gender-specific-glow: 0 2px 10px 0 var(--gender-specific-color-1);
  --color-7-glow: 0 2px 10px 0 var(--color-7);
  --color-8: #66cc00;
  --color-8-dimmed: #55aa00;
  --color-9: #f3f9ef;
  --color-10: #d9d9d9;
  --color-11: #59b100;
  --color-primary-orange: #f48c6c;
  --base-font-family: "Poppins", sans-serif;
  --max-content-width: 110rem;
  --max-content-width-narrow: 80rem;
  --content-bottom-padding: 5rem;
  --nav-height: 9rem;
  --footer-height: 25rem;
  --padding: 2rem;
  --border-radius: 0.4rem;
  --border-radius-large: 2rem;
  --shadow: 0 11px 20px rgba(16, 56, 107, 0.1);
  --card-shadow: 0 4px 7px rgba(16, 56, 107, 0.09),
    0 4px 7px rgba(16, 56, 107, 0.12);
}
body,
html {
  width: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  background-color: var(--color-1);
  -webkit-text-size-adjust: 100%;
}
.content,
.narrowContent,
main {
  margin: 0 auto;
  width: 100%;
}
html {
  box-sizing: border-box;
  font-size: 50%;
  scroll-behavior: smooth;
}
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  color: var(--color-2);
}
h1,
h2 {
  font-size: 5rem;
}
*,
:after,
:before {
  font-family: var(--base-font-family);
  box-sizing: inherit;
}
[hidden] {
  display: none !important;
}
main {
  height: 100%;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: var(--content-bottom-padding);
}
h1 {
  margin: 0 0 3rem;
  font-weight: 900;
}

.big-title,
h4 {
  font-size: 3rem;
}
h5 {
  margin: 2rem 0 1rem;
  font-size: 2.5rem;
  font-weight: 600;
}
h6 {
  font-size: 1.8rem;
  font-weight: 700;
}
.big-title,
b,
strong {
  font-weight: 600;
}
a,
a:active,
a:focus {
  text-decoration: none;
  font-size: 1.6rem;
  color: #ccc;
}
button {
  border: none;
}
.btn-green {
  background: #6c0;
  border-radius: 5px;
}
input,
video {
  border: none;
  outline: 0;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input::placeholder {
  font-family: inherit;
  color: silver;
}
img {
  border-style: none;
}
ul {
  padding: 0;
}
li {
  list-style-type: none;
}
p {
  font-size: 1.5rem;
  color: var(--color-2-brighter);
}
.content {
  max-width: var(--max-content-width);
  padding: 0;
}
.narrowContent {
  max-width: var(--max-content-width-narrow);
  padding: var(--padding);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    transform-origin: 50% 0;
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    transform-origin: 50% 0;
    opacity: 1;
  }
}
@media screen and (min-width: 350px) {
  html {
    font-size: 55%;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 1261px) {
  main {
    padding-top: 10rem;
    padding-bottom: var(--content-bottom-padding);
  }
}
@media screen and (max-width: 1260px) and (min-width: 768px) {
  p {
    font-size: 2rem;
  }
  main {
    padding-top: 2rem;
    padding-bottom: var(--content-bottom-padding);
  }
}
@media screen and (min-width: 768px) {
  .content {
    padding: 0 var(--padding);
  }
}
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gender-specific-color-1);
  z-index: 9999;
}
#nprogress .peg,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
#nprogress .peg {
  right: 0;
  width: 100px;
  height: 100%;
  display: block;
  box-shadow: 0 0 10px var(--gender-specific-color-1),
    0 0 5px var(--gender-specific-color-1);
  -webkit-transform: rotate(3deg) translate(0, -4px);
  -ms-transform: rotate(3deg) translate(0, -4px);
  transform: rotate(3deg) translate(0, -4px);
  opacity: 1;
}
.col-50,
.col-m-50 {
  float: left;
  width: 50%;
}
.col-50-invers {
  float: right;
  width: 50%;
}
.col-s-50 {
  float: left;
  width: 50%;
  padding: 0;
  margin: 0;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.mt-1 {
  margin-top: 1rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}
.mt-10 {
  margin-top: 10rem !important;
}
.mr-1 {
  margin-right: 1rem !important;
}
.mr-2 {
  margin-right: 2rem !important;
}
.mr-3 {
  margin-right: 3rem !important;
}
.mr-4 {
  margin-right: 4rem !important;
}
.mr-5 {
  margin-right: 5rem !important;
}
.mr-10 {
  margin-right: 10rem !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mb-10 {
  margin-bottom: 10rem !important;
}
.ml-1 {
  margin-left: 1rem !important;
}
.ml-2 {
  margin-left: 2rem !important;
}
.ml-3 {
  margin-left: 3rem !important;
}
.ml-4 {
  margin-left: 4rem !important;
}
.ml-5 {
  margin-left: 5rem !important;
}
.ml-10 {
  margin-left: 10rem !important;
}
.pt-1 {
  padding-top: 1rem !important;
}
.pt-2 {
  padding-top: 2rem !important;
}
.pt-3 {
  padding-top: 3rem !important;
}
.pt-4 {
  padding-top: 4rem !important;
}
.pt-5 {
  padding-top: 5rem !important;
}
.pt-10 {
  padding-top: 10rem !important;
}
.pr-1 {
  padding-right: 1rem !important;
}
.pr-2 {
  padding-right: 2rem !important;
}
.pr-3 {
  padding-right: 3rem !important;
}
.pr-4 {
  padding-right: 4rem !important;
}
.pr-5 {
  padding-right: 5rem !important;
}
.pr-10 {
  padding-right: 10rem !important;
}
.pb-1 {
  padding-bottom: 1rem !important;
}
.pb-2 {
  padding-bottom: 2rem !important;
}
.pb-3 {
  padding-bottom: 3rem !important;
}
.pb-4 {
  padding-bottom: 4rem !important;
}
.pb-5 {
  padding-bottom: 5rem !important;
}
.pb-10 {
  padding-bottom: 10rem !important;
}
.ma {
  margin: auto;
}
.max-w-500 {
  max-width: 500px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .t-text-left {
    text-align: left !important;
  }
  .t-text-center {
    text-align: center !important;
  }
  .t-text-right {
    text-align: right !important;
  }
  .t-hide {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .d-text-left {
    text-align: left !important;
  }
  .d-text-center {
    text-align: center !important;
  }
  .d-text-right {
    text-align: right !important;
  }
  .d-hide {
    display: none;
  }
}
@media screen and (max-width: 1160px) {
  .col-m-50 {
    width: 100%;
    margin-top: 0;
  }
}
.text-center {
  text-align: center;
}
.br-10 {
  border-radius: 10px;
}
input:focus::placeholder {
  color: transparent;
}
.big-title {
  margin-bottom: 4rem;
}
.medium-title,
.title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}
.medium-title {
  font-weight: 500;
}
.title {
  font-weight: 600;
}
.subtitle {
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
.flex-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.hide {
  display: none;
}
.spacer-1 {
  height: 1rem;
}
.spacer-2 {
  height: 2rem;
}
.spacer-3 {
  height: 3rem;
}
.spacer-4 {
  height: 4rem;
}
.spacer-5 {
  height: 5rem;
}
.spacer-10 {
  height: 10rem;
}
@media (min-aspect-ratio: 16/9) and (max-width: 1200px) {
  nav {
    display: none;
  }
  main {
    padding-top: 3rem !important;
  }
  .box {
    padding-top: 0 !important;
  }
  button.owner,
  button.renter {
    font-size: 2rem !important;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
.legal-back-link {
  font-size: 1.2rem;
  color: #355ec9;
  padding-bottom: 4rem;
  display: block;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
footer {
  background-color: #3c4044;
  width: 100%;
}
footer .button-row {
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .contact {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact div {
  margin: 0.2rem 0;
  font-size: 1.4rem;
}
.button-row ul {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-row ul li {
  color: #fff;
}
.button-row ul li:not(:last-child) {
  margin-right: 1.5rem;
}
.button-row ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .col-50 {
    width: 100%;
    margin-top: 0;
  }
  .m-text-left {
    text-align: left !important;
  }
  .m-text-center {
    text-align: center !important;
  }
  .m-text-right {
    text-align: right !important;
  }
  .m-hide {
    display: none;
  }
  .subtitle,
  .title {
    margin-bottom: 1rem;
  }
  footer .button-row {
    height: 3rem;
  }
  .button-row ul li a {
    font-size: 1rem;
    font-weight: 400;
  }
  .button-row ul {
    padding: 0 2rem;
    text-align: center;
  }
}



.next-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}



.content-main {
  animation: fadeIn 0.5s ease forwards; 
}



.bar {
  transition: width 0.4s ease !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}
.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}
.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}
[dir="rtl"] .iti__arrow {
  margin-right: 6px;
  margin-left: 0;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}
.iti__dropdown-content {
  border-radius: 3px;
  background-color: #fff;
}
.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: -1px;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 4px #0003;
}
.iti__dropdown-content--dropup {
  bottom: 100%;
  margin-bottom: 3px;
}
.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
  padding: 9px 12px;
}
.iti__search-input + .iti__country-list {
  border-top: 1px solid #ccc;
}
.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}
.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}
@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}
.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
.iti__country {
  display: flex;
  align-items: center;
  padding: 8px;
  outline: none;
}
.iti__dial-code {
  color: #999;
}
.iti__country.iti__highlight {
  background-color: #0000000d;
}
.iti__flag-box,
.iti__country-name {
  margin-right: 8px;
}
[dir="rtl"] .iti__flag-box,
[dir="rtl"] .iti__country-name {
  margin-right: 0;
  margin-left: 8px;
}




.iti--fullscreen-popup .iti__country {
  padding: 10px;
  line-height: 1.5em;
}
.iti__flag {
  width: 20px;
}
.iti__flag.iti__be {
  width: 18px;
}
.iti__flag.iti__ch {
  width: 15px;
}
.iti__flag.iti__mc {
  width: 19px;
}
.iti__flag.iti__ne {
  width: 18px;
}
.iti__flag.iti__np {
  width: 13px;
}
.iti__flag.iti__va {
  width: 15px;
}
@media (min-resolution: 2x) {
  .iti__flag {
    background-size: 5762px 15px;
  }
}
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}
.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}
.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}
.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}
.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}
.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}
.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}
.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}
.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}
.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}
.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}
.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}
.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}
.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}
.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}
.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}
.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}
.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}
.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}
.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}
.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}
.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}
.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}
.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}
.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}
.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}
.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}
.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}
.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}
.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}
.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}
.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}
.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}
.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}
.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}
.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}
.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}
.iti__flag.iti__bz {
  height: 12px;
  background-position: -812px 0px;
}
.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}
.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}
.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}
.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}
.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}
.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}
.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}
.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}
.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}
.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}
.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}
.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}
.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}
.iti__flag.iti__cq {
  height: 12px;
  background-position: -1115px 0px;
}
.iti__flag.iti__cr {
  height: 12px;
  background-position: -1137px 0px;
}
.iti__flag.iti__cu {
  height: 10px;
  background-position: -1159px 0px;
}
.iti__flag.iti__cv {
  height: 12px;
  background-position: -1181px 0px;
}
.iti__flag.iti__cw {
  height: 14px;
  background-position: -1203px 0px;
}
.iti__flag.iti__cx {
  height: 10px;
  background-position: -1225px 0px;
}
.iti__flag.iti__cy {
  height: 14px;
  background-position: -1247px 0px;
}
.iti__flag.iti__cz {
  height: 14px;
  background-position: -1269px 0px;
}
.iti__flag.iti__de {
  height: 12px;
  background-position: -1291px 0px;
}
.iti__flag.iti__dg {
  height: 10px;
  background-position: -1313px 0px;
}
.iti__flag.iti__dj {
  height: 14px;
  background-position: -1335px 0px;
}
.iti__flag.iti__dk {
  height: 15px;
  background-position: -1357px 0px;
}
.iti__flag.iti__dm {
  height: 10px;
  background-position: -1379px 0px;
}
.iti__flag.iti__do {
  height: 14px;
  background-position: -1401px 0px;
}
.iti__flag.iti__dz {
  height: 14px;
  background-position: -1423px 0px;
}
.iti__flag.iti__ea {
  height: 14px;
  background-position: -1445px 0px;
}
.iti__flag.iti__ec {
  height: 14px;
  background-position: -1467px 0px;
}
.iti__flag.iti__ee {
  height: 13px;
  background-position: -1489px 0px;
}
.iti__flag.iti__eg {
  height: 14px;
  background-position: -1511px 0px;
}
.iti__flag.iti__eh {
  height: 10px;
  background-position: -1533px 0px;
}
.iti__flag.iti__er {
  height: 10px;
  background-position: -1555px 0px;
}
.iti__flag.iti__es {
  height: 14px;
  background-position: -1577px 0px;
}
.iti__flag.iti__et {
  height: 10px;
  background-position: -1599px 0px;
}
.iti__flag.iti__eu {
  height: 14px;
  background-position: -1621px 0px;
}
.iti__flag.iti__ez {
  height: 14px;
  background-position: -1643px 0px;
}
.iti__flag.iti__fi {
  height: 12px;
  background-position: -1665px 0px;
}
.iti__flag.iti__fj {
  height: 10px;
  background-position: -1687px 0px;
}
.iti__flag.iti__fk {
  height: 10px;
  background-position: -1709px 0px;
}
.iti__flag.iti__fm {
  height: 11px;
  background-position: -1731px 0px;
}
.iti__flag.iti__fo {
  height: 15px;
  background-position: -1753px 0px;
}
.iti__flag.iti__fr {
  height: 14px;
  background-position: -1775px 0px;
}
.iti__flag.iti__fx {
  height: 14px;
  background-position: -1797px 0px;
}
.iti__flag.iti__ga {
  height: 15px;
  background-position: -1819px 0px;
}
.iti__flag.iti__gb {
  height: 10px;
  background-position: -1841px 0px;
}
.iti__flag.iti__gd {
  height: 12px;
  background-position: -1863px 0px;
}
.iti__flag.iti__ge {
  height: 14px;
  background-position: -1885px 0px;
}
.iti__flag.iti__gf {
  height: 14px;
  background-position: -1907px 0px;
}
.iti__flag.iti__gg {
  height: 14px;
  background-position: -1929px 0px;
}
.iti__flag.iti__gh {
  height: 14px;
  background-position: -1951px 0px;
}
.iti__flag.iti__gi {
  height: 10px;
  background-position: -1973px 0px;
}
.iti__flag.iti__gl {
  height: 14px;
  background-position: -1995px 0px;
}
.iti__flag.iti__gm {
  height: 14px;
  background-position: -2017px 0px;
}
.iti__flag.iti__gn {
  height: 14px;
  background-position: -2039px 0px;
}
.iti__flag.iti__gp {
  height: 14px;
  background-position: -2061px 0px;
}
.iti__flag.iti__gq {
  height: 14px;
  background-position: -2083px 0px;
}
.iti__flag.iti__gr {
  height: 14px;
  background-position: -2105px 0px;
}
.iti__flag.iti__gs {
  height: 10px;
  background-position: -2127px 0px;
}
.iti__flag.iti__gt {
  height: 13px;
  background-position: -2149px 0px;
}
.iti__flag.iti__gu {
  height: 11px;
  background-position: -2171px 0px;
}
.iti__flag.iti__gw {
  height: 10px;
  background-position: -2193px 0px;
}
.iti__flag.iti__gy {
  height: 12px;
  background-position: -2215px 0px;
}
.iti__flag.iti__hk {
  height: 14px;
  background-position: -2237px 0px;
}
.iti__flag.iti__hm {
  height: 10px;
  background-position: -2259px 0px;
}
.iti__flag.iti__hn {
  height: 10px;
  background-position: -2281px 0px;
}
.iti__flag.iti__hr {
  height: 10px;
  background-position: -2303px 0px;
}
.iti__flag.iti__ht {
  height: 12px;
  background-position: -2325px 0px;
}
.iti__flag.iti__hu {
  height: 10px;
  background-position: -2347px 0px;
}
.iti__flag.iti__ic {
  height: 14px;
  background-position: -2369px 0px;
}
.iti__flag.iti__id {
  height: 14px;
  background-position: -2391px 0px;
}
.iti__flag.iti__ie {
  height: 10px;
  background-position: -2413px 0px;
}
.iti__flag.iti__il {
  height: 15px;
  background-position: -2435px 0px;
}
.iti__flag.iti__im {
  height: 10px;
  background-position: -2457px 0px;
}
.iti__flag.iti__in {
  height: 14px;
  background-position: -2479px 0px;
}
.iti__flag.iti__io {
  height: 10px;
  background-position: -2501px 0px;
}
.iti__flag.iti__iq {
  height: 14px;
  background-position: -2523px 0px;
}
.iti__flag.iti__ir {
  height: 12px;
  background-position: -2545px 0px;
}
.iti__flag.iti__is {
  height: 15px;
  background-position: -2567px 0px;
}
.iti__flag.iti__it {
  height: 14px;
  background-position: -2589px 0px;
}
.iti__flag.iti__je {
  height: 12px;
  background-position: -2611px 0px;
}
.iti__flag.iti__jm {
  height: 10px;
  background-position: -2633px 0px;
}
.iti__flag.iti__jo {
  height: 10px;
  background-position: -2655px 0px;
}
.iti__flag.iti__jp {
  height: 14px;
  background-position: -2677px 0px;
}
.iti__flag.iti__ke {
  height: 14px;
  background-position: -2699px 0px;
}
.iti__flag.iti__kg {
  height: 12px;
  background-position: -2721px 0px;
}
.iti__flag.iti__kh {
  height: 13px;
  background-position: -2743px 0px;
}
.iti__flag.iti__ki {
  height: 10px;
  background-position: -2765px 0px;
}
.iti__flag.iti__km {
  height: 12px;
  background-position: -2787px 0px;
}
.iti__flag.iti__kn {
  height: 14px;
  background-position: -2809px 0px;
}
.iti__flag.iti__kp {
  height: 10px;
  background-position: -2831px 0px;
}
.iti__flag.iti__kr {
  height: 14px;
  background-position: -2853px 0px;
}
.iti__flag.iti__kw {
  height: 10px;
  background-position: -2875px 0px;
}
.iti__flag.iti__ky {
  height: 10px;
  background-position: -2897px 0px;
}
.iti__flag.iti__kz {
  height: 10px;
  background-position: -2919px 0px;
}
.iti__flag.iti__la {
  height: 14px;
  background-position: -2941px 0px;
}
.iti__flag.iti__lb {
  height: 14px;
  background-position: -2963px 0px;
}
.iti__flag.iti__lc {
  height: 10px;
  background-position: -2985px 0px;
}
.iti__flag.iti__li {
  height: 12px;
  background-position: -3007px 0px;
}
.iti__flag.iti__lk {
  height: 10px;
  background-position: -3029px 0px;
}
.iti__flag.iti__lr {
  height: 11px;
  background-position: -3051px 0px;
}
.iti__flag.iti__ls {
  height: 14px;
  background-position: -3073px 0px;
}
.iti__flag.iti__lt {
  height: 12px;
  background-position: -3095px 0px;
}
.iti__flag.iti__lu {
  height: 12px;
  background-position: -3117px 0px;
}
.iti__flag.iti__lv {
  height: 10px;
  background-position: -3139px 0px;
}
.iti__flag.iti__ly {
  height: 10px;
  background-position: -3161px 0px;
}
.iti__flag.iti__ma {
  height: 14px;
  background-position: -3183px 0px;
}
.iti__flag.iti__mc {
  height: 15px;
  background-position: -3205px 0px;
}
.iti__flag.iti__md {
  height: 10px;
  background-position: -3226px 0px;
}
.iti__flag.iti__me {
  height: 10px;
  background-position: -3248px 0px;
}
.iti__flag.iti__mf {
  height: 14px;
  background-position: -3270px 0px;
}
.iti__flag.iti__mg {
  height: 14px;
  background-position: -3292px 0px;
}
.iti__flag.iti__mh {
  height: 11px;
  background-position: -3314px 0px;
}
.iti__flag.iti__mk {
  height: 10px;
  background-position: -3336px 0px;
}
.iti__flag.iti__ml {
  height: 14px;
  background-position: -3358px 0px;
}
.iti__flag.iti__mm {
  height: 14px;
  background-position: -3380px 0px;
}
.iti__flag.iti__mn {
  height: 10px;
  background-position: -3402px 0px;
}
.iti__flag.iti__mo {
  height: 14px;
  background-position: -3424px 0px;
}
.iti__flag.iti__mp {
  height: 10px;
  background-position: -3446px 0px;
}
.iti__flag.iti__mq {
  height: 14px;
  background-position: -3468px 0px;
}
.iti__flag.iti__mr {
  height: 14px;
  background-position: -3490px 0px;
}
.iti__flag.iti__ms {
  height: 10px;
  background-position: -3512px 0px;
}
.iti__flag.iti__mt {
  height: 14px;
  background-position: -3534px 0px;
}
.iti__flag.iti__mu {
  height: 14px;
  background-position: -3556px 0px;
}
.iti__flag.iti__mv {
  height: 14px;
  background-position: -3578px 0px;
}
.iti__flag.iti__mw {
  height: 14px;
  background-position: -3600px 0px;
}
.iti__flag.iti__mx {
  height: 12px;
  background-position: -3622px 0px;
}
.iti__flag.iti__my {
  height: 10px;
  background-position: -3644px 0px;
}
.iti__flag.iti__mz {
  height: 14px;
  background-position: -3666px 0px;
}
.iti__flag.iti__na {
  height: 14px;
  background-position: -3688px 0px;
}
.iti__flag.iti__nc {
  height: 10px;
  background-position: -3710px 0px;
}
.iti__flag.iti__ne {
  height: 15px;
  background-position: -3732px 0px;
}
.iti__flag.iti__nf {
  height: 10px;
  background-position: -3752px 0px;
}
.iti__flag.iti__ng {
  height: 10px;
  background-position: -3774px 0px;
}
.iti__flag.iti__ni {
  height: 12px;
  background-position: -3796px 0px;
}
.iti__flag.iti__nl {
  height: 14px;
  background-position: -3818px 0px;
}
.iti__flag.iti__no {
  height: 15px;
  background-position: -3840px 0px;
}
.iti__flag.iti__np {
  height: 15px;
  background-position: -3862px 0px;
}
.iti__flag.iti__nr {
  height: 10px;
  background-position: -3877px 0px;
}
.iti__flag.iti__nu {
  height: 10px;
  background-position: -3899px 0px;
}
.iti__flag.iti__nz {
  height: 10px;
  background-position: -3921px 0px;
}
.iti__flag.iti__om {
  height: 10px;
  background-position: -3943px 0px;
}
.iti__flag.iti__pa {
  height: 14px;
  background-position: -3965px 0px;
}
.iti__flag.iti__pe {
  height: 14px;
  background-position: -3987px 0px;
}
.iti__flag.iti__pf {
  height: 14px;
  background-position: -4009px 0px;
}
.iti__flag.iti__pg {
  height: 15px;
  background-position: -4031px 0px;
}
.iti__flag.iti__ph {
  height: 10px;
  background-position: -4053px 0px;
}
.iti__flag.iti__pk {
  height: 14px;
  background-position: -4075px 0px;
}
.iti__flag.iti__pl {
  height: 13px;
  background-position: -4097px 0px;
}
.iti__flag.iti__pm {
  height: 14px;
  background-position: -4119px 0px;
}
.iti__flag.iti__pn {
  height: 10px;
  background-position: -4141px 0px;
}
.iti__flag.iti__pr {
  height: 14px;
  background-position: -4163px 0px;
}
.iti__flag.iti__ps {
  height: 10px;
  background-position: -4185px 0px;
}
.iti__flag.iti__pt {
  height: 14px;
  background-position: -4207px 0px;
}
.iti__flag.iti__pw {
  height: 13px;
  background-position: -4229px 0px;
}
.iti__flag.iti__py {
  height: 11px;
  background-position: -4251px 0px;
}
.iti__flag.iti__qa {
  height: 8px;
  background-position: -4273px 0px;
}
.iti__flag.iti__re {
  height: 14px;
  background-position: -4295px 0px;
}
.iti__flag.iti__ro {
  height: 14px;
  background-position: -4317px 0px;
}
.iti__flag.iti__rs {
  height: 14px;
  background-position: -4339px 0px;
}
.iti__flag.iti__ru {
  height: 14px;
  background-position: -4361px 0px;
}
.iti__flag.iti__rw {
  height: 14px;
  background-position: -4383px 0px;
}
.iti__flag.iti__sa {
  height: 14px;
  background-position: -4405px 0px;
}
.iti__flag.iti__sb {
  height: 10px;
  background-position: -4427px 0px;
}
.iti__flag.iti__sc {
  height: 10px;
  background-position: -4449px 0px;
}
.iti__flag.iti__sd {
  height: 10px;
  background-position: -4471px 0px;
}
.iti__flag.iti__se {
  height: 13px;
  background-position: -4493px 0px;
}
.iti__flag.iti__sg {
  height: 14px;
  background-position: -4515px 0px;
}
.iti__flag.iti__sh {
  height: 10px;
  background-position: -4537px 0px;
}
.iti__flag.iti__si {
  height: 10px;
  background-position: -4559px 0px;
}
.iti__flag.iti__sj {
  height: 15px;
  background-position: -4581px 0px;
}
.iti__flag.iti__sk {
  height: 14px;
  background-position: -4603px 0px;
}
.iti__flag.iti__sl {
  height: 14px;
  background-position: -4625px 0px;
}
.iti__flag.iti__sm {
  height: 15px;
  background-position: -4647px 0px;
}
.iti__flag.iti__sn {
  height: 14px;
  background-position: -4669px 0px;
}
.iti__flag.iti__so {
  height: 14px;
  background-position: -4691px 0px;
}
.iti__flag.iti__sr {
  height: 14px;
  background-position: -4713px 0px;
}
.iti__flag.iti__ss {
  height: 10px;
  background-position: -4735px 0px;
}
.iti__flag.iti__st {
  height: 10px;
  background-position: -4757px 0px;
}
.iti__flag.iti__su {
  height: 10px;
  background-position: -4779px 0px;
}
.iti__flag.iti__sv {
  height: 12px;
  background-position: -4801px 0px;
}
.iti__flag.iti__sx {
  height: 14px;
  background-position: -4823px 0px;
}
.iti__flag.iti__sy {
  height: 14px;
  background-position: -4845px 0px;
}
.iti__flag.iti__sz {
  height: 14px;
  background-position: -4867px 0px;
}
.iti__flag.iti__ta {
  height: 10px;
  background-position: -4889px 0px;
}
.iti__flag.iti__tc {
  height: 10px;
  background-position: -4911px 0px;
}
.iti__flag.iti__td {
  height: 14px;
  background-position: -4933px 0px;
}
.iti__flag.iti__tf {
  height: 14px;
  background-position: -4955px 0px;
}
.iti__flag.iti__tg {
  height: 13px;
  background-position: -4977px 0px;
}
.iti__flag.iti__th {
  height: 14px;
  background-position: -4999px 0px;
}
.iti__flag.iti__tj {
  height: 10px;
  background-position: -5021px 0px;
}
.iti__flag.iti__tk {
  height: 10px;
  background-position: -5043px 0px;
}
.iti__flag.iti__tl {
  height: 10px;
  background-position: -5065px 0px;
}
.iti__flag.iti__tm {
  height: 14px;
  background-position: -5087px 0px;
}
.iti__flag.iti__tn {
  height: 14px;
  background-position: -5109px 0px;
}
.iti__flag.iti__to {
  height: 10px;
  background-position: -5131px 0px;
}
.iti__flag.iti__tr {
  height: 14px;
  background-position: -5153px 0px;
}
.iti__flag.iti__tt {
  height: 12px;
  background-position: -5175px 0px;
}
.iti__flag.iti__tv {
  height: 10px;
  background-position: -5197px 0px;
}
.iti__flag.iti__tw {
  height: 14px;
  background-position: -5219px 0px;
}
.iti__flag.iti__tz {
  height: 14px;
  background-position: -5241px 0px;
}
.iti__flag.iti__ua {
  height: 14px;
  background-position: -5263px 0px;
}
.iti__flag.iti__ug {
  height: 14px;
  background-position: -5285px 0px;
}
.iti__flag.iti__uk {
  height: 10px;
  background-position: -5307px 0px;
}
.iti__flag.iti__um {
  height: 11px;
  background-position: -5329px 0px;
}
.iti__flag.iti__un {
  height: 14px;
  background-position: -5351px 0px;
}
.iti__flag.iti__us {
  height: 11px;
  background-position: -5373px 0px;
}
.iti__flag.iti__uy {
  height: 14px;
  background-position: -5395px 0px;
}
.iti__flag.iti__uz {
  height: 10px;
  background-position: -5417px 0px;
}
.iti__flag.iti__va {
  height: 15px;
  background-position: -5439px 0px;
}
.iti__flag.iti__vc {
  height: 14px;
  background-position: -5456px 0px;
}
.iti__flag.iti__ve {
  height: 14px;
  background-position: -5478px 0px;
}
.iti__flag.iti__vg {
  height: 10px;
  background-position: -5500px 0px;
}
.iti__flag.iti__vi {
  height: 14px;
  background-position: -5522px 0px;
}
.iti__flag.iti__vn {
  height: 14px;
  background-position: -5544px 0px;
}
.iti__flag.iti__vu {
  height: 12px;
  background-position: -5566px 0px;
}
.iti__flag.iti__wf {
  height: 14px;
  background-position: -5588px 0px;
}
.iti__flag.iti__ws {
  height: 10px;
  background-position: -5610px 0px;
}
.iti__flag.iti__xk {
  height: 15px;
  background-position: -5632px 0px;
}
.iti__flag.iti__ye {
  height: 14px;
  background-position: -5654px 0px;
}
.iti__flag.iti__yt {
  height: 14px;
  background-position: -5676px 0px;
}
.iti__flag.iti__za {
  height: 14px;
  background-position: -5698px 0px;
}
.iti__flag.iti__zm {
  height: 14px;
  background-position: -5720px 0px;
}
.iti__flag.iti__zw {
  height: 10px;
  background-position: -5742px 0px;
}
.iti__flag {
  height: 15px;
  box-shadow: 0 0 1px #888;
  background-image: url(./flags.BMGzDaSL.png?1);
  background-repeat: no-repeat;
  background-position: 20px 0;
}
@media (min-resolution: 2x) {
  .iti__flag {
  }
}
.iti__globe {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAACTUlEQVR42k1SW0hUURQ9PSyzyCzoKURlIL1AhH4UucxZ+87LKQIly/wJIn+CHj/VgBkM8zFBhUFIoME4Mz2EhME+8iOECqWiQkjyQ5JIwuqjcYxoMHb7nOug98J5rLP2Omvvs5X3dS43o1NJVzGMGTB+0ivEaK9Bm1dYyuISUcyHOcj4jTnkAxxmYtw0Z87KoppQ8fQII4dvFA+u1lm9hdrpO2YEe43yotQyURsQ6KPvMFJWO+mNVIfngo9YvdoSpag9whiXo6PUT3X6It5Th9tA3Tgv2LBQY5bqrsUvYreJzuILZRHDBbzRV9CJR5iWOYwc5n07hKhb6C9y+gmiNKSUd6k3CxZDCrkQ0yULOKVOlVLhCt3tEehBcL0NSOCgjGdCjEHVvAZd9BknJb4VyfoKfxV2YxA17i5nA27hcqQMNcT4pGgozH75nUqcw1fcQwZpTFE/UujBO4yiFwNgTCmMuYzZMCPhVuPugsdMpMxa6NCtsisXxphsgowCMYUk+15T/toSPHY324AuvU9vQlo8ZpRvDwp+xqh9wgnabpX6THWF8pKyyOCHZH3KxPUE2GVqc9bhLSaRoj5MIE338QLjokjEmHZKTXG2Ii8u/vm3iZtqUTqEEXJFN64D+1dhtpHpxMITui0BJkbOPUBtuKOUr8E6fIbTyEeYbtum8JpIXw8aqpSpkTHplPo34iEKAZY0EqZt5DeTaTRcs6p/kJOr4m7DMfGtP+iAIViatzDS+jjmRFdUdJNvJ26gXtn7FmnKA2xaSdGMLkWLq/8ijPjvv8jQpwAAAABJRU5ErkJggg==);
  background-size: contain;
  background-position: right;
  box-shadow: none;
  height: 19px;
}
@media (min-resolution: 2x) {
  .iti__globe {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAQAAAAm93DmAAAACXBIWXMAAAsTAAALEwEAmpwYAAAGNUlEQVR42oVWC2iVZRj+z9TUUqfZRTTFlEq0FBQpmeRx3/P+55zNqZEmSZGKJF2YoZtlhkqZYWlQYGWleakoS0FySLlQMgtNmUFecbot3BRF87b72d/zft9/zjwy5//xX77L+7z39/29tq9oR/c2Q+UVfI39qEIjWlBjDmGLWWjGuN1RnbyId/tradbUDp43tQNm4g8ECY5YIAE4hF9xzv0Ax8zC/F4h6/Yvd8BMQTmBFKYR9WjxLaTPm7MGzgmLSyh2crYDp5v+XfgxrsR1SgrCErQCl/ksx1WVVpJoQq0oaJk/RKnagZOHUJFQiDpfoZpJPgMDPA/foJLy90EUNUJ2cZW1Pk5wv0ApbwGHx3A9prI1EbQCSyjPl26XrqkKv6bnB/gYu/IC8KSohZ9tA1Id4ffHZasq+ZtNlPbtWJC41/MK7rQSVqmF1cY4gT9p5wWUVOUkJGI3QTr34+844fSAednzEj04+8TzxnSNdnGAynZMV3VZQSCGa1FcV0ghld9fdzOtt4pK0KOqgoUvjgfRe1InZD0qWvmjGjv0bYajTuHIejenWTeoO34EN1rQSNstComO4XcMMnPkI/zEr0toxF8oNV+gKDYM70tAWXlJXkzpGkg3UwVLA2ILl67zLtWV2N0yjxayQW2u4ChKcQa12CmHcJ6rzstrMMAyfi9PVQ5wivZNu2OIJNEMQkrf2AhsVyI0yiojuf1C+66T02E69pYcFKM6oa47ZKZxr0wjIxHI8632WzEhsN7aj9KCAJfxmuzDkXQE3EGib1GlaZlaw2pcwywc5uljKPHJnvC/Ov/ymBygSqcQ5Ad8T7cENVinHqahI2SZisOIDuv16XRZT4oyTvblBaIpoFI+wCNKhkHRjonOZozMcPxz+9HXc1JGzgAMjRQblghynwpPF6BKnIxT2qgXyt+MpuFzFUolpMrpOKTSWaRQtwUyX4Nez8tztHktrfgu4dRGZgF+Q4mRVC5IHr046EY2ZhMqMxnT0h+md4eHEm7VjSfM6Txb6bgwgRnSmQcK/WD8I9EuY3shO9HD9OapzfJvonO0J7KRrU+a6Qy+V5/n94p2MUNRZ1Nir+c/aatKPZpRT1+dt4Y2NsgDuWEgyJzbE5mzZuIc9Mxel786NN7lM6vOGoIvkbkokvkyD8UyBwdxyRRyFg5TiIso43oxinhuKRokqWHnYRdfTQ5QeaIxdzABJ5FNdobF1jKwMy7UYHXq27+PGjazOv7iyWLNiTQgo0lbEJDgWz2uTmI0usCm13XQ65Gc7hTjHfXyxO60pKieCa2euSNVfw4CWiucz+mudZvcprqQ0mdmHDJ0WDuZ5S9ohLgYCAHnciIHtNSDsHqbyU4JrizT45mArY1MDAN7ZBjW5Yqgrct/XElfdUqz7NvC6mVhEgNjD3ZrIEc7juqUqbLmFOeL0JTfC8/geL72vySS6XqDbFzQTmYV3qk8ZTkVuIoL6p42CyxjFXskwDWCnZBx2Bi3eWJWujy1jpEGJ6PMtuQLcFI4RyW2yGKZYUbjZ5yVHDNNXmcSHkUjd8/hU8nRxhZTcVrAVHDVRjvxWQqclKRWjOhAZ3hcIdwGVEoy/FvgM84nqrEZ29m5R7nCgcqYy+P1zrpOxtkpGblZ5tIPn2Mbt8mOtWggSlAzfpj/YLSb9epWOR1W+hLt0EJI6dtaL/nCrjghXbZoipNbt3QdirhcTpeCh1n039AvfKcOtZ1oVrqjhJwGoE5c+Oj2hrDSDZZxzG7b3uUfLa4qu3wlgW0FexNq53rCr3UoGW3UTI7baHKQ8gODYjXUdv+5tuo/ymrTUZnw3DI8bZtnAxoItyOlx02Q8mYewdI5U0fvUQJ2OK3e4RVarTz8nWomxbZU9rTxMyKrLGSLQoreSf1Ckqq9aMHewmFNVZ+yKUOyXBHStnFFrHM+yCNEOhU5QvCr5n5NwAn0J5qkwTba42KUzkl3a8giqhiqngE5VvdoXRePJ00hzzPy+GzniqjZMQm11uDJVjhzJdpHqyLlOoKNMpFKZjS42/3F9sdulUXrMOHoScpDdrkjzVAv0vYve/uQvPCSXFRQPyDcSvWjAji5bqdoWx7Psr13Oc6h2haMCAfXp3ZoH+p/nx653W4Gr3MAAAAASUVORK5CYII=);
  }
}




.iti {
  position: relative;
  display: inline-block;
}
.iti * {
  box-sizing: border-box;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}
.iti input.iti__tel-input,
.iti input.iti__tel-input[type="text"],
.iti input.iti__tel-input[type="tel"] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti--allow-dropdown input.iti__tel-input,
.iti--allow-dropdown input.iti__tel-input[type="text"],
.iti--allow-dropdown input.iti__tel-input[type="tel"],
.iti--show-selected-dial-code input.iti__tel-input,
.iti--show-selected-dial-code input.iti__tel-input[type="text"],
.iti--show-selected-dial-code input.iti__tel-input[type="tel"] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}
[dir="rtl"] .iti--allow-dropdown input.iti__tel-input,
[dir="rtl"] .iti--allow-dropdown input.iti__tel-input[type="text"],
[dir="rtl"] .iti--allow-dropdown input.iti__tel-input[type="tel"],
[dir="rtl"] .iti--show-selected-dial-code input.iti__tel-input,
[dir="rtl"] .iti--show-selected-dial-code input.iti__tel-input[type="text"],
[dir="rtl"] .iti--show-selected-dial-code input.iti__tel-input[type="tel"] {
  padding-right: 52px;
  padding-left: 6px;
  margin-right: 0;
}
.iti--allow-dropdown .iti__flag-container,
.iti--show-selected-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}
[dir="rtl"] .iti--allow-dropdown .iti__flag-container,
[dir="rtl"] .iti--show-selected-dial-code .iti__flag-container {
  right: 0;
  left: auto;
}
.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: #0000000d;
}
.iti--allow-dropdown .iti__flag-container:has(+ input[disabled]):hover,
.iti--allow-dropdown .iti__flag-container:has(+ input[readonly]):hover {
  cursor: default;
}
.iti--allow-dropdown
  .iti__flag-container:has(+ input[disabled]):hover
  .iti__selected-flag,
.iti--allow-dropdown
  .iti__flag-container:has(+ input[readonly]):hover
  .iti__selected-flag {
  background-color: transparent;
}
.iti--show-selected-dial-code .iti__selected-flag {
  background-color: #0000000d;
}
.iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  margin-left: 6px;
}
[dir="rtl"]
  .iti--show-selected-dial-code.iti--show-flags
  .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 6px;
}
.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}
.iti--container:hover {
  cursor: pointer;
}
.iti--fullscreen-popup.iti--container {
  background-color: #00000080;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.iti--fullscreen-popup.iti--container.iti--country-search {
  justify-content: flex-start;
}
.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}




input[type="date"]::placeholder {
  color: rgb(192 192 192) !important;
}

input::placeholder {
  color: grey !important;
}




/* General styling */
.icon-inside {
  background-color: rgb(247, 247, 247);
  border: 1px solid rgb(217, 217, 217);
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 5px;
}

/* Input styling */
.icon-inside input {
  color: black;
  width: 100%;
  padding: 10px;
  border: none;
  background-color: transparent;
  font-size: 16px;
  appearance: none;
  caret-color: black;
  height: 50px;
}

/* 🔥 Placeholder color for non-iOS devices */
.icon-inside input::placeholder {
  color: grey !important;
  opacity: 1 !important; /* Forces grey color on desktop */
}



/* 🔥 iOS Placeholder Fix - Only applied to iOS devices */
.ios-fix::before {
  content: attr(data-placeholder);
  position: absolute;
  left: 10px;
  color: grey !important;
  pointer-events: none;
}

/* Hide iOS placeholder when input has a value */
.ios-fix.has-value::before {
  display: none;
}

/* Error message styling */
.error-message {
  color: red;
  font-size: 14px;
  display: none;
}

.form-control {
  background-color: #fff;
  background-image: none;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  height: 50px;
  padding: 6px 12px;
  transition: border-color .15sease-in-out, box-shadow .15sease-in-out;
  width: 100%;
}
.form-control {
  background: #f2f2f2;
  box-shadow: none;
  color: #000 !important;
  font-family: Nunito, sans-serif;
  font-size: 28px;
  margin: 0;
 
  text-align: left !important;
  font-family: 'Poppins', sans-serif;
}

.form-group {
  background-color: rgb(247, 247, 247);
  border-radius: 5px;
  border: 1px solid rgb(217, 217, 217);
  height: 50px;
  padding-left: 5px;
}


.error{
  font-size: 13px;
    text-align: left;
}


.styled-select {
  width: 100%;
  padding: 10px;
  font-size: 2.2rem;
  border: none;
  background: transparent;
  outline: none;
  appearance: none; /* Hide default dropdown arrow */
}

/* Custom dropdown icon */
.icon-inside2 {
  position: relative;
  display: flex;
    align-items: center;
    height: 50px;
    position: relative;
    box-sizing: border-box;
    border-radius: 5px;
    cursor: text;
}

.icon-inside2::after {
  content: "▼"; /* Custom dropdown arrow */
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #888;
}


/* 🔥 Placeholder color for non-iOS devices */
.icon-inside2 select::placeholder {
  color: grey !important;
  opacity: 1 !important; /* Forces grey color on desktop */
}


#job-select option:disabled {
  color: grey;
}


/* Element is visible and will fade in */
.fade-in {
  display: block;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

/* Keyframes for the fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}