.lz-calculator-container {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0 0 0 / 13%);
    display: block;
    padding: 20px;
}
.lz-row {
    margin-bottom: 15px;
    width: 100%;
}
.lz-row.cols {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}
.lz-row.cols .lz-col-6 {
    padding: 15px;
    flex-basis: 50%;
    width: 50%;
}
.lz-row.cols .lz-col-4 {
    padding: 15px;
    flex-basis: 33.3%;
    width: 33.3%;
}
.lz-results-col {
    border-left: 1px solid #c6d0d3;
    flex: 1;
}
.lz-title-section {
    color: #000;
    font-size: 22px;
    font-weight: bold;
    font-family: Poppins, sans-serif;
    margin-bottom: 5px;
    padding: 0 15px;
}
.lz-title-section.orange {
    color: #CE6928;
}
.lz-separator {
    background-color:#c6d0d3;
    height: 1px;
    margin: 15px 0;
    width: 100%;
}
.lz-separator-section {
    background-color: #FAFAFA;
    height: 5px;
    margin: 20px 0;
    width: 100%;
}
.lz-row label {
    color: #555555;
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}
.lz-featured-input label {
    color: #000000;
    font-size: 24px;
    font-weight: bold;
}
.lz-featured-input.label-small label {
    font-size: 16px;
    font-weight: normal;
}
.lz-featured-input.orange label {
    color: #CE6928;
}
.lz-row input {
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    box-shadow: none;
    color: #000000;
    font-size: 20px;
    height: auto;
    line-height: 100%;
    max-width: 400px;
    padding: 5px 10px;
}
.lz-featured-input input {
    border: 0;
    border-bottom: 1px solid #000000;
    border-radius: 0;
    font-size: 20px;
    font-weight: normal;
    padding: 10px;
}
.lz-featured-input.label-small input {
    border-color: #CCCCCC;
    font-size: 18px;
    width: 100%;
    max-width: 100%;
}
.lz-row input:focus {
    border-color: #1987C9;
}
input.lz-calculate-button {
    background-color: #1987C9;
    border: 0;
    color: #FFFFFF;
    cursor: pointer;
    font-weight: normal;
    border-radius: 25px;
    font-size: 18px;
    padding: 15px 25px;
    transition: all 0.2s ease-in-out;
    margin-top: 15px;
}
input.lz-calculate-button:hover {
    background-color: #f1f1f1;
    color: #444;
}
.lz-row label.lz-label-results {
    color: #333333;
    font-size: 16px;
    max-width: 80%;
}
.lz-span-results {
    color: #333333;
    margin-left: auto;
}
.lz-row label.lz-label-results.featured, .lz-span-results.featured  {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
}
.lz-info {
    font-size: 14px;
}
.lz-row.results {
    display: flex;
    flex-wrap: wrap;
}
.lz-row.results .lz-col-6 {
    display: flex;
    padding: 0 15px;
}
.loading-calc {
    display: none;
    margin-left: 10px;
    margin-top: 30px;
}
.loading-cities {
    display: none;
    margin-left: 10px;
}
.calculate-monthly-payment {
    display: none;
}
.calculate-monthly-payment a {
    color: #1987C9;
    font-weight: bold;
    font-size: 14px;
    text-decoration: underline;
}
.lz-notice {
    font-size: 14px;
    padding: 10px;
}
.lz-tooltip {
  color: #1987C9;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.lz-tooltip i {
    margin-right: 5px;
}
.lz-tooltip.text-normal-color {
    color: revert;
    font-weight: normal;
}
.lz-tooltip.text-normal-color i {
    color: #1987C9;
}
.lz-tooltip .lz-tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #1987C9;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 100%;
  margin-right: -20px;
  font-size: 14px;
}
.lz-tooltip:hover .lz-tooltiptext {
  visibility: visible;
  z-index: 99999;
}
.lz-row.less-space, .lz-row.less-space .lz-row {
    margin: 0;
}
.lz-row select {
    border: 0;
    border-bottom: 1px solid #000000;
    border-radius: 0;
    font-weight: normal;
    padding: 10px;
    width:  100%;
}
.lz-row select.loading {
    display: inline-block;
    width: calc( 100% - 30px );
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
}
.lz-row select:focus {
    outline: 0;
}
.first-mortgage, .second-mortgage { 
    display: none;
}
@media screen and (max-width: 768px) {
    .lz-row.cols .lz-col-6, .lz-row.cols .lz-col-4  {
        flex-basis: 100%;
        width: 100%;
    }
    .lz-results-col {
        border-left: 0;
        border-top: 1px solid #c6d0d3;
    }
}