@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="range"] {
    overflow: hidden;
    height: 20px;
    -webkit-appearance: none;
    background-color: #ececec;
  }

  input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    transition: box-shadow 0.2s ease-in-out;
  }

  input[type="range"]::-webkit-slider-thumb {
    width: 40px;
    -webkit-appearance: none;
    height: 40px;
    cursor: pointer;
    background: #fff;
    box-shadow:
      -340px 0 0 320px #1b63ed,
      inset 0 0 0 40px #1b63ed;
    border-radius: 50%;
    transition: box-shadow 0.2s ease-in-out;
    position: relative;
  }
}

/* FOOTER */
.bg-gradient-black {
  background-image: radial-gradient(
    45.81% 111.02% at 57.47% 14.48%,
    #383c46 0,
    #24282f 100%
  );
}

/* FOR KREDIT LIMITI SECTION BUTTON */
.check-active {
    background-color: #1b63ed !important;
    color: #ffffff !important;
}