/* Mortgage Page */
.quote {
    min-height: calc(100vh - 60px - 304px - 48px); /* parent_height - header_height - footer_height */
}

.quote__navigator {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.quote__section {
    display: none;
}

.quote__section_active {
    display: block;
}

.quote__title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
    font-family: Lato;
}

.quote__subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.quote__navigator__btn {
    cursor: pointer;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eb5757;
    color: white;
    width: 30px;
    height: 30px;
    outline: none !important;
    transition: background-color .3s ease-in-out;
}

.quote__navigator__btn.hide {
    opacity: 0;
    pointer-events: none;
}

.quote__navigator__btn:hover {
    background-color: #369;
}

.quote__body {
    text-align: center;
}

.quote__body .slider-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.quote__body__item:not(:last-child) {
    margin-bottom: 20px;
}

.quote-btn_new {
    background-color: #369;
    min-width: 300px;
    box-shadow: 3px 5px 10px rgba(51, 102, 153, 0.27);
    border-radius: 30px;
    font-family: Heebo;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px 20px;
    transition: background-color 0.3s ease-in-out;
    outline: none !important;
}

.quote-btn_new:hover {
    background-color: #eb5757;
}

@media screen and (max-width: 768px) {
    .quote-btn_new {
        font-size: 16px;
        line-height: 20px;
        max-width: 130px;
        min-width: 130px;
        height: 50px;
        margin-top: 20px;
    }
}

.quote-btn {
    max-width: 180px;
    min-width: 180px;
    width: 100%;
    height: 60px;
    background: #369;
    box-shadow: 3px 5px 10px rgba(51, 102, 153, 0.27);
    border-radius: 30px;
    font-family: Heebo;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
    outline: 0;
}

.quote-btn:hover {
    background: #eb5757;
}

@media screen and (max-width: 768px) {
    .quote-btn {
        font-size: 16px;
        line-height: 20px;
        max-width: 130px;
        min-width: 130px;
        height: 50px;
        margin-top: 20px;
    }
}

.quote-input_text, .quote-select {
    position: relative;
    display: inline-block;
}

.quote-input_text label,
.quote-select label {
    position: absolute;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: rgb(109, 109, 109);
    transition: all .3s ease-in-out;
}

.quote-input_text label.active,
.quote-select label.active {
    top: 7px;
    left: 15px;
    transform: unset;
    font-size: 14px;
}

.quote-input_text input {
    border: 1px solid #d3d3d3;
    font-size: 18px;
    text-align: center;
    background: transparent;
    padding: 20px 15px;
    border-radius: 10px;
    outline: none !important;
    transition: border-color .3s ease-in-out;
}

.quote-input_text input:hover,
.quote-input_text input:focus {
    border-color: #696e7b;
}
