.elementor-19650 .elementor-element.elementor-element-aef2d77{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--gap:0px 0px;--background-transition:0.3s;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-19650 .elementor-element.elementor-element-5876faeb > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for shortcode, class: .elementor-element-5876faeb *//* Calculator styling matching loan form design */
.elementor-19650 .elementor-element.elementor-element-5876faeb .rangeslider__handle {
  display: block !important;
}
.elementor-19650 .elementor-element.elementor-element-5876faeb .rangeslider__fill {
  display: block !important;
}

.card_calculator {
  padding: 0;
}
.stepCal {
  text-align: right;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  -moz-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #010d52 0%, #00137d 100%);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out;
  width: 100%;
  max-width: 100vw;
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Field container */
.fld_con {
  display: block !important;
  position: relative;
}

/* Flex layout for label and result */
.flexCal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Label styling */
.lab {
  color: #ffffff !important;
  margin: 0;
}

/* Result input styling */
.result {
  font-size: 24px;
  font-weight: 700;
  color: #00137d !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px !important;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.88) 100%
  );
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: auto;
  min-width: 140px;
  letter-spacing: 0.5px;
}

.result:focus {
  outline: none;
  border-color: #0227ff;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  box-shadow: 0 0 0 4px rgba(2, 39, 255, 0.2), 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Range slider styling */





.rangeslider__fill {
  background: linear-gradient(135deg, #0227ff 0%, #001ece 100%);
  border-radius: 30px;
}

/* Result display */
.result_cal1 {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.88) 100%
  );
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.result_cal1 > div:first-child {
  color: #1a202c !important;
  font-size: 18px;
  font-weight: 600;
}

.resultDivCal1 {
  color: #00137d !important;
  text-align: center;
  color: white !important;

  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  padding: 8px 0;
}

/* Button container */
.btnOria {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Silokin button */
.silokin {
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(2, 39, 255, 0.2);
  border-radius: 50px;
  cursor: pointer;
  padding: 16px 32px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid rgba(2, 39, 255, 0.3);
  color: #0227ff;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.silokin::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(2, 39, 255, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.silokin:hover::before {
  width: 300px;
  height: 300px;
}

.silokin:hover {
  border: 2px solid #0227ff;
  background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
  color: #0227ff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(2, 39, 255, 0.35),
    0 0 30px rgba(2, 39, 255, 0.15);
}

.silokin:active {
  transform: translateY(-2px) scale(0.98);
}

/* Silokin content container */
#conSilokinCallMatra {
  margin-top: 20px;
  animation: fadeIn 0.5s ease-out;
}

/* Responsive design */
@media (max-width: 768px) {
  .calculator {
    padding: 30px 16px;
    margin: 20px 0;
  }

  .flexCal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .lab {
    font-size: 16px;
  }

  .result {
    font-size: 18px;
    padding: 6px 16px !important;
    width: 100%;
    max-width: 200px;
  }

  .resultDivCal1 {
    font-size: 2.5em;
  }

  .result_cal1 > div:first-child {
    font-size: 16px;
  }

  .silokin {
    padding: 14px 24px;
    font-size: 16px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .calculator {
    padding: 25px 12px;
  }

  .fld_con {
    padding: 12px 5px;
  }

  .resultDivCal1 {
    font-size: 2em;
  }

  .lab {
    font-size: 15px;
  }

  .result {
    font-size: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-aef2d77 */.cardStep,
#eligibility_check{
    max-width: 100vw !important;
    width: 100% !important;
    overflow: visible;
}


@media (max-width: 750px) {
  .valueTop {
      max-width: 90%;
    font-size: 1.75rem !important;
    white-space: nowrap !important;
  }

}/* End custom CSS */