.title-cuota {
  color: rgba(115, 119, 127, 1);
  padding-top: 40px;
  font-weight: Bold;
  font-size: 20px;
  opacity: 1;
}

.cuota {
  color: black;
  font-size: 42px;
  opacity: 1;
}

.subtitle {
  width: 100%;
  color: rgba(20, 40, 80, 1);
  font-weight: Bold;
  font-size: 20px;
  opacity: 1;
  text-align: center;
}

.calc-amount {
  width: 100%;
  color: #000;
  font-weight: normal;
  font-size: 32px;
  text-align: center;
}

.categories label {
  border: 1px solid #000;
  font-size: 17px;
  font-style: normal;
  font-weight: normal;
}

.calculator .button {
  font-size: 17px;
}

/*Layout*/

.calculator {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #EDEDED;
  opacity: 1;
  margin-bottom: 0px !important;
  font-family: 'Georgia', serif; 
}

.output {
  flex: 50%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #EDEDED;
  border-right: 1px solid black;
  font-family: 'Georgia', serif;
  text-align: center !important;
  z-index: 1;
}

.input {
  flex: 50%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 0;
}

.duracion,
.costo {
  padding-top: 10%;
}

/*Radio buttons for categorios and options*/
.categories {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.categories label {
  padding: 8px;
  margin: 1px;
  margin-left: 2%;
  margin-right: 2%;
  cursor: pointer;
  -webkit-appearance: button;
  /* WebKit */
  -moz-appearance: button;
  /* Mozilla */
  -o-appearance: button;
  /* Opera */
  -ms-appearance: button;
  /* Internet Explorer */
  appearance: button;
  /* CSS3 */
  line-height: 24px;
  text-align: center;
  color: #73777f, 100%;
  border: 1px solid #fafafa;
  box-sizing: border-box;
  padding: 8px;
  margin-left: 2%;
  margin-right: 2%;
}

input[name="categories"],
input[name="years"],
input[name="currency"] {
  display: none;
}

input[type="radio"]:checked + label {
  background: #f5c041;
  border: 1px solid black;
}

.categories label:hover {
  border: solid 1px #f5c041;
}
input[type="radio"]
/*Slider custom look*/
input[type="range"].slider {
  background: rgba(30, 114, 179, 0.10000000149011612);
  border: none;
  border-radius: 56px;
  padding: 0 0;
  max-width: 600px;
  width: 80%;
  height: 4px;
}

.slider {
  -webkit-appearance: none;
  max-width: 600px;
  width: 80%;
  background: #000;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  border-radius: 56px;
  height: 2px;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #000;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
}
.slider::-moz-range-thumb {
  background: #000;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
}


.form-footer {
	background: #000;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 14px;
}

/*Responsive*/
@media only screen and (max-device-width: 768px),
  only screen and (max-width: 768px) {
  .calculator {
    flex-direction: column;
  }
}