body {
  padding: 0;
  margin: 0;
  background-color: white;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: black;
  background-size: cover;
  font-size: 13px;
}

.clearBoth {
  clear: both;
}

.hidden {
  display: none !important;
}

h2 {
  margin: 0;
  padding: 0.8em 0;
}

h3 {
  color: #555;
}

a {
  text-decoration: none;
  color: #222;
  cursor: pointer;
}

a.colored {
  color: #6f97ad;
}
a.colored:hover {
  text-decoration: underline;
}

button:focus {
  outline: 0;
}

textarea {
  padding: 10px;
  box-sizing: border-box;
}

.mobile {
  display: inline-block;
}

.nomobile {
  display: none;
}

.centered {
  text-align: center;
  margin: auto;
}

.text-bold {
  font-weight: bold;
}

.button {
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9em;
  padding: 4px 17px;
  box-sizing: border-box;
  color: black;
  font-weight: normal;
  white-space: nowrap;
  border: 1px solid #9c9c9c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  text-align: center;
  user-select: none;
  display: inline-block;
  margin: 2px 0;
}
.button.big {
  font-size: 1.1em;
  padding: 7px 23px;
  border-radius: 25px;
}
.button:hover {
  background-color: black;
  color: white;
}
.button i {
  margin-right: 7px;
  font-size: 1.2em;
  vertical-align: middle;
}
.button i.right {
  margin-right: 0;
  margin-left: 7px;
}
.button.inverted {
  border-color: #3d3d3d;
  color: #3d3d3d;
  background-color: black;
}
.button.inverted:hover {
  background-color: #3d3d3d;
  color: white;
  border-color: black;
}
.button.red {
  border-color: #e57373;
  color: white;
  background-color: #e57373;
}
.button.red:hover {
  background-color: #3d3d3d;
  color: white;
  border-color: white;
}
.button.green {
  border-color: #81c784;
  color: white;
  background-color: #81c784;
}
.button.green:hover {
  background-color: #3d3d3d;
  color: white;
  border-color: white;
}
.button.yellow {
  border-color: #f0ad4e;
  color: white;
  background-color: #f0ad4e;
}
.button.yellow:hover {
  background-color: #3d3d3d;
  color: white;
  border-color: white;
}
.button.blue {
  border-color: #337ab7;
  color: white;
  background-color: #337ab7;
}
.button.blue:hover {
  background-color: #3d3d3d;
  color: white;
  border-color: white;
}

.modernButton {
  color: black;
  font-size: 15px;
  text-align: center;
  display: inline-block;
  height: 42px;
  cursor: pointer;
  line-height: 42px;
  border-radius: 21px;
  border: 1px solid #eaeaea;
  box-sizing: border-box;
  padding: 0 20px;
}
.modernButton:hover {
  background-color: #ededed;
}
.modernButton.green {
  background-color: #76b578;
  color: white;
}
.modernButton.green:hover {
  background-color: #95df99;
}

.round-button {
  display: inline-block;
  border-radius: 24px;
  cursor: pointer;
  padding: 4px 10px;
  box-sizing: border-box;
  border: 1px solid #e7e7e7;
  text-align: center;
  line-height: 24px;
  margin: 3px 2px;
  font-size: 14px;
}
.round-button.bold {
  font-weight: bold;
}

.form input[type=text],
.form input[type=number],
.form textarea,
.form select {
  width: 100%;
  margin: 5px 0px;
  height: 36px;
  font-size: 1.1em;
  border: 1px solid #ddd;
  padding: 0 10px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.12);
  color: black;
}
.form input[type=text].error,
.form input[type=number].error,
.form textarea.error,
.form select.error {
  border-color: #ec5353;
  animation-name: fadeRed;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.form input[type=text][disabled=disabled],
.form input[type=number][disabled=disabled],
.form textarea[disabled=disabled],
.form select[disabled=disabled] {
  color: grey;
  background-color: rgba(255, 255, 255, 0.05);
}
.form textarea {
  height: 4em;
}
.form.white input[type=text],
.form.white input[type=number],
.form.white textarea,
.form.white select {
  background-color: black;
  border: 1px solid #dcdcdc;
  color: #404040;
}

.loadingBar {
  position: fixed;
  width: 100%;
  height: 5px;
  top: 0px;
  background-size: 15px 15px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 85%, transparent);
  animation: animate-stripes 1s linear infinite;
}

@keyframes animate-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
.sys_message {
  margin: 40px auto;
  width: 80%;
  max-width: 400px;
  background-color: #e1f0e2;
  border: 1px dotted #a8cdab;
  padding: 20px 30px;
  font-size: 1.1em;
  box-sizing: border-box;
}
.sys_message.error {
  background-color: #f0e1e0;
  border-color: #dfb7b5;
}
.sys_message.warning {
  background-color: #f0ece0;
  border-color: #e2d2a2;
}

form.fancy input[type=text],
form.fancy input[type=password],
form.fancy textarea {
  height: 30px;
  border-radius: 2px;
  border: 1px solid #eee;
  font-size: 1.1em;
  width: 100%;
  margin-bottom: 10px;
}
form.fancy textarea {
  height: 86px;
}
form.fancy div {
  clear: both;
}
form.fancy div span:nth-child(1) {
  float: left;
  width: 30%;
  text-align: right;
  padding-right: 2%;
}
form.fancy div span:nth-child(2) {
  float: left;
  width: 50%;
}
form.fancy .remind {
  float: right;
  margin-top: 10px;
  font-weight: bold;
}

.siteHeader {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 12px;
}
.siteHeader .logo {
  float: left;
}
.siteHeader .logo .nLetter {
  position: absolute;
  margin: 24px 0 0 32px;
  background: url(/images/logo_n.png) no-repeat;
  height: 40px;
  width: 40px;
  background-size: 20px;
}
.siteHeader .logo:hover .nLetter {
  -webkit-animation-name: logoAnimation;
  -webkit-animation-duration: 0.5s;
}
.siteHeader .main_title {
  position: absolute;
  color: #757575;
  font-size: 14px;
  margin: -2px 0 0 -1px;
  padding: 0;
  font-weight: 400;
  display: block;
}
.siteHeader .menu {
  float: right;
  margin-top: 10px;
  display: none;
}
.siteHeader .menu a {
  padding: 8px 14px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
}
.siteHeader .menu a:hover {
  border-bottom: 2px solid black;
}
.siteHeader .menu a i {
  margin-right: 7px;
}
.siteHeader .actions {
  float: right;
}
.siteHeader .menu a.logoDL {
  padding-bottom: 0;
  padding-top: 0;
  float: right;
}
.siteHeader .menu a.logoDL img {
  width: 122px;
}

.centerContainer {
  max-width: 1280px;
  margin: auto;
}

.searchForm select {
  width: 24%;
  padding: 0 0.5%;
}
.searchForm select[name=start_year] {
  display: none;
}
.searchForm input {
  width: 24%;
}

.siteContent {
  box-sizing: border-box;
}
.siteContent .contentBack {
  background-color: transparent;
  padding-bottom: 50px;
}
.siteContent .profileList div.item {
  width: 100%;
  display: table;
}
.siteContent .profileList div.item div.cell {
  width: 33%;
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  float: none;
}
.siteContent .profileList div.item div.cell textarea {
  width: 100%;
  height: 100px;
}
.siteContent .profileList div.item div.cell.stats {
  text-align: left;
}
.siteContent .profileList div.item div.cell.stats ul {
  padding-left: 15px;
}
.siteContent .registrationForm .usersCount {
  float: right;
  font-weight: 700;
  font-size: 7em;
  color: rgba(255, 255, 255, 0.05);
  cursor: default;
}

.paginationBlock {
  clear: both;
  text-align: center;
  padding-top: 30px;
}
.paginationBlock .dots {
  font-size: 1.7em;
  margin: 0 10px;
}

.sideMenu {
  color: #d6d6d6;
  font-size: 1.2em;
  display: none;
  position: fixed;
  background-color: rgba(24, 24, 24, 0.9);
  color: black;
  width: 100%;
  height: 100%;
  margin-top: 46px;
  padding: 16px;
  z-index: 10000;
  box-sizing: border-box;
  overflow: scroll;
}
.sideMenu h3 {
  font-size: 24px;
  color: black;
  font-weight: 300;
  margin: 20px 0 10px 0;
}
.sideMenu .multiselect i {
  font-size: 1.4em;
  vertical-align: middle;
  margin-right: 6px;
}
.sideMenu .searchFilters a {
  display: inline-block;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9em;
  padding: 3px 10px;
  box-sizing: border-box;
  border: 1px solid #e7e7e7;
  text-align: center;
  line-height: 24px;
  margin: 3px 2px;
}
.sideMenu .searchFilters a i {
  display: none;
}
.sideMenu .searchFilters a.selected {
  background-color: rgba(255, 255, 255, 0.3);
  color: black;
}
.sideMenu .searchFilters a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.sideMenu .searchFilters .submenu {
  display: none;
}
.sideMenu .searchFilters a.selected + .submenu {
  display: block;
}
.sideMenu .searchFilters .subitem {
  display: block;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 5px 5px 66px;
}
.sideMenu .searchFilters .small a {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 20px;
  margin: 5px 3px;
  font-size: 13px;
  color: white;
}
.sideMenu .searchFilters .small a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.54);
}
.sideMenu .searchFilters .priceSlider {
  padding: 12px;
  margin-bottom: 30px;
}
.sideMenu .searchFilters .priceSlider input {
  background-color: transparent;
  border: 0;
  color: #080808;
  font-size: 1.05em;
  float: left;
  width: 50%;
  box-sizing: border-box;
  margin-top: 10px;
}
.sideMenu .searchFilters .priceSlider input:nth-child(1) {
  float: right;
}
.sideMenu .topMenu {
  width: 100%;
}
.sideMenu .topMenu a {
  display: block;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  box-sizing: border-box;
  text-align: center;
  padding: 8px 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  float: left;
  font-size: 0.8em;
}
.sideMenu .topMenu a:hover {
  border-bottom: 1px solid black;
}
.sideMenu .topMenu a i {
  margin-right: 3px;
}
.sideMenu .topMenu a.logoDL {
  padding: 0px 11px;
}
.sideMenu .topMenu a.logoDL img {
  width: 122px;
  margin-top: 6px;
}

.carsDetails {
  padding: 0 10px;
}
.carsDetails .swiper-slide img {
  width: 100%;
}
.carsDetails .swiper-button-prev,
.carsDetails .swiper-button-next {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px;
}
.carsDetails .swiper-button-prev {
  left: 0;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.carsDetails .swiper-button-next {
  right: 0;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
.carsDetails .give_like {
  margin-bottom: 16px;
}
.carsDetails .car-details__phone-cta {
  position: fixed;
  width: 64px;
  height: 64px;
  background-color: #5ca960;
  color: white;
  font-size: 30px;
  border-radius: 50%;
  box-shadow: 1px 1px 5px gray;
  z-index: 5;
  text-align: center;
  line-height: 64px;
  bottom: 16px;
  right: 16px;
}
.carsDetails .car-details__phone-cta:hover {
  background-color: #72c677;
}

.cars-list .notifyButton {
  float: right;
  margin-top: 20px;
}
.cars-list .actions {
  margin-top: 7px;
  padding-left: 8px;
  padding-right: 8px;
}
.cars-list .actions .detailsButton {
  float: right;
  font-weight: bold;
  margin-top: 4px;
  font-weight: bolder;
  color: #155d90;
}
.cars-list .actions .detailsButton:hover {
  color: #60aae2;
}
.cars-list .price {
  color: #06608f;
}
.cars-list .give_like {
  font-size: 12px;
  margin-top: 4px;
  display: inline-block;
  float: left;
}
.cars-list .cars-list__tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  width: 100%;
  text-align: center;
}
.cars-list .cars-list__item {
  display: flex;
  flex-direction: column;
}
.cars-list .cars-list__item .button {
  width: auto;
  float: right;
}
.cars-list .cars-list__item .comments {
  text-align: right;
  margin: 3px 0;
  color: black;
  font-size: 0.8em;
}
.cars-list .cars-list__item-image {
  border-radius: 5%;
  box-sizing: border-box;
}
.cars-list .cars-list__item-image img {
  width: 100%;
  border-radius: 5%;
  display: block;
}
.cars-list .cars-list__item-details {
  font-weight: bolder;
}
.cars-list .cars-list__item-features--desktop {
  display: flex;
  gap: 10px;
  justify-content: center;
  color: #333;
  margin: 4px 0;
}

.breadcrumbs {
  padding: 10px 0;
}
.breadcrumbs i {
  margin: 0 5px;
  color: #b7b7b7;
}
.breadcrumbs a:hover {
  color: gray;
}

.socialShares {
  position: absolute;
  width: 170px;
  right: 12px;
  margin-top: 44px;
}
.socialShares .button {
  font-size: 22px;
  margin-top: 10px;
  padding: 6px;
  width: 42px;
  text-align: center;
  margin-left: 2px;
  margin-right: 2px;
}
.socialShares .button i {
  margin: 0;
}
.socialShares .button.facebook {
  background-color: #385ea4;
}
.socialShares .button.twitter {
  background-color: #2caae1;
}
.socialShares .button.whatsapp {
  background-color: #2ccc4a;
}
.socialShares .corner {
  display: block;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  box-shadow: 0 1px 2px gray;
  position: absolute;
  margin-left: 70%;
  margin-top: -5px;
  background-color: #fff5ec;
}
.socialShares .box {
  position: absolute;
  background-color: #fff5ec;
  box-shadow: 0 2px 2px gray;
  padding: 7px 7px;
  line-height: 16px;
  z-index: 10000;
}

.home-block {
  display: block;
  padding: 0 6px;
}
.home-block h3 {
  margin: 20px 0 5px 0;
}
.home-block .top-hint {
  text-align: right;
  opacity: 0.8;
}
.home-block .top-hint img {
  margin-left: 10px;
  width: 34px;
  margin-right: 19px;
  margin-top: -8px;
  vertical-align: middle;
}
.home-block .search input {
  width: 100%;
  font-size: 20px;
}
.home-block .popular-brands {
  margin: 7px 0 20px 0;
}
.home-block .popular-brands .round-button {
  font-weight: bold;
}

.siteFooter {
  margin: 30px 0;
  color: black;
  font-size: 0.9em;
  text-align: center;
}
.siteFooter .text {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.59);
  display: none;
}

.commentsBlock {
  width: 100%;
  float: left;
}
.commentsBlock .comment {
  border: 1px solid rgba(235, 244, 250, 0.52);
  border-radius: 5px;
  margin: 10px 0;
  width: 100%;
}
.commentsBlock .comment .header {
  padding: 10px;
  font-size: 0.9em;
  color: black;
  font-weight: bolder;
  background-color: rgba(235, 244, 250, 0.24);
}
.commentsBlock .comment .content {
  padding: 10px;
}
.commentsBlock form textarea {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  height: 100px;
  display: block;
  margin-bottom: 7px;
  margin-top: 20px;
}
.commentsBlock .similar-cars > a {
  float: left;
  width: 48%;
  margin-right: 2%;
  margin-bottom: 3%;
  text-align: center;
  font-size: 11px;
}
.commentsBlock .similar-cars > a img {
  width: 100%;
  display: block;
  border-radius: 3px;
  margin-bottom: 5px;
}

.specsBlock {
  width: 100%;
  float: right;
}
.specsBlock .specsList {
  margin: 0;
  padding: 0;
  clear: both;
}
.specsBlock .specsList li {
  list-style: none;
  clear: both;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  padding: 10px 0;
}
.specsBlock .specsList li label {
  float: left;
  width: 40%;
  box-sizing: border-box;
  color: #080808;
  text-align: right;
  text-transform: uppercase;
  font-size: 1em;
  padding-right: 24px;
}
.specsBlock .specsList li div {
  float: right;
  width: 60%;
  box-sizing: border-box;
  color: black;
  font-weight: bolder;
  font-size: 1.2em;
  overflow-wrap: break-word;
}

.fancyForm {
  width: 100%;
}
.fancyForm .form {
  margin: 0;
  padding: 0;
  clear: both;
}
.fancyForm .form li {
  list-style: none;
  clear: both;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  padding: 10px 0;
}
.fancyForm .form li label {
  float: left;
  width: 40%;
  box-sizing: border-box;
  color: #080808;
  text-align: right;
  text-transform: uppercase;
  font-size: 1em;
  padding-right: 24px;
  vertical-align: middle;
  height: 20px;
  margin-top: 14px;
}
.fancyForm .form li div {
  float: right;
  width: 60%;
  box-sizing: border-box;
  color: black;
  font-weight: bolder;
  font-size: 1.2em;
}
.fancyForm .form .filesUploader #filelist div {
  width: 100%;
  font-size: 0.8em;
  font-weight: 100;
}
.fancyForm .form .filesUploader .previews div {
  width: 33%;
  box-sizing: border-box;
  float: left;
  padding: 10px 5px;
}
.fancyForm .form .filesUploader .previews div img {
  width: 100%;
  border-radius: 3px;
}
.fancyForm .form .filesUploader .previews div i {
  float: right;
  opacity: 0;
  cursor: pointer;
  color: #e3e3b8;
  margin-left: 7px;
  margin-bottom: 4px;
}
.fancyForm .form .filesUploader .previews div i.delete {
  color: #f67f7f;
}
.fancyForm .form .filesUploader .previews div i.make_main {
  color: #f4ea6f;
}
.fancyForm .form .filesUploader .previews div:hover i {
  opacity: 1;
  animation-name: fadeIn;
  animation-duration: 0.3s;
}
.fancyForm .form .filesUploader .previews div:hover i:hover {
  text-shadow: 0px 2px 0px black;
}
.fancyForm .form .filesUploader .previews div.loading {
  opacity: 0.7;
}
.fancyForm .form .filesUploader .previews div.loading:before {
  content: " ";
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url("/images/loader.gif");
  margin: 50px 0 0 50px;
}

.actionsBlock {
  margin-top: 10px;
}
.actionsBlock .modernButton {
  width: 100%;
  display: block;
  margin: 10px 0;
}
.actionsBlock .modernButton i {
  margin-right: 7px;
}

.bottomText {
  text-align: justify;
  color: rgba(0, 0, 0, 0.48);
  font-size: 13px;
  margin: 50px 20px;
}

.give_like {
  font-size: 14px;
  font-weight: bolder;
}
.give_like i {
  font-size: 18px;
  vertical-align: middle;
}
.give_like .fa-heart {
  color: red;
}

.car-of-day {
  font-weight: bold;
}
.car-of-day .winner {
  width: 30%;
  float: left;
  background-color: #ffeb88;
  padding: 10px 5px;
  border-radius: 6px;
  box-sizing: border-box;
  text-align: center;
}
.car-of-day .winner .date {
  font-weight: lighter;
}
.car-of-day .party {
  width: 65%;
  box-sizing: border-box;
  float: right;
  position: relative;
}
.car-of-day .party .vs {
  position: absolute;
  left: 50%;
  width: 0;
}
.car-of-day .party .vs .icon {
  background-image: url("/images/vs.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: 50px;
}
.car-of-day .car {
  width: 50%;
  float: right;
  padding: 0 0 0 10px;
  box-sizing: border-box;
  text-align: center;
}
.car-of-day .car .title {
  overflow: hidden;
  height: 34px;
}
.car-of-day .car.second {
  padding: 0 10px 0 0;
}
.car-of-day img {
  width: 100%;
  border-radius: 3px;
  margin: 5px 0;
}
.car-of-day .give_like {
  font-size: 16px;
}
.car-of-day .progressbar {
  height: 10px;
  width: 100%;
  background-color: #4eb6de;
  border-radius: 4px;
  margin-top: 15px;
  margin-bottom: 8px;
  position: relative;
}
.car-of-day .progressbar .progress {
  height: 10px;
  background-color: #d26dc6;
  border-radius: 4px;
}
.car-of-day .progressbar i {
  font-size: 24px;
  position: absolute;
  color: #ffca05;
  text-shadow: 0 0 2px black;
  margin-top: -7px;
}

@keyframes fadeRed {
  0% {
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0);
  }
  30% {
    box-shadow: 0px 0px 5px #fac1c1;
  }
  80% {
    box-shadow: 0px 0px 5px #f55151;
  }
  70% {
    box-shadow: 0px 0px 5px #ffefef;
  }
  100% {
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0);
  }
}
@keyframes logoAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    -webkit-transform: rotate(360deg);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shake {
  0%, 15% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  2% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  5% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  7% {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  10% {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
  -webkit-animation-iteration-count: none;
  animation-iteration-count: none;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.bgcolor1 {
  background-color: #ef8e87;
}

.bgcolor2 {
  background-color: #f88db1;
}

.bgcolor3 {
  background-color: #94c6f0;
}

.bgcolor4 {
  background-color: #929fe8;
}

.bgcolor5 {
  background-color: #9bcfd6;
}

.bgcolor6 {
  background-color: #9debe3;
}

.bgcolor7 {
  background-color: #fbf3a5;
}

.bgcolor8 {
  background-color: #fde18d;
}

.bgcolor9 {
  background-color: #eefa7e;
}

.bgcolor10 {
  background-color: #d5f4b2;
}

.bgcolor11 {
  background-color: #a6e1a8;
}

.bgcolor12 {
  background-color: #ffa68b;
}

.bgcolor13 {
  background-color: #af958b;
}

.bgcolor14 {
  background-color: #d0d0d0;
}

.bgcolor15 {
  background-color: #a3bdca;
}

.burgerMenu {
  display: block;
}
.burgerMenu .burgerIcon {
  width: 32px;
  height: 32px;
  cursor: pointer;
  float: right;
  margin: 2px 10px 0 0;
}
.burgerMenu .content {
  display: none;
  position: fixed;
  background-color: rgba(24, 24, 24, 0.9);
  color: black;
  width: 100%;
  height: 100%;
  margin-top: 46px;
  padding: 16px;
  z-index: 10000;
  box-sizing: border-box;
  overflow: scroll;
}

.burgerMenu .content {
  line-height: 30px;
  margin-top: 76px;
}

.contentOverlay {
  position: fixed;
  background-color: white;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s ease;
  z-index: 5;
}
.contentOverlay.active {
  opacity: 0.3;
  visibility: visible;
}

.sideMenu {
  display: none;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
  width: 100%;
  height: 100%;
  margin-top: 46px;
  padding: 16px;
  z-index: 10000;
  box-sizing: border-box;
  overflow: scroll;
  line-height: 30px;
  margin-top: 76px;
}

@media (max-width: 500px) {
  body {
    padding-top: 70px;
  }
  .siteHeader {
    position: fixed;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 1px 4px #cacaca;
    border: 0;
    width: 100%;
    top: 0;
  }
  .siteHeader .topActions {
    border-bottom: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    padding: 4px 4px 4px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .siteHeader .topActions i {
    margin: 0px 6px;
    font-size: 20px;
  }
  .siteHeader .logo img {
    height: 30px;
    margin-left: 14px;
    margin-bottom: 3px;
  }
  .contentBack {
    padding: 0 10px;
  }
  .siteContent .item .details {
    padding-top: 8px;
  }
  .cars-list .cars-list__tiles {
    grid-template-columns: 1fr;
  }
  .cars-list .cars-list__item {
    padding: 0 10px;
    margin-top: 20px;
  }
  .cars-list .cars-list__item-details {
    text-align: left;
    margin-left: 6px;
    margin-top: 7px;
  }
  .cars-list .cars-list__item-details .model {
    font-size: 17px;
    margin-bottom: 5px;
  }
  .cars-list .cars-list__item-details .price {
    font-size: 18px;
  }
  .cars-list .cars-list__item-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    font-size: 14px;
    margin: 10px 0;
    color: #555;
  }
  .cars-list .cars-list__item-features i {
    color: black;
  }
  .cars-list .cars-list__item-more {
    font-weight: normal;
    color: #343434;
  }
  .cars-list .give_like {
    font-size: 12px;
    float: none;
  }
  .cars-list .give_like i {
    font-size: 24px;
  }
  .carsDetails .give_like {
    margin-top: 6px;
    margin-left: 6px;
    font-size: 16px;
  }
  .carsDetails .give_like i {
    margin-right: 3px;
    font-size: 24px;
  }
  .siteContent .profileList div.item div.stats {
    display: none;
  }
  .socialShares {
    margin-top: 0;
    left: 6px !important;
  }
  .socialShares .corner {
    margin-left: 15%;
  }
  .sideMenu {
    box-shadow: -1px 0px 4px 0px #424242;
    max-width: 300px;
    right: 0;
    margin-top: 0;
    padding-bottom: 100px;
  }
  .sideMenu .searchFilters a.subitem {
    border: 0;
    border-bottom: 1px dotted gray;
    border-radius: 0;
    padding: 0;
    margin: 4px 9px;
    display: inline-block;
  }
  .siteHeader .main_title {
    display: none;
  }
  .car-of-day .party .vs .icon {
    width: 50px;
    height: 50px;
    margin-left: -25px;
    margin-top: 48px;
  }
  .mobile-app-adhensive {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 0 9px gray;
  }
  .mobile-app-adhensive .action {
    float: right;
    padding: 8px 10px 2px 10px;
  }
  .mobile-app-adhensive .text {
    color: black;
    font-weight: bold;
    float: left;
    line-height: 50px;
    padding-left: 13px;
    font-size: 15px;
    font-weight: normal;
  }
  .remodal.mobile-app-modal {
    padding: 20px 0 20px 20px;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
  }
  .remodal.mobile-app-modal .main-text {
    font-size: 15px;
  }
}
@media (min-width: 501px) {
  .siteContent {
    padding-left: 10px;
  }
  .siteContent .item {
    width: 30%;
    margin: 3% 1%;
  }
  .siteContent .item .details {
    width: 100%;
  }
  .siteContent .item .details .model {
    height: 20px;
    overflow: hidden;
  }
  .siteContent .item .image {
    width: 100%;
    min-height: 129px;
  }
  .sideMenu h3 {
    font-size: 32px;
    color: black;
    font-weight: 300;
    margin: 20px 0 10px 0;
  }
  .sideMenu .searchFilters a {
    display: block;
    padding: 7px 5px 7px 0px;
    border: 1px solid transparent;
    color: #080808;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    border-radius: 0;
    margin: 0;
  }
  .sideMenu .searchFilters a i {
    margin: 0 20px 0 11px;
    font-size: 20px;
    display: inline-block;
  }
  .sideMenu .searchFilters a.selected {
    background-color: rgba(0, 0, 0, 0.05);
    color: black;
    border-bottom-color: transparent;
  }
  .sideMenu .searchFilters a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .sideMenu .searchFilters .small a {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid transparent;
    border-radius: 20px;
    margin: 5px 3px;
    font-size: 13px;
    color: black;
  }
  .sideMenu .searchFilters .small a:hover {
    background-color: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.54);
  }
  .siteHeader .menu {
    display: block;
    clear: both;
  }
  .searchForm select {
    width: 19.6%;
  }
  .searchForm select[name=start_year] {
    display: inline-block;
  }
  .searchForm input {
    width: 18%;
  }
  .commentsBlock {
    width: 50%;
  }
  .specsBlock {
    width: 45%;
  }
  .siteFooter .text {
    display: block;
  }
  .mobile {
    display: none;
  }
  .nomobile {
    display: inline-block;
  }
  .siteHeader .logo {
    float: left;
    margin-left: 20px;
  }
}
@media (min-width: 750px) {
  .siteHeader {
    margin-top: 10px;
    min-height: 65px;
  }
  .siteHeader .logo {
    margin-left: 20px;
  }
  .sideMenu {
    display: block;
    float: left;
    width: 24%;
    position: relative;
    background-color: transparent;
    height: auto;
    margin-top: 22px;
    padding: 0;
    overflow: visible;
  }
  .sideMenu .searchFilters a.selected {
    background-image: url("/images/tick.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: 97%;
  }
  .siteContent {
    float: right;
    width: 76%;
  }
  .siteContent .item {
    width: 23%;
    margin: 3% 1%;
  }
  .contentBack {
    margin-left: 1%;
    border-radius: 10px;
    padding: 0 20px;
  }
  .carsDetails {
    padding: 0;
  }
  .burgerMenu {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
