.auth_bg{
    background-image: url('/app-assets/images/backgrounds/bg-image.jpg');
            background-size: cover;
            min-height: 100vh;
}


/* loader */
.loader.active:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #0e2561;
    border-top: 2px solid #0d236054;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 99;
    top: 35%;
    left: 48%;
}
.loader.active:after {
    content: '';
    position: absolute;
    width: 90%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff7a;
    border-radius: 20px;
    cursor: pointer;
}

/* .spinner {
    width: 15px;
    height: 15px;
    border: 2px solid #0e2561;
    border-top: 2px solid #0d236054;
    border-radius: 50%;
    animation: spin 1s linear infinite;
} */
span.btn__text {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }


/* loader */

::placeholder {
    color: #fff  !important;
    font-size: 12px !important;
  }
  .step .form-control, .custom-select, .custom-select-lg, .bg-check, .forgot input{
        border: 1px solid #D5D4DC!important;
    border-radius: 12px !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.03) !important;
    }
    .tenant-registration__form ::placeholder{
        color: #222 !important;
    }
    .tenant-registration__form .form-control{
        color: #222 !important;
    }
.tenant-update__form ::placeholder{
        color: #222 !important;
    }
    .tenant-update__form .form-control{
        color: #222 !important;
    }
  .f-bold {
    font-weight: 700;
  }
  .f-semibold {
    font-weight: 600;
  }
  .f-40 {
    font-size: clamp(28px,3.1vw,40px)
}

.f-36 {
    font-size: clamp(28px,2.8vw,36px)
}

.f-32 {
    font-size: clamp(24px,2.6vw,32px)
}

.f-30 {
    font-size: clamp(22px,2.5vw,30px)
}

.f-28 {
    font-size: clamp(24px,2.4vw,28px)
}

.f-26 {
    font-size: clamp(22px,2.3vw,26px)
}

.f-24 {
    font-size: clamp(20px,2.1vw,24px)
}

.f-22 {
    font-size: clamp(18px,2vw,22px)
}

.f-20 {
    font-size: clamp(16px,1.8vw,20px)
}

.f-18 {
    font-size: clamp(15px,1.6vw,18px)!important
}
  .f-14 {
    font-size: 14px;
  }

  .column-gap {
    column-gap: 15px;
  }
  .radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    grid-gap: 15px;
  }
  .accent-btn, .loginBtn{
  background: transparent linear-gradient(270deg, #2048B3 0%, #2048B2 0%, #213C86 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px !important;
    color: #fff !important;
  }
  .auth_bg.forgot label {
    color: white !important;
}
  button.btn.next_btn {
    background: white;
    color: #1A3379;
}
.pswd_icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    padding: 0 15px;
}
.step input[type="time"]::-webkit-calendar-picker-indicator{
    filter: invert(100%);
  }
button.btn.next_btn:hover {
    background: #1A3379;
    color: white;
}
  button.btn.back_btn {
    background-color: white;
    color: #1A3379;
    border: 1px solid white !important;
}
.not_active .pla_btn button {
    color: #1A3379;
    background-color: #EDF1FD;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.device_type_img{
    height: 50px;
}
input.work_type {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    opacity: 0;
    top: 0;
    color: #1A3379;
}
i.work_type {
    position: absolute;
    top: 0;
    right: 0;
    padding: 14px;
    display: none;
}
.card.position-relative{
    border: 1px solid transparent;
}
.card.active {
    background: #1A3379;
    border: 1px solid #ffffff80;
    color: white !important;
}
.card.active span{
    color: white !important;
}
.invert_icon.active img{
    filter: invert(1);
}
.active i.work_type{
    display: block;
}
button.btn.back_btn:hover {
    color: white;
    background-color: transparent;
}
  .step {
    transition: all;
    animation: StepAnimation 0.4s ease-in-out;
    animation-fill-mode: forwards;
  }
  .step-image {
    transition: all 0s ease 0s;
    opacity: 0;
    animation: 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0.4s 1 normal forwards running
      image-animation;
  }

  @keyframes StepAnimation {
    0% {
      transform: translateX(20px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
    }
  }
  @keyframes image-animation {
    0% {
      transform: translateX(16px);
      opacity: 0;
    }

    100% {
      transform: translateX(0px);
      opacity: 1;
    }
  }
  /* .step.active {
    display: block;
  } */
  .btn-padding {
    padding: 5px 5px;
  }
  .flex-01 {
    width: 10%;
    padding: 5px;
  }
  .flex-02 {
    width: 100%;
  }
  .inner-row {
    /* min-height: 85vh; */
    padding-block: 70px;
    align-items: center;
    display: flex;
  }
  .culpnV {
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
    color: rgb(153, 172, 194);
    margin: 32px auto;
  }
  .culpnV::before,
  .culpnV::after {
    content: "";
    border-top: 1px solid rgb(203, 214, 226);
    margin: 0px 15px 0px 0px;
    flex: 1 0 20px;
  }

  .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
  }
  .progress-container {
    width: 100%;
    background-color: transparent;
    height: 5px;
    display: block;
  }
  .progress-bar {
    background-color: #fff;
    width: 0%;
    display: block;
    height: inherit;
  }

  .button {
    width: 100%;
    height: 100px;
    position: relative;
    border: 1px solid #eee;
    border-radius: 4px;
  }
  .addBtn {
    top: 50%;
    transform: translateY(-50%);
    left: 54rem;
    position: relative;
    bottom: 22px;
  }
  .remove-space{
    padding-left: 1rem !important;
  }
  .select_type {
    height: 48px;
    color: white;
    padding: 10px;
}
.select_type option{
    background-color: #1A3379;
}
  .removeBtn {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
  }
  .button label,
  .button input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
  }

  .button input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
  }

  .button input[type="radio"]:checked + label {
    background: #2e5fe3c7;
    border-radius: 4px;
    color: #fff;
  }

  .button label {
    cursor: pointer;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
  }


.circle-bx{
flex: 1;
  text-align: center;
  position: relative;
}
.circle-bx span{
color: #fff;
}

.circle-bx:nth-child(odd)::before {
   position: absolute;
   content: '';
   width: 35%;
   height: 1px;
   background-color: #fff;
   top: 18px;
   left: 0px;
}
.circle-bx:nth-child(odd)::after {
  position: absolute;
  content: '';
  width: 35%;
  height: 1px;
  background-color: #fff;
  top: 18px;
  right: 0px;
}
.timeline .circle-bx:nth-child(even)::before{
position: absolute;
  content: '';
  width: 35%;
  height: 1px;
  background-color: #fff;
  top: 39px;
  left: 0px;
}
.timeline .circle-bx:nth-child(even)::after {
  position: absolute;
  content: '';
  width: 35%;
  height: 1px;
  background-color: #fff;
  top: 39px;
  right: 0px;
}
.mt-04{
margin-top: 0.4rem;
}

.timeline .circle-bx .outline-circle:nth-child(even){
margin-top: -10px;
}
.circle-bx:first-child::before {
 height: 0px !important;
}
.circle-bx:last-child::after {
  height: 0px !important;
}
.timeline .circle-bx:nth-child(even) {
margin-top: -21px;
}
.outline-circle{
display: flex;
justify-content: center;
align-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 50%;

  margin: 0 auto;
}
.outline-circle  .circle-dot{
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;

}
.outline-circle.isActive{
background: #fff !important;
}

 .outline-circle.isActive .circle-dot{
background: #5B83ED !important;

}

.outline-circle.isActive.isCompleted .circle-dot {

  background-image: url('/app-assets/images/icons/tick.png') !important;
  width: 20px;
  height: 20px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  margin-top: 3px;
  background-color: #fff !important;
}
    .w-dynamic {
        max-width: 1060px;
        width: 100%;
    }


  @media (min-width: 1024px) {
    .grid-02 {
      width: 100%;
      display: grid;
      grid-template-columns: 860px 1fr;
      align-items: center;
      grid-column-gap: 15px;
    }
    .grid-2{
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 15px;
    }

  }

  @media (max-width: 767px) {
    .radio-grid {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }

@media(max-width: 1140px){
.w-dynamic {
    width: 100% !important;
  }
}
