﻿/* 
  ##Screen = General styles for any device
*/
.price-input {
    display: flex;
    align-items: center;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 0.4rem 1rem;
}

    .price-input span {
        font-size: 24px;
    }

    .price-input input {
        border: none;
        border-radius: 0;
        margin: 0 !important;
        padding: 0 !important;
    }

        .price-input input:focus {
            border: none;
            border-radius: 0;
            margin: 0 !important;
            padding: 0 !important;
        }


#financing-main-description h3 {
    font-family: FordAntennaLight;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.05em;
    color: #000000;
}

#financing-post .block .description h2 {
    font-family: FordAntennaLight;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.05em;
    color: #000000;
}

#financing-post .block .description .mediumLightParagraph {
    font-family: FordAntennaLight;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.05em;
    color: #000000;
}

#financing-post .block .image {
    display: flex;
    align-items: center;
}

    #financing-post .block .image img {
        width: 100%;
        object-fit: cover;
        height: auto;
    }

#calculator #calculator-title h2 {
    text-align: center;
    font-family: FordAntennaCondBold;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 41px;
    letter-spacing: 0.05em;
    color: #1F3750;
}

#calculator-form {
    margin: 3rem 0rem 1rem 0rem;
}

.btn-calculator {
    width: 100%;
    background-color: transparent;
    border: 0rem;
    border-bottom: 2px solid #012E40;
    font-family: FordAntennaLight;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #012E40;
    padding: 1rem 0rem 0.5rem 0rem;
}

    .btn-calculator:hover {
        width: 100%;
        border: 0rem;
        border-bottom: 2px solid #012E40;
        font-family: FordAntennaLight;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 33px;
        text-align: center;
        letter-spacing: 0.05em;
        color: #414141;
    }

    .btn-calculator.active {
        background-color: #2D96CD;
        border-bottom: 3px solid #346BD8;
        color: white;
    }

#generate-payment {
    padding: 2rem 0rem;
}

    #generate-payment .form-group {
        padding: 0.5rem 0.5rem;
    }

        #generate-payment .form-group label {
            font-family: FordAntennaLight;
            font-style: normal;
            font-weight: 400;
            font-size: 24px;
            line-height: 14px;
            color: #1F3750;
            margin-bottom: 1rem;
        }

        #generate-payment .form-group .form-control {
            font-family: FordAntennaLight;
            font-style: normal;
            font-weight: 300;
            font-size: 24px;
            color: #333333;
            padding: 0.5rem 1.5rem;
            margin: 1rem 0rem;
        }

#price {
    background: #fff;
    border-radius: 4px;
}

#generate-payment .form-group .form-select {
    font-family: FordAntennaLight;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #333333;
    padding: 0.5rem 1.5rem;
    margin: 1rem 0rem;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 18px;
    background: #CEE6F1;
    outline: none;
    opacity: 0.9;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
    border-radius: 1px;
    margin: 1rem 0rem;
    display: block;
    transition: all 2s ease-in-out;
    -webkit-transition: all 2s ease-in-out; /** Chrome & Safari **/
    -moz-transition: all 2s ease-in-out; /** Firefox **/
    -o-transition: all 2s ease-in-out; /** Opera **/
}

    .slider:hover {
        opacity: 1;
    }

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 30px;
        height: 30px;
        background: #102B4E;
        cursor: pointer;
        border-radius: 3px;
        transition: all 200ms ease-in-out;
    }

    .slider::-moz-range-thumb {
        transition: all 200ms ease-in-out;
    }

    .slider:active::-webkit-slider-thumb {
        transform: scale(1.3);
    }

    .slider:active::-moz-range-thumb {
        transform: scale(1.3);
    }

    .slider::-moz-range-thumb {
        width: 25px;
        height: 25px;
        background: #102B4E;
        cursor: pointer;
        border-radius: 50%;
    }

#values-calculated {
    padding: 4rem 0rem;
}

.calculator-values {
    margin: 0.5rem 0rem;
    font-family: FordAntennaLight;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 25px;
    letter-spacing: 0.05em;
    color: #1F3750;
}

#values-calculated h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: #1F3750;
    font-weight: bold;
}

.calculator-results {
    text-align: right;
}

#calculator-note p {
    font-family: FordAntennaLight;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.05em;
    color: #000000;
}

.pt-5 {
    padding-top: 0rem !important;
}

.row-button {
    position: relative;
}

.leasing-contact-button {
    background: #1F3750;
    color: white;
    cursor: pointer;
    width: 100%;
    padding: 1rem;
    border-radius: 3px;
    border: 0;
    font-family: FordAntennaLight;
    font-size: 22px;
}

    .leasing-contact-button:hover {
        background: #012E40;
        transition: all 0.2s ease;
    }

.calculator-line {
    margin-bottom: 3.2rem;
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
    /* CSS */
    article {
        padding: 0rem 2rem;
    }

    #financing-main-description {
        margin: 2.5rem 0rem;
        font-size: 2rem;
    }

    #financing-post {
        padding: 0rem 0rem;
    }

        #financing-post .block .description {
            display: flex;
            flex-direction: column;
            align-self: center;
        }

    #calculator-note {
        padding-bottom: 2rem;
    }

    #vehicle-details-container {
        padding: 0rem 5rem;
    }
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {

    /* CSS */

    article {
        padding: 0rem 2rem;
    }

    main {
        padding: 0rem 1.5rem;
    }

    #financing-main-description {
        margin: 2.5rem 0rem;
        padding: 0rem 1.5rem;
    }

    #financing-post {
        padding: 0rem 1.5rem;
    }

        #financing-post .block .description {
            display: flex;
            flex-direction: column;
            align-self: center;
        }

    #calculator {
        margin: 4rem 0rem;
    }

    #vehicle-details-container {
        padding: 0rem 3rem;
    }
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {

    /* CSS */
    #financing-main-description {
        padding: 2rem 1.5rem 0rem 1.5rem;
    }

    #values-calculated {
        padding: 1rem 1.5rem;
    }

    .block {
        padding: 2rem 1.5rem;
    }

    .block-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .btn-calculator {
        font-size: 14px;
    }

        .btn-calculator:hover {
            font-size: 16px;
        }

    #calculator-note {
        padding: 1.5rem;
    }

    #vehicle-details-container {
        padding: 0rem 2rem;
    }
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    /* CSS */
    #financing-main-description {
        padding: 2rem 1.5rem 0rem 1.5rem;
    }

    #values-calculated {
        padding: 1rem 1.5rem;
    }

    .block.row {
        display: flex;
        flex-direction: column-reverse;
        padding: 2rem 1.5rem;
    }

    .btn-calculator {
        font-size: 14px;
    }

        .btn-calculator:hover {
            font-size: 16px;
        }

    #calculator-note {
        padding: 1.5rem;
    }

    #vehicle-details-container {
        padding: 0rem 2rem;
    }
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {

    /* CSS */
    /* CSS */
    #financing-main-description {
        padding: 2rem 1.5rem 0rem 1.5rem;
    }

    #values-calculated {
        padding: 1rem 1.5rem;
    }

    .block.row {
        display: flex;
        flex-direction: column-reverse;
        padding: 2rem 1.5rem;
    }

    .btn-calculator {
        font-size: 14px;
    }

        .btn-calculator:hover {
            font-size: 16px;
        }

    #calculator-note {
        padding: 1.5rem;
    }

    #vehicle-details-container {
        padding: 0rem 1rem;
    }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

    /* CSS */
    #financing-main-description {
        padding: 2rem 1.5rem 0rem 1.5rem;
    }

    #values-calculated {
        padding: 1rem 1.5rem;
    }

    .block {
        padding: 2rem 1.5rem;
    }

    .block-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .btn-calculator {
        font-size: 14px;
    }

        .btn-calculator:hover {
            font-size: 16px;
        }

    #calculator-note {
        padding: 1.5rem;
    }

    .row-button {
        margin-bottom: 5rem;
    }

    #vehicle-details-container,
    .vehicle-details,
    #calculator-form {
        padding: 0rem 1rem;
    }
}
