@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
:root {
  --color-primary: #20baba;
}

html, body {
  cursor: default;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 360px) {
  html, body {
    font-size: 90%;
  }
}

::-moz-selection {
  background-color: rgba(32, 186, 186, 0.3);
}

::selection {
  background-color: rgba(32, 186, 186, 0.3);
}

a {
  display: block;
  text-decoration: none;
  color: #333;
  -webkit-transition: .125s ease-in-out;
  transition: .125s ease-in-out;
}

a:hover {
  color: #333;
}

.text_2xs {
  font-size: .65rem;
}

.text_xs {
  font-size: .75rem;
}

.text_sm {
  font-size: .9rem;
}

.text_base {
  font-size: 1rem;
}

.text_lg {
  font-size: 1.125rem;
}

.text_xl {
  font-size: 1.25rem;
}

.text_2xl {
  font-size: 1.3rem;
}

.text_3xl {
  font-size: 1.5rem;
}

.text_4xl {
  font-size: 2rem;
}

.text_5xl {
  font-size: 2.8rem;
}

.text_6xl {
  font-size: 3.75rem;
}

.font_light {
  font-weight: 300;
}

.font_medium {
  font-weight: 500;
}

.font_semiBold {
  font-weight: 600;
}

.font_bold {
  font-weight: bold;
}

.text_primary {
  color: var(--color-primary);
}

.text_primary:hover {
  color: var(--color-primary);
}

.text_red {
  color: #F90303;
}

.text_gray {
  color: #AAAAAA;
}

.text_second_gray {
  color: #888888;
}

.bg_primary {
  background: var(--color-primary);
}

.bg_white {
  background-color: #FFFFFF;
}

.bg_black {
  background-color: #333;
}

.p_1_5 {
  padding: .375rem;
}

.p_7 {
  padding: 1.75rem;
}

.p_8 {
  padding: 2rem;
}

.p_9 {
  padding: 2.25rem;
}

.p_10 {
  padding: 2.5rem;
}

.p_2-5 {
  padding-bottom: .625rem;
}

.pb_8 {
  padding-bottom: 2rem;
}

.py_3 {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.pt_20 {
  padding-top: 5rem;
}

.pt_44 {
  padding-top: 11rem;
}

.pb_24 {
  padding-bottom: 6rem;
}

.mt_3 {
  margin-top: .75rem;
}

.mt_8 {
  margin-top: 2rem;
}

.mt_16 {
  margin-top: 4rem;
}

.mt_20 {
  margin-top: 5rem;
}

.mt_24 {
  margin-top: 6rem;
}

.mb_5 {
  margin-bottom: 1.25rem;
}

.mb_16 {
  margin-bottom: 4rem;
}

.mb_19 {
  margin-bottom: 4.9rem;
}

.ml_16 {
  margin-left: 4rem;
}

.mr_3 {
  margin-right: .75rem;
}

.object_cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.left_0 {
  left: 0;
}

.right_0 {
  right: 0;
}

.rounded_full {
  border-radius: 9999px !important;
}

.rounded_50 {
  border-radius: 50% !important;
}

.z_index_10 {
  z-index: 10;
}

.z_index_20 {
  z-index: 20;
}

.position_center_center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.position_Y_center {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.position_X_center {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.cursor_pointer {
  cursor: pointer;
}

.text_underline {
  text-decoration: underline;
}

.select_none {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flex_initial {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.bg_primary_color {
  background-color: rgba(32, 186, 186, 0.7);
}

.input_box_shadow {
  -webkit-box-shadow: 0px 4px 5px rgba(51, 51, 51, 0.16) !important;
          box-shadow: 0px 4px 5px rgba(51, 51, 51, 0.16) !important;
}

.input_box_shadow:focus {
  -webkit-box-shadow: 0px 4px 5px rgba(51, 51, 51, 0.1) !important;
          box-shadow: 0px 4px 5px rgba(51, 51, 51, 0.1) !important;
}

.box_shadow {
  -webkit-box-shadow: 0px 3px 6px rgba(51, 51, 51, 0.1);
          box-shadow: 0px 3px 6px rgba(51, 51, 51, 0.1);
}

@media screen and (max-width: 575px) {
  .w_sm_100 {
    width: 100%;
  }
}

.bg_primary_50:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 186, 186, 0.7);
}

.opacity_50 {
  opacity: .5;
}

.toggle_password {
  -webkit-transition: .125s ease-in-out;
  transition: .125s ease-in-out;
}

.no_user_select {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.limit_text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.btn:focus {
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
}

.btn_box_shadow {
  -webkit-box-shadow: 0px 3px 5px rgba(51, 51, 51, 0.16);
          box-shadow: 0px 3px 5px rgba(51, 51, 51, 0.16);
}

.btn_active:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.btn_social_media:hover {
  background-color: rgba(170, 170, 170, 0.1);
}

.btn_social_media:active {
  background-color: rgba(170, 170, 170, 0.2);
}

.form-control {
  resize: none;
  border: unset;
}

.swiper-pagination-bullet {
  border: 2px solid #FFFFFF;
  width: 1rem !important;
  height: 1rem !important;
  opacity: 1 !important;
  background: unset !important;
  margin: 0 .5rem !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FFFFFF !important;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 55px !important;
}

/* Customize the label (the container) */
.custom_checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #888888;
}

.custom_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom_checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.45rem;
  width: 1.45rem;
  -webkit-box-shadow: 0px 3px 6px rgba(51, 51, 51, 0.1) !important;
          box-shadow: 0px 3px 6px rgba(51, 51, 51, 0.1) !important;
  border: 1px solid #DDDDDD;
  border-radius: .25rem;
}

.custom_checkbox .checkmark:after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  display: none;
  left: .15rem;
  top: -.05rem;
  color: #FFFFFF;
}

.custom_checkbox input:checked ~ .checkmark {
  background-color: var(--color-primary);
}

.custom_checkbox input:checked ~ .checkmark:after {
  display: block;
}

.header_title {
  font-size: 7rem;
}

.navbar.white a {
  color: #FFFFFF;
}

.navbar.white .lang_curr {
  border: 2px solid #FFFFFF;
}

.navbar .nav-item {
  margin: 0 .5rem;
}


/* MyRent login transition ------------------------------------------------ */

.myrent-login-loading {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 38%, rgba(33, 150, 243, .18), transparent 34%),
        rgba(10, 24, 33, .72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

.myrent-login-loading.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

body.myrent-login-is-loading {
    overflow: hidden !important;
}

.myrent-login-loading-card {
    position: relative;
    width: min(420px, calc(100vw - 40px));
    padding: 30px 34px 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 30px 90px rgba(2, 20, 31, .34);
    text-align: center;
    transform: translateY(10px) scale(.98);
    transition: transform .22s ease;
}

.myrent-login-loading-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2196f3, #16a7a0, #2196f3);
    background-size: 200% 100%;
    animation: myrent-login-header-flow 1.6s linear infinite;
}

.myrent-login-loading.is-visible .myrent-login-loading-card {
    transform: translateY(0) scale(1);
}

.myrent-login-loading-brand {
    display: flex;
    justify-content: center;
    min-height: 34px;
    margin-bottom: 10px;
}

.myrent-login-loading-brand img {
    display: block;
    width: auto;
    max-width: 150px;
    height: 34px;
    object-fit: contain;
}

.myrent-login-loading-visual {
    width: 124px;
    height: 124px;
    margin: 2px auto 10px;
}

.myrent-login-loading-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.myrent-login-svg-track,
.myrent-login-svg-progress {
    fill: none;
    stroke-width: 5;
}

.myrent-login-svg-track {
    stroke: #e6eef2;
}

.myrent-login-svg-progress {
    stroke: #168793;
    stroke-linecap: round;
    stroke-dasharray: 346;
    stroke-dashoffset: 250;
    transform: rotate(-90deg);
    transform-origin: 80px 80px;
    animation: myrent-login-progress 1.75s ease-in-out infinite;
}

.myrent-login-svg-building {
    fill: rgba(22, 135, 147, .08);
    stroke: #168793;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: myrent-login-building-pulse 1.8s ease-in-out infinite;
}

.myrent-login-svg-check {
    fill: #fff;
    stroke: #2e9f69;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-origin: 118px 48px;
    animation: myrent-login-check 1.8s ease-in-out infinite;
}

.myrent-login-loading-title {
    margin-top: 3px;
    margin-bottom: 7px;
    color: #17313f;
    font-size: 19px;
    font-weight: 650;
    line-height: 1.35;
}

.myrent-login-loading-text {
    min-height: 42px;
    max-width: 330px;
    margin: 0 auto;
    color: #72818a;
    font-size: 13px;
    line-height: 1.55;
}

.myrent-login-loading-dots::after {
    content: "";
    display: inline-block;
    width: 1.25em;
    text-align: left;
    animation: myrent-login-dots 1.35s steps(4, end) infinite;
}

.myrent-login-loading-steps {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.myrent-login-loading-steps span {
    width: 22px;
    height: 4px;
    border-radius: 4px;
    background: #dce5e9;
    transition: background .25s ease, transform .25s ease;
}

.myrent-login-loading-steps span.is-active {
    background: #168793;
    transform: scaleX(1.08);
}

.myrent-login-loading-secure {
    margin-top: 18px;
    color: #94a1a8;
    font-size: 11px;
    letter-spacing: .02em;
}

.myrent-login-loading-secure i {
    margin-right: 5px;
    color: #2e9f69;
}

.myrent-login-button-label {
    display: inline-block;
}

@keyframes myrent-login-progress {
    0% {
        stroke-dashoffset: 300;
        transform: rotate(-90deg);
    }

    55% {
        stroke-dashoffset: 70;
        transform: rotate(75deg);
    }

    100% {
        stroke-dashoffset: 300;
        transform: rotate(270deg);
    }
}

@keyframes myrent-login-building-pulse {
    0%, 100% {
        opacity: .72;
        transform: translateY(1px);
        transform-origin: 80px 80px;
    }

    50% {
        opacity: 1;
        transform: translateY(-2px);
        transform-origin: 80px 80px;
    }
}

@keyframes myrent-login-check {
    0%, 30% {
        opacity: 0;
        transform: scale(.75);
    }

    45%, 82% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(.85);
    }
}

@keyframes myrent-login-header-flow {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 200% 0;
    }
}

@keyframes myrent-login-dots {
    0% { content: ""; }
    25% { content: "."; }
    50% { content: ".."; }
    75%, 100% { content: "..."; }
}

@media (max-width: 575.98px) {
    .myrent-login-loading {
        padding: 16px;
    }

    .myrent-login-loading-card {
        width: 100%;
        padding: 26px 22px 22px;
        border-radius: 14px;
    }

    .myrent-login-loading-visual {
        width: 110px;
        height: 110px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .myrent-login-loading,
    .myrent-login-loading-card,
    .myrent-login-svg-progress,
    .myrent-login-svg-building,
    .myrent-login-svg-check,
    .myrent-login-loading-card::before,
    .myrent-login-loading-dots::after {
        transition: none;
        animation-duration: 3s;
    }
}
