/* Mortgage Calculator */
.llmc-wrapper {
 max-width: 100%;
  width: 600px;
    
   
    border-radius: 30px 0 0 30px;
    font-family: "mundial", sans-serif;
}

.llmc-field {
  margin-bottom: 12px;
}

.llmc-field label {
  display: block;
  margin-bottom: 5px;
}

.llmc-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.llmc-input-prefix,
.llmc-input-suffix {
  position: absolute;
  top: 10px;
  font-size: 14px;
  color: #333;
}

.llmc-input-prefix {
  left: 15px;
}

.llmc-input-suffix {
  right: 20px;
}

.llmc-input {
  width: 100%;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 16px;
  box-sizing: border-box;
	color: #121212;
  line-height: 130%;
}

.llmc-wrapper label{
	color: #32383b;
}

.llmc-input.llmc-prefix {
  padding-left: 20px;
}

.llmc-input.llmc-suffix {
  padding-right: 40px;
}

.llmc-result {
  margin-top: 40px;
    font-weight: 500;
    display: flex
;
    flex-direction: column;
    gap: 20px;
    font-size: 25px;
    font-family: 'Playfair Display', sans-serif;
}

.llmc-result-value {
  font-weight: bold;
  font-size: 35px;
	font-family: 'Mundial', sans-serif;
	color: #c8b398;
}



/* Cost Savings Slider */
.llcs-wrapper {
    
	display: flex;
	gap: 15px;
	flex-direction: column;

}

.llcs-slider-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.llcs-slider {
    appearance: none;
    height: 2px;
    background: #111;
    outline: none;
}

.llcs-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: #dec3a1;
    border-radius: 50%;
    cursor: pointer;
	margin-top: -8px;
	margin-bottom: -8px;
}

.llcs-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #dec3a1;
    border-radius: 50%;
    cursor: pointer;
}

.llcs-button {
    width: 25px;
    height: 25px;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
	background: black;
    border-radius: 50%;
    aspect-ratio: 1;
    color: #fff;
    text-align: center;
}



.llcs-label {
    margin-bottom: 8px;
}
.llcs-savings{
	font-size: 50px;
	color: #dec3a1
}
