/*
 * easy-autocomplete
 * jQuery plugin for autocompletion
 *
 * @author Łukasz Pawełczak (http://github.com/pawelczak)
 * @version 1.3.5
 * Copyright  License:
 */

.easy-autocomplete {
    position: relative;
    width: auto !important;
}



.easy-autocomplete input:hover, .easy-autocomplete input:focus {
    box-shadow: none
}

.easy-autocomplete a {
    display: block
}

.easy-autocomplete.eac-blue-light input:hover, .easy-autocomplete.eac-blue-light input:focus {
    border-color: #66afe9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6)
}

.easy-autocomplete.eac-blue-light ul {
    border-color: #66afe9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6)
}

.easy-autocomplete.eac-blue-light ul li, .easy-autocomplete.eac-blue-light ul .eac-category {
    border-color: #66afe9
}

.easy-autocomplete.eac-blue-light ul li.selected, .easy-autocomplete.eac-blue-light ul .eac-category.selected {
    background-color: #ecf5fc
}

.easy-autocomplete.eac-green-light input:hover, .easy-autocomplete.eac-green-light input:focus {
    border-color: #41DB00;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6)
}

.easy-autocomplete.eac-green-light ul {
    border-color: #41DB00;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6)
}

.easy-autocomplete.eac-green-light ul li, .easy-autocomplete.eac-green-light ul .eac-category {
    border-color: #41DB00
}

.easy-autocomplete.eac-green-light ul li.selected, .easy-autocomplete.eac-green-light ul .eac-category.selected {
    background-color: #9eff75
}

.easy-autocomplete.eac-red-light input:hover, .easy-autocomplete.eac-red-light input:focus {
    border-color: #ff5b5b;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6)
}

.easy-autocomplete.eac-red-light ul {
    border-color: #ff5b5b;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6)
}

.easy-autocomplete.eac-red-light ul li, .easy-autocomplete.eac-red-light ul .eac-category {
    border-color: #ff5b5b
}

.easy-autocomplete.eac-red-light ul li.selected, .easy-autocomplete.eac-red-light ul .eac-category.selected {
    background-color: #ff8e8e
}

.easy-autocomplete.eac-yellow-light input:hover, .easy-autocomplete.eac-yellow-light input:focus {
    border-color: #ffdb00;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6)
}

.easy-autocomplete.eac-yellow-light ul {
    border-color: #ffdb00;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6)
}

.easy-autocomplete.eac-yellow-light ul li, .easy-autocomplete.eac-yellow-light ul .eac-category {
    border-color: #ffdb00
}

.easy-autocomplete.eac-yellow-light ul li.selected, .easy-autocomplete.eac-yellow-light ul .eac-category.selected {
    background-color: #ffe233
}

.easy-autocomplete.eac-dark-light input:hover, .easy-autocomplete.eac-dark-light input:focus {
    border-color: #333;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6)
}

.easy-autocomplete.eac-dark-light ul {
    border-color: #333;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6)
}

.easy-autocomplete.eac-dark-light ul li, .easy-autocomplete.eac-dark-light ul .eac-category {
    border-color: #333
}

.easy-autocomplete.eac-dark-light ul li.selected, .easy-autocomplete.eac-dark-light ul .eac-category.selected {
    background-color: #4d4d4d;
    color: #fff
}

.easy-autocomplete.eac-dark {
    color: #fff
}

.easy-autocomplete.eac-dark input {
    background-color: #404040;
    border-radius: 4px;
    box-shadow: 0;
    color: #f6f6f6
}

.easy-autocomplete.eac-dark input:hover, .easy-autocomplete.eac-dark input:focus {
    border-color: #333;
    box-shadow: 0
}

.easy-autocomplete.eac-dark ul {
    border-color: #333
}

.easy-autocomplete.eac-dark ul li, .easy-autocomplete.eac-dark ul .eac-category {
    background-color: #404040;
    border-color: #333
}

.easy-autocomplete.eac-dark ul li.selected, .easy-autocomplete.eac-dark ul .eac-category.selected {
    background-color: #737373;
    color: #f6f6f6
}

.easy-autocomplete.eac-dark-glass {
    color: #fff
}

.easy-autocomplete.eac-dark-glass input {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    box-shadow: 0;
    color: #f6f6f6
}

.easy-autocomplete.eac-dark-glass input:hover, .easy-autocomplete.eac-dark-glass input:focus {
    border-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0
}

.easy-autocomplete.eac-dark-glass ul {
    border-color: rgba(0, 0, 0, 0.8)
}

.easy-autocomplete.eac-dark-glass ul li, .easy-autocomplete.eac-dark-glass ul .eac-category {
    background-color: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.8)
}

.easy-autocomplete.eac-dark-glass ul li.selected, .easy-autocomplete.eac-dark-glass ul .eac-category.selected {
    background-color: rgba(64, 64, 64, 0.8);
    color: #f6f6f6
}

.easy-autocomplete.eac-dark-glass ul li:last-child, .easy-autocomplete.eac-dark-glass ul .eac-category:last-child {
    border-radius: 0 0 4px 4px
}

.easy-autocomplete.eac-blue {
    color: #fff
}

.easy-autocomplete.eac-blue input {
    background-color: #6d9ed1;
    border-radius: 4px;
    box-shadow: 0;
    color: #f6f6f6
}

.easy-autocomplete.eac-blue input::-webkit-input-placeholder {
    color: #f6f6f6
}

.easy-autocomplete.eac-blue input:-moz-placeholder {
    color: #f6f6f6
}

.easy-autocomplete.eac-blue input::-moz-placeholder {
    color: #f6f6f6
}

.easy-autocomplete.eac-blue input:-ms-input-placeholder {
    color: #f6f6f6
}

.easy-autocomplete.eac-blue input:hover, .easy-autocomplete.eac-blue input:focus {
    border-color: #5A91CB;
    box-shadow: 0
}

.easy-autocomplete.eac-blue ul {
    border-color: #5A91CB
}

.easy-autocomplete.eac-blue ul li, .easy-autocomplete.eac-blue ul .eac-category {
    background-color: #6d9ed1;
    border-color: #5A91CB
}

.easy-autocomplete.eac-blue ul li.selected, .easy-autocomplete.eac-blue ul .eac-category.selected {
    background-color: #94b8dd;
    color: #f6f6f6
}

.easy-autocomplete.eac-yellow {
    color: #333
}

.easy-autocomplete.eac-yellow input {
    background-color: #ffdb7e;
    border-color: #333;
    border-radius: 4px;
    box-shadow: 0;
    color: #333
}

.easy-autocomplete.eac-yellow input:hover, .easy-autocomplete.eac-yellow input:focus {
    border-color: #333;
    box-shadow: 0
}

.easy-autocomplete.eac-yellow ul {
    border-color: #333
}

.easy-autocomplete.eac-yellow ul li, .easy-autocomplete.eac-yellow ul .eac-category {
    background-color: #ffdb7e;
    border-color: #333
}

.easy-autocomplete.eac-yellow ul li.selected, .easy-autocomplete.eac-yellow ul .eac-category.selected {
    background-color: #ffe9b1;
    color: #333
}

.easy-autocomplete.eac-purple {
    color: #333
}

.easy-autocomplete.eac-purple input {
    background-color: #d6d1e7;
    border-color: #b8afd5;
    box-shadow: 0;
    color: #333
}

.easy-autocomplete.eac-purple input:hover, .easy-autocomplete.eac-purple input:focus {
    border-color: #333;
    box-shadow: 0
}

.easy-autocomplete.eac-purple ul {
    border-color: #333
}

.easy-autocomplete.eac-purple ul li, .easy-autocomplete.eac-purple ul .eac-category {
    background-color: #d6d1e7;
    border-color: #333
}

.easy-autocomplete.eac-purple ul li.selected, .easy-autocomplete.eac-purple ul .eac-category.selected {
    background-color: #ebe8f3;
    color: #333
}

.easy-autocomplete.eac-bootstrap input {
    border-color: #ccc;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    color: #555;
    padding: 6px 12px
}

.easy-autocomplete-container {
    left: 0;
    width: 100%;
    z-index: 2
}

.easy-autocomplete-container ul {
    transition: width 2s, height 2s, transform 2s;
    display: none;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    position: relative;
    top: -1px;
    color: black;
    width: 666px;
    border-top: none;
    height: auto;
    /*margin-left: -47px;*/
    margin-top: 3px;

}
@media only screen and (max-width: 600px) {
    .easy-autocomplete-container ul {
        width: 325px !important;
word-wrap: break-word;
        margin-left: 0 !important;
    }
}

.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
border: none;
    display: block;
    font-size: 14px;
    font-weight: normal;
    padding: 4px 12px
}

.easy-autocomplete-container ul li:last-child {
    border-radius: 0 0 2px 2px;
    border-width: 0 1px 1px
}

.easy-autocomplete-container ul li.selected {
    background: none repeat scroll 0 0 #ebebeb;
    cursor: pointer;
    color: black;
}

.easy-autocomplete-container ul li.selected div {
    font-weight: normal
}

.easy-autocomplete-container ul li div {
    display: block;
    font-weight: normal;
    word-break: break-all;
}

.easy-autocomplete-container ul li b {
    font-weight: bold;

}

.easy-autocomplete-container ul .eac-category {
    font-color: #aaa;
    font-style: italic
}

.eac-description .eac-item span {
    color: #fff;
    font-style: italic;
    font-size: 0.9em
}

.eac-icon-left .eac-item img {
    margin-right: 4px;
    max-height: 30px
}

.eac-icon-right .eac-item {
    margin-top: 8px;
    min-height: 24px;
    position: relative
}

.eac-icon-right .eac-item img {
    margin-left: 4px;
    max-height: 30px;
    position: absolute;
    right: -4px;
    top: -8px
}

.easy-autocomplete.eac-square input {
    border: 1px solid #7f8c8d;
    border-radius: 0;
    color: #7f8c8d;
    font-family: inherit;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    margin: 0;
    min-width: 350px;
    padding: 12px 43px 12px 15px
}

.easy-autocomplete.eac-square ul {
    border-color: #7f8c8d;
    border-top: 0;
    box-shadow: none;
    top: 0
}

.easy-autocomplete.eac-square ul li, .easy-autocomplete.eac-square ul .eac-category {
    border-color: #7f8c8d;
    font-family: inherit;
    font-size: 16px;
    font-weight: 300;
    padding: 6px 12px;
    transition: all 0.4s ease 0s
}

.easy-autocomplete.eac-square ul li *, .easy-autocomplete.eac-square ul .eac-category * {
    font-weight: 300
}

.easy-autocomplete.eac-square ul li.selected, .easy-autocomplete.eac-square ul .eac-category.selected {
    background-color: #f1f1f1;
    font-weight: 300
}

.easy-autocomplete.eac-square ul li b, .easy-autocomplete.eac-square ul .eac-category b {
    font-weight: 600
}

.easy-autocomplete.eac-round {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-round input {
    border: 2px solid #888;
    border-radius: 10px;
    color: #888;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    min-width: 300px;
    padding: 10px
}

.easy-autocomplete.eac-round input:hover, .easy-autocomplete.eac-round input:focus {
    border-color: #3079ed
}

.easy-autocomplete.eac-round ul {
    background: none;
    border-color: #888;
    border-width: 0;
    box-shadow: none;
    min-width: 300px;
    top: 20px
}

.easy-autocomplete.eac-round ul li, .easy-autocomplete.eac-round ul .eac-category {
    background: #fff;
    border-color: #3079ed;
    border-width: 0 2px;
    font-size: 14px;
    padding: 8px 12px;
    transition: all 0.4s ease 0s
}

.easy-autocomplete.eac-round ul li.selected, .easy-autocomplete.eac-round ul .eac-category.selected {
    background-color: #d4e3fb
}

.easy-autocomplete.eac-round ul li:first-child, .easy-autocomplete.eac-round ul .eac-category:first-child {
    border-radius: 10px 10px 0 0;
    border-width: 2px 2px 0
}

.easy-autocomplete.eac-round ul li:last-child, .easy-autocomplete.eac-round ul .eac-category:last-child {
    border-radius: 0 0 10px 10px;
    border-width: 0 2px 2px
}

.easy-autocomplete.eac-round ul li b, .easy-autocomplete.eac-round ul .eac-category b {
    font-weight: 700
}

.easy-autocomplete.eac-funky {
    font-family: "Inconsolata", "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-funky input {
    background: #07ED89;
    border: 0;
    border-radius: 0;
    color: #ED076B;
    font-family: inherit;
    font-size: 18px;
    min-width: 240px;
    padding: 12px
}

.easy-autocomplete.eac-funky ul {
    background: transparent;
    border: 0
}

.easy-autocomplete.eac-funky ul li, .easy-autocomplete.eac-funky ul .eac-category {
    background: transparent;
    border: 0;
    color: #ED076B;
    font-size: 18px;
    padding: 4px 12px;
    transition: all 0.4s ease 0s
}

.easy-autocomplete.eac-funky ul li.selected, .easy-autocomplete.eac-funky ul .eac-category.selected {
    color: #8907ED
}

.easy-autocomplete.eac-solid input {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) inset;
    border-color: #ddd;
    color: #666;
    font-size: 13px;
    min-height: 0;
    padding: 6px 12px
}

.easy-autocomplete.eac-solid ul li, .easy-autocomplete.eac-solid ul .eac-category {
    transition: all 0.4s ease 0s
}

.easy-autocomplete.eac-solid ul li.selected, .easy-autocomplete.eac-solid ul .eac-category.selected {
    background-color: #f2f2f2
}

.easy-autocomplete.eac-plate {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-plate input {
    font-size: 13px;
    padding: 6px 12px
}

.easy-autocomplete.eac-plate ul {
    background: #b5b5b5;
    border-radius: 6px;
    border-width: 0;
    top: 10px
}

.easy-autocomplete.eac-plate ul li, .easy-autocomplete.eac-plate ul .eac-category {
    background: #b5b5b5;
    color: #FAFAFA;
    font-size: 12px;
    transition: all 0.4s ease 0s
}

.easy-autocomplete.eac-plate ul li b, .easy-autocomplete.eac-plate ul .eac-category b {
    color: #ffd464
}

.easy-autocomplete.eac-plate ul li.selected, .easy-autocomplete.eac-plate ul .eac-category.selected {
    background: #656565
}

.easy-autocomplete.eac-plate ul li:first-child, .easy-autocomplete.eac-plate ul .eac-category:first-child {
    border-radius: 6px 6px 0 0
}

.easy-autocomplete.eac-plate ul li:last-child, .easy-autocomplete.eac-plate ul .eac-category:last-child {
    border-radius: 0 0 6px 6px
}

.easy-autocomplete.eac-plate-dark {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-plate-dark input {
    font-size: 13px;
    padding: 6px 12px
}

.easy-autocomplete.eac-plate-dark ul {
    background: #212121;
    border-radius: 6px;
    border-width: 0;
    top: 10px
}

.easy-autocomplete.eac-plate-dark ul li, .easy-autocomplete.eac-plate-dark ul .eac-category {
    background: #212121;
    color: #FAFAFA;
    font-size: 12px;
    transition: all 0.4s ease 0s
}

.easy-autocomplete.eac-plate-dark ul li b, .easy-autocomplete.eac-plate-dark ul .eac-category b {
    color: #ffd464
}

.easy-autocomplete.eac-plate-dark ul li.selected, .easy-autocomplete.eac-plate-dark ul .eac-category.selected {
    background: #656565
}

.easy-autocomplete.eac-plate-dark ul li:first-child, .easy-autocomplete.eac-plate-dark ul .eac-category:first-child {
    border-radius: 6px 6px 0 0
}

.easy-autocomplete.eac-plate-dark ul li:last-child, .easy-autocomplete.eac-plate-dark ul .eac-category:last-child {
    border-radius: 0 0 6px 6px
}
@font-face {
    font-family: 'lato';
    src: url('https://cars.carsxa.com/Lato-Regular.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'lato';
    src: url('https://cars.carsxa.com/Lato-Bold.woff2') format('woff2');
    font-weight: bold;
    font-display: swap;
    font-style: normal;
}
@font-face {
  font-family: 'Racing Sans One';
  src: url('https://cars.carsxa.com/RacingSansOne-Regular.woff2') format('woff2');
  font-weight: bold;
  font-display: swap;
  font-style: normal;
}
.left {
    float: left !important;
}
.left {
    float: left!important;
}
.right {
    float: right !important;
}
ul:not(.browser-default)>li {
    list-style-type: none;
}
.container {
    margin: 0 auto;
    max-width: 1280px ;
    width: 90%;
}
@media only screen and (min-width: 601px) {
    .container {
        width: 85%;
    }
}

@media only screen and (min-width: 993px) {
    .container {
        width: 70%;
    }
}

.container .row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}
.row {
    margin-left: auto;
    margin-right: auto;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.row .col {
    float: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0.75rem;
    min-height: 1px;
}

.row .col[class*="push-"], .row .col[class*="pull-"] {
    position: relative;
}

.row .col.s1 {
    width: 8.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s2 {
    width: 16.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s3 {
    width: 25%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s4 {
    width: 33.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s5 {
    width: 41.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s6 {
    width: 50%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s7 {
    width: 58.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s8 {
    width: 66.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s9 {
    width: 75%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s10 {
    width: 83.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s11 {
    width: 91.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s12 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.offset-s1 {
    margin-left: 8.3333333333%;
}

.row .col.pull-s1 {
    right: 8.3333333333%;
}

.row .col.push-s1 {
    left: 8.3333333333%;
}

.row .col.offset-s2 {
    margin-left: 16.6666666667%;
}

.row .col.pull-s2 {
    right: 16.6666666667%;
}

.row .col.push-s2 {
    left: 16.6666666667%;
}

.row .col.offset-s3 {
    margin-left: 25%;
}

.row .col.pull-s3 {
    right: 25%;
}

.row .col.push-s3 {
    left: 25%;
}

.row .col.offset-s4 {
    margin-left: 33.3333333333%;
}

.row .col.pull-s4 {
    right: 33.3333333333%;
}

.row .col.push-s4 {
    left: 33.3333333333%;
}

.row .col.offset-s5 {
    margin-left: 41.6666666667%;
}

.row .col.pull-s5 {
    right: 41.6666666667%;
}

.row .col.push-s5 {
    left: 41.6666666667%;
}

.row .col.offset-s6 {
    margin-left: 50%;
}

.row .col.pull-s6 {
    right: 50%;
}

.row .col.push-s6 {
    left: 50%;
}

.row .col.offset-s7 {
    margin-left: 58.3333333333%;
}

.row .col.pull-s7 {
    right: 58.3333333333%;
}

.row .col.push-s7 {
    left: 58.3333333333%;
}

.row .col.offset-s8 {
    margin-left: 66.6666666667%;
}

.row .col.pull-s8 {
    right: 66.6666666667%;
}

.row .col.push-s8 {
    left: 66.6666666667%;
}

.row .col.offset-s9 {
    margin-left: 75%;
}

.row .col.pull-s9 {
    right: 75%;
}

.row .col.push-s9 {
    left: 75%;
}

.row .col.offset-s10 {
    margin-left: 83.3333333333%;
}

.row .col.pull-s10 {
    right: 83.3333333333%;
}

.row .col.push-s10 {
    left: 83.3333333333%;
}

.row .col.offset-s11 {
    margin-left: 91.6666666667%;
}

.row .col.pull-s11 {
    right: 91.6666666667%;
}

.row .col.push-s11 {
    left: 91.6666666667%;
}

.row .col.offset-s12 {
    margin-left: 100%;
}

.row .col.pull-s12 {
    right: 100%;
}

.row .col.push-s12 {
    left: 100%;
}

@media only screen and (min-width: 601px) {
    .row .col.m1 {
        width: 8.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m2 {
        width: 16.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m3 {
        width: 25%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m4 {
        width: 33.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m5 {
        width: 41.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m6 {
        width: 50%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m7 {
        width: 58.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m8 {
        width: 66.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m9 {
        width: 75%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m10 {
        width: 83.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m11 {
        width: 91.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m12 {
        width: 100%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.offset-m1 {
        margin-left: 8.3333333333%;
    }
    .row .col.pull-m1 {
        right: 8.3333333333%;
    }
    .row .col.push-m1 {
        left: 8.3333333333%;
    }
    .row .col.offset-m2 {
        margin-left: 16.6666666667%;
    }
    .row .col.pull-m2 {
        right: 16.6666666667%;
    }
    .row .col.push-m2 {
        left: 16.6666666667%;
    }
    .row .col.offset-m3 {
        margin-left: 25%;
    }
    .row .col.pull-m3 {
        right: 25%;
    }
    .row .col.push-m3 {
        left: 25%;
    }
    .row .col.offset-m4 {
        margin-left: 33.3333333333%;
    }
    .row .col.pull-m4 {
        right: 33.3333333333%;
    }
    .row .col.push-m4 {
        left: 33.3333333333%;
    }
    .row .col.offset-m5 {
        margin-left: 41.6666666667%;
    }
    .row .col.pull-m5 {
        right: 41.6666666667%;
    }
    .row .col.push-m5 {
        left: 41.6666666667%;
    }
    .row .col.offset-m6 {
        margin-left: 50%;
    }
    .row .col.pull-m6 {
        right: 50%;
    }
    .row .col.push-m6 {
        left: 50%;
    }
    .row .col.offset-m7 {
        margin-left: 58.3333333333%;
    }
    .row .col.pull-m7 {
        right: 58.3333333333%;
    }
    .row .col.push-m7 {
        left: 58.3333333333%;
    }
    .row .col.offset-m8 {
        margin-left: 66.6666666667%;
    }
    .row .col.pull-m8 {
        right: 66.6666666667%;
    }
    .row .col.push-m8 {
        left: 66.6666666667%;
    }
    .row .col.offset-m9 {
        margin-left: 75%;
    }
    .row .col.pull-m9 {
        right: 75%;
    }
    .row .col.push-m9 {
        left: 75%;
    }
    .row .col.offset-m10 {
        margin-left: 83.3333333333%;
    }
    .row .col.pull-m10 {
        right: 83.3333333333%;
    }
    .row .col.push-m10 {
        left: 83.3333333333%;
    }
    .row .col.offset-m11 {
        margin-left: 91.6666666667%;
    }
    .row .col.pull-m11 {
        right: 91.6666666667%;
    }
    .row .col.push-m11 {
        left: 91.6666666667%;
    }
    .row .col.offset-m12 {
        margin-left: 100%;
    }
    .row .col.pull-m12 {
        right: 100%;
    }
    .row .col.push-m12 {
        left: 100%;
    }
}

@media only screen and (min-width: 993px) {
    .row .col.l1 {
        width: 8.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l2 {
        width: 16.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l3 {
        width: 25%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l4 {
        width: 33.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l5 {
        width: 41.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l6 {
        width: 50%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l7 {
        width: 58.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l8 {
        width: 66.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l9 {
        width: 75%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l10 {
        width: 83.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l11 {
        width: 91.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l12 {
        width: 100%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.offset-l1 {
        margin-left: 8.3333333333%;
    }
    .row .col.pull-l1 {
        right: 8.3333333333%;
    }
    .row .col.push-l1 {
        left: 8.3333333333%;
    }
    .row .col.offset-l2 {
        margin-left: 16.6666666667%;
    }
    .row .col.pull-l2 {
        right: 16.6666666667%;
    }
    .row .col.push-l2 {
        left: 16.6666666667%;
    }
    .row .col.offset-l3 {
        margin-left: 25%;
    }
    .row .col.pull-l3 {
        right: 25%;
    }
    .row .col.push-l3 {
        left: 25%;
    }
    .row .col.offset-l4 {
        margin-left: 33.3333333333%;
    }
    .row .col.pull-l4 {
        right: 33.3333333333%;
    }
    .row .col.push-l4 {
        left: 33.3333333333%;
    }
    .row .col.offset-l5 {
        margin-left: 41.6666666667%;
    }
    .row .col.pull-l5 {
        right: 41.6666666667%;
    }
    .row .col.push-l5 {
        left: 41.6666666667%;
    }
    .row .col.offset-l6 {
        margin-left: 50%;
    }
    .row .col.pull-l6 {
        right: 50%;
    }
    .row .col.push-l6 {
        left: 50%;
    }
    .row .col.offset-l7 {
        margin-left: 58.3333333333%;
    }
    .row .col.pull-l7 {
        right: 58.3333333333%;
    }
    .row .col.push-l7 {
        left: 58.3333333333%;
    }
    .row .col.offset-l8 {
        margin-left: 66.6666666667%;
    }
    .row .col.pull-l8 {
        right: 66.6666666667%;
    }
    .row .col.push-l8 {
        left: 66.6666666667%;
    }
    .row .col.offset-l9 {
        margin-left: 75%;
    }
    .row .col.pull-l9 {
        right: 75%;
    }
    .row .col.push-l9 {
        left: 75%;
    }
    .row .col.offset-l10 {
        margin-left: 83.3333333333%;
    }
    .row .col.pull-l10 {
        right: 83.3333333333%;
    }
    .row .col.push-l10 {
        left: 83.3333333333%;
    }
    .row .col.offset-l11 {
        margin-left: 91.6666666667%;
    }
    .row .col.pull-l11 {
        right: 91.6666666667%;
    }
    .row .col.push-l11 {
        left: 91.6666666667%;
    }
    .row .col.offset-l12 {
        margin-left: 100%;
    }
    .row .col.pull-l12 {
        right: 100%;
    }
    .row .col.push-l12 {
        left: 100%;
    }
}

@media only screen and (min-width: 1201px) {
    .row .col.xl1 {
        width: 8.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl2 {
        width: 16.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl3 {
        width: 25%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl4 {
        width: 33.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl5 {
        width: 41.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl6 {
        width: 50%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl7 {
        width: 58.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl8 {
        width: 66.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl9 {
        width: 75%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl10 {
        width: 83.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl11 {
        width: 91.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl12 {
        width: 100%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.offset-xl1 {
        margin-left: 8.3333333333%;
    }
    .row .col.pull-xl1 {
        right: 8.3333333333%;
    }
    .row .col.push-xl1 {
        left: 8.3333333333%;
    }
    .row .col.offset-xl2 {
        margin-left: 16.6666666667%;
    }
    .row .col.pull-xl2 {
        right: 16.6666666667%;
    }
    .row .col.push-xl2 {
        left: 16.6666666667%;
    }
    .row .col.offset-xl3 {
        margin-left: 25%;
    }
    .row .col.pull-xl3 {
        right: 25%;
    }
    .row .col.push-xl3 {
        left: 25%;
    }
    .row .col.offset-xl4 {
        margin-left: 33.3333333333%;
    }
    .row .col.pull-xl4 {
        right: 33.3333333333%;
    }
    .row .col.push-xl4 {
        left: 33.3333333333%;
    }
    .row .col.offset-xl5 {
        margin-left: 41.6666666667%;
    }
    .row .col.pull-xl5 {
        right: 41.6666666667%;
    }
    .row .col.push-xl5 {
        left: 41.6666666667%;
    }
    .row .col.offset-xl6 {
        margin-left: 50%;
    }
    .row .col.pull-xl6 {
        right: 50%;
    }
    .row .col.push-xl6 {
        left: 50%;
    }
    .row .col.offset-xl7 {
        margin-left: 58.3333333333%;
    }
    .row .col.pull-xl7 {
        right: 58.3333333333%;
    }
    .row .col.push-xl7 {
        left: 58.3333333333%;
    }
    .row .col.offset-xl8 {
        margin-left: 66.6666666667%;
    }
    .row .col.pull-xl8 {
        right: 66.6666666667%;
    }
    .row .col.push-xl8 {
        left: 66.6666666667%;
    }
    .row .col.offset-xl9 {
        margin-left: 75%;
    }
    .row .col.pull-xl9 {
        right: 75%;
    }
    .row .col.push-xl9 {
        left: 75%;
    }
    .row .col.offset-xl10 {
        margin-left: 83.3333333333%;
    }
    .row .col.pull-xl10 {
        right: 83.3333333333%;
    }
    .row .col.push-xl10 {
        left: 83.3333333333%;
    }
    .row .col.offset-xl11 {
        margin-left: 91.6666666667%;
    }
    .row .col.pull-xl11 {
        right: 91.6666666667%;
    }
    .row .col.push-xl11 {
        left: 91.6666666667%;
    }
    .row .col.offset-xl12 {
        margin-left: 100%;
    }
    .row .col.pull-xl12 {
        right: 100%;
    }
    .row .col.push-xl12 {
        left: 100%;
    }
}

nav {
    color: #fff;
    background-color: #ee6e73;
    width: 100%;
    height: 56px;
    line-height: 56px;
}

nav.nav-extended {
    height: auto;
}

nav.nav-extended .nav-wrapper {
    min-height: 56px;
    height: auto;
}

nav.nav-extended .nav-content {
    position: relative;
    line-height: normal;
}

nav a {
    color: #fff;
}

nav i,
nav [class^="mdi-"], nav [class*="mdi-"],
nav i.material-icons {
    display: block;
    font-size: 24px;
    height: 56px;
    line-height: 56px;
}

nav .nav-wrapper {
    position: relative;
    height: 100%;
}

@media only screen and (min-width: 993px) {
    nav a.button-collapse {
        display: none;
    }
}

nav .button-collapse {
    float: left;
    position: relative;
    z-index: 1;
    height: 56px;
    margin: 0 18px;
}

nav .button-collapse i {
    height: 56px;
    line-height: 56px;
}

nav .brand-logo {
    position: absolute;
    color: #fff;
    display: inline-block;
    font-size: 2.1rem;
    padding: 0;
}

nav .brand-logo.center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (max-width: 992px) {
    nav .brand-logo {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    nav .brand-logo.left, nav .brand-logo.right {
        padding: 0;
        -webkit-transform: none;
        transform: none;
    }
    nav .brand-logo.left {
        left: 0.5rem;
    }
    nav .brand-logo.right {
        right: 0.5rem;
        left: auto;
    }
}

nav .brand-logo.right {
    right: 0.5rem;
    padding: 0;
}

nav .brand-logo i,
nav .brand-logo [class^="mdi-"], nav .brand-logo [class*="mdi-"],
nav .brand-logo i.material-icons {
    float: left;
    margin-right: 15px;
}

nav .nav-title {
    display: inline-block;
    font-size: 32px;
    padding: 28px 0;
}

nav ul {
    margin: 0;
}

nav ul li {
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    float: left;
    padding: 0;
}

nav ul li.active {
    background-color: rgba(0, 0, 0, 0.1);
}

nav ul a {
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    font-size: 1rem;
    color: #fff;
    display: block;
    padding: 0 15px;
    cursor: pointer;
}

nav ul a.btn, nav ul a.btn-large, nav ul a.btn-large, nav ul a.btn-flat, nav ul a.btn-floating {
    margin-top: -2px;
    margin-left: 15px;
    margin-right: 15px;
}

nav ul a.btn > .material-icons, nav ul a.btn-large > .material-icons, nav ul a.btn-large > .material-icons, nav ul a.btn-flat > .material-icons, nav ul a.btn-floating > .material-icons {
    height: inherit;
    line-height: inherit;
}

nav ul a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

nav ul.left {
    float: left;
}

nav form {
    height: 100%;
}

nav .input-field {
    margin: 0;
    height: 100%;
}

nav .input-field input {
    height: 100%;
    font-size: 1.2rem;
    border: none;
    padding-left: 2rem;
}

nav .input-field input:focus, nav .input-field input[type=text]:valid, nav .input-field input[type=password]:valid, nav .input-field input[type=email]:valid, nav .input-field input[type=url]:valid, nav .input-field input[type=date]:valid {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

nav .input-field label {
    top: 0;
    left: 0;
}

nav .input-field label i {
    color: rgba(255, 255, 255, 0.7);
    -webkit-transition: color .3s;
    transition: color .3s;
}

nav .input-field label.active i {
    color: #fff;
}

.navbar-fixed {
    position: relative;
    height: 56px;
    z-index: 997;
}

.navbar-fixed nav {
    position: fixed;
}

@media only screen and (min-width: 601px) {
    nav.nav-extended .nav-wrapper {
        min-height: 64px;
    }
    nav, nav .nav-wrapper i, nav a.button-collapse, nav a.button-collapse i {
        height: 64px;
        line-height: 64px;
    }
    .navbar-fixed {
        height: 64px;
    }
}


a {
    text-decoration: none;
}

html {
    line-height: 1.5;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.87);
}

@media only screen and (min-width: 0) {
    html {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) {
    html {
        font-size: 14.5px;
    }
}

@media only screen and (min-width: 1200px) {
    html {
        font-size: 15px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.1;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: inherit;
}

h1 {
    font-size: 4.2rem;
    line-height: 110%;
    margin: 2.1rem 0 1.68rem 0;
}

h2 {
    font-size: 3.56rem;
    line-height: 110%;
    margin: 1.78rem 0 1.424rem 0;
}

h3 {
    font-size: 2.92rem;
    line-height: 110%;
    margin: 1.46rem 0 1.168rem 0;
}

h4 {
    font-size: 2.28rem;
    line-height: 110%;
    margin: 1.14rem 0 0.912rem 0;
}

h5 {
    font-size: 1.64rem;
    line-height: 110%;
    margin: 0.82rem 0 0.656rem 0;
}

h6 {
    font-size: 1rem;
    line-height: 110%;
    margin: 0.5rem 0 0.4rem 0;
}

em {
    font-style: italic;
}

strong {
    font-weight: 500;
}

small {
    font-size: 75%;
}

.black{
    background:#000000;
}
.black-text{
    color: black;
}
html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * Remove default margin.
 */
body {
    margin: 0;
}
@media only screen and (max-width: 600px) {
    .hide-on-small-only, .hide-on-small-and-down {
        display: none !important;
    }
}

@media only screen and (max-width: 992px) {
    .hide-on-med-and-down {
        display: none !important;
    }
}

@media only screen and (min-width: 601px) {
    .hide-on-med-and-up {
        display: none !important;
    }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
    .hide-on-med-only {
        display: none !important;
    }
}

@media only screen and (min-width: 993px) {
    .hide-on-large-only {
        display: none !important;
    }
}

img.responsive-img,
video.responsive-video {
    max-width: 100%;
    height: auto;
}
nav {
    color: #fff;
    background-color: #ee6e73;
    width: 100%;
    height: 56px;
    line-height: 56px;
}

nav .brand-logo {
    position: absolute;
    color: #fff;
    display: inline-block;
    font-size: 2.1rem;
    padding: 0;
}

nav .brand-logo.center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (max-width: 992px) {
    nav .brand-logo {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    nav .brand-logo.left, nav .brand-logo.right {
        padding: 0;
        -webkit-transform: none;
        transform: none;
    }
    nav .brand-logo.left {
        left: 0.5rem;
    }
    nav .brand-logo.right {
        right: 0.5rem;
        left: auto;
    }
}

nav .brand-logo.right {
    right: 0.5rem;
    padding: 0;
}

nav .brand-logo i,
nav .brand-logo [class^="mdi-"], nav .brand-logo [class*="mdi-"],
nav .brand-logo i.material-icons {
    float: left;
    margin-right: 15px;
}


/*//[data-useragent*='cars-andy'] #head {*/
/*//    display: none !important;*/
/*//}*/
/*//[data-useragent*='cars-andy'] #topcars img, .my-gallery img, .carscardimg img{*/
/*//    -webkit-animation: appear 1s;*/
/*//    animation: appear 1s;*/
/*//    -webkit-animation-fill-mode: forwards;*/
/*//    animation-fill-mode: forwards;*/
/*//}*/
/*//[data-useragent*='cars-andy'] @-webkit-keyframes appear {*/
/*//     0% { left: 500px; opacity: 0; }*/
/*//     100% { left: 16px; opacity: 1; }*/
/*// }*/

/*//[data-useragent*='cars-andy'] @keyframes appear {*/
/*//    0% { left: 500px; opacity: 0; }*/
/*//    100% { left: 16px; opacity: 1; }*/
/*//}*/
/*//[data-useragent*='cars-andy'] #hide {*/
/*//    display: none !important;*/
/*//}*/
/*//*/
/*//[data-useragent*='cars-andy'] footer{*/
/*//    display: none !important;*/
/*//}*/
/*//[data-useragent*='cars-andy'] #buttons{*/
/*//    display: none !important;*/
/*//}*/
html, body {
    height: 100%;
}

body{
    font-family: 'lato', sans-serif;
    background: #f9f9f9 none repeat scroll 0 0;
}
#wrap {
    min-height: 100%;
}
.navcar{
    border-bottom: 1px solid  #FFF6A4;
    margin-bottom: 2rem;
}
.carscard{
    margin-bottom: 20px;
    height: 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 12px 0 #e0e0e03d;
    padding-top: 24px;
    overflow: hidden;
}
.carscardimg{
    height: 280px;overflow: hidden;
}
@media only screen and (max-width: 992px) {
    .carscardimg {
height: auto;
    }
    .carscard{
        height: 340px !important;
        border-radius: 10px;

    }
}
.row.col.s12.center.carscolor.navcar{
    padding-bottom: 2px;
}
.carscolor{
    background-color: #FFF6A4;
    padding-top: 4px;
    padding-bottom: 18px;
}

.headercar{
    position: relative;
    margin-top: 20px;
    background: black;
    width: 714px;
    box-shadow: #f1e786 0 9px 10px 1px;
    border-radius: 20px 20px 30px 30px;
}
@media only screen and (max-width: 600px) {
    .headercar {
        width: 90% !important;
    }
    #navshad {
        background: white;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
        margin-top: 2px;
        line-height: 28px;
        overflow: hidden;
        position: relative;
    }
    .dropdown-content{
        margin-top: -7px !important;

    }
    .rightshad {
        background: -webkit-linear-gradient(180deg, rgb(175 175 175) 0%, rgba(0,0,0,0) 100%);
        height: 74px;
        position: absolute;
        pointer-events: none;
        right: 0;
        top: 0;
        width: 35px;
        z-index: 2;
        margin-top: 0;
        border-radius: 2px;
        }
}
.img_nav{
    height: 36px;
}
.img_nav:hover{
    opacity: 0.7;
}
.navmore{
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    line-height: 28px;
    position: relative;
    padding: 10px 0 9px;
    display: inline-flex;
    float: left;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: center;
}
.navback{
    background: #ffff8d none repeat scroll 0 0;
}

.sec-down{
    border-bottom: 6px dashed #7274ff;
    padding: 0.8rem 3rem;
    background: #000000 none repeat scroll 0 0;
}
nav{
    box-shadow: none;
}
.my-gallery {
    width: 100%;
}
.my-gallery img {
    width: auto;
    height: 200px;
}
.my-gallery figure {
    margin: 0 5px 5px 0;
}
.my-gallery figcaption {
    display: none;
}
.pswp__img {
    height: auto !important;
}
.usersmall {
    height: 63px;
    width: 63px;
    display: block;
}
.deletec{
    width: 20px;
    height: 20px;
    font-size: 10px !important;
    padding: 5px;
    line-height: normal;
}
.replyc{
    height: 20px !important;
    padding: 0 !important;
    width: 20px !important;
    line-height: 0;
}
.replyicon{
    width: 20px !important;
}
.bottomimg{
    display: block;
    height: 40px;
    width: 40px;
}
.padding1{
    padding: 1%;
}
.carbottom {
    box-shadow: 1px 1px 1px black;
    font-size: 16px;
    font-weight: bolder;
    height: 41px;
    line-height: 2.4;
}
.current, .current a {
    background: white none repeat scroll 0 0;
    color: #000000;
}
.card{
    border: 1px solid #f2f2f2;
    box-shadow: none;
    border-radius: 8px;
}
.sectiondiv{
    background: #ffff8d none repeat scroll 0 0;
    color: black;
    font-style: italic;
    font-weight: 600;
}
.sectiondiv1{
    background: #ffff8d;
    color: black;
    padding: 5px;
}
nav ul a{
    padding:0 8px;
}
.collapsible{
    border: 1px solid #eeeeee;
    box-shadow: none;
}
.collapsible-body{
    border: none;
}
.collapsible >li {
    list-style: none !important;
}  .card.comments {
       display: flex;
   }

.commin {
    display: flex;
}

#reply .commin {
    display: none;
}

#reply .card {
    background: #eee none repeat scroll 0 0;
    font-size: 12px;
}

#reply .usersmall {
    height: auto;
    margin-top: 4px;
    width: 46px;
}

.collapsible {
    border: none;
}

#reply .commin {
    display: none;
}

#reply .collapsible {
    display: none;
}

.collapsible > li {
    list-style: outside none none !important;
}

#leftuser p {
    margin: 1px;
}
#hfooter {
    background: #FFF6A4;
    position: relative;
    height: auto;
    clear: both;
    padding-bottom: 24px;
    padding-top: 30px;
}
@media (min-width: 994px) {
    .headertitle{
        font-size: 34px
    }

}
@media (max-width: 994px) {
    .headertitle{
        font-size: 1.64rem;
    }

}
@media (min-width: 300px) {

    .logocm img {
        width: 200px;
        margin-top: 13px;
        margin-left: 6px;
    }
}
@media (min-width: 1200px) {

    .logocm img {
        width: 200px !important;
        margin-top: 8px;
    }
}
.h1c{
    line-height: 110%;margin: 0.82rem 0 0.656rem 0;text-transform:capitalize;
}
.makeview {
    margin-bottom: 6rem;
    padding: 0 !important;
}
.makename {
    display: flex;
    margin-top: -26px;
    white-space: pre;
    text-align: center;
}
.pagination > a {
    background: black;
    color: white;
    padding: 18px 33px;
    border-radius: 5px;
    font-size: 22px;
}
.next_page.disabled, .previous_page.disabled {
    display: none;
}
em.current {
    background: #000000 none repeat scroll 0 0;
    border: 1px solid #000000;
    color: white;
    padding: 13px 19px;
}
.foot{
    margin-left: 1%;
}
.material-icons {
    font-size: 12px;
}
#ccontent{
    padding-top: 10px;
}
.brodd {
    border: 1px solid #f2f2f2;
    background: white;
}
.carlist{
    background: white;
    color: black;
}
.carlist li{
    line-height: 3;
    border-bottom: 1px solid #eee;
    margin-bottom: 7px;
    padding-left: 7px;
}
input:focus:not([type]):not([readonly]), input[type="text"]:focus:not(.browser-default):not([readonly]), input[type="password"]:focus:not(.browser-default):not([readonly]), input[type="email"]:focus:not(.browser-default):not([readonly]), input[type="url"]:focus:not(.browser-default):not([readonly]), input[type="time"]:focus:not(.browser-default):not([readonly]), input[type="date"]:focus:not(.browser-default):not([readonly]), input[type="datetime"]:focus:not(.browser-default):not([readonly]), input[type="datetime-local"]:focus:not(.browser-default):not([readonly]), input[type="tel"]:focus:not(.browser-default):not([readonly]), input[type="number"]:focus:not(.browser-default):not([readonly]), input[type="search"]:focus:not(.browser-default):not([readonly]), textarea.materialize-textarea:focus:not([readonly]){
    border-bottom: 1px solid #000000;
    box-shadow: none;
}
.searchout{
    border-top:1px solid #dbdee9 ;
    border-bottom: 1px solid #dbdee9;
}
.btn, .btn-large{
    background-color: #000000;
    color: white;

}
.btn:hover{
    background-color: #000000;
    border-bottom: 1px solid #000000;

}
.btn:focus, .btn-large:focus,
.btn-floating:focus {
    background-color: #000000;
    border-bottom: 1px solid #000000;
}
#error_explanation h2 {
    color: #f44336;
    font-size: 20px;
}
#error_explanation > ul {
    background: #e57373 none repeat scroll 0 0;
    color: white;
    margin-top: -12px;
    padding: 17px;
}
.turbo-progress-bar{
    background: black;
    border-bottom: 2px double #999999 ;
}
.padding2{
    padding: 2% !important;
}
.btn {
    box-shadow: none;
}

#postcat{
    height: 75px;
    overflow: hidden;
}
#postcat img{
    max-height: 100px;
    max-width: 100px;
}
.bottompost {
    border-top: 1px solid #eeeeee;
    color: #b3b3b3;
    display: block;
    font-size: 12px;
    height: auto;
    margin-top: 1px;
    padding-top: 8px;
}
.card .card-content {
    padding: 24px 24px 0;
}
.modal.bottom-sheet{
    max-height:66%;
}
input:not([type]), input[type=text]:not(.browser-default), input[type=password]:not(.browser-default), input[type=email]:not(.browser-default), input[type=url]:not(.browser-default), input[type=time]:not(.browser-default), input[type=date]:not(.browser-default), input[type=datetime]:not(.browser-default), input[type=datetime-local]:not(.browser-default), input[type=tel]:not(.browser-default), input[type=number]:not(.browser-default), input[type=search]:not(.browser-default), textarea.materialize-textarea{
    border: 2px solid #d1d1d1;
    padding-left: 4px;
}


.dropdown {
    position: relative;
    display: inline-block;
    background-image: url(/assets/drop-0de1c746d761bf745ae518099f89db4ba0b3c503111621e6e583a0200bb0b98c.png);
    background-repeat:no-repeat ;
    background-position: 76px 3px;
    background-size: 25px;}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    box-shadow: 1px 20px 16px 0 rgb(0 0 0 / 20%);
    z-index: 11;
    margin-top: 42px;
    border-right: 1px solid #eee;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #f3f0f0;
}

.dropdown-content a:hover {background-color: #ddd;}

.show {display:block;}
.center, .center-align {
    text-align: center;
}
.searched {
    display: none
}

.searchc input[type=search] {
    width: 100%;
    font-size: 17px !important;
    padding-left: 15px !important;
    color: transparent!important;
    cursor: pointer!important;
    height: 43px;
    border: 1px solid #f0efeb !important;
    padding: 0;
}


.searchc input[type=search]:focus {
    padding-left: 32px !important;
    color: #000 !important;
    background-color: #fff !important;
    cursor: auto !important;
    border: 1px solid #eee !important;
}

.searchc input:-moz-placeholder {
    color: black !important;
    padding-left: 14px;
}

.searchc input::-webkit-input-placeholder {
    color: #bbb !important;
    padding-left: 14px;
}



input {
    outline: 0 !important
}

input[type=search] {
    -webkit-appearance: textfield !important;
    -webkit-box-sizing: content-box !important;
    font-family: inherit !important;
    font-size: 100% !important
}

input::-webkit-search-cancel-button, input::-webkit-search-decoration {
    display: none !important
}

input[type=search] {
    background-size: 14px;
    background-image: url(/search.png) ;
    background-color:#fff;
    background-repeat:no-repeat;
    background-position: 8px center !important;
    -moz-border-radius: 10em !important;
    -webkit-transition: all .5s !important;
    -moz-transition: all .5s !important;
    transition: all .2s !important;
    border-radius: 21px !important
}

input[type=search]:focus {
    background-color: #fff !important;
    border: none !important;
    box-shadow: 0 1px 2px rgb(0 0 0 / 16%) inset;
}

.input:-moz-placeholder {
    color: #999 !important
}

input::-webkit-input-placeholder {
    color: #999 !important
}

a {
    color: #039be5;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.flow-text {
    font-weight: 300;
}

@media only screen and (min-width: 360px) {
    .flow-text {
        font-size: 1.2rem;
    }
}

@media only screen and (min-width: 390px) {
    .flow-text {
        font-size: 1.224rem;
    }
}

@media only screen and (min-width: 420px) {
    .flow-text {
        font-size: 1.248rem;
    }
}

@media only screen and (min-width: 450px) {
    .flow-text {
        font-size: 1.272rem;
    }
}

@media only screen and (min-width: 480px) {
    .flow-text {
        font-size: 1.296rem;
    }
}

@media only screen and (min-width: 510px) {
    .flow-text {
        font-size: 1.32rem;
    }
}

@media only screen and (min-width: 540px) {
    .flow-text {
        font-size: 1.344rem;
    }
}

@media only screen and (min-width: 570px) {
    .flow-text {
        font-size: 1.368rem;
    }
}

@media only screen and (min-width: 600px) {
    .flow-text {
        font-size: 1.392rem;
    }
}

@media only screen and (min-width: 630px) {
    .flow-text {
        font-size: 1.416rem;
    }
}

@media only screen and (min-width: 660px) {
    .flow-text {
        font-size: 1.44rem;
    }
}

@media only screen and (min-width: 690px) {
    .flow-text {
        font-size: 1.464rem;
    }
}

@media only screen and (min-width: 720px) {
    .flow-text {
        font-size: 1.488rem;
    }
}

@media only screen and (min-width: 750px) {
    .flow-text {
        font-size: 1.512rem;
    }
}

@media only screen and (min-width: 780px) {
    .flow-text {
        font-size: 1.536rem;
    }
}

@media only screen and (min-width: 810px) {
    .flow-text {
        font-size: 1.56rem;
    }
}

@media only screen and (min-width: 840px) {
    .flow-text {
        font-size: 1.584rem;
    }
}

@media only screen and (min-width: 870px) {
    .flow-text {
        font-size: 1.608rem;
    }
}

@media only screen and (min-width: 900px) {
    .flow-text {
        font-size: 1.632rem;
    }
}

@media only screen and (min-width: 930px) {
    .flow-text {
        font-size: 1.656rem;
    }
}

@media only screen and (min-width: 960px) {
    .flow-text {
        font-size: 1.68rem;
    }
}

@media only screen and (max-width: 360px) {
    .flow-text {
        font-size: 1.2rem;
    }
}
.seemore{
    overflow: auto !important;
}
.chip{
    background: #000 !important;
    white-space: nowrap;
    display: inline-block;
    height: 32px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0,0,0,.6);
    line-height: 32px;
    padding: 0 12px;
    border-radius: 16px;
    margin-bottom: 5px;
    margin-right: 5px;
}
.chip a{
    color: #fff !important;
}
/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #000; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    color: #ffffff;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 53px;
    margin-left: 50px;
}

.sidenav li>a {
    color: white;
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    line-height: 48px;
    padding: 0 32px;
}
.side-makes{
    border: 1px solid #f2f2f2;
    background: white;
    border-radius: 10px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}

}
.truncate {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.submenu{
    background: #efef8e;
    letter-spacing: -1px;
    border-radius: 10px;
    font-size: 18px;
    padding: 10px;
    margin-bottom: 11px;
    margin-top: 7px;
}
.type_tab{
    white-space: nowrap;
    display: inline-block;
    font-size: 14px;
    line-height: 32px;
    padding: 9px;
    border-radius: 6px;
    margin-right: 5px;
    opacity: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 19px;
    margin-top: 6px;
    background: #e9e9e9 !important;
    color: #5e5e5e;
    font-weight: bold;
    box-shadow: 0 1px 0 #e9e2e2;
}
.type_tab.active {
    background: #ffff8d !important;
    color: black;
}
.showflex{
    display: flex;
}
.materialize-textarea {
    overflow: scroll;
}

#more {
    display: none;
}

.card {
    background: white;
    margin-bottom: 20px;
}

i.left {
    margin-right: 0px !important;
}

.tabb {
  display: inline-block;
  padding: 7px;
  margin: 0 -2px;
  width: 23%;
  text-align: center;
  margin-bottom: 13px;

}

.tabb:hover {
    cursor: pointer;
}

.tabs input:checked + label {
  background: #ffff8d;
  color: black;
  border: 3px solid #efef8d;
  font-weight: bold;
  border-radius: 99px;
}

.social_share:hover {
    opacity: 0.8;
}

.tabs .content > div {
    display: none;
    margin-top: 20px;
}

.iosphotos {
    background: transparent linear-gradient(rgba(255, 255, 255, 0), #fff) repeat scroll 0% 0%;
    margin-top: -167px;
    width: 107%;
    margin-left: -11px;
    padding-top: 102px;
    padding-bottom: 37px;
}

.margintop {
    margin-top: 17px;
}

.iosphotos:hover {
    background-color: transparent !important;
}

#bodydes li {
    list-style-type: initial !important;
}

.i.left {
    margin-right: 4px !important;
}



.seemore {
    display: inline-flex;
    float: left;
    margin-bottom: 3%;
    width: 100%;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 8px;
}

.ftext a {
    color: #9e9e9e !important;
}

.morepic {
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24);
    max-width: 150px;
    border-radius: 10px;
}

#similar {
    min-height: 185px;
    max-height: 190px;
    height: 100%;
    padding-bottom: 184px;
}

#similar img {
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24);
    border-radius: 10px;
    border: none;
    width: 133px !important;
    height: 85px !important;
}

textarea.materialize-textarea {
    border: 1px solid #eee;
    padding-left: 10px;
    margin-bottom: 5px;
}

.iconleft {
    margin-right: 3px;
    line-height: 0.7;
}
.loadmore{

    text-align: center;
    background: #f9f9f9;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;

}

.modal {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #a5afab66;
    animation-name: fadeIn;
    animation-duration: .4s
}

.modal-content {
    position: fixed;
    bottom: 0;
    background-color: #fefefe;
    width: 100%;
    height: 70vh;
    animation-name: slideIn;
    animation-duration: .2s;
    overflow-y: auto;
}

.x {
    display: block;
    padding: 5px;
    position: fixed;
    background: #ffff8d;
    width: 40px;
    float: right;
    border-radius: 99px;
    height: 40px;
    text-align: center;
    font-size: 29px;
    box-shadow: 0 0 0 2px #f5f584;
    font-weight: bold;
    right: 25px;
    margin-top: -25px;
    z-index: 10000;
}

.x a {
    color: black;
}
@-webkit-keyframes slideIn {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@keyframes slideIn {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

#pages{
    background: #F2E993;
    padding: 11px;
    border-radius: 5px;
    margin-top: 20px;
  }
.tag{
  margin-bottom: 11px;
  font-size: 15px;
  font-weight: bold;
}
.tag a{
  color: rgba(0, 0, 0, 0.87) ;

}
.racing{
  font-family: 'Racing Sans One', cursive;
  margin-top: 3rem;
}
.car_sec{
  background: white;
  padding: 20px;
  margin: 7px;
  box-shadow: 0 6px 12px 0 #f7f7f7;

}
.specs{
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.spec_title{
  border-bottom: 4px solid #efef8d;
  padding-bottom: 1px;
}
.car_specs_answer{
 margin-top: 10px;
}


.margintop {
  margin-top: 30px;
}
.materialize-textarea {
  overflow: scroll;
}


.car_nav {
    font-size: 16px;
    background: #F2E993;
    color: #2B2B00;
    padding: 19px;
    border-left: 1px solid #fff6a4;
}

#bodydes ul {
  padding-inline-start: 24px;
}
#browse ul {
  padding-left: 0 !important;
}

.margintop2 {
  margin-top: 35px !important;
}

.margintop {
  list-style-type: none;
}

.topcar {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24)
}

.browseimg {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24);
  border: 1px solid #f2f2f2;
  background: #fff
}

.browseimg img {
  height: 67px;
  width: 87px;
  margin-top: 4px
}

.carname {
  line-height: 5;
  color: #fff;
  padding-right: 10px;
  padding-left: 10px;
  height: 80px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24);
  border-radius: 0 10px 10px 0
}

.carcard {
  display: inline-flex;
    align-items: center;

}

.margintop {
  margin-top: 17px
}

.number {
  background: #000;
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 42px
}

.seemore {
  display: inline-flex;
  float: left;
  margin-bottom: 3%;
  width: 100%;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch !important
}

.s12 .margintop img {
  height: auto
}

@media (min-width: 300px) and (max-width: 806px) {
  .carnametop {
    font-size: 12px
  }
}

@media (min-width: 300px) and (max-width: 1042px) {
  .trdcar {
    border-radius: 10px;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24);
    height: 92px;
    width: 142px
  }
}

@media (min-width: 1042px) {
  .trdcar {
    border-radius: 10px;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24);
    height: 100px;
    width: auto
  }
}

@media (min-width: 993px) and (max-width: 1579px) {
  #topcars {
    width: 33%;
      margin-bottom: 2rem;
      height: 135px;
  }
}

@media (max-width: 414px) {
  .margintop1 {
    width: 33.3%;
    margin-left: auto;
    left: auto;
    right: auto
  }

  .browseimg {
    border-radius: 10px !important
  }
}
.carsscroll {
  margin-right: 7px;
  margin-left: 8px;

}
.carsscroll img {
  width: 149px;
  height: 92px;
  border-radius: 10px;
}
.intro{
  margin-bottom: 9px;
}
strong {
  font-weight: bold;
}
.img_box{
    height: 116px;
}
.car_index{
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 6px 12px 0 rgb(224 224 224 / 45%);
    height: 247px;
    overflow: hidden;
    width: 80%;
    margin: 30px auto 29px;
}
.img_make_index{
    max-width: 30px;
    margin-right:5px ;
    background: white;
    border-radius: 4px;
    margin-top: 3px;
}
.title_car_index{
    font-size: 16px;
    font-weight: bold;
    color: white;
    padding: 5px;
    border-radius: 15px;
    line-height: 1.4;

}
.body_index{
    font-size: 14px;
    margin-top: 7px;
    text-align: left;
}
.box_title_index{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a48c4;
    border-radius: 3px;
    padding: 0 20px;
    font-size: 16px;
}
.make_des_footer {
    background: #f0f0f0;
    padding: 50px 10%;
    margin-top: 40px;
}
.easy-autocomplete-container ul{
    z-index: 1999;
    background: white;
}
.search-br{
    font-size: 23px;
    margin-top: 27px;
    border-top: 1px solid #eee;
    padding-top: 10px;
    font-weight: bold;
}
.fxds{
    position: fixed;
    height: auto;
    width: 100%;
    text-align: center;
    bottom: 0;
    z-index: 99999;
    padding-top: 4px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background: #00000099;
}

/*


 */
