<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.calculator_info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 15px;
    font-size: 16px;
    gap: 20px;
}

@media(max-width: 990px) {
    .calculator_info {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .calculator_input_block {
        width: 100%!important;
    }
    .calculator_results {
        width: 100%!important;
        padding-left: 0px!important;
    }
    .column_title {
        font-size: 14px;
    }
    .column_Value {
        font-size: 15px;
    }
}

.calculator_input_block {
    width: 40%;
    height: 100%;
    padding: 10px 20px 30px 20px;
    box-sizing: border-box;
    border: 1px solid #363636;
    border-radius: 5px;
}
#rc-anchor-container {
    display: none!important;
}

h4 {
    font-size: 20px;
    margin: 20px 20px 35px;
    text-align: center;
}

h1, h2, h3, h4, h5, h6, h7, #autocomplete li strong {
    font-weight: 700;
    letter-spacing: 0px;
}

label {
    clear: both;
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
    display: block;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.calculator_number_input_wrapper input {
    width: 100%;
    border: 0;
    border-bottom: 2px solid #343434;
    outline: 0;
    border-radius: 2px;
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0;
    padding: 5px 0;
}

.calculator_number_input_wrapper input::-webkit-outer-spin-button,
.calculator_number_input_wrapper input::-webkit-inner-spin-button {
    /* display: none; &lt;- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* &lt;-- Apparently some margin are still there even though it's hidden */
}

.calculator_select_input_wrapper select {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    border: 1px solid #ffffff52;
    background: #0c0c0ce5;
    color: #fff;
    font-size: 15px;
    border-radius: 3px;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    margin: 10px 0;
}


.calculate_btn_wrapper {
    padding-top: 5px;
}

input[type=submit], .button, a.button {
    /* background-color: #6c8ed3;
    border-color: #6c8ed3; */
    outline: 0;
    border: 0;
}

.korauto_button {
    background-color: #588aed80;
    border: 0;
    outline: 0;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    height: 35px;
    font-size: 15px;
    padding: 7px 12px;
    cursor: pointer;
    transition: background-color .25s;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.korauto_button:hover {
    background-color: #588aed;
}
.korauto_button-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.calculator_results {
    width: 55%;
    padding-left: 30px;
    padding-top: 5px;
}

.calculator_results_table h3 {
    padding-bottom: 5px;
}

h3 {
    font-size: 24px;
}

hr {
    border-color: #dce0e0;
}

.calculator_results_table .car_results_table_row {
    display: flex;
    padding-top: 2px;
    padding-bottom: 5px;
}

.calculator_results_table .car_results_table_row .column_title {
    width: 90%;
    font-weight: bold;
}


#app, .page_content_wrapper {
    max-width: 960px;
    margin: auto;
    padding: 0 20px 200px;
    margin-top: 0;
}

.car_info_logo {
    max-width: 400px;
    margin: 100px auto;
}

img {
    max-width: 100%;
    height: auto;
}


.calculator_total_results_row {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    /* text-align: right; */
}

.total_sum {
    color: #588aed;
    font-weight: 600;
}

.calculator_results_table &gt; hr {
    margin-bottom: 10px;
}

.animOpacity {
    opacity: 0;
    animation: animOpacity 1s forwards;
}

@keyframes animOpacity {
    to {
        opacity: 1;
    }
    from {
        opacity: 0;
    }
    
}</pre></body></html>