html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

/* AutoScore Colors */
/* SPRITES                                                                        */
/* 1. Enable sprite (use it to set parameters so icon_sprites.png can be used)    */
/* 2. Include the "sprite" mixin, with the following parameters:                  */
/*      $rect           : being the clipping rectangle for the sprite             */
/*      $rect2          : optional rectangle for the "hover" state                */
/*      $offX, $offY    : the positional offset of the sprite in the element      */
/*    Example usage:                                                              */
/*    @include sprite()                                                              */
/* 3. Adjust the clipping of a sprite if needed in another context                */
.icon_inline {
  display: inline-block;
  vertical-align: middle;
}

.icon_inline + span {
  margin-left: 5px;
}

a.link_with_icon {
  text-decoration: none;
}

a.link_with_icon span {
  text-decoration: underline;
}

.test_autouncle_cta {
  border: 1px solid #edeae6;
  padding: 18px;
  display: block;
  text-decoration: none;
  background-color: #FFF;
  overflow: hidden;
}

.test_autouncle_cta a {
  display: block;
}

.test_autouncle_cta:hover {
  background-color: #f6f3ef;
}

.test_autouncle_cta .icon {
  float: left;
  margin-right: 20px;
}

.test_autouncle_cta .text {
  overflow: hidden;
  display: block;
}

.test_autouncle_cta .heading {
  font-size: 18px;
  font-weight: bold;
}

.test_autouncle_cta + .test_autouncle_cta {
  margin-top: 18px;
}

.test_autouncle_cta > * {
  display: inline-block;
  vertical-align: middle;
}

.test_autouncle_cta .buying_icon {
  display: inline-block;
  background: url(//assets.autouncle.com/assets/front_page/category_icons-bb893ed532fee7e9ffcbbcd64682d0d93e1d8cc220ffa3f18e804769ad1722ca.png) no-repeat 0 0;
  width: 144px;
  height: 96px;
  margin-right: 20px;
  vertical-align: middle;
}

.test_autouncle_cta h3 {
  margin: 0 !important;
}

body.selling_reports {
  background: #292e2f;
  padding-top: 20px;
}

body.selling_reports #top-wrapper, body.selling_reports #content-wrapper, body.selling_reports #footer-wrapper {
  width: 960px;
  margin: 0 auto;
  height: auto;
}

body.selling_reports #content-wrapper {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

body.selling_reports #footer-wrapper {
  background: none;
  border: 0 none;
  color: #f6f3ef;
}

body.selling_reports #footer-wrapper a {
  color: #f6f3ef;
}

body.selling_reports #footer {
  width: auto;
  padding: 40px 0;
}

body.selling_reports #top-inner {
  background: #f6f3ef url(//assets.autouncle.com/assets/bg_white_to_alternate_soft-0218e3d819603748c3b56c1b15fae60b181431dd94ce659d85c9ae09f7891de6.png) repeat-x top;
  border-bottom: 1px solid #edeae6;
  padding: 20px 40px;
  overflow: hidden;
}

body.selling_reports #top-inner #logo {
  float: left;
}

body.selling_reports #top-inner > .right {
  float: right;
}

body.selling_reports #top-inner > .right .social_buttons > * {
  vertical-align: top;
  margin-left: 5px !important;
  max-height: 20px;
  max-width: 100px;
  display: inline-block;
}

body.selling_reports #top-inner > .right .social_buttons > .label {
  display: block;
  max-width: none;
}

body.selling_reports #content-inner {
  background-color: #FFFFFF;
  overflow: hidden;
}

body.selling_reports #flash_messages {
  margin: 0 40px;
}

body.selling_reports .popup_text {
  max-width: 600px;
}

body.selling_reports #mobile-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

body.selling_reports #mobile-popup .popup-content {
  background-color: white;
  padding: 20px 0 0 0;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

body.selling_reports #mobile-popup .popup-content .close-popup {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

body.selling_reports #mobile-popup .popup-content .close-popup:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

body.selling_reports #mobile-popup .popup-content .popup-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 14px;
  text-align: center;
}

body.selling_reports #mobile-popup .popup-content .car-value-graph {
  background-color: #f0f2f5;
  padding: 20px;
  border-radius: 12px;
  margin: 0 20px;
  position: relative;
}

body.selling_reports #mobile-popup .popup-content .car-value-graph .graph-container .price-range-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

body.selling_reports #mobile-popup .popup-content .car-value-graph .graph-container .month-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

body.selling_reports #mobile-popup .popup-content .car-value-graph .graph-container .chart-svg {
  width: 100%;
  height: 32px;
}

@media (min-width: 640px) {
  body.selling_reports #mobile-popup .popup-content .car-value-graph .graph-container .chart-svg {
    height: 40px;
  }
}

body.selling_reports #mobile-popup .popup-content .car-value-graph .graph-container .value-increase-label {
  fill: #01acdb;
  font-weight: 700;
  font-size: 12px;
}

body.selling_reports #mobile-popup .popup-content .app-info {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

body.selling_reports #mobile-popup .popup-content .app-info .app-icon {
  width: 45px;
  height: 45px;
  background-color: #01acdb;
  background: linear-gradient(135deg, deepskyblue, #0099cc);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
}

body.selling_reports #mobile-popup .popup-content .app-info .app-icon img {
  width: 28px;
  height: 28px;
}

body.selling_reports #mobile-popup .popup-content .app-info .app-details {
  text-align: center;
}

body.selling_reports #mobile-popup .popup-content .app-info .app-details .app-name {
  justify-self: start;
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

body.selling_reports #mobile-popup .popup-content .app-info .app-details .app-ratings {
  display: flex;
  gap: 14px;
  justify-content: center;
}

body.selling_reports #mobile-popup .popup-content .app-info .app-details .app-ratings .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
}

body.selling_reports #mobile-popup .popup-content .app-features {
  padding: 20px;
  background-color: rgba(94, 186, 94, 0.05);
}

body.selling_reports #mobile-popup .popup-content .app-features .features-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 14px;
  text-align: center;
}

body.selling_reports #mobile-popup .popup-content .app-features .feature-card {
  background-color: white;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(94, 186, 94, 0.2);
}

body.selling_reports #mobile-popup .popup-content .app-features .feature-card:not(:last-child) {
  margin-bottom: 12px;
}

body.selling_reports #mobile-popup .popup-content .app-features .feature-card .feature-icon {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

body.selling_reports #mobile-popup .popup-content .app-features .feature-card .feature-icon img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(87deg) brightness(80%) contrast(119%);
}

body.selling_reports #mobile-popup .popup-content .app-features .feature-card .feature-content {
  flex: 1;
}

body.selling_reports #mobile-popup .popup-content .app-features .feature-card .feature-content .feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

body.selling_reports #mobile-popup .popup-content .app-features .feature-card .feature-content .feature-description {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

body.selling_reports #mobile-popup .popup-content .app-features .feature-card .feature-badge {
  background-color: #4caf50;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

body.selling_reports #mobile-popup .popup-content .cta-button {
  padding: 20px;
}

body.selling_reports #mobile-popup .popup-content .cta-button .get-app-button {
  width: 100%;
  background: linear-gradient(135deg, deepskyblue, #0099cc);
  color: white;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.3);
}

body.selling_reports #mobile-popup .popup-content .cta-button .get-app-button:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

body.selling_reports #mobile-popup .popup-content .cta-button .get-app-button img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) saturate(100%) invert(100%);
}

@media (max-width: 480px) {
  body.selling_reports #mobile-popup {
    padding: 10px;
  }
  body.selling_reports #mobile-popup .popup-content {
    max-width: 100%;
    width: 100%;
    border-radius: 12px;
  }
  body.selling_reports #mobile-popup .popup-content .car-value-graph {
    margin: 0 10px;
    padding: 14px 10px;
  }
  body.selling_reports #mobile-popup .popup-content .car-value-graph .graph-placeholder {
    height: 100px;
  }
  body.selling_reports #mobile-popup .popup-content .app-info {
    padding: 24px 10px;
    justify-content: center;
  }
  body.selling_reports #mobile-popup .popup-content .app-info .app-icon {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }
  body.selling_reports #mobile-popup .popup-content .app-info .app-name {
    font-size: 20px;
  }
  body.selling_reports #mobile-popup .popup-content .app-features {
    padding: 14px 10px;
  }
  body.selling_reports #mobile-popup .popup-content .app-features .feature-card {
    padding: 12px;
  }
  body.selling_reports #mobile-popup .popup-content .cta-button {
    padding: 14px 10px;
  }
}

ul#steps {
  line-height: 38px;
}

ul#steps li {
  float: left;
  list-style-type: none;
}

ul#steps li.sep {
  padding: 0 10px;
  color: #b9b7b5;
}

ul#steps li > a, ul#steps li > span {
  text-decoration: none;
  color: #b9b7b5;
  font-weight: normal;
  cursor: default;
}

ul#steps li > a.current, ul#steps li > span.current {
  font-weight: bold;
}

ul#steps li > a.active, ul#steps li > span.active {
  cursor: pointer;
  color: #515c5e;
}

ul#steps li > a.active:hover, ul#steps li > span.active:hover {
  color: #1BADD5;
}

h1 {
  font-weight: normal;
  font-size: 42px;
  text-align: center;
  margin: 0 0 .1em 0;
  padding: 1em 0 0 0;
}

h1 + h2 {
  text-align: center;
  margin: 0 0 1em 0;
  border-bottom: none;
  color: #6b7374;
}

h2 {
  font-size: 24px;
  font-weight: normal;
  margin: 1em 0 0.5em 0;
  border-bottom: 1px solid #edeae6;
}

p {
  margin: .5em 0 .8em 0;
}

.attention_box {
  border-radius: 10px;
  padding: 18px 18px 18px 62px;
  background: #fbf5c7;
  position: relative;
  font-size: 12px;
  margin-bottom: 18px;
}

.attention_box > .icon, .attention_box > i {
  position: absolute;
  top: 18px;
  left: 18px;
  background: url(//assets.autouncle.com/assets/apps/in_app_sprite-853846cc2cde41812b12dd00086320053281056e130fec46636a36a7ac65df06.png) no-repeat 0 -26px;
  width: 26px;
  height: 26px;
}

.nr_plate {
  background: url(//assets.autouncle.com/images/selling_reports/nr_plate_small.png) no-repeat 0 0;
  width: 150px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  line-height: 36px;
  text-indent: 26px;
  text-align: left;
}

.big_number {
  font-size: 40px;
  vertical-align: middle;
  margin: 0 20px;
}

ul.with_green_ticks li {
  list-style-type: none;
  padding-left: 30px;
  background: url(//assets.autouncle.com/assets/tick_green-ceb94f89d5b2131ffe01c3956993e9b6d25d727347faa423a904f6e2fda95b71.png) no-repeat 0 2px;
  margin-bottom: 1em;
}

ul.car_info_list {
  text-align: left;
}

ul.car_info_list > li {
  overflow: hidden;
  padding: 5px;
}

ul.car_info_list > li.car_headline {
  font-weight: normal;
}

ul.car_info_list > li.odd {
  background-color: #f6f3ef;
}

ul.car_info_list > li > dfn {
  float: left;
  width: 45%;
}

ul.car_info_list > li > span {
  display: block;
  overflow: hidden;
}

#content-inner > section > section {
  font-size: 14px;
  margin-bottom: 20px;
  padding: 40px;
}

#content-inner > section > section > h2:first-child {
  margin-top: 0;
  font-size: 28px;
  text-align: center;
  border: 0 none;
}

#content-inner > section > section > h2:first-child + h3 {
  text-align: center;
}

#content-inner > section > section:last-child {
  margin-bottom: 0;
}

#content-inner > section > section.first {
  padding-top: 0;
}

section#benefits {
  clear: both;
  overflow: hidden;
  background-color: #f6f3ef;
}

section#benefits > h2 {
  margin-bottom: 40px;
}

section#benefits > article {
  width: 30%;
  float: left;
  margin-right: 40px;
}

section#benefits > article > img {
  border: 1px solid #dad4cb;
  margin-bottom: 10px;
}

section#benefits > article > h3 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

section#benefits > article.last {
  margin-right: 0;
}

section#benefits > article.bonus {
  margin: 0;
  padding: 20px 0 0 0;
  clear: both;
  float: none;
  width: 100%;
}

section#benefits > article.bonus > h2 {
  text-align: center;
  margin-bottom: 0;
  border: 0 none;
}

section#benefits > article.bonus > h3 {
  text-align: center;
  font-weight: normal;
  margin: 0;
}

section.testimonials > article {
  margin: 0 40px 20px 40px;
  border-bottom: 1px solid #edeae6;
  text-align: center;
}

section.testimonials > article:last-child {
  margin-bottom: 0;
  border-bottom: 0 none;
}

section.testimonials > article em {
  font-size: 20px;
}

section.objections {
  overflow: hidden;
}

section.objections > article {
  float: left;
  width: 47%;
  margin-right: 5%;
}

section.objections > article:last-child {
  margin-right: 0;
}

section.partners > h2 {
  font-size: 18px;
}

section.press {
  overflow: hidden;
  border-bottom: 1px solid #edeae6;
  margin: 20px 0 20px 0;
}

section#sales_page > section {
  clear: both;
}

section#sales_page section.video {
  padding-bottom: 0;
  margin-bottom: 0;
}

section#sales_page .video-player {
  position: relative;
  z-index: 2;
}

section#sales_page section.primary {
  margin-top: 40px;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

section#sales_page section.primary::after {
  clear: both;
  content: "";
  display: block;
}

section#sales_page section.primary article.start h2 {
  border-bottom: none;
  color: #f6f3ef;
}

section#sales_page section.primary article.start .cannot_find_car {
  display: none;
  position: absolute;
  top: 40px;
  right: 45px;
}

section#sales_page section.primary article.start .cannot_find_car.it_text {
  top: 30px;
}

section#sales_page section.primary article.start .cannot_find_car.it_text a {
  display: block;
  text-align: right;
}

section#sales_page section.primary article.start .cannot_find_car a {
  color: #1BADD5;
}

section#sales_page section.primary article.start .cannot_find_car .details {
  display: none;
}

section#sales_page section.primary article.start > p, section#sales_page section.primary article.start > h2 {
  margin: 0 0 .5em 0;
}

section#sales_page section.primary article.video {
  position: relative;
}

section#sales_page section.primary article.video a.report_example {
  position: relative;
  display: block;
  text-decoration: none;
  text-align: center;
  margin-bottom: -40px;
}

section#sales_page section.primary article.video a.report_example > img {
  display: block;
}

section#sales_page section.primary article.video a.report_example .link {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
}

section#sales_page section.primary article.video a.report_example .link i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

section#sales_page section.primary article.video a.report_example .link > span {
  text-decoration: underline;
}

section#sales_page section.primary article.video a.report_example:hover .link {
  background-color: rgba(0, 0, 0, 0.6);
}

section#sales_page section.cta_form {
  background: url(//assets.autouncle.com/assets/dark_leather_tall-ff04998f68ca3da1a0f90ddb03f8b0b851fbc7253c749594417b20ce6a720b64.jpg) repeat-x 0 0;
  background-color: #202e31;
  color: #cecdcb;
}

section#sales_page section.cta_form > article {
  float: left;
  margin-right: 3.28774%;
  width: 48.35613%;
}

section#sales_page section.cta_form > article.video {
  margin-right: 0;
}

section#sales_page section.cta_form form {
  overflow: hidden;
}

section#sales_page section.cta_form form > article .row {
  margin-bottom: 10px;
  position: relative;
}

section#sales_page section.cta_form form > article .row::after {
  clear: both;
  content: "";
  display: block;
}

section#sales_page section.cta_form form > article .row > label {
  text-align: right;
  font-weight: normal;
  font-size: 17px;
}

section#sales_page section.cta_form form > article .row.equipment_variant {
  display: none;
}

section#sales_page section.cta_form form > article .row .spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
}

section#sales_page section.cta_form form > article .row .spinner .spin {
  position: absolute;
  background: url(//assets.autouncle.com/assets/ajax-loader_transparent_small-9b968ccbe3d4f01566044321145fd1a409cf77ea75a777aa8b00bab6e4d19c26.gif) no-repeat 0 0;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-bottom: -8px;
}

section#sales_page section.cta_form form > article .row .spinner .bg {
  width: 100%;
  height: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

section#sales_page section.cta_form form > article.rest, section#sales_page section.cta_form form > article.equipment, section#sales_page section.cta_form form > article.km {
  display: none;
}

section#sales_page section.cta_form form > article.first .row > label, section#sales_page section.cta_form form > article.rest .row > label, section#sales_page section.cta_form form > article.km .row > label {
  float: left;
  display: block;
  margin-right: 6.79902%;
  width: 28.80065%;
}

section#sales_page section.cta_form form > article.first .row .error, section#sales_page section.cta_form form > article.first .row div.invalid, section#sales_page section.cta_form form > article.rest .row .error, section#sales_page section.cta_form form > article.rest .row div.invalid, section#sales_page section.cta_form form > article.km .row .error, section#sales_page section.cta_form form > article.km .row div.invalid {
  position: static;
  display: block;
  margin-left: 0;
  margin-right: 0;
  float: left;
  display: block;
  margin-right: 6.79902%;
  width: 100%;
  margin-right: 0;
  text-align: right;
  background: #fff;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #CF2020;
  color: #CF2020;
  margin-top: 5px;
  padding: 10px;
}

section#sales_page section.cta_form form > article.first .row input[type=text], section#sales_page section.cta_form form > article.first .row select, section#sales_page section.cta_form form > article.first .row input[type=number], section#sales_page section.cta_form form > article.rest .row input[type=text], section#sales_page section.cta_form form > article.rest .row select, section#sales_page section.cta_form form > article.rest .row input[type=number], section#sales_page section.cta_form form > article.km .row input[type=text], section#sales_page section.cta_form form > article.km .row select, section#sales_page section.cta_form form > article.km .row input[type=number] {
  float: left;
  display: block;
  margin-right: 6.79902%;
  width: 64.40033%;
  margin-right: 0;
}

section#sales_page section.cta_form form > article.first .row input.invalid[type=text], section#sales_page section.cta_form form > article.first .row select.invalid, section#sales_page section.cta_form form > article.first .row input.invalid[type=number], section#sales_page section.cta_form form > article.rest .row input.invalid[type=text], section#sales_page section.cta_form form > article.rest .row select.invalid, section#sales_page section.cta_form form > article.rest .row input.invalid[type=number], section#sales_page section.cta_form form > article.km .row input.invalid[type=text], section#sales_page section.cta_form form > article.km .row select.invalid, section#sales_page section.cta_form form > article.km .row input.invalid[type=number] {
  border: 1px solid #CF2020;
}

section#sales_page section.cta_form form > article.first .row input[type=text][disabled], section#sales_page section.cta_form form > article.first .row select[disabled], section#sales_page section.cta_form form > article.first .row input[type=number][disabled], section#sales_page section.cta_form form > article.rest .row input[type=text][disabled], section#sales_page section.cta_form form > article.rest .row select[disabled], section#sales_page section.cta_form form > article.rest .row input[type=number][disabled], section#sales_page section.cta_form form > article.km .row input[type=text][disabled], section#sales_page section.cta_form form > article.km .row select[disabled], section#sales_page section.cta_form form > article.km .row input[type=number][disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}

section#sales_page section.cta_form form > article.equipment {
  clear: both;
  margin-bottom: 20px;
}

section#sales_page section.cta_form form > article.equipment .row {
  margin-top: 20px;
}

section#sales_page section.cta_form form > article.equipment .row::after {
  clear: both;
  content: "";
  display: block;
}

section#sales_page section.cta_form form > article.equipment .row > label {
  text-align: left;
  margin-bottom: 5px;
  float: left;
  display: block;
  margin-right: 3.28774%;
  width: 100%;
  margin-right: 0;
}

section#sales_page section.cta_form form > article.equipment .row .multi_checkbox_input label {
  font-weight: normal;
  cursor: pointer;
  float: left;
  display: block;
  margin-right: 3.28774%;
  width: 22.53419%;
}

section#sales_page section.cta_form form > article.equipment .row .multi_checkbox_input label:last-child {
  margin-right: 0;
}

section#sales_page section.cta_form form > article.equipment .row .multi_checkbox_input label:nth-child(4n) {
  margin-right: 0;
}

section#sales_page section.cta_form form > article.equipment .row .multi_checkbox_input label:nth-child(4n+1) {
  clear: left;
}

section#sales_page section.cta_form form input {
  display: inline-block;
  vertical-align: middle;
}

section#sales_page section.cta_form form input[type=text], section#sales_page section.cta_form form select, section#sales_page section.cta_form form input[type=number] {
  width: 100%;
  margin: 0 0 0 0;
  border: 0 none;
  height: 40px;
}

section#sales_page section.cta_form form input[type=submit] {
  font-size: 18px;
  height: 60px;
  float: right;
}

section#sales_page section.cta_form form input[type=submit][disabled] {
  background-image: linear-gradient(#d8d3cb, #f6f3ef);
  border-color: #edeae6;
}

section#sales_page section.cta_form form .row.fuel {
  display: none;
}

section#sales_page section.cta_form.fields_on > article {
  float: left;
  display: block;
  margin-right: 3.28774%;
  width: 100%;
}

section#sales_page section.cta_form.fields_on article.video {
  display: none;
}

section#sales_page section.cta_form.fields_on article.start form > article.first, section#sales_page section.cta_form.fields_on article.start form > article.rest {
  float: left;
  display: block;
  margin-right: 3.28774%;
  width: 48.35613%;
}

section#sales_page section.cta_form.fields_on article.start form > article.first:last-child, section#sales_page section.cta_form.fields_on article.start form > article.rest:last-child {
  margin-right: 0;
}

section#sales_page section.cta_form.fields_on article.start form > article.rest {
  margin-right: 0;
}

section#sales_page section.cta_form.fields_on article.start form > article.km {
  float: left;
  display: block;
  margin-right: 3.28774%;
  width: 48.35613%;
  margin-left: 51.64387%;
  margin-right: 0;
}

section#sales_page section.cta_form.fields_on article.start form > article.km:last-child {
  margin-right: 0;
}

section#sales_page section.cta_form.secondary_cta {
  text-align: center;
}

section#sales_page section.obs {
  clear: none;
  color: #b9b7b5;
  margin-top: -40px;
  margin-bottom: 0;
}

section#sales_page section.obs > dfn {
  font-style: normal;
  font-size: 36px;
  float: left;
  margin-right: 40px;
}

section#sales_page section.obs p {
  font-size: 18px;
}

section#sales_page section.partners {
  margin-bottom: 0;
  padding-bottom: 20px;
  text-align: center;
}

section#sales_page section.partners, section#sales_page section.partners + section.cars_estimated_small {
  background-color: #f6f3ef;
}

section#sales_page section.cars_estimated_small {
  padding-top: 20px;
  text-align: center;
}

section#sales_page section.cars_estimated_small p.more {
  font-size: 12px;
}

section#sales_page section#benefits {
  background: none transparent;
}

section#sales_page section.more_text h2 {
  margin-top: 0;
  font-size: 28px;
  text-align: center;
  border: 0 none;
}

section#sales_page section.more_text article.column {
  float: left;
  width: 48%;
  margin-right: 4%;
}

section#sales_page section.more_text article.column.last {
  margin-right: 0;
}

section#loading {
  text-align: center;
  padding-bottom: 40px;
}

section#loading .spinner {
  padding: 40px 0;
}

.selling_report_email_form {
  max-width: 550px;
  padding: 40px;
}

.selling_report_email_form h2 {
  margin: 0 0 40px 0;
  text-align: center;
}

#send_to_email {
  overflow: hidden;
}

#send_to_email form {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

#send_to_email .input, #send_to_email .inline-input {
  clear: both;
  margin-bottom: 20px;
}

#send_to_email .input > label, #send_to_email .inline-input > label {
  position: relative;
  padding: 10px 0;
}

#send_to_email .input > label input, #send_to_email .input > label span, #send_to_email .inline-input > label input, #send_to_email .inline-input > label span {
  vertical-align: middle;
}

#send_to_email .input > label input[type="text"], #send_to_email .inline-input > label input[type="text"] {
  display: inline-block;
  width: auto;
  margin-left: 10px;
}

#send_to_email .input > label input[type="radio"], #send_to_email .input > label input[type="checkbox"], #send_to_email .inline-input > label input[type="radio"], #send_to_email .inline-input > label input[type="checkbox"] {
  display: inline-block;
  margin: 0 10px 0 2px;
}

#send_to_email .input > label input.invalid[type="radio"] + span, #send_to_email .input > label input.invalid[type="radio"] + div + span, #send_to_email .input > label input.invalid[type="checkbox"] + span, #send_to_email .input > label input.invalid[type="checkbox"] + div + span, #send_to_email .inline-input > label input.invalid[type="radio"] + span, #send_to_email .inline-input > label input.invalid[type="radio"] + div + span, #send_to_email .inline-input > label input.invalid[type="checkbox"] + span, #send_to_email .inline-input > label input.invalid[type="checkbox"] + div + span {
  color: #CF2020;
}

#send_to_email .input > label > span, #send_to_email .inline-input > label > span {
  font-weight: normal;
}

#send_to_email .input div.invalid, #send_to_email .inline-input div.invalid {
  position: absolute;
  top: 0;
  right: 0;
  color: #CF2020;
}

#send_to_email .input.email input {
  width: 100%;
}

#send_to_email .terms_and_conditions div.invalid {
  top: 19px;
  left: 0;
  right: auto;
}

#send_to_email .terms_and_conditions input.invalid + div + label {
  color: #CF2020;
}

#send_to_email .terms_and_conditions label > span {
  font-weight: bold;
}

#send_to_email input, #send_to_email button {
  margin: 0;
  padding: 0 10px;
  border-radius: 5px;
}

#send_to_email button {
  height: 40px;
  float: left;
  display: block;
  margin-right: 3.28774%;
  width: 48.35613%;
  margin-right: 0;
}

#send_to_email .email_sent {
  display: none;
  color: #598d15;
  font-size: 24px;
  margin: 10px 0;
}

#send_to_email .sell-to-dealer {
  display: none;
}

#send_to_email .sell-to-dealer .phone_number, #send_to_email .sell-to-dealer .postcode, #send_to_email .sell-to-dealer .lpn {
  margin: 0;
  width: 340px;
}

#send_to_email .sell-to-dealer .phone_number .invalid, #send_to_email .sell-to-dealer .postcode .invalid, #send_to_email .sell-to-dealer .lpn .invalid {
  bottom: 5px;
  top: auto;
}

#send_to_email .visitor_type_question .question {
  display: block;
  font-weight: bold;
  font-size: 1.2em;
}

#send_to_email .visitor_type_question .inline-input {
  margin-right: 40px;
}

#send_to_email .visitor_type_question .inline-input label {
  position: static;
}

#send_to_email .dealer_unbounce_page {
  display: none;
  color: #7FCA1E;
}

#result_page {
  overflow: hidden;
}

#result_page > section.visual {
  margin-top: 100px;
  padding: 20px 40px;
  text-align: center;
  background-color: #f6f3ef;
}

#result_page > section.visual img.example {
  margin-top: -100px;
  float: right;
  margin-left: 40px;
}

#result_page > section.visual #download {
  padding: 5px 40px;
  overflow: hidden;
  margin-bottom: 1em;
  position: relative;
  z-index: 2;
}

#result_page > section.visual #download .button {
  display: block;
  box-shadow: #646464 0 3px 4px;
  font-size: 1.5em;
  font-weight: normal;
  padding: 12px;
}

#result_page #not_yet_available {
  text-align: center;
  font-size: 18px;
  color: #f6f3ef;
}

#result_page #not_yet_available p.wait {
  margin: 20px 0;
}

#result_page #not_yet_available .nr_adverts {
  color: #7FCA1E;
}

#result_page #spinner {
  height: 120px;
  margin-top: 1em;
}

#result_page > section.summary {
  clear: both;
  font-size: 14px;
}

#result_page > section.summary > ul {
  margin-bottom: 2em;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

#result_page > section.summary > ul::after {
  clear: both;
  content: "";
  display: block;
}

#result_page > section.summary > ul > li {
  float: left;
  display: block;
  margin-right: 3.28774%;
  width: 31.1415%;
}

#result_page > section.summary > p {
  text-align: center;
}

body.selling_reports_show {
  background: #292e2f;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}

body.selling_reports_show > .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 120px;
  color: #f6f3ef;
  background: #292e2f;
}

body.selling_reports_show > .header > .inner {
  background: rgba(0, 0, 0, 0.5);
  padding: 26px;
  position: relative;
  min-height: 89px;
  display: flex;
  align-items: center;
}

body.selling_reports_show > .header > .inner > .section-right {
  width: 50%;
  text-align: right;
}

body.selling_reports_show > .header > .inner > .section-left {
  width: 50%;
}

body.selling_reports_show > .header > .inner .button {
  line-height: 35px;
  text-decoration: none;
}

body.selling_reports_show > .header > .inner h1 {
  overflow: visible;
}

body.selling_reports_show > .header > .inner .direct_link {
  font-size: 12px;
}

body.selling_reports_show > .header > .inner .direct_link b {
  color: #7FCA1E;
}

body.selling_reports_show > .header > .inner a {
  color: #f6f3ef;
  text-decoration: underline;
}

body.selling_reports_show > .header .left-buttons, body.selling_reports_show > .header .right-buttons {
  position: absolute;
  top: 26px;
}

body.selling_reports_show > .header .left-buttons {
  left: 26px;
}

body.selling_reports_show > .header .right-buttons {
  right: 26px;
}

body.selling_reports_show > .header > .subheader {
  padding: 5px 26px;
}

body.selling_reports_show > .header > .subheader a {
  color: #fff;
}

body.selling_reports_show > .header > .subheader .fb-like {
  margin-left: 5px;
  vertical-align: middle;
}

body.selling_reports_show > .header > .subheader .seller_car_certificates {
  text-align: right;
}

body.selling_reports_show > .header h1, body.selling_reports_show > .header h2 {
  font-weight: normal;
  margin: 0;
  padding: 0;
  text-align: left;
}

body.selling_reports_show > .header h1 {
  font-size: 20px;
  line-height: 22px;
}

body.selling_reports_show > .header h2 {
  font-size: 14px;
  border: none;
}

body.selling_reports_show > .header .button {
  background: none;
  border: 1px solid #f6f3ef;
  border-radius: 5px;
  padding: 0 8px;
  height: auto;
  box-shadow: none;
  font-weight: normal;
  display: inline-block;
  margin-bottom: 3px;
}

body.selling_reports_show > .header .button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
}

body.selling_reports_show > .header .button > * {
  display: inline-block;
  vertical-align: middle;
}

body.selling_reports_show > .header .button + .button {
  margin-left: 5px;
}

body.selling_reports_show > .header .button.primary {
  background: #1BADD5;
  color: #FFF;
  border-color: #1BADD5;
}

body.selling_reports_show > .header .button.primary:hover {
  background-color: #26bbe3;
}

@media screen and (max-width: 1000px) {
  body.selling_reports_show > .header .button.primary span {
    display: inline-block;
  }
}

body.selling_reports_show > .header .button.white {
  background: #fff;
  color: #686868;
  border-color: #fff;
}

body.selling_reports_show > .header .button.white i img {
  display: block;
  max-height: 25px;
}

body.selling_reports_show #result_page {
  padding-top: 120px;
}

body.selling_reports_show #pdf {
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-align: center;
}

body.selling_reports_show #pdf .button {
  display: inline-block;
  padding: 18px;
  font-size: 1.2em;
}

body.selling_reports_show #download, body.selling_reports_show #not_yet_available {
  margin-top: 26px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  body.selling_reports_show > .header {
    height: 157px;
  }
  body.selling_reports_show > .header h1 {
    text-align: left;
    font-size: 1.5em;
    padding-right: 130px;
  }
  body.selling_reports_show > .header .button > span {
    display: none;
  }
  body.selling_reports_show #result_page {
    padding-top: 157px;
  }
  body.selling_reports_show #pdf {
    top: 157px;
  }
}

@media screen and (max-width: 450px) {
  body.selling_reports_show > .header .direct_link {
    display: none;
  }
  body.selling_reports_show > .header > .subheader .share_text {
    display: none;
  }
}

body.de_country.de_locale > .header {
  height: 211px;
}

body.de_country.de_locale > .header > .inner {
  padding: 26px;
}

body.de_country.de_locale #result_page {
  padding-top: 146px;
}

body.de_country.de_locale #pdf {
  top: 210px;
}

@media screen and (max-width: 1000px) {
  body.de_country.de_locale > .header > .inner {
    padding: 26px;
  }
  body.de_country.de_locale #pdf {
    top: 200px;
  }
}

body.dealer-unbounce-page > .header {
  height: 211px;
}

body.dealer-unbounce-page > .header > .inner {
  padding: 26px;
}

body.dealer-unbounce-page #result_page {
  padding-top: 146px;
}

body.dealer-unbounce-page #pdf {
  top: 210px;
}

@media screen and (max-width: 1000px) {
  body.dealer-unbounce-page > .header > .inner {
    padding: 26px;
  }
  body.dealer-unbounce-page #pdf {
    top: 200px;
  }
}

body.it_country.it_locale .direct_link {
  display: none;
}

body.it_country.it_locale > .header {
  height: 136px;
}

body.it_country.it_locale > .header > .inner {
  padding: 57px 26px;
}

body.it_country.it_locale #result_page {
  padding-top: 146px;
}

body.it_country.it_locale #pdf {
  top: 210px;
}

@media screen and (max-width: 1000px) {
  body.it_country.it_locale > .header > .inner {
    padding: 26px;
  }
  body.it_country.it_locale #pdf {
    top: 200px;
  }
}

section.cannot_estimate > section > img {
  float: right;
  width: 250px;
  margin-left: 40px;
}

section.cannot_estimate > section > h1 {
  padding-top: 0px;
  overflow: hidden;
}

section.cannot_estimate > section > article {
  overflow: hidden;
}

section.cannot_estimate > section h2 {
  overflow: hidden;
}

section.cannot_estimate > section .car_info {
  font-size: 12px;
  float: right;
  width: 200px;
  margin-left: 20px;
  padding: 10px;
  background-color: #f6f3ef;
}

section.cannot_estimate > section .car_info h3 {
  margin-bottom: 10px;
}

section.cannot_estimate > section .car_info > ul > li.odd {
  background-color: #fff;
}
