.inputy h4 {
  font-size: 23px;
  color: #141414;
  font-weight: 400;
}
.inputy p {
  font-size: 14px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .inputy p {
    line-height: 16px;
  }
}

#container {
  display: flex;
  width: 100%;
  gap: 42px;
  padding: 64px;
}
@media (max-width: 767px) {
  #container {
    flex-direction: column;
    padding: 32px 16px;
  }
}
#container .inputy {
  width: 70%;
  letter-spacing: 1px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 767px) {
  #container .inputy {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 24px;
  }
}
#container .calc {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  #container .calc {
    width: 100% !important;
  }
}
#container .calc .wynik {
  width: auto;
  text-align: center;
  padding: 20px;
  background-color: #141414;
}
@media (max-width: 1200px) {
  #container .calc .wynik {
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  #container .calc .wynik {
    padding: 20px 20px 0px 20px;
  }
}
#container .calc .info {
  color: #979797;
  background-color: #141414;
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  #container .calc .info {
    padding-top: 24px;
    font-size: 12px;
  }
}
#container .calc .symbols {
  padding: 0 20px 10px 20px;
  background-color: #141414;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #979797;
}
#container .calc .title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  #container .calc .title {
    font-size: 22px;
    margin-bottom: 6px;
  }
}
#container .calc .result {
  color: white;
  font-size: 28px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  padding: 0px 20px 10px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  #container .calc .result {
    font-size: 26px;
    padding: 2px 5px;
  }
}
@media (max-width: 767px) {
  #container .calc .result {
    padding: 4px 10px;
    min-width: 250px;
  }
}

.row {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
}
.row .info__left,
.row .info__right {
  color: #B6B8B9;
}
@media (max-width: 767px) {
  .row {
    flex-direction: column;
  }
  .row:nth-last-of-type(1) #wklad {
    margin-top: 0;
  }
}
.row .slidecontainer {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .row .slidecontainer {
    width: 100% !important;
  }
}
.row .slidecontainer .info__left {
  font-size: 12px;
  position: absolute;
  left: 0px;
  top: 25px;
}
.row .slidecontainer .info__right {
  font-size: 12px;
  position: absolute;
  right: 0px;
  top: 25px;
}
.row input[type=number] {
  width: 100% !important;
  border-color: #B6B8B9;
  height: 36px;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .row input[type=number] {
    margin-top: 10px;
    width: 100% !important;
  }
}
.row input::-webkit-outer-spin-button, .row input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.row input:not(#wklad)[type=number] {
  -moz-appearance: textfield;
}
.row .info {
  position: absolute;
  z-index: 999;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 15px;
}
@media (max-width: 767px) {
  .row .info {
    top: 65%;
  }
}

.calculate-button {
  background-color: #b8384c;
  width: 241px;
  height: 47px;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid #b8384c;
  color: white;
  transition: all 0.3s ease;
  margin-top: auto;
  text-align: center;
  grid-column: span 2;
  margin-left: auto;
}
.calculate-button:hover {
  background-color: #a45864;
  border-color: #a45864;
}
@media (max-width: 767px) {
  .calculate-button {
    margin-left: 0px;
    padding: 8px 10px;
    text-align: center;
  }
}

.slider__kwota,
.slider__okres,
.slider__procent,
.slider__wklad {
  border-radius: 2px;
  height: 6px !important;
  outline: none;
  transition: background 450ms ease-in;
  cursor: pointer;
  -webkit-appearance: none;
}

.slider__kwota {
  background: linear-gradient(to right, #b8384c 0%, #b8384c 0%, #D3DADC 0%, #D3DADC 100%);
}

.slider__okres {
  background: linear-gradient(to right, #b8384c 0%, #b8384c 0%, #D3DADC 0%, #D3DADC 100%);
}

.slider__procent {
  background: linear-gradient(to right, #b8384c 0%, #b8384c 33%, #D3DADC 33%, #D3DADC 100%);
}

.slider__wklad {
  background: linear-gradient(to right, #b8384c 0%, #b8384c 1.25%, #D3DADC 1.25%, #D3DADC 100%);
}

.slider__kwota::-webkit-slider-thumb,
.slider__okres::-webkit-slider-thumb,
.slider__procent::-webkit-slider-thumb,
.slider__wklad::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-appearance: none;
  cursor: pointer;
  background: #b8384c;
}

input#wklad::-webkit-inner-spin-button,
input#wklad::-webkit-outer-spin-button {
  opacity: 1 !important;
  -webkit-appearance: inner-spin-button !important;
}

.input_value_wrapper {
  position: relative;
  width: 100%;
}/*# sourceMappingURL=credit-calculator.css.map */