@charset "UTF-8";
/**
 * App colours
 */
.color-primary {
  color: #82BC00 !important;
}
.color-success {
  color: #82BC00 !important;
}
.color-warning {
  color: #FABC41 !important;
}
.color-danger {
  color: #F95341 !important;
}
.color-white {
  color: #FFF !important;
}
.color-black {
  color: #000 !important;
}
.color-text {
  color: #333 !important;
}
.color-text-muted {
  color: #707070 !important;
}
/**
 * Gibson
 */
@font-face {
  font-family: 'Gibson';
  src: url(fonts/Gibson-Light.woff) format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Gibson';
  src: url(fonts/Gibson-Regular.woff) format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gibson';
  src: url(fonts/Gibson-SemiBold.woff) format('woff');
  font-weight: 600;
  font-style: normal;
}
/**
 * OpenSans
 */
@font-face {
  font-family: 'OpenSans';
  src: url(fonts/OpenSans-Light.ttf) format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans';
  src: url(fonts/OpenSans-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans';
  src: url(fonts/OpenSans-SemiBold.ttf) format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans';
  src: url(fonts/OpenSans-Bold.ttf) format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans';
  src: url(fonts/OpenSans-ExtraBold.ttf) format('truetype');
  font-weight: 800;
  font-style: normal;
}
/**
 * Structure
 */
html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #DBDBDB;
  margin: 0;
  padding: 0;
  font-family: Gibson, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em !important;
  line-height: 1.5;
  color: #333;
  overflow-y: scroll;
}
body.showOverlay:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 200;
}
strong {
  font-weight: 600;
}
.site {
  height: 100%;
  flex: 1;
}
.app {
  overflow: hidden;
  min-height: 100%;
  padding-top: 80px;
}
.wrapper {
  display: block;
  position: relative;
  width: 100%;
}
.page {
  display: block;
  position: relative;
  height: auto;
}
.container {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  background: transparent;
  max-width: 1144px;
}
.container--non-transparent {
  background: #F5F5F5;
}
.container--has-sidebar {
  background-color: #EFEDEE;
}
.container--has-banner {
  margin-top: 120px;
}
.container--has-secondary-nav {
  margin-top: 40px;
}
.container--full-width {
  max-width: 98%;
}
.container--has-filter {
  display: grid;
  grid-template-columns: 3.3fr minmax(auto, 263px);
  grid-template-areas: 'descriptionContainer descriptionContainer' 'tradeContainer filterContainer';
  grid-column-gap: 1%;
}
.main-container {
  position: relative;
  width: 76%;
  background: #F5F5F5;
}
.main-container--full-screen {
  width: 100%;
}
.main-container--transparent {
  background: transparent;
}
.main-container--has-filter {
  grid-area: tradeContainer;
}
.main-container--trade-list {
  width: 100%;
}
.side-container {
  overflow: hidden;
  width: 23%;
}
.side-container > * {
  background: #F5F5F5;
}
.side-container__header {
  background: #FFF;
  margin: 0;
  padding: 1.5em;
}
.side-container__title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.side-container__title--state {
  color: #82BC00;
}
.side-container__title--parked,
.side-container__title--pending {
  color: #FABC41;
}
.side-container__title--lost {
  color: #F95341;
}
/**
 * Footer
 */
.footer {
  margin-top: auto;
  padding: 4em 2em 2em;
  text-align: center;
}
.footer__container {
  width: 1144px;
  margin: 0 auto;
}
.footer__content {
  width: auto;
  color: #707070;
  font-size: 12px;
}
.footer__logo {
  display: block;
  margin: 5px auto;
}
.footer__copyright {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin: 5px auto;
  padding: 0 1em;
  background: #DBDBDB;
}
.footer__adesa {
  display: inline-block;
  vertical-align: middle;
}
.footer__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: -15px auto 0 auto;
}
/**
 * Columns
 */
.marketplace-column-sidebar {
  float: left;
  width: 280px;
  padding: 15px 0 0 0;
  margin-right: 12px;
  background-color: #EFEDEE;
}
.column-sidebar {
  float: left;
  width: 280px;
  padding: 30px 0;
  background-color: #EFEDEE;
}
.column-main {
  overflow: hidden;
  margin-left: 280px;
  background: #F5F5F5;
  padding: 30px;
}
.column-main--trades {
  position: relative;
  min-height: 400px;
  padding: 0;
  background: none;
}
.column-full {
  overflow: hidden;
  background: #F5F5F5;
  padding: 30px 50px;
}
/**
 * Loader
 */
.loader {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #DBDBDB url(images/loader.gif) no-repeat center 200px;
}
.loader--rtv-sale-event {
  top: 20%;
}
/**
 * Page Nav
 */
.nav {
  margin-bottom: 15px;
}
.nav__title {
  font-size: 18px;
  font-weight: 600;
  padding: 0 30px;
  margin-bottom: 15px;
}
.nav__item {
  display: block;
  padding: 10px 30px 10px 40px;
  font-size: 16px;
  color: #707070;
}
.nav__item .icon {
  font-size: 12px;
  color: #707070;
}
.nav__item--active {
  background: #E6E6E6;
  color: #82BC00;
}
.nav__item:hover {
  color: #82BC00;
}
.nav__item--active-subnav {
  background: #E6E6E6;
}
.nav__item--active-subnav .icon {
  display: inline-block;
  transform: rotate(180deg);
}
.subnav {
  padding-left: 50px;
  background: #E6E6E6;
}
.subnav__item {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: #707070;
}
.subnav__item--active {
  color: #82BC00;
}
.subnav__item:hover {
  color: #82BC00;
}
.app-error {
  width: 600px;
  text-align: center;
  margin: 100px auto 0;
}
.app-error__icon {
  font-size: 80px;
  margin-bottom: 20px;
}
.app-error__message {
  font-size: 18px;
}
@media print {
  .no-print,
  .no-print * {
    display: none !important;
  }
}
/**
 * Helpers
 */
/** Floating elements */
.clearfix {
  overflow: auto;
  zoom: 1;
  height: 100%;
}
.clearfix__micro-icons {
  position: relative;
  top: 5px;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.customer-email {
  float: right;
  color: #333;
  font-weight: 700;
}
.customer-field {
  float: right;
  color: #333;
  font-weight: 700;
}
.customer-field--email {
  color: #82bc00;
  text-decoration: underline;
}
.hidden {
  display: none !important;
}
/** Vertical align */
.vertical-align {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.align-middle {
  vertical-align: middle;
}
/** Text **/
.capitalize {
  text-transform: capitalize;
}
.text-center {
  text-align: center;
}
.text-nowrap {
  white-space: nowrap;
}
/** Textarea **/
textarea {
  font-family: Gibson;
  font-size: 14px;
  padding: 0.5em;
  border: 1px solid #DBDBDB;
  border-radius: 3px;
  color: #333;
}
.textarea {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
}
/** Icon **/
.icon--valign {
  vertical-align: middle;
}
/** Sticky elements **/
.sticky-sidebar {
  position: fixed;
}
/**
 * Headers
 */
h1,
h2,
h3,
h4,
h5,
.list-form__heading {
  margin: 0;
}
h1 {
  font-size: 24px;
  font-weight: 600;
}
h2,
.list-form__heading {
  font-size: 18px;
  font-weight: 600;
}
h3 {
  font-size: 16px;
  font-weight: 400;
}
h4 {
  font-size: 14px;
  font-weight: 400;
}
h5 {
  font-size: 12px;
  font-weight: 400;
}
/**
 * App buttons
 */
button:not(nw-purchases button) {
  font-family: Gibson, sans-serif;
  cursor: pointer;
  padding: 0.75em 5em;
  border: none;
  border-radius: 5em;
  font-weight: 600;
  color: #FFF;
  outline: 0 !important;
}
button:not(nw-purchases button):focus {
  outline: 0 !important;
}
/**
 * Types and sizes
 */
button.btn-primary {
  padding: 0.75em 4em;
  font-size: 18px;
}
button.btn-primary:hover {
  background: #707070;
}
button.btn-secondary {
  padding: 0.75em 3em;
  font-size: 16px;
  font-weight: 400;
}
button.btn-small {
  padding: 0.5em 2.5em !important;
  border-radius: 8em !important;
  font-size: 14px !important;
  font-weight: 400;
}
button.btn-bordered {
  border: 2px solid #82BC00;
  background: transparent !important;
  color: #333;
}
button.btn-bordered:hover {
  border-color: #4B6A0A;
}
/**
 * Buttons, BEM style
 * These classes are based on the WebApp Styleguide
 * Default state is the base class
 * Hover state is :hover
 * Hit state is :active
 * Disabled is :disabled
 */
.btn {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 5em;
  background-color: #82BC00;
  color: #FFF;
  padding: 0 25px;
}
.btn:hover {
  color: #FFF;
  background-color: #4B6A0A;
}
.btn:active {
  color: #FFF;
  background-color: #435F09;
}
.btn:disabled {
  background-color: #DBDBDB;
  cursor: not-allowed;
}
.btn--multiline {
  padding-top: 4px;
  padding-bottom: 4px;
  line-height: 16px;
}
.btn__sublabel {
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}
.btn--launch-to-upcoming {
  background-color: #333;
}
.btn + .btn {
  margin-left: 15px;
}
.btn--pending {
  background-color: #FABC41;
}
.btn--pending:hover {
  background-color: #E1A93A;
}
.btn--pending:active {
  background-color: #C89634;
}
.btn--visited {
  background-color: #4B6A0A;
}
.btn--block {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.btn--block:last-child {
  margin: 0;
}
.btn--normal-font-size {
  font-size: 14px;
  text-transform: none;
}
.btn--secondary {
  font-size: 14px;
  font-weight: 400;
  line-height: 34px;
  text-transform: none;
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  color: #333;
}
.btn--secondary:hover {
  background-color: #DBDBDB;
  color: #333;
}
.btn--no-border {
  display: inline-block;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 700;
  line-height: 34px;
  text-transform: none;
  border-width: 0;
  border-style: none;
  background-color: transparent;
  color: #82BC00;
}
.btn--no-border--float-right {
  padding: 0;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 34px;
  text-transform: none;
  border-width: 0;
  border-style: none;
  background-color: transparent;
  color: #82BC00;
}
.btn--main {
  border-color: #82BC00;
  background-color: #82BC00;
  color: #FFF;
}
.btn--main:hover {
  color: #FFF;
  background-color: #4B6A0A;
  border-color: #4B6A0A;
}
.btn--main:active {
  color: #FFF;
  background-color: #435F09;
  border-color: #435F09;
}
.btn--secondary-alt {
  font-weight: 600;
  text-transform: uppercase;
}
.btn--submit {
  border-color: #82BC00;
}
.btn--submit:hover {
  color: #FFF;
  border-color: #82BC00;
  background-color: #82BC00;
}
.btn--submit:active {
  color: #FFF;
  border-color: #435F09;
  background-color: #435F09;
}
.btn--adesa {
  border-color: #008c9a;
  background-color: #008c9a;
  color: #FFF;
}
.btn--adesa:hover,
.btn--adesa:active,
.btn--adesa:disabled {
  color: #FFF;
  border-color: #017f8c;
  background-color: #017f8c;
}
.btn--alt {
  border-color: #FABC41;
}
.btn--alt:hover {
  color: #FFF;
  border-color: #FABC41;
  background-color: #FABC41;
}
.btn--alt:active {
  color: #FFF;
  border-color: #C89634;
  background-color: #C89634;
}
.btn--cancel {
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: #5D5D5D;
  color: #333;
}
.btn--cancel:hover {
  background-color: #F2F2F2;
  color: #333;
}
.btn--cancel:active {
  color: #FFF;
  background-color: #5D5D5D;
}
.btn--disabled {
  cursor: not-allowed !important;
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: #DBDBDB;
  color: #333;
}
.btn--delete {
  border-color: #F95341;
}
.btn--delete:hover {
  color: #FFF;
  background-color: #F95341;
}
.btn--delete:active {
  color: #FFF;
  border-color: #C74234;
  background-color: #C74234;
}
.btn--show-vehicles-button {
  font-family: Gibson, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  text-transform: none;
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  border-color: #82BC00;
  color: black;
}
.btn--show-vehicles-button:hover {
  background-color: #DBDBDB;
  color: #333;
}
.btn--secondary-button {
  background-color: #333;
}
.btn--secondary-button:hover {
  background-color: #707070;
}
.btn--vmiddle {
  vertical-align: middle;
}
.btn__icon {
  font-size: 32px;
  vertical-align: middle;
}
.btn--tertiary-button {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 34px;
  text-transform: none;
  border-width: 2px;
  border-style: solid;
  border-color: #82BC00;
  background-color: transparent;
}
.btn--tertiary-button:hover {
  background-color: #82BC00;
  color: #FFF;
}
.btn--slim {
  padding: 5px 0;
  line-height: 15px;
}
/**
 * Colours
 */
button.btn-green {
  background: #82BC00;
}
button.btn-green:hover {
  background: #4B6A0A;
}
button.btn-red {
  background: #F95341;
  color: #FFF;
}
button.btn-red:hover {
  border-color: #E04A3A;
}
/**
 * Forms
 */
input,
select,
textarea {
  outline: 0 !important;
}
input:focus,
select:focus,
textarea:focus {
  outline: 0 !important;
}
select:not(nw-purchases select) {
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  font-family: Gibson, sans-serif;
}
select:not(nw-purchases select).fw-normal {
  font-weight: 400;
}
.select-wrapper {
  display: inline-block;
  background: #FFF;
  padding: 5px;
  border: 1px solid #DBDBDB;
  border-radius: 5px;
}
.select-wrapper--small {
  padding: 0;
}
.select-wrapper--payment-provider {
  float: left;
  margin: 0 30px 20px 0;
}
.select-wrapper--providers {
  display: inline-block;
  font-weight: 400;
}
.select-wrapper__select {
  display: inline-block;
  width: 100%;
  height: 36px;
  background: #FFF;
}
.select-wrapper__select--modal {
  margin: 4px auto;
  font-weight: 400;
  text-align: center;
  border: 1px solid #DBDBDB;
}
.select-wrapper--full-width {
  display: block;
}
.select-wrapper--full-width select {
  width: 100%;
}
.select-wrapper--margin {
  margin: 0 0 5px;
}
option:not(nw-purchases option) {
  direction: ltr;
}
label:not(nw-purchases label) {
  font-size: 14px;
  color: #707070;
}
input[type='text'],
input[type='password'],
input[type='email'],
input[type='tel'],
input[type='number'] {
  font-size: 14px;
  padding: 0.5em;
  border-radius: 5px;
  border: 1px solid #DBDBDB;
}
input[type='number'] ::-webkit-inner-spin-button,
input[type='number'] ::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
/**
 * Links
 */
a {
  text-decoration: none;
  color: #82BC00;
}
a:hover {
  color: #4B6A0A;
}
/**
 * Animations
 */
/**
 * List element (ng-repeat)
 * Fade in from left
 */
.list-element-animate {
  position: relative;
  transition: 0.5s;
}
.list-element-animate.ng-enter {
  left: -100%;
  opacity: 0;
}
.list-element-animate.ng-enter.ng-enter-active {
  left: 0;
  opacity: 1;
}
.list-element-animate.ng-leave {
  right: 0;
  opacity: 1;
}
.list-element-animate.ng-leave.ng-leave-active {
  right: -100%;
  opacity: 0;
}
.list-element-animate.ng-enter-stagger,
.list-element-animate.ng-move-stagger {
  transition-delay: 0.2s;
  transition-duration: 0s;
}
.list-element-animate.ng-move {
  left: -100%;
  opacity: 0;
}
.list-element-animate.ng-move.ng-move-active {
  left: 0;
  opacity: 1;
}
.list-element-animate-fade {
  position: relative;
  transition: 0.25s;
}
.list-element-animate-fade.ng-enter {
  opacity: 0;
}
.list-element-animate-fade.ng-enter.ng-enter-active {
  opacity: 1;
}
.list-element-animate-fade.ng-leave {
  opacity: 1;
}
.list-element-animate-fade.ng-leave.ng-leave-active {
  opacity: 0;
}
.list-element-animate-fade.ng-enter-stagger,
.list-element-animate-fade.ng-move-stagger {
  transition-delay: 0.1s;
  transition-duration: 0s;
}
.list-element-animate-fade.ng-move {
  opacity: 0;
}
.list-element-animate-fade.ng-move.ng-move-active {
  opacity: 1;
}
/**
 * Fade in animation (ng-if)
 * Fades in element
 */
.animate-fade.ng-enter,
.animate-fade.ng-leave {
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}
.animate-fade.ng-enter,
.animate-fade.ng-leave.ng-leave-active {
  opacity: 0;
}
.animate-fade.ng-leave,
.animate-fade.ng-enter.ng-enter-active {
  opacity: 1;
}
/**
 * BEM
 * Modals refactored to use BEM styling.
 */
.modal-overlay {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  animation-duration: 0.5s;
}
.modal-overlay--clear {
  background: rgba(250, 250, 250, 0.95);
}
.modal-overlay--dark {
  background: rgba(0, 0, 0, 0.8);
}
.modal-close-btn {
  cursor: pointer;
  position: fixed;
  z-index: 20001;
  top: 0;
  right: 0;
}
.modal-close-btn__icon {
  font-size: 72px;
  color: #333;
}
.modal-close-btn__icon:hover {
  color: #82BC00;
}
.modal-close-btn__icon--light {
  color: #FFF;
}
.modal-container {
  cursor: auto !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 20000;
  justify-content: center;
  align-items: center;
}
.modal {
  background: #FFF;
  border-radius: 10px;
  animation-duration: 0.5s;
  overflow: hidden;
  cursor: auto !important;
  /**
	 * Generic sizes
	 * 4 basic modal sizes used to display content.
	 */
  /**
	 * Common footer element
	 */
  /**
	 * Alert Modals
	 */
}
.modal__title {
  font-size: 18px;
  font-weight: 600;
  margin: 20px;
}
.modal__title--left-aligned {
  font-size: 18px;
  font-weight: 600;
  margin-top: 11px;
  margin-bottom: 11px;
  text-align: left;
}
.modal__title-icon {
  font-size: 30px;
  vertical-align: middle;
  line-height: 16px;
}
.modal__subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #F95341;
}
.modal__body {
  margin: 20px;
}
.modal__wrapper {
  position: relative;
}
.modal__shipping-rate-info {
  position: relative;
  height: 400px;
  overflow: auto;
}
.modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.modal--centered {
  text-align: center;
}
.modal__header {
  font-weight: 600;
  font-size: 18px;
  padding: 5px 0px 10px;
  color: #333;
}
.modal--small {
  width: 400px;
}
.modal--medium {
  width: 500px;
}
.modal--large {
  width: 600px;
}
.modal--extra-large {
  width: 700px;
}
.modal--confirm {
  width: 500px;
}
.modal--confirm-medium {
  width: 520px;
}
.modal--confirm-large {
  width: 720px;
}
.modal__footer {
  overflow: auto;
  position: relative;
  width: 100%;
  background: #F5F5F5;
  padding: 1em 1.5em;
  border-radius: 0 0 10px 10px;
}
.modal__footer--right {
  text-align: right;
}
.modal__footer--centered {
  text-align: center;
}
.modal--alert {
  text-align: center;
  font-size: 14px;
  color: #333;
}
.modal__alert {
  padding: 1em 2em;
}
.modal__alert ul {
  margin: 0;
  padding: 1em;
}
.modal__shipping-rate-info-heading,
.modal__alert-title {
  padding: 0 0 1em;
  font-weight: 600;
  font-size: 18px;
}
.modal__shipping-rate-info-heading--left-aligned,
.modal__alert-title--left-aligned {
  text-align: left;
}
.modal__shipping-rate-info-title,
.modal__alert-content {
  padding: 0 0 0.25em;
}
.modal__shipping-rate-info-title--left-aligned,
.modal__alert-content--left-aligned {
  text-align: left;
}
.modal__shipping-rate-info-title--italic,
.modal__alert-content--italic {
  font-style: italic;
}
.modal__shipping-rate-info-title--disclaimer,
.modal__alert-content--disclaimer {
  margin-top: 5px;
  font-size: 14px;
}
.modal__alert-icon {
  vertical-align: middle;
  font-size: 28px;
  margin-right: 5px;
}
.modal__alert-icon--small {
  font-size: 16px;
}
.modal__copy-button {
  float: right;
  horiz-align: right;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.modal__copy-button__icon {
  padding: 2px;
  color: #000;
  vertical-align: middle;
  font-size: 22px;
}
.modal__error {
  color: #F95341;
  margin: 1em 0 0;
}
.modal__loading-spinner {
  font-size: 20px;
  line-height: 38px;
}
.modal__loading-spinner--gap {
  font-size: 20px;
  line-height: 38px;
  margin: 50px;
}
.modal__shipping-promo-pricing,
.modal__shipping-promo-free-transport,
.modal__shipping-promo-buyers-in-select-states {
  margin-bottom: 1.6rem;
}
.modal__shipping-promo-buyers-nationwide {
  margin-bottom: 1rem;
}
.modal__shipping-rate-info-disclaimer {
  border-top: 1px solid #DBDBDB;
  border-top-length: 27px;
  font-size: 0.625rem;
}
.modal__shipping-promo-disclaimer {
  font-size: 0.625rem;
}
.modal__gap {
  padding: 1em 3em 0;
}
.modal__gap-price {
  color: #82BC00;
  font-weight: 600;
  font-size: 32px;
}
.modal__gap-price--error {
  color: #F95341;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}
.modal__gap-confirm {
  margin: 0.2em 0 1.2em;
  color: #707070;
}
.modal__gap-title {
  margin: 0.2em;
  font-weight: 600;
  font-size: 18px;
}
.modal__gap-disclaimer {
  color: #707070;
  margin-bottom: 5px;
}
.modal__multi-error {
  font-size: 16px;
  margin: 1.5em;
  text-align: left;
}
.modal__multi-error__title {
  font-weight: 600;
}
.modal__multi-error__errors {
  margin: 2em 0;
}
.modal__multi-error__errors__title {
  font-size: 14px;
  font-weight: 600;
}
.modal__multi-error__errors__text {
  margin-bottom: 1em;
}
.modal__mark-lost {
  color: #333333;
  font-size: 14px;
  width: 500px;
  padding: 0.5em;
  text-align: center;
}
.modal__mark-lost__header {
  padding: 2em;
}
.modal__mark-lost__header__title {
  padding-bottom: 23px;
  font-size: 18px;
  font-weight: 600;
}
.modal__mark-lost__header__subtitle {
  padding-bottom: 22px;
}
.modal__mark-lost__form {
  text-align: left;
  padding-left: 2em;
  padding-bottom: 38px;
}
.modal__mark-lost__form label {
  display: inline-block;
  color: #333333;
}
.modal__mark-lost__confirm {
  text-transform: none;
  color: #000000;
  background-color: #f5f5f5;
  border-color: #82bc00;
}
.toast-title {
  font-weight: 600;
}
.toast-message {
  word-wrap: break-word;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: 600;
  color: #FFF;
  text-shadow: 0 1px 0 #FFF;
  opacity: 0.8;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}
/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
#toast-container {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 999999;
}
.toast {
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin: 0 0 10px;
  padding: 15px 25px;
  border-radius: 3px;
  box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.25);
  background: #FFF;
}
.toast:hover {
  cursor: pointer;
}
.notification__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  font-size: 1.5em;
}
.toast-success .notification__icon {
  color: #82BC00;
}
.toast-error .notification__icon {
  color: #F95341;
}
.toast-warning .notification__icon {
  color: #FABC41;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000;
  opacity: 0.4;
}
.sunset-banner {
  position: fixed;
  top: 0;
  background: #82bc00;
  color: #fff;
  display: block;
  width: 100%;
  padding: 16px;
  z-index: 500;
}
.sunset-banner__container {
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-family: Gibson, sans-serif;
}
.sunset-banner__heading {
  font-size: 20px;
  font-weight: 600;
}
.sunset-banner__details {
  word-wrap: normal;
  font-size: 12px;
  font-weight: 400;
  max-width: 722px;
  margin: 3px 0 0 0;
}
.sunset-banner__button {
  color: #000;
  height: 34px;
  padding: 5px 27px;
  position: relative;
  margin-left: 32px;
  font-size: 16px;
  font-weight: 400;
}
/**
 * @namespace LESS styles
 *
 * @file nav.less
 * @summary
 * @author Tushar Ghate
 * @dateCreated July 22nd, 2015
 *
 */
/**
 * Overlay
 */
.nav-overlay {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity linear 0.1s;
}
.nav-overlay.ng-hide {
  opacity: 0;
}
/**
 * Primary Navigation
 */
.nav-primary {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  height: 60px;
  background-color: #000;
  text-align: center;
}
.nav-primary__items {
  list-style: none;
  margin: 0;
  display: none;
}
@media screen and (min-width: 1024px) {
  .nav-primary__items {
    display: block;
  }
}
.nav-primary__item {
  position: relative;
  cursor: pointer;
  float: left;
  font-size: 16px;
  color: #FFF;
  padding: 15px 30px;
}
.nav-primary__item:hover,
.nav-primary__item.active {
  background: #000;
  color: #FFF;
}
.nav-primary__item-link {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.nav-primary__item-label {
  float: left;
  line-height: 30px;
}
.nav-primary__burger {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  padding: 19px 20px;
  color: #FFF;
}
.nav-primary__burger:hover,
.nav-primary__burger.active {
  background-color: #000;
}
@media screen and (min-width: 1024px) {
  .nav-primary__burger {
    display: none;
  }
}
.nav-icon {
  position: relative;
  float: left;
  margin-right: 15px;
  font-size: 30px;
}
.nav-icon__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  background-color: #F95341;
  color: #FFF;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.nav-arrow {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 11px 8px;
}
.nav-arrow--notifications,
.nav-arrow--todos {
  border-color: transparent transparent #FFF transparent;
}
.nav-arrow--dashboard {
  border-color: transparent transparent #82BC00 transparent;
}
.nav-logo {
  position: relative;
  width: 160px;
  height: 60px;
  margin: 0 auto;
  background: url(images/traderev/nav-logo.png) no-repeat center center;
}
.nav-logo__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .nav-logo {
    float: left;
  }
}
.notification-bar {
  position: absolute;
  top: 0;
  right: 0;
  list-style: none;
  margin: 0 10px;
  padding: 0;
}
.notification-bar__item {
  position: relative;
  float: left;
  padding: 15px 3px;
  color: #FFF;
}
.notification-bar__item.active {
  color: #FFF;
}
@media screen and (min-width: 1024px) {
  .notification-bar {
    position: relative;
    float: right;
  }
}
.user-summary {
  position: relative;
  display: none;
  float: right;
  padding: 12px 0;
}
.user-summary__body {
  float: left;
  line-height: 18px;
  text-align: right;
  white-space: nowrap;
}
.user-summary__name {
  color: #FFF;
}
.user-summary__company {
  color: #DBDBDB;
}
.user-summary__avatar {
  float: right;
  margin: 3px 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
@media screen and (min-width: 1024px) {
  .user-summary {
    display: block;
  }
}
.nav-secondary {
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 500;
  width: 100%;
  background: #F0F0F0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}
.nav-secondary__items {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.nav-secondary-search {
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 500;
  width: 100%;
  background: #f5f5f5;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}
.nav-secondary-search__items {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  max-width: 1146px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.search-icon-wrapper > .search-icon {
  -webkit-appearance: none;
  border-radius: 15px;
  width: 100%;
  padding-left: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: 400;
  font-family: Gibson;
  border: 0;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}
.search-icon-wrapper {
  position: relative;
  width: 180px;
}
.search-icon-wrapper:before {
  content: url('/images/magnifying.svg');
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #707070;
  font-size: 18px;
  padding: 2px 0 0 8px;
  position: absolute;
  left: 0;
}
/**
 * Dashboard Panel
 */
.dashboard-panel {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 350px;
  overflow: auto;
  height: 100%;
  padding-top: 60px;
  background: #FFF;
  box-shadow: -6px 1px 5px -2px rgba(0, 0, 0, 0.13);
}
.dashboard-panel.ng-hide {
  left: -350px;
}
.dashboard-panel.ng-hide-add.ng-hide-add-active,
.dashboard-panel.ng-hide-remove.ng-hide-remove-active {
  transition: all ease-in 0.1s;
}
@media screen and (min-width: 1024px) {
  .dashboard-panel {
    left: auto;
    right: 0;
  }
  .dashboard-panel.ng-hide {
    right: -350px;
  }
}
.dash-user {
  position: relative;
  overflow: hidden;
  background: #333;
  padding: 25px;
}
.dash-user__avatar {
  float: left;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  vertical-align: middle;
}
.dash-user__body {
  float: left;
  overflow: hidden;
  max-width: 235px;
  margin-left: 15px;
  color: #FFF;
  white-space: nowrap;
}
.dash-user__name {
  font-size: 18px;
  font-weight: 600;
}
.dash-user__edit {
  font-size: 12px;
  font-weight: 400;
  color: #4B6A0A;
  margin-left: 5px;
}
@media screen and (min-width: 1024px) {
  .dash-user {
    background-color: #82BC00;
  }
  .dash-user:hover .dash-user__edit {
    color: #FFF;
  }
}
.nav-dash-primary {
  background: #333;
}
.nav-dash-primary__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-dash-primary__item {
  position: relative;
  display: block;
  overflow: hidden;
  color: #707070;
  font-size: 18px;
  padding: 15px 21px;
}
.nav-dash-primary__item:hover,
.nav-dash-primary__item.active {
  background-color: #000;
  color: #FFF;
}
.nav-dash-primary__item-link {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nav-dash-primary__item-label {
  float: left;
  line-height: 22px;
}
@media screen and (min-width: 1024px) {
  .nav-dash-primary {
    display: none;
  }
}
.icon-payments-on-hold {
  content: url('/images/payments-on-hold.svg');
  margin: 10px 8px 0px 8px;
  padding-right: 7px;
}
.nav-dashboard__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-dashboard__item {
  border-bottom: 2px solid #DBDBDB;
}
.nav-dashboard__item-link {
  display: block;
  overflow: hidden;
  background: #FFF;
  font-size: 18px;
  color: #333;
  padding: 12px 15px;
}
.nav-dashboard__item-link:hover {
  background: #F5F5F5;
}
.nav-dashboard__item-link--right {
  position: relative;
  float: right;
  width: 50%;
}
.nav-dashboard__item-link--right:before {
  content: '';
  position: absolute;
  left: 0;
  width: 2px;
  height: 40px;
  background-color: #DBDBDB;
}
.nav-dashboard__item-icon {
  float: left;
  color: #82BC00;
  font-size: 40px;
  margin-right: 8px;
}
.nav-dashboard__item-icon-img {
  float: left;
  margin: 13px 20px 13px 13px;
}
.nav-dashboard__item-label {
  float: left;
  line-height: 40px;
}
.nav-dashboard .nav-icon {
  color: #82BC00;
  font-size: 40px;
  margin-right: 8px;
}
.dashboard-widgets {
  overflow: hidden;
  padding: 10px 25px;
  background: #F5F5F5;
}
.nav-state {
  cursor: pointer;
  position: relative;
  display: none;
  margin: 0 1%;
  line-height: 40px;
  color: #707070;
}
.nav-state:hover,
.nav-state.active {
  color: #82BC00;
}
.nav-state--danger:hover,
.nav-state--danger.active {
  color: #F95341 !important;
}
.nav-state--warning:hover,
.nav-state--warning.active {
  color: #FABC41 !important;
}
.nav-state--black:hover,
.nav-state--black.active {
  color: #000 !important;
}
.nav-state.active {
  display: block;
}
.js-opened .nav-state {
  display: block;
}
.nav-state__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  font-size: 26px;
}
.nav-state__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nav-state__label {
  display: inline;
}
.nav-state__count {
  display: inline-block;
  background-color: #DBDBDB;
  border-radius: 10px;
  line-height: 1.5;
  padding: 0 8px;
  margin-left: 5px;
  font-size: 12px;
  color: #707070;
}
.nav-state__dropdown {
  display: inline-block;
  font-size: 20px;
  vertical-align: middle;
  margin-left: 5px;
}
.js-opened .nav-state__dropdown {
  display: none;
}
@media screen and (min-width: 1024px) {
  .nav-state {
    display: inline-block;
  }
  .nav-state.active {
    display: inline-block;
  }
  .js-opened .nav-state {
    display: inline-block;
  }
  .nav-state__dropdown {
    display: none;
  }
}
.nav-state-search {
  cursor: pointer;
  position: relative;
  display: none;
  line-height: 40px;
  color: #707070;
  font-family: Gibson;
}
.nav-state-search:hover,
.nav-state-search.active {
  color: #000;
  display: flex;
}
.nav-state-search.active {
  font-weight: 600;
  display: flex;
}
.js-opened .nav-state-search {
  display: flex;
}
.nav-state-search__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nav-state-search__container {
  display: -webkit-box;
}
.nav-state-search__count {
  display: inline-block;
  background-color: #DBDBDB;
  border-radius: 10px;
  line-height: 1.5;
  padding: 0 4px;
  margin-left: 4px;
  font-size: 12px;
  color: #707070;
}
.nav-state-search__dropdown {
  display: inherit;
  font-size: 20px;
  vertical-align: middle;
}
.js-opened .nav-state-search__dropdown {
  display: none;
}
.nav-state-search__label_div.underline {
  box-shadow: inset 0 -2px 0 #000;
}
.nav-state-search__label {
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .nav-state-search {
    display: flex;
  }
  .nav-state-search.active {
    display: flex;
  }
  .js-opened .nav-state-search {
    display: flex;
  }
  .nav-state-search__dropdown {
    display: none;
  }
}
.nav-panel {
  position: fixed;
  z-index: 500;
  top: 60px;
  right: 0;
  bottom: 0;
  width: 380px;
  overflow: auto;
  background-color: #FFF;
  padding: 15px;
  transition: all ease 0.1s;
}
.nav-panel__heading {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 2px solid #333;
}
.nav-panel.ng-hide {
  right: -380px;
}
.alert {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #DBDBDB;
  color: inherit;
}
.alert:hover {
  color: inherit;
  background-color: #F5F5F5;
}
.alert__thumbnail {
  float: left;
  margin-right: 15px;
}
.alert__thumbnail img {
  width: 60px;
  height: 45px;
}
.alert__title {
  font-weight: 600;
}
.alert__state {
  display: inline;
  font-size: 12px;
  font-weight: 600;
  color: #82BC00;
}
.alert__state--lost {
  color: #F95341;
}
.alert__state--pending {
  color: #FABC41;
}
.alert__time-ago {
  display: inline;
  font-size: 12px;
}
.todo {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #DBDBDB;
}
.todo:hover {
  color: inherit;
  background-color: #F5F5F5;
}
.todo__icon {
  float: left;
  width: 20px;
  line-height: 18px;
  border: 1px solid #707070;
  color: #707070;
  border-radius: 50%;
  text-align: center;
  margin: 2px 0 0;
}
.todo__icon .icon {
  font-size: 12px;
}
.todo__body {
  margin-left: 30px;
}
.todo__title {
  font-size: 16px;
  font-weight: 600;
  color: #82BC00;
}
.todo__trade {
  margin-bottom: 5px;
}
.todo__trade-headline {
  font-weight: 600;
  color: #333;
}
.todo__trade-trim {
  color: #707070;
}
.todo__time-ago {
  color: #707070;
}
.toggle {
  position: relative;
  display: block;
  width: 48px;
  height: 24px;
  float: left;
  margin-right: 20px;
  border-radius: 12.8px;
  background-color: #f5f5f5;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.toggle__circle {
  position: absolute;
  top: 0;
  left: 0px;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 12.8px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
}
.toggle__circle-on {
  left: auto;
  right: 0;
}
.toggle__text {
  position: relative;
  float: left;
  padding: 3px;
  width: 230px;
  height: 17px;
  font-family: Gibson;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.42px;
  text-align: right;
  color: #ffffff;
}
.toggle__on {
  border: solid 1.6px #000000;
  background-color: #0020ff;
}
.logged-user-dealer-badge-container {
  display: flex;
  background: #e7e7e7;
  border-radius: 17px;
  color: black;
  font-weight: 400;
  padding: 0px 6px 0 6px;
  height: 16px;
  align-items: center;
  justify-content: center;
}
.logged-user-dealer-badge-container div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logged-user-dealer-badge-container div img {
  height: 12px;
  margin-right: 3px;
}
.flex-container-right-items {
  display: flex;
  justify-content: flex-end;
}
#login-wrapper {
  position: absolute;
  height: 100%;
  overflow: hidden;
}
#login-wrapper .dynamic-splash {
  position: absolute;
  z-index: -10;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  background-color: #707070;
  background-repeat: no-repeat;
  background-size: cover;
}
#login-wrapper .dynamic-splash--blurred {
  filter: blur(10px) brightness(40%);
}
.link:hover {
  color: #82BC00;
}
.login-panel-flex {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: auto;
  filter: none;
}
.login-panel-flex .login-panel {
  width: 450px;
  min-height: 400px;
  margin: auto;
  text-align: center;
  color: #DBDBDB;
}
.login-panel-flex .login-panel .logo {
  margin-bottom: 1.5em;
  float: none;
}
.login-panel-flex form {
  width: 100%;
  margin: 0;
  padding: 0;
}
.login-panel-flex form .form-control {
  position: relative;
  margin: 0 auto;
  width: 245px;
  height: 55px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.25);
}
.login-panel-flex form .form-control input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  text-align: center;
  color: #DBDBDB;
  font-size: 20px;
  outline: none !important;
  border-radius: 0;
}
.login-panel-flex form .form-control input:-webkit-autofill {
  opacity: 0.5;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
.login-panel-flex form .form-control:first-child {
  border-top: 1px solid rgba(250, 250, 250, 0.25);
}
.login-panel-flex form .form-control--last {
  margin-bottom: 15px;
}
.login-panel-flex .captcha {
  width: 304px;
  margin: 0 auto 10px;
}
.login-panel-flex .sub-text__group {
  margin: 5px 0;
}
.login-panel-flex .sub-text .fa {
  font-size: 12px;
}
.btn--login {
  min-width: 185px;
  margin: 15px 0;
}
.submit-row {
  margin: 20px 0;
}
.auth__intro {
  margin-bottom: 30px;
}
.auth__confirm-icon {
  margin: 0 auto 20px;
  background-color: #82BC00;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
}
.auth__confirm-icon .icon {
  font-size: 40px;
  color: #FFF;
}
.auth__confirm-title {
  font-weight: 600;
  margin-bottom: 20px;
}
.auth__confirm-message {
  margin-bottom: 20px;
}
.reset-password {
  position: relative;
}
.reset-password__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.password-rules {
  position: absolute;
  left: 370px;
  width: 260px;
  background-color: #FFF;
  border-radius: 5px;
  color: #707070;
  padding: 10px 20px;
  text-align: left;
  line-height: 2;
}
.password-rules__title {
  font-weight: 600;
}
.password-rules__errors .icon {
  display: none;
}
.password-rules__success .icon {
  color: #82BC00;
  font-size: 1.5em;
  vertical-align: middle;
}
.password-rules__arrow {
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
  height: 14px;
  background-color: #FFF;
  top: 18px;
  left: -7px;
}
.password-rules--empty {
  display: none;
}
.password-rules--empty .icon {
  display: none;
}
.password-rules--settings-user-create {
  position: relative;
  top: 0;
  left: 0;
  float: right;
  width: 45%;
  background: transparent;
}
@media (max-device-width: 480px) {
  .password-rules {
    position: relative;
    left: auto;
    width: 260px;
    margin: 20px auto;
  }
  .password-rules--empty {
    display: block;
  }
  .password-rules__arrow {
    top: auto;
    bottom: -7px;
    left: 50%;
    margin-left: -7px;
  }
}
.user-select-modal {
  position: relative;
  width: 456px;
  height: 450px;
  border-radius: 5px;
  overflow: hidden;
}
.user-select-modal__loader {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.85);
  align-items: center;
  justify-content: center;
  animation-duration: 0.2s;
}
.user-select-modal__loader--disabled {
  z-index: -1;
}
.user-select-modal__loader-spinner {
  font-size: 28px;
}
.user-select-modal__header {
  color: #FFF;
  background-color: #82BC00;
  padding: 20px;
}
.user-select-modal__body {
  position: relative;
  padding: 20px;
}
.user-select-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #FFF;
  font-size: 30px;
}
.user-select-modal__search {
  width: 100%;
}
.user-select-modal__user-list {
  height: 300px;
  overflow-y: auto;
}
.user-card {
  overflow: hidden;
}
.user-card__picture {
  float: left;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 20px;
}
.user-card__full-name {
  float: left;
  font-weight: 600;
  font-size: 16px;
  color: #FFF;
  line-height: 30px;
}
.user-item {
  padding: 20px 0;
  border-bottom: 2px solid #DBDBDB;
  cursor: pointer;
}
.user-item:hover {
  background: #F5F5F5;
}
.user-item__company-logo {
  float: left;
  margin: 0 20px 10px 10px;
}
.user-item__full-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.user-item__permissions {
  font-size: 13px;
  margin: 6px 16px 0 10px;
  display: flex;
  flex-flow: row nowrap;
  align-content: flex-start;
}
.user-item__permissions > span {
  display: flex;
  flex-flow: row nowrap;
  align-content: flex-start;
  justify-content: center;
  margin-right: 24px;
  opacity: 0.3;
}
.user-item__permissions > span.active {
  opacity: 1;
}
.user-item__permissions > span > img {
  margin-top: 2px;
  margin-bottom: 2px;
}
.user-item__permissions > span > span {
  margin-left: 4px;
}
.adesa-org-select-modal {
  border-radius: 5px;
  text-align: center;
}
.adesa-org-select-modal__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.adesa-org-select-modal__fields {
  margin: 0 50px;
  text-align: left;
}
.adesa-org-select-modal__select {
  margin-bottom: 20px;
}
.adesa-org-select-modal__label {
  display: block;
}
.adesa-org-select-modal__confirmation {
  margin-bottom: 20px;
}
/**
 * Policy Modal
 */
.policy-modal {
  width: 800px;
}
.policy-modal iframe {
  width: 100%;
  border: none;
  min-height: 500px;
  margin-top: 0.6em;
  overflow: auto;
}
.tutorial {
  overflow: hidden;
  position: relative;
  width: 750px;
  height: 500px;
  border-radius: 5px;
}
.tutorial__body {
  height: 440px;
}
.tutorial__footer {
  height: 60px;
  background: #F5F5F5;
  text-align: center;
}
.tutorial__btn {
  text-transform: uppercase;
  margin-top: 12px;
  padding: 0 2.5em;
  font-weight: 600;
}
.tutorial__label {
  padding-top: 20px;
  color: #333;
}
.tutorial-welcome {
  overflow: hidden;
  height: 440px;
  background: #82BC00 url(images/traderev/welcome-lockup.png) no-repeat center center;
  text-align: right;
}
.tutorial-welcome__content {
  width: 33%;
  margin: 110px 0 0;
  background: transparent;
  color: #FFF;
}
.tutorial-welcome__label {
  font-size: 32px;
  font-weight: 400;
}
.tutorial-welcome__label--strong {
  font-weight: 600;
  font-size: 46px;
  line-height: 46px;
}
.tutorial-video {
  overflow: hidden;
  position: relative;
  height: 440px;
  background: #000;
}
.tutorial-video__video {
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.tutorial-video video::-webkit-media-controls-fullscreen-button {
  display: none;
}
.tutorial-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #82BC00;
}
/* Make clicks pass-through */
#loading-bar {
  pointer-events: none;
  -webkit-pointer-events: none;
  transition: 350ms linear all;
}
#loading-bar.ng-enter,
#loading-bar.ng-leave.ng-leave-active {
  opacity: 0;
}
#loading-bar.ng-enter.ng-enter-active,
#loading-bar.ng-leave {
  opacity: 1;
}
#loading-bar .bar {
  transition: width 350ms;
  background: #82BC00;
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}
.loading-bar-okta #loading-bar .bar {
  height: 12px !important;
}
/* Fancy blur effect */
#loading-bar .peg {
  position: absolute;
  width: 70px;
  right: 0;
  top: 0;
  height: 2px;
  opacity: 0.45;
  -ms-box-shadow: #29d 1px 0 6px 1px;
  box-shadow: #29D 1px 0 6px 1px;
  border-radius: 100%;
}
.initiate__nav {
  display: flex;
  padding: 15px 0;
  background: #000;
}
.initiate__logo {
  margin: auto;
}
.initiate__container {
  margin: 15px;
  padding: 25px;
  background: #FFF;
  text-align: center;
}
.initiate__app-icon {
  margin: 2em 0;
  border-radius: 10px;
}
.initiate__title {
  font-size: 36px;
  font-weight: 600;
}
.initiate__subtitle {
  margin-bottom: 1.5em;
  font-size: 24px;
  font-weight: 400;
}
#kar-cc-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media (max-device-width: 670px) {
  #kar-cc-wrapper {
    padding: 18px;
    background-image: none;
    align-items: initial;
    justify-content: initial;
  }
  #kar-cc-wrapper .form-wrapper {
    width: 100%;
  }
}
#kar-cc-wrapper .redirect {
  font-family: OpenSans;
  font-size: 15px;
}
#kar-cc-wrapper .openlane-login-content {
  width: 638px;
  opacity: 1;
  animation: animateLoginForm 1s;
}
@keyframes animateLoginForm {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-device-width: 670px) {
  #kar-cc-wrapper .openlane-login-content {
    width: 100%;
  }
}
#kar-cc-wrapper .openlane-login-content h1 {
  font-weight: 700;
}
#kar-cc-wrapper .openlane-login-content button {
  border: #0061ff;
  background: #0061ff;
  color: #ffffff;
  text-transform: capitalize;
}
#kar-cc-wrapper .openlane-login-content .openlane-login {
  width: 590px;
  height: 380px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.15);
  position: relative;
  font-family: Heebo, sans-serif;
}
@media (max-device-width: 670px) {
  #kar-cc-wrapper .openlane-login-content .openlane-login {
    width: 100%;
    height: auto;
  }
}
#kar-cc-wrapper .openlane-login-content .openlane-login--header {
  width: 100%;
  height: 150px;
  background: #ffffff;
  flex: 0 0 auto;
  border-radius: 3px 3px 0 0;
  display: flex;
  border-bottom: 3px solid #0161ff;
}
@media (max-device-width: 670px) {
  #kar-cc-wrapper .openlane-login-content .openlane-login--header {
    display: none;
  }
}
#kar-cc-wrapper .openlane-login-content .openlane-login--header .openlane-logo {
  width: 123px;
  height: 36px;
  margin: 50px 36px;
  align-self: flex-end;
}
#kar-cc-wrapper .openlane-login-content .openlane-login--header .openlane-logo img {
  width: inherit;
  height: inherit;
}
#kar-cc-wrapper .openlane-login-content .openlane-login--body {
  flex: 1 1 auto;
  line-height: 1.38;
  letter-spacing: normal;
  background: #fff;
  padding: 35px;
  border-radius: 0 0 3px 3px;
}
@media (max-device-width: 670px) {
  #kar-cc-wrapper .openlane-login-content .openlane-login--body {
    display: none;
  }
}
#kar-cc-wrapper .openlane-login-content .openlane-login--body-header {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}
#kar-cc-wrapper .openlane-login-content .openlane-login--body-content {
  width: 50%;
  padding-right: 40px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #333333;
}
#kar-cc-wrapper .openlane-login-content .openlane-login--blurb-title {
  margin-bottom: 11px;
}
#kar-cc-wrapper .openlane-login-content .openlane-login--blurb-content {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 36px;
}
@media (max-device-width: 670px) {
  #kar-cc-wrapper .openlane-login-content .openlane-login--blurb-content {
    margin-bottom: 18px;
  }
}
#kar-cc-wrapper .kar-cc-content-large {
  width: 638px;
  opacity: 1;
  animation: animateLoginForm 1s;
}
@keyframes animateLoginForm {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-device-width: 670px) {
  #kar-cc-wrapper .kar-cc-content-large {
    width: 100%;
  }
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login {
  width: 590px;
  height: 438px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.15);
  position: relative;
}
@media (max-device-width: 670px) {
  #kar-cc-wrapper .kar-cc-content-large .kar-cc-login {
    width: 100%;
    height: auto;
  }
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login--header {
  width: 100%;
  height: 181px;
  background: #006f44;
  background: linear-gradient(287deg, #041e42, #006f44);
  flex: 0 0 auto;
  border-radius: 3px 3px 0 0;
  display: flex;
}
@media (max-device-width: 670px) {
  #kar-cc-wrapper .kar-cc-content-large .kar-cc-login--header {
    display: none;
  }
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login--header .kar-logo {
  width: 123px;
  height: 36px;
  margin: 36px;
  align-self: flex-end;
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login--header .kar-logo img {
  width: inherit;
  height: inherit;
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login--body {
  flex: 1 1 auto;
  font-family: 'OpenSans';
  font-size: 16px;
  line-height: 1.38;
  letter-spacing: normal;
  background: #fff;
  color: #707070;
  padding: 35px;
  border-radius: 0 0 3px 3px;
}
@media (max-device-width: 670px) {
  #kar-cc-wrapper .kar-cc-content-large .kar-cc-login--body {
    display: none;
  }
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login--body-content {
  width: 50%;
  padding-right: 40px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login--body-content b {
  font-weight: 700;
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login--body-content a {
  color: #006f44;
  font-weight: 600;
  margin-top: 24px;
  text-decoration: underline;
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login--learn-more-link {
  font-family: OpenSans;
  font-size: 14px;
  font-weight: bold;
  color: #006f44;
  text-decoration: underline;
  margin-top: 30px;
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login--learn-more-popup {
  position: absolute;
  padding: 24px;
  bottom: 30px;
  z-index: 100;
  width: 364px;
  border-radius: 3px;
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login--learn-more-popup::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  margin-left: -8px;
  bottom: -22px;
  left: 7%;
  box-sizing: border-box;
  border: 12px solid black;
  border-color: transparent transparent #ffffff #ffffff;
  border-radius: 5px;
  transform-origin: 0 0;
  transform: rotate(-45deg);
  box-shadow: -3px 3px 3px 0 rgba(0, 0, 0, 0.05);
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login--learn-more-title {
  font-family: OpenSans;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.54px;
  color: #000000;
  padding-top: 36px;
}
#kar-cc-wrapper .kar-cc-content-large .kar-cc-login--learn-more-close {
  font-family: OpenSans;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.33px;
  color: #006f44;
}
.sso-welcome {
  overflow: hidden;
  position: relative;
  width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  line-height: normal;
}
.sso-welcome__header {
  padding: 36px 36px 16px;
  font-size: 32px;
}
.sso-welcome__body {
  padding: 0 36px;
  font-size: 14px;
}
.sso-welcome__body--strong {
  font-weight: 600;
  font-size: 16px;
}
.sso-welcome__footer {
  position: absolute;
  bottom: 0;
}
.sso-welcome-hello {
  overflow: hidden;
  position: relative;
  width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.sso-welcome-hello__header {
  background: #82BC00 url(images/traderev/kar-sso-header.png) no-repeat center center;
  height: 145px;
  text-align: center;
}
.sso-welcome-hello__header__content {
  background: transparent;
  color: #FFF;
  height: 140px;
  padding: 36px 0;
  font-size: 32px;
}
.sso-welcome-hello__header__label {
  font-weight: 400;
}
.sso-welcome-hello__header__label--strong {
  font-weight: 600;
  line-height: 46px;
}
.sso-welcome-hello__body {
  padding: 36px;
  font-size: 14px;
}
.sso-welcome-hello__body__signature {
  position: relative;
  margin-top: 36px;
}
.sso-welcome-hello__body__signature__wrapper {
  display: flex;
}
.sso-welcome-hello__body__signature__text {
  width: 350px;
  flex: 0 0 auto;
}
.sso-welcome-hello__body__signature__clear {
  flex: 1 1 auto;
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.sso-welcome-hello__body__signature__btn {
  margin-top: 5px;
}
.sso-welcome-hello__body__signature__box {
  width: 528px;
  height: 195px;
  border: solid 1px #979797;
  margin-top: 12px;
}
.sso-welcome-hello__body--strong {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}
.sso-payment {
  overflow: hidden;
  position: relative;
  width: 500px;
  height: 260px;
  border-radius: 12px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.sso-payment__extend {
  height: 460px;
}
.sso-payment__header {
  padding: 26px 36px 0;
  font-size: 32px;
}
.sso-payment__body {
  padding: 16px 36px 0;
  font-size: 14px;
}
.sso-payment__body--strong {
  padding-bottom: 6px;
  font-weight: 600;
  font-size: 16px;
}
.sso-payment__body__payment_input {
  padding-top: 10px;
}
.sso-payment__body__payment_input label {
  color: #000;
}
.sso-payment__body__payment_input input {
  display: block;
  width: 235px;
  margin: 3px 0 5px;
}
.sso-payment__body__payment_input input.error {
  border: 2px solid #ff1a00;
}
.sso-payment__body__payment_input #number::-webkit-outer-spin-button,
.sso-payment__body__payment_input #number::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.sso-payment__body__payment_input .form-errors {
  font-family: 'OpenSans';
  font-size: 12px;
  font-weight: 600;
  color: #ff1a00;
  display: flex;
  margin-bottom: 6px;
}
.sso-payment__body__payment_input .form-errors i {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background: url(images/red-alert.svg) no-repeat;
  flex: 0 0 auto;
}
.sso-welcome-email {
  height: 320px;
}
.sso-welcome-email__body--strong {
  padding-bottom: 12.5px;
}
/**
 * Create
 */
.bubble {
  float: left;
  cursor: pointer;
  margin: 0 3px 5px;
  padding: 2px 10px;
  border: 1px solid transparent;
  border-color: #82BC00;
  border-radius: 20px;
  font-size: 14px;
  transition: 0.1s all linear;
}
.bubble:hover,
.bubble--active {
  background-color: #82BC00;
  color: #FFF;
}
.bubble input[type='radio'] {
  display: none;
}
.bubble input[type='checkbox'] {
  display: none;
}
.bubble--disabled {
  opacity: 0.5;
  color: #707070;
  border-color: #707070;
  pointer-events: none;
}
.bubble--negative {
  border-color: #F95341;
}
.bubble--negative.bubble--active {
  background-color: #F95341;
}
.bubble--negative:hover {
  background-color: #F95341;
  color: #FFF;
}
.bubble.active {
  background: #82BC00;
  color: #FFF;
}
.create-steps {
  /** VIN /Adesa Load / VRM**/
  /** Input Bubbles */
  /** Details */
  /** Options */
  /** Disclosures */
  /** Media */
}
.create-steps .main-container .padded {
  padding: 1em 2em;
}
.create-steps .side-container nav ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.create-steps .side-container nav ul .active {
  background: #ebebeb;
}
.create-steps .side-container nav ul .disabled {
  opacity: 0.25 !important;
}
.create-steps .side-container nav ul li.action-btns {
  text-align: center;
  margin: 0 auto;
}
.create-steps .side-container nav ul li.action-btns:hover {
  background: #F5F5F5;
}
.create-steps .side-container nav ul li.action-btns button,
.create-steps .side-container nav ul li.action-btns a {
  width: 100%;
  text-transform: uppercase;
}
.create-steps .side-container nav ul li.action-btns .action-btn {
  margin: 10px 0;
}
.create-steps .side-container nav ul li {
  position: relative;
  padding: 0.75em 1em;
  font-size: 16px;
  color: #707070;
}
.create-steps .side-container nav ul li:hover {
  background: #ebebeb;
}
.create-steps .side-container nav ul li span {
  font-size: 14px;
}
.create-steps .side-container nav ul li .icon {
  margin-right: 8px;
  vertical-align: middle;
  font-size: 14px;
  color: #c3c3c3;
}
.create-steps .side-container nav ul li ul li {
  padding: 0.3em 0 0.3em 3em;
}
.create-steps .side-container nav ul li ul li:first-child {
  padding-top: 0.6em;
}
.create-steps .side-container nav ul li ul li:hover {
  color: #82BC00;
}
.create-steps .side-container nav ul li ul li.in-active {
  opacity: 0.25;
}
.create-steps .side-container nav ul li ul li.in-active:hover {
  color: #707070 !important;
}
.create-steps .side-container nav ul li ul li.active {
  color: #82BC00 !important;
}
.create-steps .side-container nav .asis .container--headline {
  width: 90%;
  color: #f5f5f5;
}
.create-steps .side-container nav .asis .container {
  padding: 0.75em 1em;
  display: flex;
}
.create-steps .side-container nav .asis .container__slider {
  background-color: #707070;
}
.create-steps .side-container nav .asis .switch {
  position: absolute;
  right: 17px;
}
.create-steps form .errors {
  font-size: 14px;
  font-style: italic;
  color: #F95341;
}
.create-steps form input.ng-invalid.ng-dirty.ng-touched {
  border: 2px solid #F95341;
}
.create-steps form.tr-form {
  font-size: 14px;
}
.create-steps form.tr-form h3 {
  margin: 0 0 1em;
  padding: 10px 0;
  border-bottom: 2px solid #DBDBDB;
  font-size: 14px;
  font-weight: 600;
  color: #707070;
}
.create-steps form.tr-form ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.create-steps form.tr-form ul li {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #DBDBDB;
  color: #707070;
}
.create-steps form.tr-form ul li .pull-left {
  width: 50%;
}
.create-steps form.tr-form ul li .pull-left__longtext {
  width: 51%;
}
.create-steps form.tr-form ul li .pull-right {
  width: 50%;
}
.create-steps form.tr-form ul li .pull-right__longtext {
  width: 49%;
}
.create-steps form.tr-form ul li .pull-right {
  overflow: hidden;
}
.create-steps form.tr-form ul li .pull-right input,
.create-steps form.tr-form ul li .pull-right select {
  font-weight: 600 !important;
}
.create-steps form.tr-form ul li .pull-right select {
  max-width: 100%;
}
.create-steps form.tr-form .label-icon__icon {
  float: left;
  font-size: 30px;
  line-height: 0.9;
  letter-spacing: 1.5px;
  color: #333;
  margin: auto;
}
.create-steps form.tr-form .label-icon__label {
  display: block;
  overflow: hidden;
  float: left;
  line-height: 1;
  margin-left: 5px;
}
.create-steps form.tr-form .label-icon__sublabel {
  display: block;
  overflow: hidden;
  font-size: 12px;
}
.create-steps form.tr-form .tr-select {
  float: right;
  direction: rtl;
  outline: none !important;
  background: transparent;
  border: none !important;
  font-size: 14px !important;
  font-weight: 600;
}
.create-steps form.tr-form .tr-select--has-icon {
  margin-top: 2px;
}
.create-steps form.tr-form .tr-select--disabled {
  opacity: 0.25;
}
.create-steps form.tr-form select {
  float: right;
  direction: rtl;
  outline: none !important;
  background: transparent;
  border: none !important;
  font-size: 14px !important;
  font-weight: 600;
}
.create-steps form.tr-form input {
  float: right;
  width: 100%;
  outline: none !important;
  background: transparent;
  border: none !important;
  font-size: 14px !important;
  text-align: right;
  padding: 0;
}
.create-steps form.tr-form input.ng-invalid.ng-dirty {
  border: 2px solid #F95341;
}
.create-steps form.tr-form textarea {
  resize: none;
  width: 100%;
  height: 400px;
  padding: 1em;
  background: #FFF;
  border: none;
  border-radius: 0.5em;
  color: #333;
  font-size: 16px;
}
.create-steps form.tr-form textarea.ng-invalid.ng-dirty {
  border: 2px solid #F95341;
}
.create-steps .divider {
  background-color: #DBDBDB;
  height: 12px;
  border: none;
}
.create-steps .adesa-upload_description {
  margin-bottom: 30px;
}
.create-steps .adesa-upload_spinner {
  font-size: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
}
.create-steps .adesa-upload_label {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #333;
}
.create-steps #adesa-load-import,
.create-steps #vin-step,
.create-steps #vrm-step {
  padding: 0em 6em;
}
.create-steps #adesa-load-import form .form-control,
.create-steps #vin-step form .form-control,
.create-steps #vrm-step form .form-control {
  padding: 0.75em 0;
}
.create-steps #adesa-load-import form .form-control label,
.create-steps #vin-step form .form-control label,
.create-steps #vrm-step form .form-control label {
  display: block;
  font-size: 14px;
  color: #707070;
  margin-bottom: 1em;
}
.create-steps #adesa-load-import form .form-control input,
.create-steps #vin-step form .form-control input,
.create-steps #vrm-step form .form-control input {
  width: 100%;
  padding: 0.5em 1em;
  color: #707070;
  font-size: 24px;
}
.create-steps #adesa-load-import form .form-control input.ng-invalid.ng-dirty,
.create-steps #vin-step form .form-control input.ng-invalid.ng-dirty,
.create-steps #vrm-step form .form-control input.ng-invalid.ng-dirty {
  border: 1px solid #F95341;
}
.create-steps #adesa-load-import form .form-control button,
.create-steps #vin-step form .form-control button,
.create-steps #vrm-step form .form-control button {
  float: right;
}
.create-steps .legal-disclaimer {
  background-color: #DBDBDB;
  color: #707070;
  text-align: center;
  padding: 38px;
  font-size: 13px;
  text-transform: uppercase;
}
.create-steps .bubbles {
  float: right;
  text-align: right;
}
.create-steps .disabled-input {
  opacity: 0.3;
}
.create-steps .disabled-select {
  opacity: 1;
  color: black;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.create-steps #details-step .mileage {
  float: left;
  width: 150px;
  line-height: 27px;
  padding: 0 0.5em;
}
.create-steps #details-step #date-expected {
  overflow-y: hidden;
  position: relative;
  transition: 0.25s all linear;
  font-family: 'Gibson', sans-serif !important;
  font-size: 14px;
}
.create-steps #details-step .date-input {
  border-radius: 4px;
  background-color: #FFF;
  margin: 0 0 0 15px;
  border: 1px solid #DBDBDB;
  width: 128px;
  height: 28px;
  display: inline-flex;
}
.create-steps #details-step .date-input__icon {
  font-size: 27px;
}
.create-steps #details-step .displacement {
  overflow-y: hidden;
}
.create-steps #details-step .displacement span {
  width: auto;
  font-weight: 600;
}
.create-steps #details-step .displacement select {
  margin: 0;
}
.create-steps #options-step .options {
  float: none !important;
  color: #707070;
}
.create-steps #options-step .options .bubble {
  float: left;
  margin: 8px 5px;
}
.create-steps #disclosures-step .form-control {
  margin: 2em 0;
}
.create-steps #disclosures-step .disclosures {
  float: none !important;
  color: #707070;
}
.create-steps #disclosures-step .disclosures .bubble {
  float: left;
  margin: 8px 5px;
}
.create-steps #additional-disclosures-step .form-control {
  margin: 2em 0;
}
.create-steps #additional-disclosures-step .tire-container {
  height: 28px;
  overflow: hidden;
}
.create-steps #additional-disclosures-step .tire-condition-grid {
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
  text-align: center;
}
.create-steps #additional-disclosures-step .tire-condition-grid-item {
  display: inline-block;
  width: 19%;
}
.create-steps #additional-disclosures-step .tire-condition-grid-item .side-label {
  text-align: center;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.create-steps #additional-disclosures-step .tire-axle-container {
  height: 30px;
}
.create-steps #additional-disclosures-step .tire-axle {
  margin-left: 34px;
  margin-right: 34px;
  width: 10px;
  height: 30px;
  background-color: #DBDBDB;
}
.create-steps #additional-disclosures-step .tire-right-spacer {
  margin-top: 10px;
}
.create-steps #additional-disclosures-step .tire-left-spacer {
  margin-bottom: 10px;
}
.create-steps #media-step {
  font-size: 14px;
  color: #707070;
  /** Photos */
}
.create-steps #media-step .upload-label {
  margin-bottom: 10px;
  font-size: 16px;
}
.create-steps #media-step .upload-hint {
  padding-left: 10px;
  font-size: 14px;
  opacity: 0.8;
  color: #707070;
}
.create-steps #media-step .drop-box {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 20px 0;
  border: 4px dotted #82BC00;
  border-radius: 10px;
  text-align: center;
  transition: 0.1s all linear;
}
.create-steps #media-step .drop-box:hover {
  border-color: #82BC00 !important;
  background: rgba(0, 0, 0, 0.02);
}
.create-steps #media-step .drop-box--large {
  padding: 100px 0;
}
.create-steps #media-step .drop-box--loading {
  background: #FFF;
  border: none;
}
.create-steps #media-step .drop-box__label {
  font-size: 16px;
  color: #707070;
}
.create-steps #media-step .drop-box__label strong {
  color: #82BC00;
}
.create-steps #media-step .drop-box__status {
  height: 150px;
}
.create-steps #media-step .drop-box__icon {
  margin-bottom: 3px;
}
.create-steps #media-step .drop-box__icon span {
  font-size: 36px;
}
.create-steps #media-step .drop-box__loading-icon {
  width: 100px;
  height: 100px;
  background-position: center center;
  background-repeat: no-repeat;
}
.create-steps #media-step .drop-box__loading-icon--uploading {
  background-image: url('/images/photos-uploading-loader.gif');
}
.create-steps #media-step .drop-box__loading-icon--analyzing {
  background-image: url('/images/photos-analyzing-loader.gif');
}
.create-steps #media-step .drop-box__loading-icon--completing {
  background-image: url('/images/photos-completing-loader.gif');
}
.create-steps #media-step .drop-box__sub-label {
  margin-top: 0px;
  color: #82BC00;
}
.create-steps #media-step .drop-box.dragging {
  border-color: #82BC00 !important;
}
.create-steps #media-step .photos-list,
.create-steps #media-step .video-list {
  position: relative;
}
.create-steps #media-step .photos-list ul,
.create-steps #media-step .video-list ul {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.create-steps #media-step .photos-list ul li,
.create-steps #media-step .video-list ul li {
  overflow: hidden;
  margin: 20px 0;
  padding: 7px 0 20px;
  border-bottom: 1px solid #DBDBDB;
}
.create-steps #media-step .photos-list ul li .photo-wrapper,
.create-steps #media-step .video-list ul li .photo-wrapper,
.create-steps #media-step .photos-list ul li .video-wrapper,
.create-steps #media-step .video-list ul li .video-wrapper {
  background: #F5F5F5;
  position: relative;
  float: left;
}
.create-steps #media-step .photos-list ul li .photo-wrapper .media-remove,
.create-steps #media-step .video-list ul li .photo-wrapper .media-remove,
.create-steps #media-step .photos-list ul li .video-wrapper .media-remove,
.create-steps #media-step .video-list ul li .video-wrapper .media-remove {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  top: -7px;
  right: -7px;
  width: 25px;
  height: 25px;
  background: #333;
  border: 3px solid #F5F5F5;
  border-radius: 50%;
  font-size: 19px;
  line-height: 1;
}
.create-steps #media-step .photos-list ul li .photo-wrapper .media-remove:hover,
.create-steps #media-step .video-list ul li .photo-wrapper .media-remove:hover,
.create-steps #media-step .photos-list ul li .video-wrapper .media-remove:hover,
.create-steps #media-step .video-list ul li .video-wrapper .media-remove:hover {
  background: #F95341;
}
.create-steps #media-step .photos-list ul li .photo-wrapper .photo-upload-overlay,
.create-steps #media-step .video-list ul li .photo-wrapper .photo-upload-overlay,
.create-steps #media-step .photos-list ul li .video-wrapper .photo-upload-overlay,
.create-steps #media-step .video-list ul li .video-wrapper .photo-upload-overlay,
.create-steps #media-step .photos-list ul li .photo-wrapper .video-upload-overlay,
.create-steps #media-step .video-list ul li .photo-wrapper .video-upload-overlay,
.create-steps #media-step .photos-list ul li .video-wrapper .video-upload-overlay,
.create-steps #media-step .video-list ul li .video-wrapper .video-upload-overlay {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.8);
}
.create-steps #media-step .photos-list ul li .photo-wrapper .photo-upload-overlay .progress-wrapper,
.create-steps #media-step .video-list ul li .photo-wrapper .photo-upload-overlay .progress-wrapper,
.create-steps #media-step .photos-list ul li .video-wrapper .photo-upload-overlay .progress-wrapper,
.create-steps #media-step .video-list ul li .video-wrapper .photo-upload-overlay .progress-wrapper,
.create-steps #media-step .photos-list ul li .photo-wrapper .video-upload-overlay .progress-wrapper,
.create-steps #media-step .video-list ul li .photo-wrapper .video-upload-overlay .progress-wrapper,
.create-steps #media-step .photos-list ul li .video-wrapper .video-upload-overlay .progress-wrapper,
.create-steps #media-step .video-list ul li .video-wrapper .video-upload-overlay .progress-wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  padding: 0 0.5em;
}
.create-steps #media-step .photos-list ul li .photo-wrapper .photo-upload-overlay .progress-wrapper .progress,
.create-steps #media-step .video-list ul li .photo-wrapper .photo-upload-overlay .progress-wrapper .progress,
.create-steps #media-step .photos-list ul li .video-wrapper .photo-upload-overlay .progress-wrapper .progress,
.create-steps #media-step .video-list ul li .video-wrapper .photo-upload-overlay .progress-wrapper .progress,
.create-steps #media-step .photos-list ul li .photo-wrapper .video-upload-overlay .progress-wrapper .progress,
.create-steps #media-step .video-list ul li .photo-wrapper .video-upload-overlay .progress-wrapper .progress,
.create-steps #media-step .photos-list ul li .video-wrapper .video-upload-overlay .progress-wrapper .progress,
.create-steps #media-step .video-list ul li .video-wrapper .video-upload-overlay .progress-wrapper .progress {
  margin-bottom: 10px;
  font-size: 16px;
  color: #707070;
  text-align: center;
}
.create-steps #media-step .photos-list ul li .photo-wrapper .photo-upload-overlay .progress-wrapper .progress-bar,
.create-steps #media-step .video-list ul li .photo-wrapper .photo-upload-overlay .progress-wrapper .progress-bar,
.create-steps #media-step .photos-list ul li .video-wrapper .photo-upload-overlay .progress-wrapper .progress-bar,
.create-steps #media-step .video-list ul li .video-wrapper .photo-upload-overlay .progress-wrapper .progress-bar,
.create-steps #media-step .photos-list ul li .photo-wrapper .video-upload-overlay .progress-wrapper .progress-bar,
.create-steps #media-step .video-list ul li .photo-wrapper .video-upload-overlay .progress-wrapper .progress-bar,
.create-steps #media-step .photos-list ul li .video-wrapper .video-upload-overlay .progress-wrapper .progress-bar,
.create-steps #media-step .video-list ul li .video-wrapper .video-upload-overlay .progress-wrapper .progress-bar {
  overflow: hidden;
  position: relative;
  height: 8px;
  border: 1px solid #82BC00;
  border-radius: 5px;
}
.create-steps #media-step .photos-list ul li .photo-wrapper .photo-upload-overlay .progress-wrapper .progress-bar .progress-bar-inner,
.create-steps #media-step .video-list ul li .photo-wrapper .photo-upload-overlay .progress-wrapper .progress-bar .progress-bar-inner,
.create-steps #media-step .photos-list ul li .video-wrapper .photo-upload-overlay .progress-wrapper .progress-bar .progress-bar-inner,
.create-steps #media-step .video-list ul li .video-wrapper .photo-upload-overlay .progress-wrapper .progress-bar .progress-bar-inner,
.create-steps #media-step .photos-list ul li .photo-wrapper .video-upload-overlay .progress-wrapper .progress-bar .progress-bar-inner,
.create-steps #media-step .video-list ul li .photo-wrapper .video-upload-overlay .progress-wrapper .progress-bar .progress-bar-inner,
.create-steps #media-step .photos-list ul li .video-wrapper .video-upload-overlay .progress-wrapper .progress-bar .progress-bar-inner,
.create-steps #media-step .video-list ul li .video-wrapper .video-upload-overlay .progress-wrapper .progress-bar .progress-bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 8px;
  background: #82BC00;
  transition: all 100ms linear;
}
.create-steps #media-step .photos-list ul li .photo-wrapper .photo-upload-overlay .error-wrapper,
.create-steps #media-step .video-list ul li .photo-wrapper .photo-upload-overlay .error-wrapper,
.create-steps #media-step .photos-list ul li .video-wrapper .photo-upload-overlay .error-wrapper,
.create-steps #media-step .video-list ul li .video-wrapper .photo-upload-overlay .error-wrapper,
.create-steps #media-step .photos-list ul li .photo-wrapper .video-upload-overlay .error-wrapper,
.create-steps #media-step .video-list ul li .photo-wrapper .video-upload-overlay .error-wrapper,
.create-steps #media-step .photos-list ul li .video-wrapper .video-upload-overlay .error-wrapper,
.create-steps #media-step .video-list ul li .video-wrapper .video-upload-overlay .error-wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  padding: 0 0.5em;
  text-align: center;
}
.create-steps #media-step .photos-list ul li .photo-wrapper .photo-upload-overlay .error-wrapper button,
.create-steps #media-step .video-list ul li .photo-wrapper .photo-upload-overlay .error-wrapper button,
.create-steps #media-step .photos-list ul li .video-wrapper .photo-upload-overlay .error-wrapper button,
.create-steps #media-step .video-list ul li .video-wrapper .photo-upload-overlay .error-wrapper button,
.create-steps #media-step .photos-list ul li .photo-wrapper .video-upload-overlay .error-wrapper button,
.create-steps #media-step .video-list ul li .photo-wrapper .video-upload-overlay .error-wrapper button,
.create-steps #media-step .photos-list ul li .video-wrapper .video-upload-overlay .error-wrapper button,
.create-steps #media-step .video-list ul li .video-wrapper .video-upload-overlay .error-wrapper button {
  margin: 0.5em 0;
}
.create-steps #media-step .photos-list ul li .photo-wrapper img,
.create-steps #media-step .video-list ul li .photo-wrapper img,
.create-steps #media-step .photos-list ul li .video-wrapper img,
.create-steps #media-step .video-list ul li .video-wrapper img {
  margin: 0 auto;
}
.create-steps #media-step .photos-list ul li .content-wrapper,
.create-steps #media-step .video-list ul li .content-wrapper {
  margin-left: 225px;
  font-size: 14px;
  color: #707070;
  /* Block */
  /* Block */
}
.create-steps #media-step .photos-list ul li .content-wrapper .bubbles,
.create-steps #media-step .video-list ul li .content-wrapper .bubbles {
  margin-top: 10px;
  float: none;
}
.create-steps #media-step .photos-list ul li .content-wrapper .bubbles .bubble,
.create-steps #media-step .video-list ul li .content-wrapper .bubbles .bubble {
  margin-bottom: 10px;
  margin-right: 5px;
  float: left;
}
.create-steps #media-step .photos-list ul li .content-wrapper .bubbles .bubble.damage,
.create-steps #media-step .video-list ul li .content-wrapper .bubbles .bubble.damage {
  border-color: #F95341 !important;
}
.create-steps #media-step .photos-list ul li .content-wrapper .bubbles .bubble.damage:hover,
.create-steps #media-step .video-list ul li .content-wrapper .bubbles .bubble.damage:hover {
  background: #F95341 !important;
}
.create-steps #media-step .photos-list ul li .content-wrapper .bubbles .bubble.damage.active,
.create-steps #media-step .video-list ul li .content-wrapper .bubbles .bubble.damage.active {
  background: #F95341 !important;
  color: #FFF;
}
.create-steps #media-step .photos-list ul li .content-wrapper .bubbles .bubble.disabled,
.create-steps #media-step .video-list ul li .content-wrapper .bubbles .bubble.disabled {
  border-color: #707070;
  color: #707070;
  cursor: not-allowed;
}
.create-steps #media-step .photos-list ul li .content-wrapper .bubbles .bubble.disabled:hover,
.create-steps #media-step .video-list ul li .content-wrapper .bubbles .bubble.disabled:hover {
  background: transparent !important;
  color: #707070;
}
.create-steps #media-step .photos-list ul li .content-wrapper .damage-location,
.create-steps #media-step .video-list ul li .content-wrapper .damage-location {
  cursor: pointer;
  float: left;
  margin: 0 10px;
  text-align: center;
  /* Modifiers */
  /* Elements */
}
.create-steps #media-step .photos-list ul li .content-wrapper .damage-location:hover,
.create-steps #media-step .video-list ul li .content-wrapper .damage-location:hover {
  text-transform: underline;
}
.create-steps #media-step .photos-list ul li .content-wrapper .damage-location:first-child,
.create-steps #media-step .video-list ul li .content-wrapper .damage-location:first-child {
  margin-left: 0;
}
.create-steps #media-step .photos-list ul li .content-wrapper .damage-location--inactive,
.create-steps #media-step .video-list ul li .content-wrapper .damage-location--inactive {
  opacity: 0.25;
}
.create-steps #media-step .photos-list ul li .content-wrapper .damage-location__label,
.create-steps #media-step .video-list ul li .content-wrapper .damage-location__label {
  padding-top: 2.5px;
  font-size: 12px;
  color: #82BC00;
}
.create-steps #media-step .photos-list ul li .content-wrapper .damage-details,
.create-steps #media-step .video-list ul li .content-wrapper .damage-details {
  margin-top: 10px;
  /* Elements */
}
.create-steps #media-step .photos-list ul li .content-wrapper .damage-details__left,
.create-steps #media-step .video-list ul li .content-wrapper .damage-details__left {
  float: left;
  margin: 0 2em 0 0;
}
.create-steps #media-step .video-list .content-wrapper {
  margin-top: 8px;
}
.create-steps #media-step .video-list .content-wrapper input {
  width: 50%;
  margin-top: 10px;
  padding: 0.5em 1em;
  outline: none !important;
  background: #FFF;
  border: 1px solid #DBDBDB !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}
/* =BEM */
.step__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.colors {
  overflow: hidden;
}
.colors:hover .colors__item {
  opacity: 1;
}
.colors:hover .colors__item--disabled {
  opacity: 0.3;
}
.colors__item {
  cursor: pointer;
  position: relative;
  float: left;
  min-width: 55px;
  text-align: center;
  margin: 15px 0 0;
  opacity: 0.3;
  transition: opacity 0.25s linear;
}
.colors__item--active {
  opacity: 1;
}
.colors__item--active .colors__label {
  color: #82BC00;
}
.colors__item--active .colors__checkmark {
  line-height: 1;
  display: block;
}
.colors__item--disabled {
  pointer-events: none;
  opacity: 0.25;
}
.colors__item input[type='radio'] {
  display: none;
}
.colors__label {
  color: #707070;
  font-size: 12px;
}
.colors__sample {
  width: 30px;
  height: 30px;
  margin: 0 auto 5px;
  border-radius: 50%;
  background: blue;
}
.colors__sample--light {
  border: 1px solid #DBDBDB;
}
.colors__checkmark {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  font-size: 30px;
}
.colors__checkmark span {
  line-height: 30px;
}
.detail__label--required {
  color: #F95341;
}
.detail__label--disabled {
  opacity: 0.25;
}
.detail__label--location-selector {
  line-height: 33px;
}
.detail__label--helptext {
  color: #000;
}
.target-price__input {
  float: right;
  width: auto !important;
}
.target-price__symbol {
  float: right;
  padding-left: 6px;
  line-height: 18px;
  font-weight: 600;
  color: #707070;
}
.pickup-location-selector {
  float: right;
}
.title {
  text-transform: uppercase;
}
.sub-title {
  text-transform: capitalize;
  padding-bottom: 0.25em;
  font-size: 18px;
  color: #333;
  border-bottom: 2px solid #707070;
}
.form-control {
  margin: 15px 0;
}
.form-text {
  padding: 0.75em 0;
  display: block;
  font-size: 14px;
  color: #707070;
  margin-bottom: 1em;
}
.carproof-pending {
  float: right;
  font-weight: 600;
  color: #FABC41;
}
.retail-confirmation-modal p {
  margin: 0;
}
.retail-confirmation-modal p:last-child {
  margin: 0;
  margin-top: 1em;
}
.expected-to-land {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.expected-to-land__separator {
  width: 20px;
  height: 17px;
  font-weight: 600;
  color: #000;
  padding: 5px;
}
.floor-price-delete {
  display: block;
  float: right;
  width: 100%;
  text-align: right;
  margin-right: 2px;
}
.floor-price-delete__icon {
  display: inline-block;
  font-size: 1.5rem;
  text-align: right;
  vertical-align: bottom;
  padding: 0;
  color: #82BC00;
}
.floor-price-delete__text {
  display: inline-block;
  margin-bottom: -10px;
  -webkit-text-decoration: underline #DBDBDB;
          text-decoration: underline #DBDBDB;
}
.floor-price-left {
  width: 60%;
  float: left;
  padding-top: 7px;
}
.floor-price-left__description {
  padding-top: 5px;
  color: #000;
}
.floor-price-left__error {
  color: #F95341;
}
.floor-price-right {
  width: 40%;
  float: right;
  display: block;
}
.floor-price-right__row {
  clear: both;
  padding: 5px 0;
  position: relative;
}
.floor-price-right__row--error {
  color: #000;
  margin: -3px 5px 0 5px;
  line-height: 1;
  float: right;
  font-size: 0.8125rem;
  text-align: right;
  width: 65%;
  padding-bottom: 5px;
}
.floor-price-right__row--error-text {
  vertical-align: top;
}
.floor-price-right__input {
  width: 100% !important;
  padding-left: 10px;
}
.floor-price-right__input--container {
  width: 35%;
  position: relative;
  display: inline-block;
}
.floor-price-right__input--minus {
  position: absolute;
  left: -15px;
  top: 4px;
  font-weight: 600;
}
.floor-price-right__input--dollar {
  position: absolute;
  left: 4px;
  top: 4px;
  font-weight: 600;
}
.floor-price-right__input-label--container {
  text-align: right;
  vertical-align: top;
  width: 62%;
  display: inline-block;
  padding-right: 40px;
  padding-top: 3px;
}
.floor-price-right__input-label--label {
  padding-top: 5px;
  vertical-align: top;
}
.floor-price-right__percentage-holder {
  text-align: right;
  float: right;
  width: 40%;
  padding: 0;
  margin-top: -3px;
  border-bottom: 1px solid #DBDBDB;
  margin-right: 5px;
  font-size: 0.8125rem;
}
.floor-price-right__percentage-holder--percentage {
  display: inline;
}
.floor-price-right__adjusted-price {
  font-size: 0.9375rem;
  font-weight: 600;
  height: 40%;
  color: #000;
}
.floor-price-right__adjusted-price--container {
  text-align: right;
  vertical-align: top;
  width: 62%;
  display: inline-block;
  padding-right: 40px;
  padding-top: 3px;
}
.floor-price-right__adjusted-price--label {
  padding-top: 5px;
  vertical-align: top;
}
.floor-price-right__adjusted-price__value {
  padding-top: 5px;
  width: 35%;
  position: relative;
  display: inline-block;
  text-align: right;
  bottom: auto;
  font-weight: 600;
  color: #000;
}
.floor-price-error-icon {
  font-size: 1rem !important;
  vertical-align: sub;
}
.hide-closing-tolerance {
  display: none;
}
.create-steps form.tr-form .create-trade-input {
  background-color: #FFF;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 128px;
  height: 28px;
  border: 1px solid #DBDBDB !important;
}
.create-steps form.tr-form .create-trade-input__error {
  border: 1px solid #F95341 !important;
}
.create-steps form.tr-form .closing-tolerance-checkbox {
  float: none;
  width: 10%;
  margin: 4px 0 0;
  vertical-align: top;
  font-size: 1.5rem;
}
.closing-tolerance-selector {
  padding-bottom: 5%;
}
.closing-tolerance-selector__checkbox {
  font-size: 1rem;
  vertical-align: text-bottom;
}
.closing-tolerance-selector__checkedbox {
  display: none;
  vertical-align: text-bottom;
}
.closing-tolerance-selector--checked .closing-tolerance-selector__checkbox {
  display: none;
  vertical-align: text-bottom;
}
.closing-tolerance-selector--checked .closing-tolerance-selector__checkedbox {
  vertical-align: text-bottom;
  color: #82BC00;
  display: inline;
  font-size: 1rem;
}
.icon-lg {
  font-size: 1.33em;
}
.icon-middle {
  vertical-align: text-bottom;
}
/**
 * Let's get BEMMy with it.
 */
.damage-location-modal {
  width: 700px;
}
.top-bar {
  height: 100px;
  padding: 0.5em;
  background: #F5F5F5;
  border-radius: 10px 10px 0 0;
  color: #707070;
}
.top-bar__thumbnail {
  margin-right: 1em;
}
.damage-photo {
  cursor: crosshair;
  height: 485px;
  border-bottom: 1px solid #DBDBDB;
}
.damage-photo img,
.damage-photo__photo {
  width: 100%;
  height: 100%;
}
.content {
  margin-top: 15px;
  padding: 0;
}
.content__inputs {
  overflow: auto;
  margin: 25px 0 30px;
  padding: 0;
}
.content__group {
  width: 50%;
  padding: 0 25px;
}
.content__select {
  cursor: pointer;
  outline: none !important;
  width: 100%;
  height: 50px;
  line-height: 35px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #DBDBDB;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 100;
  color: #707070;
  transition: all 500ms ease-in-out;
}
.content__select:hover {
  border-color: #82BC00;
}
.content__select:focus {
  outline: none !important;
}
#damage-location-modal .wrapper .top-bar {
  height: 100px;
  padding: 0.5em;
  background: #F5F5F5;
}
#damage-location-modal .wrapper .top-bar img {
  margin-right: 1em;
}
#damage-location-modal .wrapper .top-bar .details {
  color: #707070;
}
#damage-location-modal .wrapper .damage-photo-wrapper {
  cursor: crosshair;
  height: 485px;
  border-bottom: 1px solid #DBDBDB;
}
#damage-location-modal .wrapper .damage-photo-wrapper img {
  width: 100%;
  height: 100%;
}
#damage-location-modal .wrapper .content-wrapper {
  margin-top: 15px;
  padding: 0 10px;
}
#damage-location-modal .wrapper .content-wrapper .label {
  font-size: 24px;
  color: #707070;
  font-weight: 500;
  text-align: center;
}
#damage-location-modal .wrapper .content-wrapper .inputs {
  margin: 25px 0 0;
  padding: 0;
}
#damage-location-modal .wrapper .content-wrapper .inputs .pull-left,
#damage-location-modal .wrapper .content-wrapper .inputs .pull-right {
  width: 50%;
  padding: 0 25px;
}
#damage-location-modal .wrapper .content-wrapper .inputs select {
  cursor: pointer;
  outline: none !important;
  width: 100%;
  height: 50px;
  line-height: 35px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #DBDBDB;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 100;
  color: #707070;
  transition: all 500ms ease-in-out;
}
#damage-location-modal .wrapper .content-wrapper .inputs select:hover {
  border-color: #82BC00;
}
#damage-location-modal .wrapper .content-wrapper .inputs select:focus {
  outline: none !important;
}
#damage-location-modal .wrapper .content-wrapper .action-buttons {
  margin-top: 35px;
}
#damage-location-modal .wrapper .content-wrapper .action-buttons button {
  outline: none !important;
  margin: auto 10px;
  border: 2px solid transparent;
}
/**
 * Additional Info Modal
 */
.additional-info-modal {
  width: 650px;
}
.additional-info-modal__wrapper {
  padding: 20px;
  text-align: left;
}
.additional-info-modal__loader {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.95);
  align-items: center;
  justify-content: center;
  animation-duration: 0.2s;
}
.additional-info-modal__loader--disabled {
  z-index: -1;
}
.additional-info-modal__loader-spinner {
  font-size: 28px;
}
.additional-info-modal__group {
  overflow: hidden;
}
.additional-info-modal__header {
  margin-bottom: 25px;
}
.additional-info-modal__title {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
}
.additional-info-modal__subtitle {
  padding: 0.5em 0;
  font-size: 16px;
  color: #707070;
}
.additional-info-modal__section {
  overflow: hidden;
  margin: 10px 0 0;
  padding: 0 0 0 20px;
}
.additional-info-modal__input-group {
  margin: 0 0 20px;
}
.additional-info-modal__input-group select {
  font-weight: 400;
  border: 1px solid #DBDBDB;
  height: 33px;
}
.additional-info-modal__input-group--half {
  width: 50%;
}
.additional-info-modal__input-group--third {
  width: 35%;
}
.additional-info-modal__input--half {
  width: 50%;
}
.additional-info-modal__input-checkbox {
  display: inline-block;
  padding: 0 0 0 20px;
}
.additional-info-modal__radio-group {
  margin: 0 1em 0 0;
  padding: 0.5em 0 0;
  display: inline-block;
}
.additional-info-modal__label {
  display: block;
  padding: 0.25em 0;
  font-size: 14px;
  color: #707070;
}
.additional-info-modal__sub-label {
  font-size: 14px;
}
.additional-info-modal__bubbles {
  overflow: hidden;
  margin: 5px 0;
}
[ng-click] {
  cursor: pointer;
}
.badge {
  display: inline-block;
  border-radius: 15px;
  background: #82BC00;
  color: #FFF;
  padding: 3px 10px;
  text-align: center;
  margin-left: 5px;
}
.nav__item--active .badge {
  background-color: #707070;
}
.page-heading {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #707070;
  margin-bottom: 1em;
}
.page-heading__title {
  padding-top: 10px;
}
.page-heading__subtitle {
  font-size: 14px;
  font-weight: 400;
}
.page-heading__right {
  float: right;
}
.page-heading__no_border_bottom {
  border-bottom: 0 solid transparent;
  margin-bottom: 0;
  padding-bottom: 0px;
}
.empty {
  text-align: center;
  margin: 100px 0;
  color: #707070;
}
.empty__icon {
  display: block;
  font-size: 100px;
  margin-bottom: 20px;
}
.empty__title {
  font-weight: 600;
  margin-bottom: 5px;
}
/**
 * Trade List
 */
#trade-list .container .descriptionContainer {
  grid-area: descriptionContainer;
  font-size: 16px;
  padding: 0 0 20px;
}
#trade-list .container .descriptionContainer h1 {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  padding-bottom: 6px;
}
#trade-list .container .descriptionContainer .auction-source {
  margin-top: 20px;
  width: -moz-max-content;
  width: max-content;
  min-width: 235px;
}
#trade-list .container .descriptionContainer .auction-source .filter-check__wrapper--floating {
  top: -4px;
}
#trade-list .container .main-container {
  background: transparent;
}
#trade-list .container .main-container .buy-now-slogan {
  font-size: 16px;
  padding: 0 0 20px;
}
#trade-list .container .main-container .buy-now-slogan h1 {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  padding-bottom: 6px;
}
#trade-list .container .main-container .buy-now-slogan .buy-now-slogan-icon {
  width: 40px;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
  background: #007aff;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #DBDBDB;
  border-radius: 1px;
}
/** BEM **/
.trades__dealer {
  padding: 10px 20px;
}
.no-trades {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  width: 100%;
  height: 200px;
  margin-top: -100px;
  opacity: 1;
  text-align: center;
  animation-delay: 0.5s;
  animation-duration: 0.25s;
  color: #707070;
  transform: translateY(-50%);
}
.no-trades__icon {
  margin-bottom: 0.25em;
  font-size: 80px;
}
.no-trades__message {
  animation-delay: 0.65s;
}
.no-trades__label {
  margin-bottom: 0.5em;
  font-size: 20px;
  font-weight: 600;
}
.no-trades__label--sub-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 175px;
}
.no-trades__label_with_filter {
  margin-bottom: 0.05em;
  font-size: 36px;
  font-family: Gibson, sans-serif;
  color: black;
  font-weight: 300;
}
.no-trades__label_with_filter--sub-label {
  font-size: 16px;
  font-family: Gibson, sans-serif;
  color: #000;
  font-weight: 400;
  line-height: 19px;
  margin: 0 175px;
}
.no-trades--has-filter {
  top: 28%;
}
.hint {
  margin: 15px 0;
  color: #707070;
}
.hint__icon {
  font-size: 32px;
  vertical-align: middle;
}
.sorter {
  position: relative;
}
.sorter .filter-check {
  vertical-align: middle;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  max-width: 250px;
  margin: 0 0 0 0;
}
.sorter .filter-check__list {
  max-height: 250px;
}
.sorter .filter-check__label {
  display: contents;
}
.sorter .filter-check__arrow--up {
  top: 5px;
  right: 13px;
}
.sorter__active {
  background: #FFF;
  padding: 11px;
  cursor: pointer;
}
.sorter__icon {
  float: left;
  width: 25px;
  font-size: 14px;
}
.sorter__icon--invisible {
  visibility: hidden;
}
.sorter__label {
  display: block;
  line-height: 35px;
  margin: 0 15px 0 2px;
}
.sorter__label--invisible {
  visibility: hidden;
}
.sorter__option-list {
  position: absolute;
  z-index: 10;
  width: 100%;
  margin: 0;
  background: rgba(230, 230, 230, 0.9);
  list-style: none;
  padding: 0;
  box-shadow: 0 6px 5px -5px #555;
}
.sorter__option {
  padding: 8px;
  padding-left: 45px;
  cursor: pointer;
}
.sorter__option:hover {
  background: #FFF;
}
.sorter__option--active {
  display: none;
}
.sorter__page {
  float: right;
  padding: 0 20px 0 15px;
  margin: 13px 0;
  border-left: 1px solid #DBDBDB;
}
.sorter__page-label {
  float: left;
  line-height: 28px;
}
.sorter__back {
  float: left;
  font-size: 28px;
  margin-right: 7px;
}
.sorter__count {
  float: right;
  padding: 0 20px;
  line-height: 54px;
}
.sorter__actions {
  float: right;
  padding: 8px 10px;
}
.dealer {
  overflow: hidden;
}
.dealer__name {
  float: left;
}
.dealer__rating {
  float: left;
  margin-left: 10px;
}
.dealer__location {
  float: right;
}
.dealer__location-icon {
  color: #82BC00;
}
.loading-more-trades {
  text-align: center;
  margin: 20px 0;
  color: #82BC00;
  font-size: 30px;
}
.loading-more-events {
  text-align: center;
  margin: 20px 0;
  color: #82BC00;
  font-size: 30px;
}
.trade-pagination {
  background-color: #F5F5F5;
  padding: 10px 20px;
  text-align: right;
}
.bulk-actions {
  position: fixed;
  z-index: 11;
  width: 1144px;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.bulk-actions__primary {
  float: right;
  text-align: right;
}
.bulk-actions__secondary {
  float: left;
  text-align: left;
}
.bulk-actions__label {
  margin: 0 10px;
}
.trade-wrapper {
  position: relative;
}
.trade-spacer {
  height: 10px;
}
.trade-selector {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  padding: 65px 0 0;
  text-align: center;
  background: #FFF;
  font-size: 28px;
}
.trade-selector__btn {
  padding: 0 2px;
  font-size: 14px;
  color: #707070;
  background: transparent;
}
.trade-selector__checkedbox {
  display: none;
}
.trade-selector--checked {
  background: #82BC00;
  color: #FFF;
}
.trade-selector--checked .trade-selector__checkbox {
  display: none;
}
.trade-selector--checked .trade-selector__checkedbox {
  display: inline-block;
}
.trade-selector--error {
  background: #F95341;
  color: #FFF;
}
.trade-selector ~ trade-list-element .trade-list-element {
  margin-left: 50px;
}
.trade-list-inspected-badge {
  display: inline-block;
  position: relative;
  top: 5px;
  height: 21px;
  width: 19px;
}
.green-check-mark {
  color: #82bc00;
  font-size: 20px;
}
.filter-wrapper {
  grid-area: filterContainer;
  height: -moz-fit-content;
  height: fit-content;
}
.filter-wrapper__lists {
  grid-area: auto;
}
.icon-icon-small-dgn {
  font-size: 20px;
  margin-right: 3px;
  margin-left: -3px;
  vertical-align: sub !important;
}
.show-all-vehicles {
  text-align: center;
  margin: 22px 0;
  font-size: 14px;
}
.icon-dealer-badge {
  width: 17px;
  height: 18px;
  top: 5px;
  position: relative;
  margin-right: 6px;
  margin-left: 5px;
}
/**
 * Trade Details
 */
.trade-details {
  background: #FFF;
  font-size: 14px;
  color: #333;
  position: relative;
}
.trade-details .media-wrapper {
  position: relative;
  overflow: hidden;
  height: 405px;
}
.trade-details .media-wrapper img {
  animation-duration: 0.25s;
}
.trade-details .media-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+63,000000+100&amp;0+63,0.8+100 */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 63%, rgba(0, 0, 0, 0.8) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#cc000000', GradientType=0);
  /* IE6-9 */
}
.trade-details .media-wrapper .main-photo-wrapper {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 65%;
  height: 405px;
}
.trade-details .media-wrapper .main-photo-wrapper img {
  cursor: pointer;
  width: 100%;
  height: 405px;
  -o-object-fit: cover;
     object-fit: cover;
  animation-delay: 0s;
}
.trade-details .media-wrapper .main-photo-wrapper .vehicle-overview {
  position: absolute;
  bottom: 20px;
  left: 33px;
  color: #FFF;
  font-weight: 600;
  line-height: normal;
  letter-spacing: normal;
}
.trade-details .media-wrapper .main-photo-wrapper .vehicle-overview__headline {
  font-size: 24px;
  width: 350px;
}
.trade-details .media-wrapper .main-photo-wrapper .vehicle-overview__trim {
  font-size: 18px;
}
.trade-details .media-wrapper .main-photo-wrapper .media-count-wrapper-main {
  position: absolute;
  bottom: 25px;
  width: 100%;
  height: auto;
}
.trade-details .media-wrapper .main-photo-wrapper .media-count-wrapper-main ul {
  list-style: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}
.trade-details .media-wrapper .main-photo-wrapper .media-count-wrapper-main ul li {
  float: right;
  margin: 0 0.5em;
  color: #FFF;
  font-size: 11px;
  text-align: center;
}
.trade-details .media-wrapper .main-photo-wrapper .media-count-wrapper-main ul li .icon {
  vertical-align: middle;
  margin-left: 1px;
  margin-bottom: 3px;
}
.trade-details .media-wrapper .main-photo-wrapper .media-count-wrapper-main .icon-TR-Font_Camera {
  content: url('/images/camera-icon.svg');
}
.trade-details .media-wrapper .main-photo-wrapper .media-count-wrapper-main .icon-TR-Font_Micro-Video {
  content: url('/images/video-icon.svg');
}
.trade-details .media-wrapper .main-photo-wrapper .media-count-wrapper-main .icon-TR-Font_Micro-Damage {
  content: url('/images/damage-icon.svg');
}
.trade-details .media-wrapper .secondary-photo-wrapper {
  overflow: hidden;
  position: relative;
  width: 35%;
  height: 405px;
}
.trade-details .media-wrapper .secondary-photo-wrapper .photo {
  position: relative;
  width: 100%;
  height: 202.5px;
}
.trade-details .media-wrapper .secondary-photo-wrapper .photo:first-child {
  margin-bottom: 5px;
}
.trade-details .media-wrapper .secondary-photo-wrapper .photo img {
  display: block;
  width: 100%;
  height: 202.5px;
  margin-left: 5px;
}
.trade-details .media-wrapper .secondary-photo-wrapper .photo img:first-child {
  animation-delay: 0.25s;
}
.trade-details .media-wrapper .secondary-photo-wrapper .photo img:last-child {
  animation-delay: 0.5s;
}
.trade-details .media-wrapper .secondary-photo-wrapper .media-count-wrapper {
  position: absolute;
  bottom: 25px;
  width: 100%;
  height: auto;
}
.trade-details .media-wrapper .secondary-photo-wrapper .media-count-wrapper ul {
  list-style: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}
.trade-details .media-wrapper .secondary-photo-wrapper .media-count-wrapper ul li {
  float: right;
  margin: 0 0.5em;
  color: #FFF;
  font-size: 18px;
}
.trade-details .media-wrapper .secondary-photo-wrapper .media-count-wrapper ul li .icon {
  vertical-align: middle;
}
.trade-details .media-wrapper .secondary-photo-wrapper-VDPv2 {
  overflow: hidden;
  position: relative;
  width: 35%;
  height: 405px;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 25% 25% 25% 25%;
  grid-column-gap: 2px;
  grid-row-gap: 2px;
}
.trade-details .media-wrapper .secondary-photo-wrapper-VDPv2 .photo {
  position: relative;
  width: 100%;
  height: 101.25px;
}
.trade-details .media-wrapper .secondary-photo-wrapper-VDPv2 .photo:first-child {
  margin-bottom: 5px;
}
.trade-details .media-wrapper .secondary-photo-wrapper-VDPv2 .photo img {
  display: block;
  width: 100%;
  height: 101.25px;
  margin-left: 2px;
  -o-object-fit: cover;
     object-fit: cover;
}
.trade-details .media-wrapper .secondary-photo-wrapper-VDPv2 .photo img:first-child {
  animation-delay: 0.25s;
}
.trade-details .media-wrapper .secondary-photo-wrapper-VDPv2 .photo img:last-child {
  animation-delay: 0.5s;
}
.trade-details .details-section-v2 {
  background: #F5F5F5;
  padding-bottom: 2.5em;
}
.trade-details .details-section {
  padding: 0.5em 1em;
  background: #F5F5F5;
}
.trade-details .details-section--half {
  float: left;
  width: 50%;
}
.trade-details .details-section--hide {
  overflow: hidden;
  display: none;
}
.trade-details .details-section--white {
  background: #FFF;
}
.trade-details .details-section--light-gray {
  background: #F5F5F5;
}
.trade-details .details-section__clearfix {
  overflow: hidden;
}
.trade-details .details-section__group {
  overflow: hidden;
  border-bottom: 2px solid #707070;
}
.trade-details .details-section__group--bos {
  margin: 0.5em 0;
  padding: 0.5em 1em;
}
.trade-details .details-section__thirdparty-autoniq {
  padding: 0.5em 1em 4.75em 1em;
}
.trade-details .details-section__thirdparty-autoniq--inline {
  display: inline-block;
  transform: translateY(10%);
}
.trade-details .details-section__title-v2 {
  margin: 0.5em 0;
  padding: 0.5em 1em 0.75em 1em;
  font-size: 18px;
  border-bottom: 2px solid #707070;
}
.trade-details .details-section__title {
  margin: 0.5em 0;
  padding: 0.5em 1em;
  font-size: 16px;
  border-bottom: 2px solid #707070;
}
.trade-details .details-section__title--bos {
  margin: 0;
  padding: 0;
  border: none;
}
.trade-details .details-section__title__disclosure-number {
  text-align: right;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  float: right;
  vertical-align: bottom;
  font-family: Gibson;
  color: #333;
}
.trade-details .details-section__title__disclosures-icon {
  width: 22px;
  height: 18px;
  float: right;
  padding-right: 5px;
}
.trade-details .details-section__subtitle {
  float: right;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #707070;
}
.trade-details .details-section__alert-icon {
  float: left;
  font-size: 30px;
  line-height: 21px;
  color: #F95341;
}
.trade-details .details-section__download {
  text-align: right;
}
.trade-details .details-section__loader {
  width: auto;
  height: auto;
}
.trade-details .details-section__split {
  width: 47.5%;
}
.trade-details .details-section__split-v2 {
  width: 49%;
}
.trade-details .details-section__content {
  overflow: hidden;
  padding: 0 1.25em;
  animation-delay: 0.5s;
}
.trade-details .details-section__content--notes {
  white-space: pre-wrap;
}
.trade-details .details-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.trade-details .details-section__list--columns .details-section__list-element {
  width: 46%;
  margin: 0 2%;
}
.trade-details .details-section__content-v2 {
  overflow: hidden;
  animation-delay: 0.5s;
}
.trade-details .details-section__content-v2--notes {
  white-space: pre-wrap;
  margin: 3% 0 0 2%;
  font: inherit;
  letter-spacing: 0;
  line-height: 21px;
}
.trade-details .details-section__list-v2 {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.trade-details .details-section__list-v2--columns .details-section__list-element {
  width: 46%;
  margin: 0 2%;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.trade-details .details-section__list-two-column {
  padding: 0;
  margin: 0;
  width: 100%;
  grid-column-gap: 2%;
  grid-template-columns: 1fr 1fr;
  display: inline-grid;
}
.trade-details .details-section__list-element {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 1em 0;
  border-bottom: 2px solid #DBDBDB;
  font-size: 14px;
}
.trade-details .details-section__list-element--multi-line {
  display: table;
}
.trade-details .details-section__label {
  float: left;
  display: inline-block;
  width: 45%;
  color: #707070;
}
.trade-details .details-section__label--multi-line {
  display: table-cell;
  vertical-align: top;
}
.trade-details .details-section__label--options-disclosure {
  float: left;
  width: 10%;
}
.trade-details .details-section__label--strong {
  font-weight: 600;
}
.trade-details .details-section__transportation-details-label {
  float: left;
  display: inline-block;
  padding-left: 20px;
  width: 47%;
  color: #707070;
  white-space: initial;
}
.trade-details .details-section__list-element-v2 {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0.75em 0;
  border-bottom: 2px solid #DBDBDB;
  font-size: 14px;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.trade-details .details-section__list-element-v2--multi-line {
  display: table;
}
.trade-details .details-section__list-element-v2--pick-up-element {
  display: inline-grid;
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 2;
}
.trade-details .details-section__list-element-v2--pick-up-transportation-element {
  display: inline-grid;
  grid-row-start: 1;
  grid-column-start: 2;
}
.trade-details .details-section__pick-up-label {
  color: #707070;
  white-space: nowrap;
  grid-column-start: 1;
  grid-row-start: 1;
}
.trade-details .details-section__pick-up-property {
  padding-left: 20px;
  font-weight: 600;
  line-height: 1.2em;
  grid-column-start: 2;
  grid-row-start: 1;
}
.trade-details .details-section__label-v2 {
  float: left;
  display: inline-block;
  width: 48%;
  padding-left: 20px;
  color: #707070;
  white-space: nowrap;
}
.trade-details .details-section__label-v2--multi-line {
  display: table-cell;
  vertical-align: top;
}
.trade-details .details-section__label-v2--options {
  float: left;
  width: 10%;
  padding-right: 15px;
}
.trade-details .details-section__label-v2--disclosure {
  float: left;
  width: 5.5%;
}
.trade-details .details-section__label-v2--strong {
  font-weight: 600;
}
.trade-details .details-section__help-text {
  color: #000;
}
.trade-details .details-section__property {
  float: right;
  display: inline-block;
  width: 45%;
  font-weight: 600;
}
.trade-details .details-section__property--value {
  white-space: pre-wrap;
}
.trade-details .details-section__property--value--trd {
  padding-left: 5px;
  color: #707070;
  font-weight: 400;
}
.trade-details .details-section__property--capitalize {
  text-transform: capitalize;
}
.trade-details .details-section__property--multi-line {
  line-height: 1.2em;
}
.trade-details .details-section__property--options-disclosure {
  float: left;
  font-weight: 400;
  width: 85%;
}
.trade-details .details-section__property--options-disclosure-v2 {
  float: left;
  font-weight: 400;
  width: 85%;
  padding-top: 3px;
  padding-left: 10px;
}
.trade-details .details-section__property--valid {
  color: #82BC00;
}
.trade-details .details-section__property--pending {
  color: #FABC41;
}
.trade-details .details-section__item {
  clear: both;
}
.trade-details .details-section__icon {
  font-size: 26px;
  vertical-align: middle;
}
.trade-details .details-section__icon--option {
  color: #82BC00;
}
.trade-details .details-section__icon--disclosure {
  color: #F95341;
}
.trade-details .details-section__icon--disclosure-v2 {
  color: #F95341;
  padding-left: 15px;
  padding-top: 3px;
}
.trade-details .details-section__icon--disclosure-v2--vehicle-history {
  height: 24px;
  padding-left: 30px;
  position: relative;
  top: -5px;
}
.trade-details .details-section__icon--disclosure-v2--image {
  width: 10px;
  padding-top: 5px;
}
.trade-details .details-section__address {
  margin: 1em 0;
  font-style: normal;
}
.trade-details .details-section__address-preformatted {
  margin: 1em 0;
  font-style: normal;
  white-space: pre-line;
}
.trade-details .details-section__actions {
  margin: 20px auto 0;
  text-align: center;
}
.trade-details .details-section__bos-action {
  cursor: pointer;
  display: inline-block;
  margin-left: 15px;
  color: #707070;
}
.trade-details .details-section__bos-action:hover {
  color: #82BC00;
}
.trade-details .details-section__bos-action--disabled {
  pointer-events: none;
  opacity: 0.5;
}
.trade-details .details-section__bos-action--disabled:hover {
  color: #707070;
}
.trade-details__shipping-amount {
  display: inline-block;
  position: relative;
}
.trade-details__headline {
  overflow: hidden;
  background: #FFF;
  padding: 0 1.75em 10px 1.75em;
  color: #333;
}
.trade-details__icons {
  padding: 0px 15px 19px 15px;
  border-bottom: 2px solid #dbdbdb;
}
.trade-details__icons__floor-price {
  position: relative;
  top: 0;
  left: 15px;
}
.trade-details__expected {
  font-size: 12px;
  padding-top: 2px;
}
.trade-details__expected .icon-TR-Font_Calendar {
  vertical-align: middle;
  font-size: 28px;
  margin-left: -6px;
}
.trade-details__expected_val {
  font-weight: 600;
}
.trade-details__expected_disc {
  background: #fff1be;
  border-radius: 18px;
  justify-content: space-between;
  vertical-align: middle;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  padding: 6px;
  font-weight: 400;
}
.trade-details__expected_disc .icon-TR-Font_Disclosure {
  color: #000 !important;
  font-size: 16px;
  vertical-align: middle;
}
.trade-details__headline-wrapper {
  padding: 15px;
}
.trade-details__headline-wrapper:after {
  visibility: hidden;
  display: block;
  content: '';
  clear: both;
  height: 0;
}
.trade-details__headline-wrapper--border {
  margin-bottom: 1em;
  border-bottom: 2px solid #DBDBDB;
}
.trade-details__headline-wrapper-msc {
  padding-left: 15px;
  padding-right: 15px;
}
.trade-details__headline-wrapper-msc:after {
  visibility: hidden;
  display: block;
  content: '';
  clear: both;
  height: 0;
}
.trade-details__headline-wrapper-msc--border {
  margin-bottom: 1em;
  border-bottom: 2px solid #DBDBDB;
}
.trade-details__labels-wrapper-msc {
  width: 100%;
  height: 45px;
  position: relative;
}
.trade-details__labels-inner-msc {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.trade-details__headline-dealer {
  width: 80% !important;
}
.trade-details__headline-dealer-details {
  float: left;
  margin-left: 2em;
  line-height: 1;
}
.trade-details__headline-dealer-property {
  margin: 0.25em 0 0.5em;
  position: relative;
  display: flex;
}
.trade-details__headline-dealer-property--strong {
  font-size: 16px;
  font-weight: 600;
}
.trade-details__headline-dealer-full-name {
  color: #333;
}
.trade-details__headline-dealer-full-name:hover {
  color: #82BC00;
}
.trade-details__headline-dealer-thumbnail {
  position: relative;
  float: left;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #FFF;
  border: 1px solid #DBDBDB;
  overflow: hidden;
}
.trade-details__headline-dealer-thumbnail img {
  width: 100%;
}
.trade-details__headline-dealer-ts {
  position: absolute;
  bottom: -4px;
  right: -6px;
}
.trade-details__headline-dealer-ts:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #FFF;
  width: 13px;
  height: 13px;
}
.trade-details__headline-dealer-ts .icon {
  position: relative;
  display: block;
  color: #707070;
  font-size: 30px;
}
.trade-details__headline-dealer-ts--valid .icon {
  color: #82BC00;
}
.trade-details__headline-dealer-ts--invalid .icon {
  color: #F95341;
}
.trade-details__headline-msc-inspected-logo {
  position: relative;
  float: left;
  width: 70px;
  height: 50px;
  border-radius: 50%;
}
.trade-details__headline-msc-inspected-logo img {
  width: 45px;
  height: 50px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.trade-details__headline-msc-inspected-property {
  position: relative;
}
.trade-details__headline-msc-inspected-property--strong {
  font-size: 16px;
  font-weight: 600;
}
.trade-details__trade-msc-inspected {
  position: relative;
  width: 100%;
  height: 65px;
  border-bottom: 2px solid #DBDBDB;
  margin-bottom: 15px;
}
.trade-details__headline-thirdparty-autoniq {
  line-height: 1;
  transform: translateY(25%);
}
.trade-details__transport-details {
  letter-spacing: normal;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  border-top: 1px solid;
  border-color: #DBDBDB;
}
.trade-details__transport-details--content {
  margin: 20px 0 10px 115px;
}
.trade-details__transport-details--no-quote {
  margin-bottom: 15px;
}
.trade-details__autoniq {
  font-weight: 600;
  font-size: 11px;
  color: #333;
}
.trade-details__trade-actions {
  position: relative;
  width: 100%;
  height: 100%;
}
.trade-details__trade-actions--trade-in {
  height: 80px;
}
.trade-details__list-actions {
  position: absolute;
  top: 0;
  right: 0;
}
.trade-details__list-actions .icon {
  width: 36px;
  cursor: pointer;
  display: inline-block;
  font-size: 36px;
  line-height: 1;
  margin: 22px 0 22px 20px;
}
.trade-details__trade-actions-badge-icon {
  display: block;
  font-size: 24px;
  margin-bottom: 5px;
}
.trade-details__micro-icons {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 33px 0 0 0px;
  width: 100%;
  font-weight: 400;
}
.trade-details__micro-icons li.mileage {
  margin: 0 0.5em 0 0;
  line-height: 18px;
  color: #333;
}
.trade-details__micro-icons li {
  float: left;
  line-height: 1;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.trade-details__micro-icons li .icon {
  font-size: 16px;
  vertical-align: middle;
}
.trade-details__micro-icons li .label {
  font-size: 10px;
}
.trade-details__dealer-address {
  margin: 6px 22px;
  height: 13px;
  font-size: 11px;
  letter-spacing: normal;
  line-height: normal;
}
.trade-details__dealer-address--trd {
  margin-left: 2px;
}
.trade-details__align-display {
  display: flex;
}
.trade-details__shipping-info {
  font-size: 14px;
}
.trade-details__shipping-info--price,
.trade-details__shipping-info--distance {
  font-weight: 600;
}
.trade-details__shipping-info--rate {
  position: relative;
  top: -1px;
  font-size: 12px;
  font-weight: 600;
}
.trade-details__shipping-info--rate:hover {
  color: #82bc00;
}
.trade-details__shipping-info--image {
  position: relative;
  top: 4px;
  margin: 0 4px 0 12px;
  width: 16px;
  height: 16px;
}
.trade-details__shipping-info--promo-image {
  position: relative;
  top: 4px;
  margin-left: 12px;
  width: 20px;
  height: 20px;
}
.trade-details__transport-distance-image {
  width: 19px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.trade-details__transport-distance-image--list {
  margin-top: 14px;
  margin-bottom: 14px;
  margin-right: 6px;
}
.trade-details__transport-distance-image--vdp {
  width: 12.5px;
  height: 8px;
  margin-top: 6px;
  margin-right: 6px;
}
.trade-details__transport-distance-image--vdp--old {
  width: 19px;
  height: 12px;
  margin-right: 6px;
  margin-top: 2px;
}
.trade-details__dealer-distance-margin {
  margin-left: 6px;
}
.trade-details__dealer-address-margins {
  margin-top: 4px;
  margin-bottom: 6px;
}
.trade-details__trade-in-customer-details {
  padding: 5px 0 0 0;
}
.trade-details__trade-in-customer-details__header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: left;
  align-items: start;
  font-weight: 700;
  font-size: 12px;
}
.trade-details__trade-in-customer-details__header__icon {
  padding-right: 3px;
  width: 17px;
  height: auto;
}
.trade-details__trade-in-customer-details__info {
  padding: 0 0 0 25px;
  line-height: 2;
}
#trade-details .dgn__icon {
  font-size: 24px;
  vertical-align: middle;
  max-width: 14px;
  margin-right: 5px;
}
#trade-details .dgn__label {
  font-size: 12px;
}
#trade-details .buy-now {
  width: 100%;
  position: relative;
  margin: 10px 0;
  padding: 5px 0;
  border-top: 2px solid #DBDBDB;
  text-align: left;
}
#trade-details .buy-now--compact {
  border: none;
  margin: 5px 0;
  padding: 0;
}
#trade-details .buy-now__price {
  font-size: 20px;
  font-weight: 600;
}
#trade-details .buy-now__desc {
  font-size: 16px;
  color: #707070;
}
#trade-details .current-bid {
  position: relative;
}
#trade-details .current-bid--details {
  margin-top: 0.75em;
  padding-top: 0.75em;
  border-top: 2px solid #DBDBDB;
}
#trade-details .current-bid--default {
  min-height: 60px;
}
#trade-details .current-bid__bid {
  margin-bottom: 0.25em;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
#trade-details .current-bid__bid-history-link {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #707070;
}
#trade-details .current-bid__bid-amount {
  position: absolute;
  top: 47px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #707070;
  text-align: center;
  color: #FFF;
  line-height: 1;
}
#trade-details .current-bid__bid-amount--top-bidder {
  background-color: #82BC00;
}
#trade-details .current-bid__bid-amount--outbid {
  background-color: #F95341;
}
#trade-details .current-bid__bid-amount--lost-interim {
  top: 83px;
}
#trade-details .current-bid__bid-amount-number {
  position: relative;
  top: 12px;
}
#trade-details .current-bid__timer {
  margin-bottom: 10px;
}
#trade-details .current-bid__floor-price {
  margin-top: -11px;
}
#trade-details .current-bid__floor-price__icon {
  position: relative;
  top: 2px;
}
#trade-details .current-bid .auto-won-badge {
  display: inline-block;
  transform: translateY(-3px);
  border: 1px solid #228419;
  color: #228419;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: unset;
  padding: 0 6px;
  margin-left: 6px;
}
#trade-details .current-bid .auto-won-proxy {
  color: #707070;
  margin-top: -5px;
  margin-bottom: 26px;
}
#trade-details .current-bid .proxy-amount {
  font-weight: 600;
  margin-left: 6px;
}
#trade-details .bid-list {
  overflow-y: scroll;
  height: 300px;
  margin: -0.75em 0 0 0;
  background: #F5F5F5;
}
#trade-details .bid-list__icon {
  vertical-align: middle;
}
#trade-details .bid-list__bids {
  padding-top: 1em;
}
#trade-details .bid-list__list {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0 1.5em;
}
#trade-details .bid-list__list-element {
  overflow: hidden;
  padding: 1em 0;
  border-bottom: 2px solid #DBDBDB;
}
#trade-details .bid-list__list-element-section {
  width: 50%;
}
#trade-details .bid-list__bid-amount {
  padding-bottom: 0.25em;
  font-size: 16px;
  font-weight: 600;
}
#trade-details .bid-list__bid-time {
  font-size: 12px;
  line-height: 1.25;
  color: #707070;
}
#trade-details .bid-action {
  padding: 0 1.5em;
  margin: 1em 0 0.5em;
}
#trade-details .timer-countdown {
  margin-left: 5px;
  font-size: 17px;
}
#trade-details .lost-interim-buy-now {
  position: relative;
  width: 100%;
  margin-top: 11px;
}
#trade-details .lost-interim-buy-now--floor-price {
  font-weight: 600;
  font-size: 24px;
  color: #000;
}
#trade-details .lost-interim-buy-now--button {
  margin-top: 18px;
  width: 100%;
}
#trade-details .make-an-offer {
  position: relative;
  width: 100%;
  margin-top: 23px;
}
#trade-details .make-an-offer--input {
  width: 80%;
  -moz-appearance: textfield;
}
#trade-details .make-an-offer--input::-webkit-inner-spin-button,
#trade-details .make-an-offer--input::-webkit-outter-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#trade-details .make-an-offer--bid-assist-message {
  margin-top: 5px;
}
#trade-details .make-an-offer--button {
  background-color: #82bc00;
  font-size: 14px;
  font-weight: 600;
  line-height: 35px;
  padding: 0 10px;
  margin-top: 22px;
  width: 100%;
}
#trade-details .make-an-offer--button-disabled {
  margin-top: 5px;
  background-color: #dbdbdb;
}
#trade-details .make-an-offer--button-disabled-empty {
  margin-top: 22px;
  background-color: #dbdbdb;
}
#trade-details .make-an-offer--submitted {
  margin-top: 20px;
}
.qa-badge {
  position: relative;
  display: block;
  float: right;
  text-align: center;
  margin: 0 auto;
  color: #333;
  line-height: 1;
}
.qa-badge__icon {
  display: block;
  font-size: 42px;
  margin-bottom: 5px;
}
.qa-badge__counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #FFF;
  background-color: #F95341;
  width: 22px;
  line-height: 22px;
  border-radius: 50%;
}
.recommended-icon-details {
  display: inline-block;
  font-size: 24px;
  background-color: #82BC00;
  color: #FFF;
  border-radius: 100%;
  margin-right: 5px;
}
.trade-action-button-wrapper {
  padding: 1.5em;
  text-align: center;
}
.launch-count {
  text-align: left;
  color: #707070;
  margin-bottom: 6px;
}
.launch-count span {
  font-weight: 600;
}
.trade-details-dp-legacy {
  padding: 15px 20px;
  text-align: center;
  font-size: 12px;
  color: #707070;
}
.trade-details-dp-legacy__method {
  padding: 3px 0;
  font-weight: 600;
}
.trade-details-ac-in-progress {
  padding: 15px 20px;
  text-align: justify;
  font-size: 12px;
  font-weight: 700;
}
.trade-details-main-action-button {
  white-space: nowrap;
}
.trade-details-main-action-button--adesa-in-lane-text {
  text-transform: none;
  white-space: normal;
}
.text-tr-green {
  color: #82bc00;
}
.trade-details-auto-checkout-info {
  padding: 10px 25px;
  text-align: left;
  font-size: 12px;
  font-family: Gibson;
}
.trade-details-auto-checkout-info__progress-icon {
  display: inline-block;
}
.trade-details-auto-checkout-info__date-message {
  margin-bottom: 10px;
  font-size: 14px;
  display: inline-block;
  margin-left: 10px;
}
.trade-details-auto-checkout-info__date-message__date-string {
  font-size: 16px;
  font-weight: 600;
}
.trade-details-auto-checkout-info__dp-method__display_name {
  color: #82BC00;
}
.trade-details-auto-checkout-info__disclaimer {
  padding-top: 5px;
}
.trade-details-auto-checkout-info__default-setup {
  padding-top: 5px;
}
.trade-details-ap__support {
  text-align: center;
  margin-top: 10px;
  color: #707070;
}
.trade-details-ap__payment-icon {
  font-size: 24px;
  color: #707070;
}
.trade-details-ap__payment-icon--active {
  color: #82BC00;
}
.trade-details-spi {
  padding: 5px 10px;
  border-radius: 20px;
  background: #82BC00;
  font-weight: 600;
  font-size: 12px;
  color: #FFF;
  text-align: center;
}
.trade-details-spi:hover {
  background: #649e00;
}
.details-details-list {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}
.special-text-details {
  max-height: 165px;
}
.special-text-options {
  max-height: 180px;
}
.special-text-details,
.special-text-options {
  position: relative;
  overflow: hidden;
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  transition: max-height 1s ease;
}
.special-text-details--expanded,
.special-text-options--expanded {
  max-height: 100vh;
}
.special-text-details:not(.special-text-details--expanded)::after,
.special-text-options:not(.special-text-details--expanded)::after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(245, 245, 245, 0), 80%, rgba(245, 245, 245, 0.8));
}
.normal-text-options {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 1s ease;
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
.expand-details-link {
  positon: absolute;
  display: block;
  text-align: center;
  text-decoration: underline;
  font-size: 14px;
  padding-top: 30px;
  color: #707070;
}
.expand-options-link {
  positon: absolute;
  display: block;
  text-align: center;
  text-decoration: underline;
  font-size: 14px;
  padding-top: 30px;
  color: #707070;
}
.btn-vhr-v2 {
  font-weight: 400;
  padding-top: 3px;
  padding-left: 10px;
  padding: 0 15px;
  line-height: 20px;
  float: right;
}
#question-mark-icon {
  content: url('/images/group-5@3x.png');
  width: 20px;
  padding-left: 5px;
  margin: -3px;
}
.dmp-checkout-box {
  margin-top: 5%;
  padding: 1.5em;
}
.dmp-checkout-box__heading {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.dmp-checkout-box__button {
  white-space: nowrap;
  font-size: 16px;
  font-weight: normal;
  text-transform: none;
  width: 100%;
  margin-top: 9px;
}
.retail-share {
  margin-top: 5%;
  padding: 1.5em;
}
.retail-share__heading {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.retail-share__message {
  font-size: 16px;
  line-height: 1;
  color: #707070;
  margin: 9px 0;
}
.retail-share__button {
  white-space: nowrap;
  font-size: 16px;
  font-weight: normal;
  text-transform: none;
  width: 100%;
}
#trade-media-gallery .modal {
  background: transparent !important;
}
#trade-media-gallery .modal-large {
  width: 1200px;
}
#trade-media-gallery .wrapper nav {
  margin-bottom: 1em;
}
#trade-media-gallery .wrapper nav ul {
  list-style: none;
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#trade-media-gallery .wrapper nav ul li.active {
  color: #82BC00 !important;
}
#trade-media-gallery .wrapper nav ul li.in-active {
  cursor: not-allowed;
  opacity: 0.5;
}
#trade-media-gallery .wrapper nav ul li.in-active:hover {
  color: #FFF;
}
#trade-media-gallery .wrapper nav ul li {
  cursor: pointer;
  float: left;
  width: 33.3%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
}
#trade-media-gallery .wrapper nav ul li:hover {
  color: #82BC00;
}
#trade-media-gallery .wrapper .content {
  position: relative;
  width: 100%;
}
#trade-media-gallery .wrapper .content .main-content {
  position: relative;
  width: 74%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#trade-media-gallery .wrapper .content .main-content video {
  width: 100%;
}
#trade-media-gallery .wrapper .content .main-content__arrow {
  display: block;
  cursor: pointer;
  position: absolute;
  z-index: 100;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  text-align: center;
}
#trade-media-gallery .wrapper .content .main-content__arrow:hover {
  background: #FFF;
}
#trade-media-gallery .wrapper .content .main-content__arrow--left {
  left: 10px;
}
#trade-media-gallery .wrapper .content .main-content__arrow--right {
  right: 10px;
}
#trade-media-gallery .wrapper .content .main-content__arrow-icon {
  vertical-align: middle;
  font-size: 36px;
  color: #333;
  line-height: 50px;
}
#trade-media-gallery .wrapper .content .side-content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  width: 25%;
  background: #FFF;
}
#trade-media-gallery .wrapper .content .side-content .inner-content__desc {
  overflow: hidden;
  white-space: nowrap;
}
#trade-media-gallery .wrapper .content .side-content .inner-content__thumbnail {
  display: inline-block;
}
#trade-media-gallery .wrapper .content .side-content .inner-content ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 1em;
  width: 100%;
}
#trade-media-gallery .wrapper .content .side-content .inner-content ul li.active {
  background: rgba(0, 0, 0, 0.05);
}
#trade-media-gallery .wrapper .content .side-content .inner-content ul li.active .details strong,
#trade-media-gallery .wrapper .content .side-content .inner-content ul li.active .details .damage-label {
  color: #82BC00;
}
#trade-media-gallery .wrapper .content .side-content .inner-content ul li {
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  padding: 1em 0.5em;
  border-bottom: 2px solid #DBDBDB;
  transition: 0.25s all ease-in-out;
}
#trade-media-gallery .wrapper .content .side-content .inner-content ul li:hover {
  background: rgba(0, 0, 0, 0.05);
}
#trade-media-gallery .wrapper .content .side-content .inner-content ul li .details {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  margin-left: 0.75em;
  font-size: 14px;
}
#trade-media-gallery .wrapper .content .side-content .inner-content ul li .details ul.damages-list,
#trade-media-gallery .wrapper .content .side-content .inner-content ul li .details .damage-label {
  list-style: none;
  margin: 0;
  padding: 0;
}
#trade-media-gallery .wrapper .content .side-content .inner-content ul li .details ul.damages-list li,
#trade-media-gallery .wrapper .content .side-content .inner-content ul li .details .damage-label li {
  margin: 5px 0;
  padding: 0;
  border: none;
  font-size: 12px;
  color: #707070;
}
#trade-media-gallery .wrapper .content .side-content .inner-content ul li .details ul.damages-list li:hover,
#trade-media-gallery .wrapper .content .side-content .inner-content ul li .details .damage-label li:hover {
  background: transparent;
}
#trade-media-gallery .wrapper .content .side-content .inner-content ul li .details ul.damages-list span,
#trade-media-gallery .wrapper .content .side-content .inner-content ul li .details .damage-label span {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  padding: 2.5px 1.5px;
  background: #F95341;
  border-radius: 50%;
  line-height: 1;
  font-size: 13px;
  text-align: center;
  color: #FFF;
}
/**
 * Trade BOS Modal
 */
.trade-bos__wrapper {
  padding: 0.5em;
  text-align: center;
}
.trade-bos__form {
  margin-bottom: 2em;
}
.trade-bos__title {
  padding: 0.5em 0;
  font-size: 16px;
  font-weight: 600;
}
.trade-bos__subtitle {
  padding-bottom: 0.5em;
  color: #707070;
}
.trade-bos__subtitle--italic {
  font-style: italic;
}
.trade-bos__errors {
  padding: 1em 0 0.5em;
  font-size: 14px;
  color: #F95341;
}
.trade-bos__form-group {
  width: 100%;
  margin: 0 auto;
  padding: 0.5em 0;
}
.trade-bos__label {
  display: block;
  text-align: center;
}
.trade-bos__input {
  width: 75%;
  margin: 0 0.25em;
  padding: 0.5em;
  border: 1px solid #DBDBDB;
  border-radius: 0.5em;
  color: #707070;
}
.trade-bos__input:disabled {
  background-color: #F5F5F5;
  cursor: not-allowed;
}
.trade-bos__input--short {
  width: 59%;
}
.trade-bos__warning {
  color: #707070;
  width: 200px;
  margin: 0 auto 20px;
  font-size: 12px;
}
/**
 * Trade ACV Modal
 */
.trade-acv {
  width: 530px;
}
.trade-acv__wrapper {
  padding: 0.5em;
  text-align: center;
}
.trade-acv__title {
  padding: 1em 0;
  font-size: 16px;
  font-weight: 600;
}
.trade-acv__subtitle {
  padding-bottom: 0.5em;
  color: #707070;
}
.trade-acv__subtitle--italic {
  font-style: italic;
}
.trade-acv__errors {
  padding: 1em 0 0.5em;
  font-size: 14px;
  color: #F95341;
}
.trade-acv__form-group {
  padding: 1em 0;
}
.trade-acv__input {
  margin: 0 auto;
  padding: 0.5em;
  border: 1px solid #DBDBDB;
  border-radius: 0.5em;
  color: #707070;
}
/**
 * Trade Mark Arrived
 */
.trade-mark-arrived {
  width: 350px;
}
.trade-mark-arrived__wrapper {
  padding: 0.5em 1em;
  text-align: center;
}
.trade-mark-arrived__title {
  padding: 1em 0;
  font-size: 16px;
  font-weight: 600;
}
.trade-mark-arrived__errors {
  padding: 0 0 0.75em;
  font-size: 14px;
  color: #F95341;
}
.trade-mark-arrived__form-group {
  width: 300px;
  margin: 0 auto;
  padding: 0 0 1em;
}
.trade-mark-arrived__label {
  display: block;
  padding: 0.25em 0;
  font-size: 14px;
  color: #707070;
}
.trade-mark-arrived__sub-label {
  display: inline-block;
  font-size: 16px;
  width: 15px;
}
.trade-mark-arrived__sub-label--push-right {
  padding-left: 2px;
}
.trade-mark-arrived__input {
  width: 200px;
  margin: 0 auto;
  padding: 0.5em;
  border: 1px solid #DBDBDB;
  border-radius: 0.5em;
  font-size: 14px;
  color: #707070;
}
.trade-mark-arrived__input--short {
  width: 165px;
}
/**
 * Trade Mark Delivered
 */
.trade-mark-delivered {
  width: 600px;
  min-height: 400px;
}
.trade-mark-delivered__wrapper {
  padding: 0.5em 1em;
  text-align: left;
}
.trade-mark-delivered__title {
  padding: 1em 0 0;
  font-size: 16px;
  font-weight: 600;
}
.trade-mark-delivered__subtitle {
  padding: 0.5em 0;
  color: #707070;
}
.trade-mark-delivered__errors {
  padding: 0 0 0.75em;
  font-size: 14px;
  color: #F95341;
}
.trade-mark-delivered__form-group {
  margin: 0 auto;
  padding: 0.5em 0;
}
.trade-mark-delivered__label {
  display: block;
  padding: 0.25em 0;
  font-size: 14px;
  color: #707070;
}
.trade-mark-delivered__input {
  width: 200px;
  margin: 0 auto;
  padding: 0.5em;
  border: 1px solid #DBDBDB;
  border-radius: 0.5em;
  color: #707070;
}
.trade-mark-delivered__textarea {
  width: 100%;
  margin: 0 auto;
  padding: 0.5em;
  border: 1px solid #DBDBDB;
  border-radius: 0.5em;
  color: #707070;
  resize: vertical;
}
.trade-mark-delivered__avatar {
  display: inline-block;
  vertical-align: middle;
  margin: 0 1em;
  width: 75px;
  height: 75px;
  background: #F5F5F5;
  border-radius: 50%;
}
/**
 * Trade Mark Delivered
 */
.trade-review {
  width: 600px;
}
.trade-review__wrapper {
  padding: 0.5em 1em;
  text-align: left;
}
.trade-review__title {
  padding: 1em 0 0;
  font-size: 16px;
  font-weight: 600;
}
.trade-review__subtitle {
  padding: 0.5em 0;
  color: #707070;
}
.trade-review__errors {
  padding: 0 0 0.75em;
  font-size: 14px;
  color: #F95341;
}
.trade-review__form-group {
  margin: 0 auto;
  padding: 0.5em 0;
}
.trade-review__label {
  display: block;
  padding: 0.25em 0;
  font-size: 14px;
  color: #707070;
}
.trade-review__input {
  width: 200px;
  margin: 0 auto;
  padding: 0.5em;
  border: 1px solid #DBDBDB;
  border-radius: 0.5em;
  color: #707070;
}
.trade-review__textarea {
  width: 100%;
  margin: 0 auto;
  padding: 0.5em;
  border: 1px solid #DBDBDB;
  border-radius: 0.5em;
  color: #707070;
}
.trade-review__avatar {
  display: inline-block;
  vertical-align: middle;
  margin: 0 1em;
  width: 75px;
  height: 75px;
  background: #F5F5F5;
  border-radius: 50%;
}
/**
 * Trade Launch to DGN
 */
.trade-launch-to-dgn {
  width: 500px;
}
.trade-launch-to-dgn__wrapper {
  padding: 0.5em;
  text-align: center;
}
.trade-launch-to-dgn__title {
  padding: 1em 0;
  font-size: 16px;
  font-weight: 600;
}
.trade-launch-to-dgn__subtitle {
  padding-bottom: 0.5em;
  color: #707070;
}
.trade-launch-to-dgn__subtitle--italic {
  font-style: italic;
}
.trade-launch-to-dgn__form-group {
  padding: 0.5em 0 1em;
}
.trade-launch-to-dgn__label {
  display: block;
  margin: 0 0 2px;
}
.trade-launch-to-dgn__errors {
  padding: 1em 0 0.5em;
  font-size: 14px;
  color: #F95341;
}
.trade-launch-to-dgn__input {
  width: 50%;
  margin: 0 auto;
  padding: 0.5em;
  border: 1px solid #DBDBDB;
  border-radius: 0.5em;
  color: #707070;
}
/**
 * Trade Launch to DGN
 */
.trade-launch-to-marketplace {
  width: 500px;
}
.trade-launch-to-marketplace__wrapper {
  padding: 1em 2em;
}
.trade-launch-to-marketplace__title {
  padding: 1em 0;
  font-size: 16px;
  font-weight: 600;
}
.trade-launch-to-marketplace__subtitle {
  padding-bottom: 0.5em;
  color: #707070;
}
.trade-launch-to-marketplace__subtitle--italic {
  font-style: italic;
}
.trade-launch-to-marketplace__form-group {
  padding: 0.5em 0 1em;
}
.trade-launch-to-marketplace__label {
  display: block;
  margin: 0 0 2px;
}
.trade-launch-to-marketplace__errors {
  padding: 1em 0 0.5em;
  font-size: 14px;
  color: #F95341;
}
.trade-launch-to-marketplace__input {
  width: 50%;
  margin: 0 auto;
  padding: 0.5em;
  border: 1px solid #DBDBDB;
  border-radius: 0.5em;
  color: #707070;
}
.trade-launch-to-marketplace__option {
  display: block;
  margin-bottom: 10px;
}
.consign-modal {
  padding: 30px;
}
.consign-modal__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.consign-modal__option {
  display: block;
  margin-bottom: 10px;
}
.bh-sidebar__title {
  padding: 0 2em;
  font-size: 18px;
  font-weight: 600;
}
.bh-main {
  margin: 0;
  padding: 0 1em;
}
.bh-group {
  margin: 25px 0;
  padding: 1em 0;
}
.bh-auction-summary {
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0.5em 0;
  background: #DBDBDB;
}
.bh-auction-summary__element {
  float: left;
  padding: 10px 10px 10px 5px;
  margin-right: 1em;
}
.bh-auction-summary__label {
  padding-right: 5px;
  font-weight: 600;
}
.bh-negotiation {
  font-size: 12px;
}
.bh-table {
  width: 100%;
  border-collapse: collapse;
}
.bh-table__icon {
  vertical-align: middle;
}
.bh-table__body:nth-child(odd) {
  background: #FFF;
}
.bh-table__row-header {
  padding: 10px 0 10px 5px;
  border-bottom: 2px solid #FFF;
  text-align: left;
}
.bh-table__row {
  padding: 10px 0 10px 5px;
  font-weight: 400;
  color: #707070;
}
.bh-table__row--state-change {
  text-align: center;
  font-weight: 600;
}
.bh-table__avatar {
  display: inline-block;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-top: 5px;
  vertical-align: top;
}
.bh-table__desc {
  display: inline-block;
  margin-left: 10px;
}
/**
 * Trade Buy Now Modal
 */
.trade-buy-now__wrapper {
  width: 600px;
  padding: 0.5em;
  text-align: center;
}
.bn-trade {
  overflow: hidden;
  margin: 0 auto;
  padding: 15px 10px;
  border-bottom: 2px solid #DBDBDB;
}
.bn-trade__summary {
  display: flex;
}
.bn-trade__thumbnail {
  width: 125px;
  height: 90px;
}
.bn-trade__details {
  text-align: left;
  padding: 20px 0 0 25px;
}
.bn-trade__headline {
  display: block;
  font-size: 18px;
  font-weight: 600;
}
.bn-trade__trim {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #707070;
}
.bn-trade__icons {
  display: inline-block;
  list-style: none;
  margin: 0 0 0 10px;
  padding: 0;
  vertical-align: middle;
}
.bn-trade__icon {
  float: left;
  margin: 0;
  padding: 0;
}
.bn-trade__icon .icon {
  font-size: 24px;
}
.bn-summary__group {
  padding: 15px 0;
  text-align: center;
}
.bn-summary__title {
  font-size: 16px;
  color: #707070;
}
.bn-summary__property {
  font-size: 18px;
  font-weight: 600;
}
/**
 * Sale Event Create Modal
 */
.sec {
  width: 550px;
}
.sec__wrapper {
  padding: 0.5em;
  text-align: center;
}
.sec__confirmbtn {
  border-color: transparent;
}
.sec-header {
  padding: 2em;
}
.sec-header__title {
  padding-bottom: 0.5em;
  font-size: 18px;
  font-weight: 600;
}
.sec-header__title.title-centered {
  text-align: center;
  padding-bottom: 0px;
}
.sec-header__subtitle {
  color: #707070;
  font-size: 14px;
}
.sec-form {
  margin-bottom: 1em;
  padding: 0;
}
.sec-form__group {
  overflow: hidden;
  padding: 1em;
  border-bottom: 1px solid #DBDBDB;
}
.sec-form__group:first-child {
  border-top: 1px solid #DBDBDB;
  padding-right: 21px;
}
.sec-form__group-cbb {
  overflow: hidden;
  padding: 1em;
}
.sec-form__group-cbb:first-child {
  padding-right: 12px;
}
.sec-form__label {
  color: #333;
  font-size: 16px;
  text-align: left;
}
.sec-form__sub-label {
  color: #707070;
  font-size: 12px;
  line-height: 10px;
}
.sec-form__input {
  width: 50%;
  padding: 0 !important;
  background: transparent;
  border: none !important;
  text-align: right;
  font-size: 14px !important;
  font-weight: 700;
}
.sec-form__input--select {
  min-width: 35%;
  direction: rtl;
}
.sec-form__input--select optgroup {
  direction: ltr;
}
.sec-form--disabled {
  opacity: 0.5;
}
.sec-form .ng-empty {
  font-weight: 700 !important;
  color: #707070;
}
.sec-form.fp-upcoming {
  margin: 16px 24px 0px;
}
.sec-form.fp-upcoming .sec-form__group {
  padding: 16px 0px;
}
.sec-form-cbb.fp-upcoming {
  margin: 0 11px 0;
}
.sec-form-cbb.fp-upcoming .sec-form__group {
  padding: 16px 0px;
}
.sec-content__wrapper {
  text-align: left;
}
.sec-content__group {
  padding-bottom: 20px;
  margin-left: 2em;
}
.sec-content--bold {
  font-weight: bold;
}
.sec-content__floor-price {
  padding-bottom: 26px;
  margin-left: 2em;
}
.sec-launch-time {
  display: flex;
}
.sec-launch-time__group {
  margin-right: 30px;
}
/**
 * Sale Event Header
 */
.sale-event-header {
  overflow: hidden;
  margin: 10px 0 0;
  padding: 15px 0;
  background: #FFF;
  display: flex;
  flex-flow: row nowrap;
  flex-grow: 1;
  justify-content: flex-start;
  align-items: center;
  height: 75px;
  border-left: 5px solid #82BC00;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  width: 100%;
}
.sale-event-header--spacer {
  margin-bottom: 10px;
}
.sale-event-header__count {
  width: 80px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #333;
  display: flex;
  flex-flow: column nowrap;
  line-height: 1.1;
}
.sale-event-header__count-trades {
  font-size: 12px;
  font-weight: 100;
  color: #707070;
}
.sale-event-header__details {
  color: #333;
  margin-left: 5px;
  display: flex;
  flex-flow: column nowrap;
}
.sale-event-header__details-item {
  font-size: 12px;
  line-height: 1.2;
  color: #707070;
}
.sale-event-header__details-item--large {
  line-height: 1.5;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  color: #333;
}
.sale-event-header__edit {
  margin-left: auto;
  margin-right: 15px;
}
.sale-event-header__arrow {
  margin-left: auto;
  margin-right: 15px;
  font-size: 40px;
  font-weight: 100;
  color: #707070;
}
/**
 * Sale Event Trades Modal
 */
.set {
  overflow: visible !important;
  position: relative;
  width: 820px;
  min-height: 100px;
  border-radius: 0;
}
.set__wrapper {
  margin: 0;
  padding: 0;
}
.set__sale-event-header .sale-event-header {
  margin: 0 !important;
}
.set__loader {
  background: #DBDBDB url(images/loader.gif) no-repeat center center;
  background-size: 75px 75px;
}
.set__close-btn {
  top: -70px;
  right: -65px;
}
.set-constrained {
  max-height: 50vh;
  overflow: auto;
}
/**
 * Add To Sale Event
 */
.atse {
  width: 535px;
}
.atse__wrapper {
  padding: 0.5em;
  text-align: center;
}
.atse-header {
  padding: 1em 0;
}
.atse-header__title {
  padding-bottom: 0.25em;
  font-size: 18px;
  font-weight: 600;
}
.atse-header__subtitle {
  color: #707070;
  font-size: 14px;
}
.atse-events {
  overflow: auto;
  height: 340px;
  margin: 0;
  padding: 0 20px;
}
.atse-event {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #DBDBDB;
}
.atse-event:first-child {
  border-top: 1px solid #DBDBDB;
}
.atse-event-details {
  margin-left: 15px;
  line-height: 14px;
  font-size: 12px;
  color: #707070;
}
.atse-event-details__name {
  line-height: 24px;
  font-size: 14px;
  color: #000;
}
.atse-event-details__name--strong {
  font-weight: 600;
}
.atse-event-details__number {
  text-decoration: underline;
}
.atse-event-details__state-info {
  color: #000;
}
.fixed-overlay {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.location-selector__wrapper {
  position: relative;
  background: #FFF;
  padding: 5px 10px;
  border: 1px solid #DBDBDB;
  border-radius: 3px;
  width: 260px;
  color: #333;
}
.location-selector__wrapper--floating {
  position: fixed;
  z-index: 10002;
  padding: 10px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
}
.location-selector__wrapper--medium-font {
  font-size: 12px;
}
.location-selector__label {
  white-space: nowrap;
  overflow: hidden;
}
.location-selector__label-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent 0%, #FFF 50%);
}
.location-selector__arrow {
  position: absolute;
  top: 9px;
  right: 10px;
}
.location-selector__arrow--up {
  top: 13px;
}
.location-selector__search {
  margin: 10px 0;
  padding: 10px 0 0;
  border-top: 1px solid #DBDBDB;
}
.location-selector__search-title {
  font-size: 12px;
  color: #707070;
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 1px solid #DBDBDB;
  margin-bottom: 5px;
}
.location-selector__search-input {
  width: 100%;
  line-height: 30px;
  border: 0 !important;
  font-weight: 600;
  background: #F5F5F5 !important;
  border-radius: 20px !important;
  padding: 0 10px !important;
  text-align: left !important;
  float: none !important;
}
.location-selector__province {
  font-weight: 600;
  color: #707070;
  padding: 5px 0;
  border-bottom: 1px solid #DBDBDB;
  margin: -6px 0 5px;
  background: #FFF;
}
.location-selector__list {
  position: relative;
  height: 195px;
  overflow: auto;
  padding: 0 0 30px;
}
.location-selector__list-fade {
  position: absolute;
  right: 25px;
  bottom: 10px;
  left: 0;
  height: 30px;
  background: linear-gradient(to bottom, transparent 0%, #FFF 100%);
}
.location-selector__item {
  padding-bottom: 5px;
  border-bottom: 1px solid #DBDBDB;
  margin: 0 10px 5px;
}
.location-selector__item:hover .location-selector__item-alias {
  color: #82BC00;
}
.location-selector__item--selected .location-selector__item-alias {
  color: #82BC00;
}
.location-selector__item-alias {
  font-weight: 600;
}
/**
 * Angular JS slider directive
 *
 * (c) Rafal Zajac <rzajac@gmail.com>
 * http://github.com/rzajac/angularjs-slider
 *
 * Licensed under the MIT license
 */
/* Slider colors */
/* Slider size parameters */
.rzslider {
  display: inline-block;
  position: relative;
  height: 10px;
  width: 100%;
  margin: 6px 0;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.rzslider[disabled] {
  cursor: not-allowed;
}
.rzslider[disabled] .rz-pointer {
  cursor: not-allowed;
  background-color: #333;
}
.rzslider span {
  white-space: nowrap;
  position: absolute;
  display: inline-block;
}
.rzslider .rz-base {
  width: 100%;
  height: 100%;
  padding: 0;
}
.rzslider .rz-bar-wrapper {
  left: 0;
  box-sizing: border-box;
  margin-top: -10px;
  padding-top: 10px;
  width: 100%;
  height: 20px;
  z-index: 1;
}
.rzslider .rz-bar-wrapper.rz-draggable {
  cursor: move;
}
.rzslider .rz-bar {
  left: 0;
  width: 100%;
  height: 10px;
  z-index: 1;
  background: #dbdbdb;
  border-radius: 5px;
}
.rzslider .rz-bar.rz-selection {
  z-index: 2;
  background: #82BC00;
  border-radius: 5px;
}
.rzslider .rz-pointer {
  cursor: pointer;
  outline: 0;
  width: 20px;
  height: 20px;
  top: -5px;
  background-color: #FFF;
  z-index: 3;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
.rzslider .rz-pointer:after {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 4px;
  background: #FFF;
}
.rzslider .rz-pointer:hover:after {
  background-color: #FFF;
}
.rzslider .rz-pointer.rz-active:after {
  background-color: #FFF;
}
.rzslider .rz-bubble {
  display: none;
  cursor: default;
  bottom: 10px;
  padding: 1px 3px;
  color: #55637d;
}
.rzslider .rz-bubble.rz-selection {
  top: 10px;
}
.rzslider .rz-bubble.rz-limit {
  color: #55637d;
}
.rzslider .rz-ticks {
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0px;
  margin: 0;
  padding: 0 5px;
  z-index: 1;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.rzslider .rz-ticks .tick {
  text-align: center;
  cursor: pointer;
  width: 10px;
  height: 10px;
  background: #dbdbdb;
  border-radius: 50%;
}
.rzslider .rz-ticks .tick.selected {
  background: #82BC00;
}
.rzslider .rz-ticks .tick .tick-value {
  position: absolute;
  top: -30px;
  transform: translate(-50%, 0);
}
.rzslider.vertical {
  position: relative;
  width: 10px;
  height: 100%;
  margin: 0 20px;
  padding: 0;
  vertical-align: baseline;
}
.rzslider.vertical .rz-base {
  width: 100%;
  height: 100%;
  padding: 0;
}
.rzslider.vertical .rz-bar-wrapper {
  top: auto;
  left: 0;
  margin: 0 0 0 -10px;
  padding: 0 0 0 10px;
  height: 100%;
  width: 20px;
}
.rzslider.vertical .rz-bar {
  bottom: 0;
  left: auto;
  width: 10px;
  height: 100%;
}
.rzslider.vertical .rz-pointer {
  left: -5px !important;
  top: auto;
  bottom: 0;
}
.rzslider.vertical .rz-bubble {
  left: 10px !important;
  margin-left: 3px;
  bottom: 0;
}
.rzslider.vertical .rz-bubble.rz-selection {
  left: 10px !important;
  top: auto;
}
.rzslider.vertical .rz-ticks {
  height: 100%;
  width: auto;
  left: 0px;
  top: 0;
  padding: 5px 0;
  z-index: 1;
  flex-direction: column-reverse;
}
.rzslider.vertical .rz-ticks .tick {
  vertical-align: middle;
}
.rzslider.vertical .rz-ticks .tick .tick-value {
  right: -30px;
  top: auto;
  transform: translate(0, -28%);
}
#chatFiveIcon,
#chatFiveIcon:hover,
#chatFiveIcon.active {
  right: 0;
  bottom: 50%;
  background-color: black !important;
  color: white !important;
  border: 1px solid black !important;
  display: block;
  box-shadow: 0px 9px 24px rgba(0, 0, 0, 0.2);
  border-radius: 14px;
  width: 50px;
  height: 50px;
  padding: 0;
  transform: translateY(50%) rotate(-90deg);
}
#chatFiveIcon {
  display: none;
  z-index: 499;
}
@media screen and (max-width: 1024px) {
  #chatFiveIcon {
    display: block;
  }
}
#chatFiveIcon span {
  display: none;
}
#chatFiveIcon .close-icon {
  display: none;
}
#chatFiveIcon .footer-icon {
  width: 25px;
  transform: translate(-50%, -50%) rotate(90deg);
  top: 50%;
  left: 50%;
}
#chatFiveIcon.toggleOn {
  display: block;
}
div.five9-frame {
  right: 30px;
  z-index: 499;
}
.five9-frame .five9-frame-full {
  right: 0 !important;
}
@media screen and (max-width: 1024px) {
  .five9-frame .five9-frame-full {
    display: block !important;
    right: 86px !important;
  }
}
.five9-header #five9-minimize-button {
  display: block !important;
  padding: 0;
  margin: 10px 61px 0 39px;
}
.five9-header #five9-minimize-button #five9-minimize-icon {
  display: inline-block !important;
  top: -12px;
  background-image: url(images/icon-minimize.png) !important;
  background-repeat: no-repeat !important;
  background-position: bottom !important;
}
.five9wrapper-header {
  font-size: 16px;
  padding: 65px 18px;
  line-height: 20px;
}
.five9wrapper-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  height: 55px;
  background-color: #000;
  text-align: center;
}
.five9wrapper-nav__logo {
  top: 0;
  width: 100%;
  height: 45px;
  background: url(images/traderev/nav-logo.png) no-repeat left center;
  margin-left: 18px;
  margin-top: 5px;
}
.list-create-header {
  overflow: hidden;
  background: #FFF;
  padding: 20px 0 20px 50px;
}
.list-create-header__reset {
  cursor: pointer;
  color: inherit;
  line-height: 42px;
}
.list-create-header__wishlist {
  width: 50%;
  float: right;
  text-align: right;
}
.list-create-header__wishlist-desc {
  color: #707070;
}
.list-create-header__wishlist-checkbox {
  float: right;
  margin: 15px 30px;
}
.list-form__form-group {
  position: relative;
  width: 50%;
  padding-bottom: 20px;
  border-bottom: 2px solid #DBDBDB;
  margin-bottom: 20px;
}
.list-form__form-group--borderless {
  border: 0;
  margin: 0;
  overflow: hidden;
}
.list-form__input {
  float: right;
}
.list-form__input--hollow[type='text'] {
  background: none;
  padding: 0;
  border: 0;
  text-align: right;
  font-weight: 600;
}
.list-form__input--wide {
  float: none;
  display: block;
  width: 100%;
  margin-top: 10px;
}
.list-form__select {
  float: right;
  direction: rtl;
}
.list-form__checkbox {
  float: right;
}
.list-form__heading {
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #707070;
  margin-bottom: 20px;
}
.list-form__submit {
  clear: both;
  border-top: 2px solid #DBDBDB;
  padding-top: 20px;
  text-align: right;
}
.list-form__slider {
  position: absolute;
  top: 0;
  left: 80px;
  width: 260px;
}
.list-form__slider-preview {
  float: right;
  font-weight: 600;
}
.list-form__enable-notification-div {
  padding-top: 14px;
}
.list-form__enable-notification-label {
  font-family: Gibson;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.4px;
  color: #333333;
  text-transform: none;
}
.list-form__enable-notification-label input {
  display: inline-block;
  float: left;
}
.list-form__enable-notification-label span {
  display: inline-block;
  padding-left: 1px;
  width: 210px;
}
.lists {
  position: relative;
  width: 100%;
  background: #F5F5F5;
  float: right;
  margin-bottom: 12px;
}
.lists--disabled {
  opacity: 0.5;
}
.lists__overlay {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lists__header {
  position: relative;
  padding: 19px 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  background-color: #FFF;
}
.lists__header-action {
  position: absolute;
  top: 19px;
  right: 15px;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}
.lists__header-action:hover {
  color: #82BC00;
}
.lists__actions {
  padding: 0 30px 30px;
  text-align: center;
}
.lists__list {
  position: relative;
  padding: 15px 15px 0;
}
.lists__list--constrained {
  max-height: 202px;
  overflow-y: auto;
}
.lists__list--filter {
  padding: 0 15px;
}
.lists__item {
  overflow: hidden;
  margin-bottom: 15px;
}
.lists__item--active .lists__link {
  color: #333;
  font-weight: 600;
}
.lists__item--active .lists__count {
  font-weight: 600;
}
.lists__editing {
  font-weight: 400;
  color: #707070;
}
.lists__icon {
  float: left;
  color: #82BC00;
  font-size: 30px;
  line-height: 24px;
}
.lists__icon__saved-filters {
  padding-right: 5px;
}
.lists__icon__saved-filters.icon-TR5-GroupNetwork:before {
  font-size: 24px;
}
.lists__link {
  display: block;
  line-height: 24px;
  color: #707070;
  margin-left: 35px;
  margin-right: 30px;
}
.lists__link__saved-filters {
  margin-left: 0;
}
.lists__subtitle {
  display: block;
  color: #707070;
  margin-left: 35px;
  font-size: 12px;
  line-height: 16px;
}
.lists__count {
  display: none;
  float: right;
  line-height: 24px;
  color: #707070;
}
.lists__toggle {
  float: right;
  padding: 0 5px 0 0;
}
.lists__delete {
  float: right;
  font-size: 24px;
  color: #707070;
  cursor: pointer;
  line-height: 24px;
}
.lists__delete:hover {
  color: #F95341;
}
.lists__edit {
  float: right;
  font-size: 30px;
  color: #707070;
  cursor: pointer;
  line-height: 24px;
}
.lists__edit:hover {
  color: #82BC00;
}
.active-vehicles {
  float: right;
  width: 45%;
}
.active-vehicles__item {
  background-color: #DBDBDB;
  color: #333;
  padding: 10px 1em;
  margin-bottom: 10px;
  font-size: 14px;
}
.active-vehicles__item:last-child {
  margin-bottom: 20px;
}
.active-vehicles__remove {
  float: right;
  color: #FFF;
  background-color: #a8a8a8;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  width: 20px;
  height: 20px;
}
.active-vehicles__remove:hover {
  background-color: #757575;
}
.list-preview {
  padding: 15px 30px;
  font-size: 16px;
}
.list-preview__trade-name {
  padding-bottom: 15px;
  border-bottom: 1px solid #DBDBDB;
  margin-bottom: 15px;
}
.list-preview__name {
  width: 100%;
}
.list-all__label-list {
  overflow: hidden;
  padding-bottom: 20px;
  border-bottom: 2px solid #DBDBDB;
  margin-bottom: 20px;
}
.list-all__label-list .bubble {
  margin: 0 10px 10px 0;
}
.list-all__slider-container {
  overflow: hidden;
  padding-left: 5px;
  padding-bottom: 20px;
  border-bottom: 2px solid #DBDBDB;
  margin-bottom: 20px;
}
.list-all__slider {
  width: 30%;
  float: left;
  margin-right: 20px;
}
.list-all__slider-preview {
  float: left;
  font-weight: 600;
}
.list-all__submit-row {
  text-align: right;
}
.filter-form__form-group {
  position: relative;
  padding: 18px 0px;
  border-bottom: 1px solid #DBDBDB;
}
.filter-form__form-group--borderless {
  padding-bottom: 0;
  border-bottom: 0;
}
.filter-form__form-group--location {
  padding-top: 24px;
}
.filter-form__label {
  font-weight: 600;
  color: #333;
  margin: 0 0 5px;
}
.filter-form__slider {
  margin: 6px 0 11px;
}
.filter-form__slider-preview {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  line-height: 57px;
}
.filter-form__link {
  display: block;
  text-align: center;
  margin: 0 0 5px;
}
.filter-form__actions {
  position: relative;
  padding: 18px 0 24px;
}
.filter-form__btn--stretch {
  width: 100%;
  margin-bottom: 10px;
  margin-left: 0px !important;
}
.filter-form__transmission {
  display: flex;
}
.filter-form__two-checkbox {
  width: 100%;
  padding-top: 2px;
  padding-left: 10px;
  padding-bottom: 2px;
  border: 1px solid #dbdbdb;
  color: #333;
  background: #FFF;
}
.filter-form__checkbox {
  vertical-align: text-top;
}
.filter-form__checkbox--margins {
  margin: 3px 2px 3px 3px;
}
.filter-form__radio-button-margins {
  margin: 3px 2px 3px 3px;
}
.filter-form__truncate {
  text-overflow: ellipsis;
  width: 185px;
  white-space: nowrap;
  overflow: hidden;
}
.filter-check {
  position: relative;
  margin: 0 0 5px;
}
.filter-check__wrapper {
  background: #FFF;
  padding: 5px 15px;
  border: 1px solid #DBDBDB;
  border-radius: 5px;
}
.filter-check__wrapper--ellipsize {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 35px;
}
.filter-check__wrapper--floating {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.25);
}
.filter-check__wrapper--disabled {
  color: #707070;
  cursor: not-allowed;
  background: #F5F5F5;
}
.filter-check__wrapper--single {
  padding-right: 0px;
  padding-left: 3px;
}
.filter-check__arrow {
  position: absolute;
  top: 7px;
  right: 15px;
  font-size: 20px;
}
.filter-check__arrow--up {
  top: 10px;
  right: 10px;
}
.filter-check__parent {
  margin: 0 0 24px;
}
.filter-check__parent-label {
  display: inline-block;
  margin: 0 0 18px;
  font-weight: 600;
  font-size: 16px;
}
.filter-check__child-label {
  padding-left: 11px;
}
.filter-check__select-all {
  padding-top: 20px;
}
.filter-check__label {
  padding: 0 0 10px;
  border-bottom: 1px solid #DBDBDB;
  margin: 5px 0 10px;
}
.filter-check__list {
  height: -moz-fit-content;
  height: fit-content;
  max-height: 200px;
  overflow-y: auto;
}
.filter-check__list--search {
  height: 163px;
}
.filter-check__form-check {
  margin: 0 0 5px;
}
.filter-check__form-check:hover .only-text {
  opacity: 1;
}
.filter-check__search {
  margin: 5px 0 10px;
}
.filter-check__search-input {
  width: 90%;
  background: #F5F5F5;
  border: 0 !important;
  border-radius: 13px !important;
  padding: 5px 10px !important;
}
.filter-check__search-input ::-moz-placeholder {
  color: #707070;
}
.filter-check__search-input ::placeholder {
  color: #707070;
}
.filter-check__actions {
  margin: 10px 0;
  border-top: 1px solid #DBDBDB;
  padding: 10px 0 0;
  text-align: right;
}
.filter-check__loader {
  position: relative;
  display: flex;
  color: #82BC00;
}
.filter-check__loader-text {
  color: #333;
}
.filter-check__loader-text--overflow {
  text-overflow: clip;
  max-width: 145px;
  overflow: hidden;
  white-space: nowrap;
  margin-left: 8px;
}
.only-text {
  opacity: 0;
  float: right;
  font-weight: 600;
  color: #3A99FC;
  cursor: pointer;
}
.filter-list {
  padding: 0 0 10px;
}
.tag-list {
  margin: 10px 0 0;
  overflow-y: hidden;
}
.tag-list__collapsible {
  text-align: center;
  color: #707070;
  font-size: 12px;
}
.tag-list--constrained-height {
  height: 56px;
}
.tag {
  display: inline-block;
  background: #DBDBDB;
  padding: 1px 5px;
  border-radius: 2px;
  margin: 0 2px 5px 0;
}
.tag__label {
  display: inline;
  font-size: 12px;
}
.tag__delete {
  display: inline-block;
  background: #707070;
  color: #DBDBDB;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
}
.save-filter__input {
  width: 250px;
}
.save-filter__floor-price-warning {
  padding-top: 14px;
}
.filter-buttons {
  margin-bottom: 9px;
}
.filter-buttons__elemlabel {
  cursor: pointer;
  padding-right: 4px;
  font-size: 14px;
  color: #333;
}
.filter-buttons__elemlabel--selected {
  font-weight: 600;
}
.form {
  position: relative;
  width: 280px;
}
.form__label {
  display: block;
  margin-bottom: 10px;
}
.form__group {
  margin-bottom: 20px;
}
.form__input {
  width: 100%;
  margin: 0 0 2px;
}
.form__toggle {
  cursor: pointer;
  font-size: 0.8em;
  text-align: right;
  color: #707070;
}
.form__toggle--shown .form__toggle-hide {
  display: inline;
}
.form__toggle--shown .form__toggle-show {
  display: none;
}
.form__toggle-hide {
  display: none;
}
.form-instructions {
  position: absolute;
  left: 100%;
  width: 100%;
  margin-left: 50px;
}
.form-instructions__heading {
  font-weight: 600;
  margin-bottom: 10px;
}
.form-instructions--pristine .rule__icon {
  opacity: 0;
}
.rule {
  color: #707070;
}
.rule__icon {
  transition: opacity 0.25s;
  opacity: 1;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  font-size: 1.5em;
}
.rule__icon--valid {
  color: #82BC00;
}
.rule--input-aligned {
  line-height: 38px;
}
.rule--invalid .rule__icon--valid {
  opacity: 0;
}
.notes-counter {
  font-size: 0.8em;
}
.notes-counter--invalid {
  color: #F95341;
}
.textarea--notes {
  height: 300px;
}
.textarea--disabled {
  background-color: transparent;
  border-color: transparent;
}
.notes-preview {
  margin-bottom: 20px;
}
.notes-append {
  display: block;
  margin-bottom: 20px;
}
.cc-form__group {
  overflow: hidden;
  padding: 5px 0;
}
.cc-form__group--extra-padding {
  padding: 15px 0;
}
.cc-form__control {
  padding: 0 2%;
}
.cc-form__control--left {
  float: left;
}
.cc-form__control--right {
  float: right;
}
.cc-form__control--half {
  width: 46%;
}
.cc-form__control--third {
  width: 29%;
}
.cc-form__control--payment-methods {
  margin-top: 30px;
}
.cc-form__control--auto-pay {
  margin-left: 30px;
}
.cc-form__control--actions {
  margin-top: 15px;
}
.cc-form__input {
  width: 100%;
}
.cc-form__input--half {
  width: 45%;
}
.cc-form .ng-invalid {
  color: #F95341;
}
.cc-form .ng-pristine {
  color: #707070 !important;
}
.cc-form__label {
  display: block;
  padding: 2px 0;
}
.cc-form__label--checkbox {
  display: inline-block;
  padding: 0 10px;
}
.cc-form__label--info {
  display: inline-block;
  padding-left: 30px;
}
.cc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cc-card {
  overflow: hidden;
  margin: 10px 0;
  padding: 10px 20px;
  background: #FFF;
}
.cc-card__group {
  overflow: hidden;
  margin: 0 0 20px;
}
.cc-card__name {
  font-weight: 600;
  font-size: 18px;
}
.cc-card__actions {
  list-style: none;
  vertical-align: middle;
}
.cc-card__action {
  float: left;
  margin: 0 10px 3px;
}
.cc-card__action--edit {
  cursor: pointer;
  border-bottom: 1px dashed #82BC00;
  color: #82BC00;
}
.cc-card__action--edit:hover {
  color: #508a00;
}
.cc-card__action--default {
  cursor: pointer;
  border-bottom: 1px dashed #707070;
  color: #707070;
}
.cc-card__action--default:hover {
  color: #575757;
}
.cc-card__action--remove {
  cursor: pointer;
  border-bottom: 1px dashed #F95341;
  color: #F95341;
}
.cc-card__action--remove:hover {
  color: #c7210f;
}
.cc-card__action--default-solid {
  cursor: pointer;
  border-bottom: 1px solid #82BC00;
  color: #82BC00;
}
.cc-card__action--default-solid:hover {
  color: #5f8900;
}
.cc-card__action--remove-solid {
  cursor: pointer;
  border-bottom: 1px solid #F95341;
  color: #F95341;
}
.cc-card__action--remove-solid:hover {
  color: #c7210f;
}
.cc-card__action--method {
  text-transform: capitalize;
}
.cc-card__details {
  float: left;
  width: 33%;
}
.cc-card__details--important {
  font-weight: 600;
}
.cc-card__address {
  font-style: normal;
  text-transform: capitalize;
}
/**
 * Billing List
 */
.bl-group {
  overflow: hidden;
  margin-bottom: 25px;
}
.bl-group--pro {
  overflow: auto;
}
.bl-date-picker {
  font-size: 14px;
  font-weight: 400;
  color: #707070;
}
.bl-date-picker__divider {
  display: inline-block;
  margin: 0 5px 0 10px;
}
.bl-date-picker__input {
  width: 115px;
  background: transparent;
  font-weight: 600;
}
.bl-date-picker__icon {
  vertical-align: middle;
  font-size: 24px;
}
.bl-date-picker__btn {
  font-size: 14px;
  line-height: 25px;
  padding: 0px 20px;
}
.bl-membership-summary {
  margin-bottom: 20px;
}
.bl-membership-summary__label--small {
  font-size: 12px;
}
.bl-membership-summary__no-plan {
  width: 350px;
  font-size: 13px;
  text-align: right;
  color: #707070;
}
.bl-membership-summary__plan {
  font-weight: 600;
  margin: 0 0 10px;
}
.bl-membership-summary__plan--no-margin {
  margin: 0;
}
.bl-membership-summary__start-date {
  margin: -10px 0 10px;
}
.bl-membership-summary__renewal-date {
  color: #82BC00;
  font-size: 12px;
}
.bl-membership-summary__end-date {
  color: #F95341;
  font-size: 12px;
}
.bl-membership-summary__rate {
  font-weight: 600;
}
.bl-membership-summary__logo {
  display: block;
  margin: 0 0 10px;
}
.bl-membership-summary__logo--inline {
  display: inline-block;
}
.bl-membership-summary__audit {
  font-size: 11px;
  margin: -10px 0 10px;
}
.bl-payment-summary__group {
  width: 50%;
}
.bl-total-summary {
  overflow: hidden;
  background: #FFF;
  margin: 0.5em 0 1em;
  padding: 10px 20px;
}
.bl-total-summary__amount {
  font-size: 18px;
}
.bl-total-summary__amount-total {
  font-weight: 600;
  color: #333;
}
.bl-total-summary__actions {
  margin-top: 8px;
}
.bl-badge {
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 1px 6px;
  border: 1px solid;
  border-radius: 10px;
  text-transform: uppercase;
  text-align: center;
  font-size: 11px;
}
.bl-badge--unpaid,
.bl-badge--void,
.bl-badge--failed {
  border-color: #F95341;
  color: #F95341;
}
.bl-badge--overdue,
.bl-badge--declined,
.bl-badge--invalid {
  border-color: #F95341;
  background: #F95341;
  color: #FFF;
}
.bl-badge--paid {
  border-color: #82BC00;
  background: #82BC00;
  color: #FFF;
}
.bl-badge--partial,
.bl-badge--in-progress,
.bl-badge--processing {
  border-color: #FABC41;
  background: #FABC41;
  color: #FFF;
}
.bl-invoices {
  width: 100%;
  margin: 1em 0;
  border-collapse: collapse;
  font-size: 14px;
}
.bl-invoices__th {
  padding: 0 5px 5px;
  border-bottom: 2px solid #DBDBDB;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.bl-invoices__filter-select {
  font-weight: 400;
  font-size: 12px;
  text-align: center;
}
.bl-invoices tr:nth-child(even) {
  background: #FFF;
}
.bl-invoices__td {
  padding: 5px;
  text-align: left;
  color: #707070;
}
.bl-invoices__td--pro {
  font-size: 13px;
}
.bl-invoices__loader {
  text-align: center !important;
}
.bl-invoices__details {
  margin: 1em 1em 0 0;
  font-size: 12px;
}
.bl-account-details {
  overflow: hidden;
  border-bottom: 2px solid #DBDBDB;
}
.bl-account-details__date {
  width: 40%;
}
.bl-account-details__breakdown {
  overflow: hidden;
  width: 60%;
}
.bl-account-details__breakdown-labels {
  width: 30%;
}
.bl-account-details__breakdown-label,
.bl-account-details__breakdown-value {
  padding: 0 0 10px;
}
.bl-filters {
  overflow: hidden;
  margin: 10px 0;
}
.bl-filters__group {
  float: left;
  padding: 0 20px 0 0;
}
.bl-filters__group--right {
  float: right;
}
.bl-filters__filter-label,
.bl-filters__filter {
  height: 30px;
}
.bl-filters__filter-input {
  padding: 2px !important;
}
.bl-filters__filter-input--short {
  width: 50px;
}
.bl-filters__filter-input--medium {
  width: 110px;
}
.bl-filters__filter-input--long {
  width: 200px;
}
.bl-search {
  overflow: hidden;
  margin: 15px 0;
}
.bl-pagination {
  position: relative;
  float: left;
  left: 50%;
  padding: 0;
  list-style: none;
}
.bl-pagination li {
  position: relative;
  float: left;
  right: 50%;
  margin: 0 5px;
}
/**
 * Billing Details
 */
.bd-group {
  overflow: hidden;
}
.bd-summary {
  overflow: hidden;
  padding: 0 0 20px;
  border-bottom: 2px solid #707070;
}
.bd-summary__back {
  cursor: pointer;
  padding: 0 10px 0 0;
  font-size: 28px;
  color: #707070;
}
.bd-summary__back:hover {
  color: #82BC00;
}
.bd-summary__summary {
  max-width: 50%;
}
.bd-summary__title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.bd-summary__subtitle {
  font-size: 14px;
  color: #707070;
}
.bd-summary__details {
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bd-summary__detail {
  float: left;
  margin-right: 5px;
  font-size: 12px;
  color: #707070;
}
.bd-summary__cost {
  margin-right: 15px;
}
.bd-summary__cost-labels {
  font-size: 12px;
  color: #707070;
  padding-right: 10px;
}
.bd-summary__cost-values {
  text-align: right;
  font-size: 12px;
  color: #707070;
}
.bd-summary__total-amount {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
/**
 Billing Subscription
 */
.bs-group {
  overflow: hidden;
}
.bs-sub {
  width: 50%;
}
.bs-sub__section {
  margin-bottom: 15px;
}
.bs-sub__breakdown {
  overflow: hidden;
  width: 75%;
}
.bs-renew {
  width: 50%;
}
/**
 * Billing Cancel Subscription
 */
.bcs {
  width: 645px;
  min-height: 499px;
  margin-left: -322.5px;
  margin-top: -249.5px;
}
.bcs__wrapper {
  padding: 1em;
  text-align: left;
}
.bcs__title {
  padding: 0.5em 0 0;
  font-size: 16px;
  font-weight: 600;
}
.bcs__subtitle {
  padding-bottom: 0.5em;
  color: #707070;
}
.bcs__subtitle--italic {
  font-style: italic;
}
.bcs__form-group {
  padding: 0.5em 0;
}
.bcs__label {
  display: block;
}
.bcs__input {
  margin: 0 auto;
  padding: 0.5em;
  border: 1px solid #DBDBDB;
  border-radius: 0.5em;
  color: #707070;
}
.bcs__select {
  width: 50%;
  height: 35px;
  border: 1px solid #DBDBDB;
  color: #707070;
}
.bcs__textarea {
  width: 100%;
  height: 100px;
}
.bcs__btn {
  margin: 0 5px;
}
/**
 * Billing Membership
 */
.bm-group {
  overflow: hidden;
}
.bm-section {
  margin-bottom: 15px;
}
.bm-logo {
  display: block;
  margin: 5px 0;
}
.bm-label--small {
  font-size: 12px;
}
.bm-benefits {
  width: 100%;
  margin-bottom: 15px;
  border-collapse: collapse;
}
.bm-benefits tr:nth-child(even) {
  background: #FFF;
}
.bm-benefits__row {
  padding: 5px;
}
.bm-benefits__row--center {
  text-align: center;
}
.bm-benefits .fa-circle {
  font-size: 6px;
}
.bm-benefits__header {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.bm-benefits__header--benefit {
  width: 40%;
}
.bm-benefits__header--type {
  width: 30%;
}
/**
 * Settings - Profile
 */
.settings-profile__headline {
  overflow: hidden;
  margin: 0 0 2em;
}
.settings-profile__headline-user-thumbnail {
  float: left;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #DBDBDB;
  overflow: hidden;
}
.settings-profile__headline-user-thumbnail img {
  height: 75px;
  width: 75px;
}
.settings-profile__headline-user-thumbnail:hover {
  cursor: pointer;
}
.settings-profile__headline-ratings {
  display: block;
  text-align: center;
  margin: 1em 1.5em 0;
}
.settings-profile__headline-ratings a {
  display: block;
  font-size: 18px;
}
.settings-profile__headline-details {
  float: left;
  margin-left: 1em;
  line-height: 1;
  margin-top: 12px;
}
.settings-profile__headline-user {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0;
}
.settings-profile__headline-company {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0;
}
.settings-profile__body {
  margin-left: 5em;
}
.settings-profile__body-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.settings-profile__body-list-element {
  float: left;
  width: 100%;
  margin: 0em 0;
  padding: 1em 0;
  border-bottom: 2px solid #DBDBDB;
}
.settings-profile__body-list-element .label {
  display: inline-block;
  width: 40%;
  color: #707070;
}
.settings-profile__body-list-element .label--strong {
  font-size: 16px;
}
.settings-profile__body-list-element .property {
  display: inline-block;
  width: 50%;
  color: #333;
}
.settings-profile__secondary-header {
  border-bottom: 2px solid #707070;
  overflow: hidden;
}
.settings-profile__secondary-header h2 {
  font-size: 16px;
  margin: 1.6em 1.7em 0.5em;
}
.settings-profile__user-details {
  overflow: hidden;
}
.settings-profile__dealer-details {
  overflow: hidden;
}
.settings-profile__dealer-details .label {
  margin-left: 2.2em;
}
.settings-profile__icon {
  display: inline-block;
  margin: 0.3em 1.5em;
}
.settings-profile__icon .fa-pencil,
.settings-profile__icon .fa-phone {
  font-size: 25px;
}
.settings-profile__icon .fa-envelope {
  font-size: 20px;
}
.settings-profile__icon .fa-map-marker {
  font-size: 32px;
}
.settings-profile__property {
  display: inline-block;
  line-height: 2em;
}
.settings-profile__property--multiline {
  line-height: 1.2em;
}
.settings-profile__edit {
  margin: 0.5em;
}
.settings-profile__signature img {
  max-height: 120px;
}
.settings-profile__form-control {
  margin: 10px 0;
}
.settings-profile__input {
  width: 50%;
  padding: 0.5em 1em;
}
/**
 * Settings Profile Photo Modal
 */
.profile-photo-modal {
  width: 400px;
}
.profile-photo-modal__wrapper {
  padding: 0.5em 1em;
  text-align: left;
}
.profile-photo-modal__button-wrap {
  text-align: center;
  margin: 1.8em 0;
}
.profile-photo-modal img-crop {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.profile-photo-modal img-crop canvas {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
}
.profile-photo-modal .upload-label {
  font-size: 1.4em;
  font-weight: 900;
  margin: 1em 0;
  text-align: center;
}
.profile-photo-modal .drop-box {
  position: relative;
  height: 200px;
  width: 200px;
  border: 4px dashed #82BC00;
  border-radius: 50%;
  text-align: center;
  transition: 0.1s all linear;
  margin: auto;
  background: rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.profile-photo-modal .drop-box__label {
  font-size: 16px;
  text-align: center;
  line-height: 192px;
  color: #707070;
}
.profile-photo-modal .drop-box.active {
  border: none !important;
  background: none;
}
.profile-photo-modal .drop-box.active .drop-box__label {
  display: none;
}
.profile-photo-modal .drop-box.dragging {
  border-color: #DBDBDB !important;
}
.table-filters {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
}
.table-filters thead {
  line-height: 40px;
  border-bottom: 2px solid #707070;
}
.table-filters__header {
  font-weight: 600;
  font-size: 16px;
}
.table-filters__toggle {
  text-align: center;
}
.filter__item {
  border-bottom: 1px solid #DBDBDB;
  line-height: 50px;
}
.filter__toggle {
  font-size: 30px;
  text-align: center;
  color: #707070;
}
.filter__toggle--active {
  color: #82BC00;
}
.filter__toggle--disabled {
  opacity: 0.3;
}
.filter__toggle--paywall {
  color: #DBDBDB;
}
.communication-preference {
  overflow: hidden;
}
.communication-preference__container {
  display: flex;
}
.communication-preference__item {
  float: left;
  margin-right: 40px;
  text-align: center;
}
.communication-preference__label {
  font-size: 14px;
  line-height: 18px;
  margin-left: 5px;
  vertical-align: middle;
  color: #707070;
}
.communication-preference__icon {
  color: #707070;
  text-align: center;
  margin-left: 5px;
  font-size: 2.5em;
}
.communication-preference__icon--active {
  color: #82BC00;
}
.communication-preference__icon--inactive {
  opacity: 0.5;
}
.communication-preference__icon--disabled {
  cursor: not-allowed;
}
.custom-communication-preference {
  overflow: hidden;
  display: inline-block;
  width: 30%;
}
.custom-communication-preference__item {
  float: right;
  margin-right: 5px;
}
.custom-communication-preference__item--active {
  color: #82BC00;
}
.custom-communication-preference__icon {
  float: right;
  margin-right: 5px;
  font-size: 2em;
  color: #707070;
}
.custom-communication-preference__icon--active {
  color: #82BC00;
}
.custom-communication-preference__icon--inactive {
  opacity: 0.5;
}
.preset {
  overflow: hidden;
  padding-left: 0;
}
.preset__item {
  list-style: none;
  float: left;
  margin-right: 10px;
  padding: 5px 10px;
  width: 18%;
  height: 80px;
  background: #FFF;
  font-size: 12px;
  line-height: 1;
  border: solid #FFF 2px;
}
.preset__item--active {
  border: solid #82BC00 2px;
}
.preset__item--inactive {
  opacity: 0.5;
  background: #F5F5F5;
}
.preset__name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}
.preset__name--active {
  color: #82BC00;
}
.preset__description {
  overflow: hidden;
  display: inline;
  word-wrap: break-word;
}
.notification-types-heading {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 2px solid #707070;
  margin-bottom: 0.5em;
}
.notification-types-heading__item {
  float: right;
  font-size: 14px;
  font-weight: 300;
}
.notification-types-seller {
  overflow: hidden;
  float: left;
  width: 50%;
  padding-left: 0;
  padding-right: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.notification-types-seller__item {
  list-style: none;
  padding: 5px;
  border-collapse: collapse;
  border-bottom: 2px solid #DBDBDB;
}
.notification-types-seller__item--inactive {
  text-decoration: line-through;
  opacity: 0.5;
}
.notification-types-seller__label {
  margin-left: 5px;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 700;
}
.notification-types-buyer {
  overflow: hidden;
  float: left;
  width: 50%;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.5;
}
.notification-types-buyer__item {
  list-style: none;
  padding: 5px;
  border-collapse: collapse;
  border-bottom: 2px solid #DBDBDB;
}
.notification-types-buyer__item--inactive {
  text-decoration: line-through;
  opacity: 0.5;
}
.notification-types-buyer__item--migrated {
  opacity: 0.4;
}
.notification-types-buyer__label {
  margin-left: 5px;
  margin-bottom: 5px;
  margin-top: 15px;
  font-weight: 700;
}
.notification-selector {
  display: flex;
  font-size: 1.5em;
  width: 70%;
}
.notification-selector__checkedbox {
  display: none;
  vertical-align: text-bottom;
}
.notification-selector--checked .notification-selector__checkbox {
  vertical-align: text-bottom;
  display: none;
}
.notification-selector--checked .notification-selector__checkedbox {
  vertical-align: text-bottom;
  color: #82BC00;
  display: inline-block;
}
.notification-selector__notification {
  display: inline-block;
  font-size: 14px;
  width: 95%;
  overflow-wrap: break-word;
}
.notification-selector__notification--inactive {
  text-decoration: line-through;
  opacity: 0.5;
}
.notification-redirect {
  display: flex;
  font-size: 1.5em;
}
.notification-redirect__button {
  background: white;
  color: #1a47e8;
  padding: 0;
  padding-right: 24px;
  text-decoration: underline;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  float: right;
}
.notification-redirect__b-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.notification-redirect__item {
  color: #707070;
  padding-left: 32px;
  width: 70%;
  display: inline-block;
  font-size: 16px;
  overflow-wrap: break-word;
}
.notification-redirect-button {
  float: right;
  display: inline-block;
  width: 30%;
}
.notification-page-heading {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 5px;
  border-bottom: 2px solid #DBDBDB;
  margin-bottom: 1em;
}
.notification-page-heading__notification-list {
  margin-bottom: 0;
  margin-top: 10px;
  float: right;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
}
.notification-collapse-icon {
  margin-left: -3px;
  vertical-align: text-bottom;
}
.notification-settings-alert {
  display: flex;
  border-style: solid;
  border-color: #027abb;
  border-width: 2px 2px 2px 9px;
  padding: 16px 16px 16px 16px;
  margin-bottom: 5px;
}
.notification-settings-alert__i-icon {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  margin-top: 5px;
}
.notification-settings-alert__button {
  background: white;
  color: #1a47e8;
  text-decoration: underline;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  border: none;
  padding: 0;
}
.notification-settings-alert__text {
  font-size: 14px;
}
.notification-settings-alert__box {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
/**
 * Settings - Sales
 */
.settings-sales .content {
  margin: 0 0 30px;
}
.settings-sales__sales-list {
  padding: 0;
}
.settings-sales__sales-list li {
  border-bottom: 2px solid #DBDBDB;
  list-style: none;
  height: 50px;
  margin-bottom: 10px;
}
.settings-sales__sales-list li .label {
  margin-left: 20px;
  line-height: 2.3em;
  color: #707070;
}
.settings-sales__sales-list li:last-child {
  border: none;
}
.settings-sales .form {
  width: 100%;
  margin-bottom: 15px;
}
.settings-sales .form__label {
  display: block;
  margin-bottom: 8px;
}
.settings-sales .form__group {
  margin: 5px 15px 5px 0;
  display: inline-block;
  width: 40%;
}
.settings-sales .form__input {
  width: 100%;
  margin: 0 0 2px;
}
.settings-sales .form .btn {
  display: block;
  margin: 20px 0;
}
/**
 * Settings - Floor - Price
 */
.content {
  margin: 0 0 30px;
}
.tolerance-heading {
  line-height: 1.81;
  font-size: 16px;
  font-weight: 700;
}
.floor-calculation {
  color: #707070;
  font-size: 16px;
}
.form {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 10px;
}
.form__label {
  display: block;
  margin-bottom: 4px;
}
.form__group {
  margin: 5px 15px 5px 0;
  display: inline-block;
  width: 40%;
}
.form__input {
  width: 132px;
  margin: 0 0 2px;
}
.form .ng-invalid {
  border: 1px solid #F95341 !important;
}
.form .icon {
  vertical-align: middle;
  font-size: 24px;
}
.form .error {
  margin: 0;
  font-size: 12px;
}
.form__radio {
  margin: 0 6px 10px 10px;
}
.form__radio:after {
  margin: 0 4px 10px 10px;
  width: 16px;
  height: 16px;
  border-radius: 15px;
  top: -1px;
  left: -11px;
  position: relative;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid #DBDBDB;
  background-color: #FFF;
}
.form__radio:checked:after {
  margin: 0 4px 10px 10px;
  width: 16px;
  height: 16px;
  border-radius: 15px;
  left: -11px;
  position: relative;
  content: '';
  visibility: visible;
  border: 2px solid #DBDBDB;
  background-color: #82BC00;
  display: inline-block;
}
.form__control {
  display: block;
  margin-top: 10px;
}
/**
 * Create User Form
 */
.cu-group {
  overflow: hidden;
}
.cu-avatar {
  width: 15%;
  text-align: center;
}
.cu-avatar__icon {
  font-size: 80px;
  color: #DBDBDB;
}
.cu-avatar__actions {
  margin-top: 20px;
}
.cu-avatar__delete {
  cursor: pointer;
  margin-top: 10px;
}
.cu-avatar__delete:hover {
  color: #F95341;
}
.cu-content {
  width: 80%;
}
.cu-form__section {
  margin-bottom: 1em;
}
.cu-form__section--disabled {
  opacity: 0.5;
}
.cu-form__group {
  overflow: hidden;
  padding: 5px 0;
}
.cu-form__group--password {
  margin-top: 15px;
}
.cu-form__legend {
  width: 100%;
  padding: 0 0 8px 10px;
  margin: 20px 0;
  border-bottom: 2px solid #707070;
  font-size: 16px;
  font-weight: 600;
}
.cu-form__control {
  padding: 0 2%;
}
.cu-form__control--left {
  float: left;
}
.cu-form__control--right {
  float: right;
}
.cu-form__control--half {
  width: 46%;
}
.cu-form__control--account {
  margin-bottom: 10px;
}
.cu-form__control--push-right {
  margin-left: 50px;
}
.cu-form__control--password {
  margin-bottom: 10px;
}
.cu-form__input {
  width: 100%;
}
.cu-form__input--half {
  width: 45%;
}
.cu-form__label {
  display: block;
  padding: 2px 0;
}
.cu-form__label--strong {
  font-weight: 600;
  color: #333;
}
.cu-form__label--regular {
  font-weight: 600;
  color: #707070;
}
.cu-form__label--checkbox {
  display: inline-block;
  padding: 0 10px;
}
.cu-devices {
  list-style: none;
  margin: 0 0 0 10px;
  padding: 0;
}
.cu-device {
  overflow: hidden;
  width: 33%;
  margin-bottom: 20px;
}
.cu-device__form {
  margin: 0;
  padding: 0;
}
.cu-device__form-submit {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  opacity: 0;
}
.cu-device__device-type {
  display: inline-block;
  vertical-align: top;
  margin-right: 2px;
}
.cu-device__device-details {
  display: inline-block;
}
.cu-device__icon {
  position: relative;
  top: 5px;
  font-size: 40px;
  color: #707070;
}
.cu-device__alias {
  width: 90%;
  padding: 5px 3px !important;
  background: #FFF;
  border: 1px dotted #DBDBDB;
  border-radius: 5px;
  font-size: 12px !important;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
}
.cu-device__alias--disabled {
  padding: 0 !important;
  background: transparent;
  border: none !important;
}
.cu-device__number {
  font-size: 12px;
  color: #707070;
}
.cu-device__last-login {
  margin-top: 5px;
  font-size: 12px;
  color: #707070;
  font-style: italic;
}
.cu-device__action {
  display: inline-block;
  margin-right: 5px;
  font-size: 12px;
}
/**
 * User list
 */
.lu-user-list {
  overflow: hidden;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.lu-user {
  float: left;
  width: 20%;
  height: 140px;
  padding: 0 5px;
}
.lu-user__avatar {
  margin-bottom: 0px;
  text-align: center;
  font-size: 40px;
  color: #707070;
}
.lu-user__icon {
  cursor: pointer;
  line-height: 0;
}
.lu-user__icon:hover {
  color: #82BC00;
}
.lu-user__details {
  text-align: center;
}
.lu-user__label--name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lu-user__label--username {
  font-size: 12px;
  font-weight: 400;
  color: #707070;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lu-user__label--devices {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 400;
  color: #707070;
}
.cu-disabled-permissions {
  opacity: 0.7;
  background: #ededed;
}
/**
 * Device Create
 */
.dc-reset {
  cursor: pointer;
  margin-top: 10px;
  font-weight: 400;
  color: #82BC00;
}
.dc-reset:hover {
  color: #4B6A0A;
}
.dc-type {
  padding-bottom: 1em;
  border-bottom: 2px solid #DBDBDB;
  text-align: center;
}
.dc-type input[type='radio'] {
  display: none;
}
.dc-type__title {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}
.dc-type__types {
  overflow: hidden;
  height: 200px;
  margin-top: 30px;
}
.dc-type__type {
  cursor: pointer;
  width: 50%;
  height: 100%;
  padding: 2em;
  text-align: center;
}
.dc-type__type:hover {
  background: #F5F5F5;
}
.dc-type__type:hover .dc-type__device-icon {
  color: #82BC00;
}
.dc-type__type--disabled {
  cursor: not-allowed;
  opacity: 0.25;
}
.dc-type__type--disabled:hover {
  background: #F5F5F5;
}
.dc-type__type--disabled:hover .dc-type__device-icon {
  color: #707070;
}
.dc-type__device {
  margin: 0 auto;
}
.dc-type__device-icon {
  font-size: 65px;
  color: #707070;
}
.dc-type__device-details {
  margin-top: 15px;
}
.dc-step {
  width: 450px;
  margin: 20px auto;
}
.dc-step-form {
  text-align: center;
}
.dc-step-form__label {
  display: block;
  padding: 2px 0;
}
.dc-step-form__input {
  width: 60%;
  text-align: center;
}
.dc-step-form__control {
  margin: 15px 0;
}
.dc-step-form__details {
  font-weight: 600;
}
.dc-progress {
  margin-top: 35px;
  text-align: center;
}
.dc-complete {
  width: 450px;
  margin: 0 auto;
  text-align: center;
}
.dc-complete__title {
  margin: 15px 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.dc-complete__subtitle {
  font-size: 14px;
  color: #707070;
}
.dc-complete__device {
  margin: 25px 0;
}
.dc-complete__device-icon {
  font-size: 65px;
  color: #82BC00;
}
/**
 * Settings - Ratings
 */
.settings-ratings .page-heading {
  margin: 0;
  padding: 10px 0 10px 10px;
}
.settings-ratings__label {
  font-size: 16px;
}
.settings-ratings__sub-label {
  color: #707070;
}
.settings-ratings .star i {
  padding-right: 5px;
}
.settings-ratings .star--large {
  font-size: 3em;
}
.settings-ratings__summary {
  margin-top: 10px;
}
.settings-ratings__summary-content {
  vertical-align: top;
  display: inline-block;
  width: 45%;
}
.settings-ratings__summary-content ol {
  list-style: none;
  padding: 0;
}
.settings-ratings__rating-count {
  color: #82BC00;
}
.settings-ratings__review-list {
  padding: 0;
  margin: 0;
}
.settings-ratings__review-list li {
  border-bottom: 2px solid #DBDBDB;
  list-style: none;
  padding: 1em;
}
.settings-ratings__review-list li .label--green {
  color: #82BC00;
}
.settings-ratings__review-list li .description {
  color: #707070;
}
.settings-ratings__review-list li:last-child {
  border: none;
}
.vp__heading {
  overflow: hidden;
  padding: 0 0 5px 10px;
  border-bottom: 2px solid #707070;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #333;
}
.vp__heading--modal {
  padding: 0 0 5px;
  border: none;
  font-size: 18px;
}
.vp__group {
  overflow: hidden;
  margin-bottom: 15px;
}
.dp-form {
  margin-top: 25px;
}
.dp-form__label {
  display: block;
  margin-bottom: 5px;
}
.dp-form__select {
  display: block;
  width: 50%;
  height: 30px;
  padding: 0.5em 1em;
  background: #FFF;
}
.dp-form__select--modal {
  margin: 0 auto;
  font-weight: 400;
  text-align: center;
  border: 1px solid #DBDBDB;
}
.dp-form__control {
  overflow: hidden;
  margin: 20px 0;
}
.terms-status {
  position: relative;
}
.terms-status__inner {
  position: absolute;
  right: 0;
}
.terms-status__icon {
  font-size: 32px;
  vertical-align: middle;
  color: #82BC00;
}
.terms-status__text {
  vertical-align: middle;
}
.terms-status__date {
  font-size: 12px;
  line-height: 1;
  text-align: right;
}
.terms-viewer {
  display: block;
  border: 0;
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
}
.terms-actions {
  text-align: right;
}
.dpc {
  overflow: hidden;
  position: relative;
  width: 700px;
  border-radius: 5px;
}
.dpc__wrapper {
  padding: 2em 4em 0;
  color: #707070;
  text-align: center;
}
.dpc__footer {
  height: 60px;
  background: #F5F5F5;
  text-align: center;
}
.dpc__btn {
  text-transform: uppercase;
  margin-top: 12px;
  padding: 0 2.5em;
  font-weight: 600;
}
.system-payment {
  overflow: hidden;
  position: relative;
  width: 650px;
  border-radius: 5px;
}
.system-payment__wrapper {
  padding: 2em 4em;
  color: #707070;
  text-align: center;
}
.system-payment__heading {
  overflow: hidden;
  font-weight: 600;
  padding: 10px 0;
  font-size: 18px;
}
.system-payment__list {
  width: 325px;
  margin: 0 auto;
  text-align: left;
  font-weight: 600;
}
.system-payment__footer {
  height: 60px;
  background: #F5F5F5;
  text-align: center;
}
.system-payment__btn {
  text-transform: uppercase;
  margin-top: 12px;
  padding: 0 2.5em;
  font-weight: 600;
}
.settlement-table {
  width: 100%;
  border: 2px solid #DBDBDB;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 0 0 20px;
}
.settlement-table thead {
  background: #EFEDEE;
}
.settlement-table th {
  padding: 20px 15px;
  border: 1px solid #DBDBDB;
}
.settlement-table td {
  padding: 10px 15px;
  text-align: center;
  border: 1px solid #DBDBDB;
}
.settlement-table tbody tr:nth-child(even) {
  background: #FFF;
}
.settlement-table tbody tr.faded td:nth-child(even) {
  opacity: 0.4;
}
.settlement-details-table {
  width: 100%;
  border: 2px solid #DBDBDB;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.settlement-details-table td {
  padding: 10px 15px;
}
.settlement-details-table tbody tr:nth-child(even) {
  background: #FFF;
}
.sdt__section-title {
  font-weight: 600;
  text-align: center;
  background: #DBDBDB;
}
.sdt__section-subtitle {
  font-weight: 400;
}
.sdt__td-amount {
  font-weight: 600;
  text-align: right;
}
.sdt__td-amount--positive {
  color: #82BC00;
}
.sdt__section-total {
  background: #707070 !important;
  white-space: nowrap;
  color: #FFF;
}
.sdt__section-total--taxes {
  background: #DBDBDB !important;
  color: inherit;
}
.sdt__section-total-label {
  text-align: right;
  font-weight: 600;
}
.sdt__section-total-label--taxes {
  font-weight: 400;
}
.sdt__section-total-amount {
  font-weight: 600;
  text-align: right;
}
.sdt__summary-row {
  background: #FFF !important;
  font-weight: 600;
  text-align: right;
}
.sdt__summary-row td {
  padding: 5px 15px;
}
.sdt__grand-total-row {
  border: 2px solid #DBDBDB;
  background: #FFF !important;
}
.sdt__bank-account-number {
  float: left;
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
}
.sdt__grand-total-label,
.sdt__grand-total-amount {
  white-space: nowrap;
  font-weight: 600;
  text-align: right;
  font-size: 18px;
}
.settlement-actions {
  text-align: right;
}
td.td--left {
  text-align: left;
}
td.td--right {
  text-align: right;
}
td.td--bold {
  font-weight: 600;
}
th.th--right {
  text-align: right;
}
.page-header {
  position: relative;
}
.search-by {
  position: absolute;
  right: 0;
  bottom: 0;
}
.search-by__input {
  width: 180px;
  line-height: 20px;
  margin: 0 10px 0 0;
}
.invoice-header__range {
  font-size: 18px;
}
.invoice-header__last-update {
  color: #82BC00;
}
.invoice-summary {
  float: right;
  width: 50%;
  margin: 0 0 20px;
}
.invoice-summary td {
  text-align: right;
}
.invoice-summary__balance-paid td {
  padding: 10px 0 0;
}
.invoice-summary__balance-due td {
  font-size: 18px;
  font-weight: 600;
}
.invoice-actions {
  clear: both;
  overflow: hidden;
  margin: 0 0 20px;
}
.line-item__id {
  font-weight: 600;
}
.line-item__date-paid {
  color: #707070;
  margin: 3px 0 0;
}
.unpaid-invoices-info {
  width: 50%;
  margin: 0 0 20px;
}
.unpaid-invoices-info__label {
  font-size: 18px;
  line-height: 18px;
  color: #707070;
}
.unpaid-invoices-info__amount {
  font-size: 24px;
  font-weight: 600;
}
.unpaid-invoices-info__button {
  float: right;
  margin: 6px 0 0;
}
.form__dealer_lost_interim {
  width: 100%;
  margin-bottom: 35px;
}
.form__dealer_lost_interim label input[type='radio'] {
  margin-left: 0;
}
.form__dealer_lost_interim label:not(:first-child) {
  margin-left: 20px;
}
.overview-summary-wrapper {
  border-bottom: 2px solid #DBDBDB;
  margin-bottom: 20px;
}
.overview-download {
  display: inline-block;
  margin-left: 15px;
  cursor: pointer;
}
.overview-filtering {
  float: left;
  width: 450px;
}
.overview-actions {
  float: left;
  margin-bottom: 20px;
}
.overview-totals {
  overflow: hidden;
  margin-bottom: 20px;
}
.overview-totals__item {
  float: left;
  margin-right: 50px;
}
.overview-totals__label {
  font-size: 18px;
  line-height: 18px;
  color: #707070;
}
.overview-totals__legal {
  font-size: 10px;
  color: #707070;
}
.overview-totals__amount {
  font-size: 24px;
  font-weight: 600;
}
.overview-search {
  margin-bottom: 20px;
}
.overview-search__input {
  width: 300px;
  margin-right: 5px;
}
.overview-tabs {
  overflow: hidden;
  margin: 0 0 15px;
}
.overview-tab {
  display: inline-block;
  color: #707070;
  font-weight: 600;
  margin-right: 25px;
  font-size: 16px;
}
.overview-tab--active {
  color: #333;
  border-bottom: 2px solid #82BC00;
}
.overview-transaction-id {
  text-decoration: none;
  color: #82BC00;
}
.overview-transaction-id:hover {
  cursor: pointer;
  color: #4B6A0A;
}
.features__checkmark {
  font-size: 30px;
  color: #82BC00;
}
.table-plan-details {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.table-plan-details__label {
  font-weight: 600;
  line-height: 36px;
}
.table-plan-details__label--range {
  font-weight: 400;
  padding-left: 50px !important;
}
.table-plan-details__label span {
  font-size: 80%;
}
.table-plan-details tr:nth-child(odd) {
  background: #FFF;
}
.table-plan-details td {
  padding: 0 10px;
}
.table-plan-details td:nth-child(1) {
  width: 45%;
}
.table-plan-details td:nth-child(2),
.table-plan-details td:nth-child(3),
.table-plan-details td:nth-child(4) {
  width: 18%;
  text-align: center;
}
.footnote {
  font-size: 10px;
  margin-bottom: 20px;
}
.plan-names {
  position: absolute;
  top: 0;
  right: -50px;
  width: 65%;
}
.plan-names__name {
  float: left;
  width: 50%;
  text-align: center;
}
.plan-names__name--ca {
  width: 50%;
  padding-right: 15px;
}
.plan-names__name--us {
  width: 30%;
}
.plan-names__name--manual {
  text-align: right;
}
.plan-names__name--standard {
  text-align: right;
}
/**
 * Transportation Settings
 */
.sub-header-divider {
  padding-bottom: 40px;
}
.top-spacing {
  padding-top: 12px;
  padding-bottom: 4px;
}
.top-spacing__more {
  padding-top: 28px;
}
.top-spacing__more-bot {
  padding-bottom: 16px;
}
.sub-header-text {
  font-size: 13px;
}
.radio-item-settings {
  display: block;
  position: relative;
  padding: 0;
  margin: 10px 0 0;
}
.radio-item-settings__input[type='radio'] {
  display: none;
}
.radio-item-settings__label {
  font-weight: 400;
  color: #333;
}
.radio-item-settings__label:before {
  content: ' ';
  display: inline-block;
  position: relative;
  top: 4px;
  margin: 0 5px 0 0;
  width: 16px;
  height: 16px;
  border-radius: 12px;
  border: 2px solid #DBDBDB;
  background-color: transparent;
}
.radio-item-settings__input[type='radio']:checked + .radio-item-settings__label:after {
  border-radius: 11px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 8px;
  left: 4px;
  content: ' ';
  display: block;
  background: #82BC00;
}
.payment-method-auto-pay {
  padding-top: 12px;
  padding-bottom: 4px;
  padding-right: 14px;
  float: left;
  font-size: 14px;
  font-weight: bold;
}
.auto-pay-link {
  display: inline-flex;
  padding-top: 12px;
  font-size: 14px;
  color: #82BC00;
}
.default-location {
  position: relative;
  width: 550px;
  border-radius: 5px;
  overflow: visible;
}
.default-location__wrapper {
  padding: 2em 4em 0;
  color: #707070;
  text-align: left;
}
.default-location__title {
  color: #333;
  font-weight: 600;
  font-size: 17px;
  border-bottom: 5px solid transparent;
  margin-bottom: 0;
  padding-bottom: 0;
}
.default-location__body {
  color: #333;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
  padding-bottom: 0;
}
.default-location__contact {
  margin-top: 3px;
  margin-bottom: 30px;
  line-height: 14px;
}
.default-location__footer {
  height: 60px;
  background: #F5F5F5;
  text-align: center;
}
.default-location__btn {
  text-transform: uppercase;
  margin-top: 12px;
  padding: 0 2.5em;
  font-weight: 600;
  align-content: center;
}
/**
 * Trade Modal Element directive
 * trade-modal-element-directive.js
 */
.trade-modal-element {
  position: relative;
  z-index: 9;
  overflow: hidden;
  height: 105px;
  margin-bottom: 3px;
  margin-top: 10px;
  background: #F5F5F5;
}
.trade-modal-element .thumbnail-wrapper {
  position: relative;
  float: left;
  width: 142px;
  height: 105px;
  background: rgba(0, 0, 0, 0.2);
}
.trade-modal-element .thumbnail-wrapper:hover .thumbnail-actions {
  z-index: 10;
  opacity: 1;
}
.trade-modal-element .thumbnail-wrapper__link {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.trade-modal-element .thumbnail-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  width: 100%;
  height: 100%;
}
.trade-modal-element .body-wrapper {
  margin-left: 142px;
}
.trade-modal-element .details-wrapper {
  position: relative;
  overflow: hidden;
  padding: 15px 20px;
}
.trade-modal-element .details-wrapper .details {
  width: 100%;
  height: 100%;
}
.trade-modal-element .details-wrapper .details h1 {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: #333;
  white-space: nowrap;
}
.trade-modal-element .details-wrapper .details h1 a {
  color: #333;
}
.trade-modal-element .details-wrapper .details h1 a:hover {
  color: #82BC00;
}
.trade-modal-element .details-wrapper .details .trim {
  overflow: hidden;
  font-size: 14px;
  color: #707070;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 0 3px;
}
.trade-modal-element .details-wrapper .details ul.micro-icons {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.trade-modal-element .details-wrapper .details ul.micro-icons li.mileage {
  margin: 0 0.5em 0 0;
  line-height: 18px;
  font-weight: 400;
  color: #333;
}
.trade-modal-element .details-wrapper .details ul.micro-icons li {
  float: left;
  line-height: 1;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 100;
}
.trade-modal-element .details-wrapper .details ul.micro-icons li .icon {
  font-size: 16px;
  vertical-align: middle;
}
.trade-modal-element .details-wrapper .details ul.micro-icons li .label {
  font-size: 10px;
}
/**
 * Trade List Element directive
 * trade-list-element-directive.js
 */
.thumbnail-actions {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
}
.thumbnail-actions__wrapper {
  position: relative;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
}
.thumbnail-actions .icon {
  cursor: pointer;
  font-size: 42px;
  color: #FFF;
}
.thumbnail-actions .icon:hover {
  color: #82BC00;
}
.recommended-icon {
  position: absolute;
  z-index: 9;
  bottom: 10px;
  left: 10px;
  font-size: 20px;
  background-color: #82BC00;
  color: #FFF;
  border-radius: 100%;
  padding-left: 1px;
}
.watchlist-icon {
  position: absolute;
  z-index: 9;
  top: -15px;
  left: 0;
  font-size: 50px;
}
.trade-list-element {
  position: relative;
  z-index: 9;
  overflow: hidden;
  height: 138px;
  margin-bottom: 3px;
  background: #F5F5F5;
  width: 100%;
}
.trade-list-element:before {
  border-left: solid 5px #82BC00;
}
.trade-list-element--is-landed {
  height: 160px;
}
.trade-list-element .thumbnail-wrapper {
  position: relative;
  float: left;
  width: 187px;
  height: 138px;
  background: rgba(0, 0, 0, 0.2);
}
.trade-list-element .thumbnail-wrapper:hover .thumbnail-actions {
  z-index: 10;
  opacity: 1;
}
.trade-list-element .thumbnail-wrapper__link {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.trade-list-element .thumbnail-wrapper__link--highlight {
  border-left: solid 5px #82BC00;
}
.trade-list-element .thumbnail-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  width: 100%;
  height: 100%;
}
.trade-list-element .is-landed-tag {
  position: absolute;
  bottom: 0;
  background-color: #4B6A0A;
  width: 187px;
  padding: 4px;
  text-transform: uppercase;
  font-family: Gibson, sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #FFF;
}
.trade-list-element .is-trade-in-tag {
  position: absolute;
  bottom: 0;
  background-color: #000;
  width: 187px;
  padding: 4px;
  text-transform: uppercase;
  font-family: Gibson, sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #FFF;
}
.trade-list-element .details-wrapper {
  position: relative;
  overflow: hidden;
  height: 98px;
  padding: 15px 20px;
}
.trade-list-element .details-wrapper--is-landed {
  height: 120px;
}
.trade-list-element .details-wrapper__trade-list-active {
  padding: 8px 20px;
}
.trade-list-element .details-wrapper .details {
  width: 60%;
  height: 100%;
}
.trade-list-element .details-wrapper .details h1 {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: #333;
  white-space: nowrap;
}
.trade-list-element .details-wrapper .details h1 a {
  color: #333;
}
.trade-list-element .details-wrapper .details h1 a:hover {
  color: #82BC00;
}
.trade-list-element .details-wrapper .details .trim {
  overflow: hidden;
  font-size: 14px;
  color: #707070;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 0 3px;
}
.trade-list-element .details-wrapper .details ul.micro-icons {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  font-weight: 400;
}
.trade-list-element .details-wrapper .details ul.micro-icons li.mileage {
  margin: 0 0.5em 0 0;
  line-height: 18px;
  color: #333;
}
.trade-list-element .details-wrapper .details ul.micro-icons li {
  float: left;
  line-height: 1;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.trade-list-element .details-wrapper .details ul.micro-icons li .icon {
  font-size: 16px;
  vertical-align: middle;
  max-width: 13px;
}
.trade-list-element .details-wrapper .details ul.micro-icons li .label {
  font-size: 10px;
}
.trade-list-element .details-wrapper .details ul.micro-icons li .trade-vehicle-type {
  display: inline-block;
  background-color: #DBDBDB;
  border-radius: 10px;
  font-size: 10px;
  padding: 0 8px;
  margin: 0 2px;
  line-height: 16px;
}
.trade-list-element .details-wrapper .bids-wrapper {
  width: 40%;
  height: 100%;
  text-align: right;
}
.trade-list-element .details-wrapper .bids-wrapper .current-bid .num-bids {
  display: inline-block;
  margin-right: 0.25em;
  padding: 0 6px;
  background: #707070;
  border-radius: 1em;
  font-size: 14px;
  text-align: center;
  color: #FFF;
  line-height: 20px;
  vertical-align: middle;
}
.trade-list-element .details-wrapper .bids-wrapper .current-bid .num-bids--top-bidder {
  background-color: #82BC00;
}
.trade-list-element .details-wrapper .bids-wrapper .current-bid .num-bids--outbid {
  background-color: #F95341;
}
.trade-list-element .details-wrapper .bids-wrapper .current-bid h1 {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  vertical-align: middle;
  transition: color 0.5s ease-in-out;
}
.trade-list-element .details-wrapper .bids-wrapper .bid-action-wrapper {
  margin-top: 3px;
}
.trade-list-element .details-wrapper .bids-wrapper .bid-action-wrapper--active {
  position: absolute;
  top: 46px;
  right: 20px;
}
.trade-list-element .details-wrapper .bids-wrapper .proxy-title {
  color: #707070;
  margin-top: 4px;
}
.trade-list-element .details-wrapper .bids-wrapper .proxy-amount {
  color: #707070;
  font-weight: 600;
  margin-top: -3px;
}
.trade-list-element .details-wrapper .bids-wrapper .auto-won-badge {
  display: inline-block;
  border: 1px solid #228419;
  color: #228419;
  border-radius: 15px;
  font-weight: 600;
  font-size: 12px;
  padding: 0 6px;
  margin-top: 8px;
}
/** BEM **/
.dealer-summary {
  width: 100%;
  overflow: hidden;
  margin-right: 10px;
}
.dealer-summary__ts {
  float: left;
  margin-right: 5px;
}
.dealer-summary__ts .icon {
  color: #707070;
  font-size: 20px;
  line-height: 40px;
}
.dealer-summary__ts--valid .icon {
  color: #82BC00;
}
.dealer-summary__ts--invalid .icon {
  color: #F95341;
}
.dealer-summary__name {
  float: left;
  margin-right: 10px;
  max-width: 240px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.dealer-summary__name--faded {
  max-width: 115px;
  white-space: nowrap;
  overflow: hidden;
  background-image: linear-gradient(90deg, #707070 160px, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dealer-summary__rating {
  float: left;
  margin-right: 10px;
}
.dealer-summary__location {
  float: left;
  margin-right: 10px;
}
.dealer-summary--overflow {
  overflow: visible;
  display: flex;
}
.body-wrapper {
  margin-left: 187px;
}
.infoband {
  display: flex;
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #707070;
}
.infoband__information {
  width: 60%;
}
.infoband__dgn {
  float: left;
  margin-right: 5px;
}
.infoband__completion {
  font-weight: 600;
  margin-right: 12px;
}
.infoband__carproof {
  font-weight: 400;
}
.infoband__carproof--pending {
  color: #FABC41;
}
.infoband__date-display {
  text-align: right;
}
.infoband__date-display--small {
  width: 30%;
}
.infoband__date-display--medium {
  min-width: 36%;
  max-width: 43%;
}
.infoband__date-display--large {
  width: 40%;
}
.infoband__date-display--xlarge {
  width: 60%;
}
.infoband__available-date--past {
  color: #F95341;
}
.infoband__arrived-date--past-week {
  color: #F95341;
  font-weight: 600;
}
.infoband__error {
  position: absolute;
  z-index: 10;
  width: 100%;
  background: #F5F5F5;
  font-weight: 600;
  color: #F95341;
  border-left: 3px solid #F95341;
  margin-left: -20px;
  padding-left: 17px;
}
.infoband__auction-count {
  margin-top: -20px;
  font-size: 14px;
}
.icon--not-started {
  display: none;
}
.icon--in-progress {
  color: #FABC41;
}
.icon--action-required {
  color: #FABC41;
}
.icon--no-action-required {
  color: #707070;
}
.icon--rejected,
.icon--cancelled {
  color: #F95341;
}
.icon--accepted {
  color: #82BC00;
}
.icon--none {
  display: none;
}
.icon--no-activity {
  color: #707070;
}
.icon--activity {
  color: #82BC00;
}
.icon--quote {
  color: #FABC41;
}
.icon--delivered,
.icon--completed {
  color: #82BC00;
}
.icon--pending {
  color: #FABC41;
}
.icon--complete {
  color: #82BC00;
}
.icon--failed {
  color: #F95341;
}
.icon--out-of-system {
  color: #707070;
}
.icon--requested {
  color: #FABC41;
}
.icon--pass {
  color: #82BC00;
}
.icon--fail {
  color: #F95341;
}
.payment-info {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 50%;
}
.payment-info__item-list {
  overflow: hidden;
}
.payment-info__item {
  float: left;
  width: 50%;
  padding-left: 15px;
}
.payment-info__item-value {
  float: right;
  font-weight: 600;
}
.payment-info__total {
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}
.payment-info__total-label {
  color: #82BC00;
}
.shipping-price {
  float: right;
  font-size: 16px;
  font-weight: 600;
}
.shipping-info {
  float: left;
  margin-right: 20px;
}
.shipping-info .icon {
  float: left;
  font-size: 26px;
  line-height: 40px;
  margin-right: 2px;
  color: #82BC00;
}
.buy-now {
  width: 46%;
  height: 100%;
  text-align: right;
}
.buy-now--compact {
  width: auto;
}
.buy-now__btn {
  margin: 2px 0 0;
  padding: 0 12px;
  font-size: 14px;
  line-height: 24px;
}
.buy-now__label {
  font-size: 16px;
  color: #707070;
}
.buy-now__remove {
  cursor: pointer;
  font-size: 11px;
  color: #707070;
}
.buy-now__remove:hover {
  color: #F95341;
}
.target-price {
  color: #707070;
}
.target-price--met {
  color: #82BC00;
}
.target-price ~ .bid-action-wrapper {
  margin: 0 !important;
}
.inventory-cost {
  font-size: 12px;
  color: #707070;
  position: absolute;
}
.inventory-cost__trade-list {
  bottom: 30px;
  right: 20px;
}
.inventory-cost__trade-list__sales-event {
  bottom: 30px;
  right: 70px;
}
.inventory-cost__dollars {
  font-weight: 700;
  color: #000;
}
.inventory-cost__dollars-lost-interim {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-left: 30px;
  margin-right: 10px;
  float: right;
}
.inventory-cost__lost-interim {
  margin-bottom: 10px;
}
.floor-price {
  font-size: 14px;
  color: #333;
  position: absolute;
}
.floor-price__trade-list {
  bottom: 14px;
  right: 20px;
}
.floor-price__trade-list__sales-event {
  bottom: 14px;
  right: 70px;
}
.floor-price__trade-list-active {
  top: 28px;
  right: 20px;
}
.floor-price__trade-details {
  top: 0;
  right: 0;
}
.floor-price__dollars {
  font-weight: 700;
  color: #000;
}
.floor-price__floor-price-placement {
  position: absolute;
  top: 38px;
}
.floor-price__price-met-icon {
  position: relative;
  top: 2px;
}
.floor-price__indicator-disabled {
  font-size: 12px;
  color: #707070;
}
.floor-price__dollars-lost-interim {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-left: 30px;
  margin-right: 10px;
  float: right;
}
.floor-price__lost-interim {
  margin-bottom: 10px;
}
.floor-price__adesa {
  bottom: 8px;
  right: 20px;
}
.upcoming-bid {
  float: right;
}
.upcoming-bid__icon {
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  background: #707070;
  color: #FFF;
  font-size: 12px;
  line-height: 20px;
  width: 20px;
  text-align: center;
  margin: 0 5px 0 0;
}
.upcoming-bid__amount {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}
input.cu-form__input--lost-interim {
  width: 58%;
  border-radius: 5em 0 0 5em;
  height: 35px;
  margin-right: -60px;
  padding-bottom: 5px;
  padding-right: 60px;
  padding-left: 15px;
  font-size: 12px;
  -moz-appearance: textfield;
}
input.cu-form__input--lost-interim::-webkit-inner-spin-button,
input.cu-form__input--lost-interim::-webkit-outter-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.btn--make-an-offer {
  background-color: #82bc00;
  font-size: 14px;
  font-weight: 600;
  line-height: 34px;
  padding: 0 10px;
  text-transform: uppercase;
  height: 35px;
}
.btn--make-an-offer-disabled {
  background-color: #dbdbdb;
  font-size: 14px;
  font-weight: 600;
  line-height: 34px;
  padding: 0 10px;
  pointer-events: none;
  height: 35px;
}
.btn--buy-now {
  background-color: #82bc00;
  font-size: 14px;
  font-weight: 600;
  line-height: 34px;
  padding: 0 10px;
  width: 125px;
  height: 35px;
}
.fade-out.ng-hide {
  opacity: 0;
}
.fade-out.ng-hide-add,
.fade-out.ng-hide-remove {
  transition: all linear 0.5s;
}
.timer-container {
  direction: rtl;
  margin-right: 5px;
}
.timer-container--seller-view {
  margin-right: 30px;
}
.lost-interim-make-an-offer {
  margin-top: 5px;
  margin-left: 68px;
  text-align: left;
}
.consigned-status {
  float: left;
  font-size: 14px;
}
.consigned-auction-type {
  font-size: 14px;
  position: absolute;
  float: right;
}
.adesa-highest-bid {
  margin-top: -5px;
  font-size: 13px;
}
/**
 * Location Picker directive
 * location-picker-directive.js
 */
location-picker {
  position: relative;
  display: block;
  cursor: target;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
location-picker .marker {
  position: absolute;
  opacity: 1;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  background: #82BC00;
  border: 4px solid #FFF;
  border-radius: 50%;
  box-shadow: 0px 0px 42px -4px #FFF;
}
/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */
.pika-single {
  z-index: 20001;
  display: block;
  position: relative;
  color: #333;
  background: #FFF;
  border: 1px solid #DBDBDB;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
  content: ' ';
  display: table;
}
.pika-single:after {
  clear: both;
}
.pika-single {
  *zoom: 1;
}
.pika-single.is-hidden {
  display: none;
}
.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}
.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}
.pika-title {
  position: relative;
  text-align: center;
}
.pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  background-color: #FFF;
}
.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  filter: alpha(opacity=0);
  opacity: 0;
}
.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  /* hide text using text-indent trick, using width value (it's enough) */
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
  *position: absolute;
  *top: 0;
}
.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}
.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
  *left: 0;
}
.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
  *right: 0;
}
.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: 0.2;
}
.pika-select {
  display: inline-block;
  *display: inline;
}
.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
.pika-table th,
.pika-table td {
  width: 14.28571429%;
  padding: 0;
}
.pika-table th {
  color: #707070;
  font-size: 12px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
}
.pika-button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #707070;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #F5F5F5;
  border-radius: 10px;
}
.pika-week {
  font-size: 11px;
  color: #707070;
}
.is-today .pika-button {
  color: #82BC00;
  font-weight: 700;
}
.is-selected .pika-button {
  color: #FFF;
  font-weight: 700;
  background: #435F09;
}
.is-inrange .pika-button {
  background: #F5F5F5;
}
.is-startrange .pika-button {
  color: #FFF;
  background: #82BC00;
}
.is-endrange .pika-button {
  color: #FFF;
  background: #82BC00;
}
.is-disabled .pika-button,
.is-outside-current-month .pika-button {
  pointer-events: none;
  cursor: default;
  color: #707070;
  opacity: 0.3;
}
.pika-button:hover {
  color: #FFF;
  background: #4B6A0A;
}
/* styling for abbr */
.pika-table abbr {
  border-bottom: none;
  cursor: help;
}
/**
 * Star Rating directive
 * star-rating-directive.js
 */
star-rating .star {
  color: #DBDBDB;
  cursor: auto;
}
star-rating .star.filled {
  color: #F9BC3D;
}
.star-rating .star {
  cursor: auto;
}
.star-rating--dark .star {
  color: #707070;
}
.star-rating--big .star {
  font-size: 30px;
  padding: 0 0.1em;
}
.star-rating--clickable .star {
  cursor: pointer;
}
.bid-form {
  position: relative;
}
.bid-form--list-view {
  margin: 0 0 3px;
}
.bid-form__form-group {
  position: relative;
  min-height: 80px;
}
.bid-form__form-group--invisible {
  visibility: hidden;
}
.bid-form__label {
  display: block;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin: 0 0 5px;
}
.bid-form__label--invisible {
  visibility: hidden;
}
.bid-form__label--disabled {
  cursor: not-allowed;
  color: #DBDBDB;
}
.bid-form__proxy {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}
.bid-form__input-wrapper {
  position: relative;
  margin: 0 0 5px;
}
.bid-form__input {
  width: 100%;
  -moz-appearance: textfield;
}
.bid-form__input--narrow {
  width: 75%;
}
.bid-form--list-view .bid-form__input {
  position: relative;
  vertical-align: middle;
  right: -43px;
  width: 170px;
  line-height: 28px;
  padding: 0 1em;
  border: 1px solid transparent;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  transition: 0.25s all ease-in-out;
}
.bid-form--list-view .bid-form__input.bid-form__input--hide {
  width: 0;
}
.bid-form__input--invalid {
  border: 1px solid #F95341 !important;
}
.bid-form__input--high {
  border: 1px solid #FABC41 !important;
}
.bid-form__input[disabled='disabled'] {
  cursor: not-allowed;
  background: transparent;
}
.bid-form__input::-webkit-inner-spin-button,
.bid-form__input::-webkit-outter-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.bid-form__button {
  position: absolute;
  right: 0;
  width: 25%;
  font-size: 14px;
  font-weight: 400;
  line-height: 33px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #707070;
}
.bid-form__button:hover {
  color: #82BC00;
}
.bid-form__button--disabled {
  cursor: not-allowed;
  opacity: 0.25;
}
.bid-form__button--disabled:hover {
  color: #707070 !important;
}
.bid-form__button--with-icon {
  line-height: normal;
  padding-top: 2px;
}
.bid-form__bid-button-wrapper {
  position: relative;
}
.bid-form__bid-button {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-transform: uppercase;
  background-color: #82BC00;
}
.bid-form__bid-button--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.bid-form--list-view .bid-form__bid-button {
  vertical-align: middle;
  font-size: 13px;
  line-height: 30px;
  padding: 0 1.25em;
  right: -9px;
}
.bid-form--details-view .bid-form__bid-button {
  width: 195px;
  padding: 0;
  font-size: 20px;
  line-height: 45px;
}
.bid-form__bid-button--full-width {
  width: 100% !important;
}
.bid-form__quick-bid-button {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  font-size: 18px;
  background-color: #707070;
  color: #F5F5F5;
}
.bid-form__quick-bid-button:hover:not([disabled='disabled']) {
  background: #898989;
}
.bid-form__quick-bid-button:hover:not([disabled='disabled']) .fa {
  color: #FABC41;
}
.bid-form__quick-bid-button[disabled='disabled'] {
  cursor: not-allowed;
  color: #F5F5F5;
  background-color: #949494;
}
.bid-form--list-view .bid-form__quick-bid-button {
  vertical-align: middle;
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0;
}
.bid-form--details-view .bid-form__quick-bid-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  padding: 0;
}
.bid-form__current-proxy {
  text-align: center;
  margin-top: 10px;
}
trade-media-gallery-image .trade-media-gallery-image {
  position: relative;
  padding-bottom: 75%;
  background: #000;
}
trade-media-gallery-image .trade-media-gallery-image .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
trade-media-gallery-image .trade-media-gallery-image img {
  margin: 0 auto;
}
trade-media-gallery-image .trade-media-gallery-image .media {
  display: block;
  width: 100%;
}
trade-media-gallery-image .trade-media-gallery-image .damage-marker {
  cursor: pointer;
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 24px;
  background: #F95341;
  border-radius: 50%;
  border: 3px solid #FFF;
  box-shadow: 0px 0px 42px -4px #FFF;
  text-align: center;
  font-size: 14px;
  color: #FFF;
  transition: 0.25s background ease-in-out;
}
trade-media-gallery-image .trade-media-gallery-image .damage-marker:hover {
  background: #ae0800;
}
trade-media-gallery-image .trade-media-gallery-image .damage-description {
  display: none;
  position: absolute;
  z-index: 100;
  width: 200px;
  height: 185px;
  padding: 2px;
  background: #FFF;
  text-align: center;
  font-size: 12px;
  color: #707070;
  transition: 0.25s all ease-in-out;
}
trade-media-gallery-image .trade-media-gallery-image .damage-description .damage-wrapper {
  overflow: visible;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
}
trade-media-gallery-image .trade-media-gallery-image .damage-description .damage-wrapper .arrow {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FFF;
}
trade-media-gallery-image .trade-media-gallery-image .damage-description .damage-wrapper img {
  position: relative;
  width: 100%;
}
trade-media-gallery-image .trade-media-gallery-image .damage-description .damage-wrapper .details {
  background: #FFF;
  font-size: 14px;
  text-align: center;
  color: #707070;
}
/* =Trade Banner */
.trade-banner {
  position: fixed;
  z-index: 10;
  top: 100px;
  left: 0;
  right: 0;
  width: 1144px;
  margin: 0 auto;
  background: #FFF;
  height: 100px;
  box-shadow: 0 6px 5px -5px #555;
  border-top: 20px solid #DBDBDB;
  overflow: hidden;
}
.trade-banner--details {
  height: 80px;
  border-top: 0;
  width: 870px;
  left: -274px;
}
.trade-banner--details .trade-banner__home {
  display: none;
}
.trade-banner--details .trade-banner__thumbnail {
  margin-left: 10px;
}
.trade-banner__home {
  float: left;
  font-size: 30px;
  line-height: 80px;
  color: #333;
  padding: 0 20px;
}
.trade-banner__thumbnail {
  float: left;
}
.trade-banner__thumbnail img {
  display: block;
}
.trade-banner__info {
  float: left;
  padding: 14px 20px;
}
.trade-banner__headline {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
  margin-right: 5px;
}
.trade-banner__icons {
  display: inline-block;
  vertical-align: middle;
}
.trade-banner__icon {
  float: left;
  display: block;
  font-size: 26px;
}
.trade-banner__icon--important {
  color: #F95341;
}
.trade-banner__description {
  line-height: 26px;
}
.trade-banner__manage {
  float: right;
  text-align: center;
  margin: 15px 30px;
  cursor: pointer;
}
.trade-banner__manage .icon {
  display: block;
  margin: 0 auto 5px;
  font-size: 24px;
}
.trade-banner__auto-won {
  float: right;
  height: 100%;
  padding: 14px 20px;
}
.trade-banner__auto-won .auto-won__badge {
  display: inline-block;
  line-height: 16px;
  border: 1px solid #228419;
  color: #228419;
  border-radius: 15px;
  font-weight: 600;
  font-size: 12px;
  padding: 0 6px;
  margin-right: 6px;
  transform: translateY(-2px);
}
.trade-banner__auto-won .auto-won__bid {
  font-weight: 600;
  font-size: 20px;
}
.trade-banner__auto-won .auto-won__proxy {
  color: #707070;
  text-align: right;
}
.trade-banner__auto-won .auto-won__proxy-amount {
  font-weight: 600;
}
/* =Chat message */
.chat-msg {
  padding-bottom: 10px;
  border-bottom: 2px solid #DBDBDB;
  margin-bottom: 30px;
}
.chat-msg__wrapper {
  position: relative;
  margin-bottom: 20px;
}
.chat-msg__wrapper--response {
  margin-left: 70px;
  background-color: #FFF;
  padding: 10px 10px 20px;
}
.chat-msg__wrapper--ignored {
  margin-left: 70px;
  background-color: #DBDBDB;
  padding: 10px 10px 20px;
}
.chat-msg__avatar {
  position: relative;
  float: left;
}
.chat-msg__avatar img {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
}
.chat-msg__broadcast {
  background-color: #F95341;
  color: #FFF;
  position: absolute;
  right: -3px;
  bottom: -3px;
  padding: 2px;
  border-radius: 50%;
}
.chat-msg__body {
  margin-left: 70px;
  min-height: 50px;
}
.chat-msg__author {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  margin-right: 10px;
}
.chat-msg__author--ignored {
  color: #F95341;
}
.chat-msg__date {
  display: inline-block;
  font-size: 0.8em;
  color: #707070;
}
.chat-msg__content--ignored {
  font-style: italic;
}
.chat-msg__pending {
  color: #FABC41;
  margin-top: 1em;
}
.chat-msg__actions {
  overflow: hidden;
  text-align: right;
  margin-bottom: 20px;
}
/* =Negotiation */
.proposal {
  padding-bottom: 10px;
  border-bottom: 2px solid #DBDBDB;
  margin-bottom: 30px;
}
.proposal__wrapper {
  position: relative;
  width: 97%;
  margin-bottom: 20px;
}
.proposal__wrapper--response {
  margin-left: 3%;
}
.proposal__wrapper--current .proposal__price {
  color: inherit;
}
.proposal__avatar {
  position: relative;
  float: left;
}
.proposal__avatar img {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFF;
  border: 1px solid #DBDBDB;
}
.proposal__body {
  margin-left: 70px;
  min-height: 50px;
}
.proposal__author {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  margin: 0 10px 5px 0;
}
.proposal__date {
  display: inline-block;
  color: #707070;
}
.proposal__pending {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.proposal__content {
  color: #4c4c4c;
}
.proposal__actions {
  overflow: hidden;
  text-align: right;
  margin-top: 20px;
}
.proposal__price {
  float: right;
  font-weight: 600;
  font-size: 1.5em;
  color: #707070;
}
.negotiation-form {
  width: 50%;
}
.negotiation-form__form-group {
  margin-bottom: 20px;
}
.negotiation-form__form-group--right {
  text-align: right;
}
.negotiation-form__form-group--floating {
  float: left;
  margin-right: 100px;
}
.negotiation-form__input {
  font-size: 14px;
  padding: 0.5em;
  transition: border 0.1s;
}
.negotiation-form__input.ng-dirty.ng-invalid {
  border: 1px solid #F95341;
}
.negotiation-form__label {
  display: block;
  color: #707070;
  margin-bottom: 5px;
}
.negotiation-form__label--current {
  color: #82BC00;
}
.negotiation-form__textarea {
  width: 100%;
  height: 100px;
  padding: 0.5em;
}
.negotiation-form__price {
  font-size: 16px;
  font-weight: 600;
  color: #707070;
}
.negotiation-form__price--current {
  color: #82BC00;
}
.highest-bid {
  background: #DBDBDB;
  padding: 15px;
  height: 80px;
}
.highest-bid__icon {
  float: left;
  width: 50px;
  height: 50px;
  font-size: 32px;
  line-height: 1.75;
  background: #82BC00;
  color: #FFF;
  border-radius: 50%;
  margin-right: 20px;
}
.highest-bid__grouped {
  float: right;
  margin-top: 5px;
  margin-right: 30px;
}
.highest-bid__label {
  line-height: 20px;
  font-size: 1em;
}
.highest-bid__amount {
  font-weight: 600;
  font-size: 1em;
  line-height: 20px;
}
.highest-bid__old-label {
  line-height: 50px;
  font-size: 1.2em;
}
.highest-bid__old-amount {
  float: right;
  font-weight: 600;
  font-size: 1.5em;
  line-height: 50px;
}
floating-action {
  position: fixed;
  z-index: 100;
  bottom: 50px;
  margin-right: 50px;
}
.quick-actions {
  position: absolute;
  z-index: 20;
  top: 0;
  bottom: 0;
  right: 0;
}
.trade-list--bulk-mode .quick-actions {
  display: none;
}
.quick-actions__toggle {
  position: relative;
  float: right;
  padding: 0 20px 0 15px;
  margin: 0 0 0 20px;
  font-size: 18px;
}
.quick-actions__toggle .icon {
  position: relative;
}
.quick-actions__toggle-label {
  display: none;
}
.quick-actions__list {
  display: none;
  float: right;
  margin: 0;
  padding: 0;
}
.quick-actions__list-element {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  font-size: 14px;
  color: #F5F5F5;
}
.quick-actions__list-element:hover {
  color: #82BC00;
}
.quick-actions__list-element:hover .quick-actions__list-element-icon {
  color: #82BC00;
}
.quick-actions__list-element-icon {
  vertical-align: middle;
  font-size: 24px;
  color: #F5F5F5;
}
.quick-actions__list-element-icon:hover {
  color: #82BC00;
}
.quick-actions--active {
  left: 0;
  background: #707070;
  color: #FFF;
}
.quick-actions--active .quick-actions__toggle {
  background: #575757;
}
.quick-actions--active .quick-actions__toggle:before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  border-width: 20px 20px 20px 0;
  border-style: solid;
  border-color: transparent #575757;
}
.quick-actions--active .quick-actions__list {
  display: block;
}
.details-view .quick-actions {
  padding-top: 8px;
}
.details-view .quick-actions.quick-actions--active {
  background: #FFF;
  color: #333;
}
.details-view .quick-actions.quick-actions--active .quick-actions__toggle {
  background: #e6e6e6;
}
.details-view .quick-actions.quick-actions--active .quick-actions__toggle:before {
  left: -28px;
  border-width: 28px 28px 28px 0;
  border-color: transparent #e6e6e6;
}
.details-view .quick-actions .quick-actions__list-element {
  text-align: center;
  padding: 15px 0;
  margin: 0 15px;
  color: #333;
}
.details-view .quick-actions .quick-actions__list-element:hover {
  color: #82BC00;
}
.details-view .quick-actions .quick-actions__list-element:hover .quick-actions__list-element-icon {
  color: #82BC00;
}
.details-view .quick-actions .quick-actions__list-element-icon {
  display: block;
  font-size: 36px;
  line-height: 35px;
  margin: 0 auto 3px;
  color: #333;
}
.details-view .quick-actions .quick-actions__list-element-icon:before {
  font-size: 25px;
}
.details-view .quick-actions .quick-actions__toggle {
  text-align: center;
  padding: 4px 4px 6px 0;
  margin: 12px 0 0 40px;
}
.details-view .quick-actions .quick-actions__toggle-label {
  position: relative;
  display: block;
  font-size: 14px;
  margin-top: -2px;
}
.trade-header-details {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  padding: 1em;
  background: #F5F5F5;
}
.trade-header-details:hover {
  background: #DBDBDB;
}
.trade-header-details__section--icon {
  float: left;
  width: 10%;
  padding: 0 0 0 7px;
  font-size: 60px;
  text-align: center;
}
.trade-header-details__section--title {
  float: left;
  width: 80%;
  padding: 5px 0 0 25px;
}
.trade-header-details__section--arrow {
  float: left;
  width: 10%;
  padding: 20px 0 0 10px;
  font-size: 28px;
  text-align: center;
}
.trade-header-details__icon {
  position: relative;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #707070;
  color: #82BC00;
  font-size: 38px;
}
.trade-header-details__icon--completed {
  background-color: #82BC00;
  border-color: transparent;
  color: #FFF;
}
.post-sale-status--alt .trade-header-details__icon--completed {
  background-color: transparent;
  border: 2px solid #707070;
}
.trade-header-details__icon--in-progress {
  border: 2px solid #707070;
  color: #707070;
}
.trade-header-details__icon--warning {
  background-color: #FABC41;
  border-color: transparent;
  color: #FFF;
}
.trade-header-details__icon--failed {
  background-color: #F95341;
  border-color: transparent;
  color: #FFF;
}
.trade-header-details__icon-image {
  vertical-align: top;
}
.trade-header-details__alert-icon {
  float: left;
  font-size: 30px;
  line-height: 21px;
  color: #F95341;
}
.trade-header-details__progress-icon {
  position: absolute;
  top: -7px;
  left: -7px;
  font-size: 64px;
  color: #FABC41;
}
.trade-header-details__label--title {
  font-size: 16px;
  font-weight: 600;
}
.trade-header-details__label--subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #707070;
}
traderev-ratings-widget .trw {
  margin: 1.5em 0;
}
traderev-ratings-widget .trw__group {
  overflow: hidden;
}
traderev-ratings-widget .trw-nav {
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0 0 15px;
  border-bottom: 2px solid #707070;
}
traderev-ratings-widget .trw-nav__item {
  cursor: pointer;
  float: left;
  margin: 0 20px;
  padding-bottom: 1px;
  border-bottom: 2px solid transparent;
  font-size: 16px;
  font-weight: 600;
  color: #707070;
}
traderev-ratings-widget .trw-nav__item:hover,
traderev-ratings-widget .trw-nav__item--active {
  color: #333;
  border-bottom: 2px solid #82BC00;
}
traderev-ratings-widget .trw-summary {
  overflow: hidden;
  padding: 0 0 0 20px;
  margin: 20px 0 0;
}
traderev-ratings-widget .trw-average {
  float: left;
  margin-right: 40px;
  font-size: 16px;
}
traderev-ratings-widget .trw-average star-rating .fa-star {
  margin: 10px 10px 5px 0;
  font-size: 32px;
}
traderev-ratings-widget .trw-average__count {
  font-size: 12px;
  color: #707070;
}
traderev-ratings-widget .trw-breakdown {
  float: left;
  font-size: 16px;
}
traderev-ratings-widget .trw-breakdown__breakdown {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
traderev-ratings-widget .trw-breakdown__stars {
  display: block;
  font-size: 12px;
  color: #82BC00;
}
traderev-ratings-widget .trw-breakdown__stars star-rating .fa-star {
  margin: 2px 2px 2px 0;
  font-size: 14px;
}
traderev-ratings-widget .trw-reviews__title {
  padding: 0 0 7px 20px;
  border-bottom: 2px solid #707070;
  font-size: 16px;
  font-weight: 600;
}
traderev-ratings-widget .trw-reviews__list {
  list-style: none;
  margin: 0 0 15px;
  padding: 0;
}
traderev-ratings-widget .trw-reviews__paginate {
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  color: #82BC00;
}
traderev-ratings-widget .trw-review {
  margin-left: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #DBDBDB;
}
traderev-ratings-widget .trw-review__summary {
  margin: 5px 0 0;
}
traderev-ratings-widget .trw-review__description {
  white-space: pre-wrap;
}
/*! Hint.css - v2.3.0 - 2016-05-21
* http://kushagragour.in/lab/hint/
* Copyright (c) 2016 Kushagra Gour; Licensed  */
/*-------------------------------------*	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 * Release under The MIT License
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
[class*='hint--'] {
  position: relative;
  display: inline-block;
  /**
	 * tooltip arrow
	 */
  /**
	 * tooltip body
	 */
}
[class*='hint--']:before,
[class*='hint--']:after {
  position: absolute;
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  transition: 0.3s ease;
  transition-delay: 0ms;
}
[class*='hint--']:hover:before,
[class*='hint--']:hover:after {
  visibility: visible;
  opacity: 1;
}
[class*='hint--']:hover:before,
[class*='hint--']:hover:after {
  transition-delay: 100ms;
}
[class*='hint--']:before {
  content: '';
  border: 1px solid #c2c2c2;
  border-width: 0 1px 1px 0;
  width: 10px;
  height: 10px;
  background: #e8e8e8;
  position: absolute;
  z-index: 1000001;
}
[class*='hint--']:after {
  background: #e8e8e8;
  border: 1px solid #c2c2c2;
  color: #707070;
  padding: 5px 7px;
  font-size: 12px;
  font-family: Gibson, sans-serif;
  line-height: 12px;
  white-space: nowrap;
}
[class*='hint--'][aria-label]:after {
  content: attr(aria-label);
}
[class*='hint--'][data-hint]:after {
  content: attr(data-hint);
}
[aria-label='']:before,
[aria-label='']:after,
[data-hint='']:before,
[data-hint='']:after {
  display: none !important;
}
/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
.hint--top:before {
  border-top-color: #c2c2c2;
}
/**
 * top tooltip
 */
.hint--top:after {
  bottom: 100%;
  left: calc(50% - 15px);
  transform: translateX(-10%);
}
.hint--top:before {
  margin-bottom: -11px;
  left: calc(50% - 5px);
  transform: rotate(45deg);
}
.hint--top:hover:before {
  transform: translateY(-13px) rotate(45deg);
}
.hint--top:hover:after {
  transform: translateX(-10%) translateY(-7px);
}
/**
* bottom tooltip
*/
.hint--bottom:before,
.hint--bottom:after {
  top: 100%;
  left: 50%;
}
.hint--bottom:before {
  margin-top: -11px;
  left: calc(50% - 5px);
  transform: rotate(-135deg);
}
.hint--bottom:after {
  transform: translateX(-50%);
}
.hint--bottom:hover:before {
  transform: translateY(14px) rotate(-135deg);
}
.hint--bottom:hover:after {
  transform: translateX(-50%) translateY(8px);
}
.upcoming-proxy {
  text-align: left;
}
.upcoming-proxy__label {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}
.upcoming-proxy__input {
  display: block;
  width: 100%;
  font-size: 18px !important;
  text-align: right;
  margin: 0 0 15px;
}
.upcoming-proxy__input--last {
  margin: 0 0 25px;
}
blurb {
  display: block;
}
.blurb {
  background-color: #FFF;
  border-left-width: 30px;
  border-left-style: solid;
  border-radius: 3px;
  box-shadow: 2px 2px 3px 1px rgba(0, 0, 0, 0.1);
  padding: 12px;
}
.blurb__header {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 3px;
}
.blurb__icon {
  position: absolute;
  top: 4px;
  left: -37px;
  height: 30px;
  width: 30px;
}
.blurb__icon--info:before {
  content: url('/images/suggestion.svg');
}
.blurb__title {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.blurb__body {
  line-height: normal;
  margin: 0;
  padding-top: 6px;
  text-align: left;
}
.blurb--info {
  border-left-color: #136ee6;
}
.cbb {
  border: 1px solid #d7d7d7;
  background-color: #FFF;
  padding: 18px;
  position: relative;
  border-radius: 3px;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
}
.cbb__icon {
  top: 10px;
  left: 55px;
  height: 34px;
  width: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  background-image: url('/images/blackbook-logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.cbb__title {
  color: #333;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.cbb__body {
  line-height: normal;
  margin: 0;
  padding-top: 12px;
  text-align: left;
}
.cbb__values {
  display: flex;
  align-items: center;
  margin-top: 10px;
  justify-content: space-between;
}
.cbb__label {
  font-family: 'Heebo', sans-serif;
  color: #707070;
  font-size: 14px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cbb__label .cbb__dollar-value {
  font-family: 'Heebo', sans-serif;
  color: #000;
  font-size: 14px;
  margin-top: 2px;
  text-align: left;
}
.cbb__label .cbb__dollar-value--mid {
  margin-left: 10px;
}
.cbb__line {
  height: 1px;
  background-color: #d7d7d7;
  width: 33.33%;
  margin-top: -25px;
}
.breadcrumbs {
  overflow: hidden;
  margin-bottom: 10px;
}
.breadcrumbs__item {
  float: left;
}
.breadcrumbs__link {
  color: #707070;
}
.breadcrumbs__end {
  font-weight: 700;
  color: #82BC00;
}
.date-range-picker {
  margin-bottom: 20px;
}
.date-range-picker__title {
  font-size: 18px;
  color: #707070;
  margin-bottom: 10px;
}
.date-range-picker__date {
  font-weight: 700;
  vertical-align: middle;
  margin-right: 10px;
}
.date-range-picker__dropdown {
  color: #707070;
}
.date-range-picker__to {
  color: #707070;
  vertical-align: middle;
}
.date-range-picker__icon {
  display: inline-block;
  vertical-align: middle;
  color: #82BC00;
  font-size: 30px;
}
.eld__toggle {
  width: 45%;
  margin: 0 auto 10px;
  display: flex;
}
.eld__toggle--label {
  margin-right: 10px;
}
.eld__toggle-on {
  margin-bottom: 76.5px;
}
.eld__wrapper {
  width: 45%;
  border-radius: 5px;
  border: 1px solid #707070;
  margin: 0 auto 30px;
  display: flex;
}
.eld__datePicker {
  border: none !important;
  width: 100%;
}
.eld__icon {
  font-size: 30px;
}
.help-link {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 100;
  font-size: 16px;
}
.calendar {
  position: relative;
  overflow: hidden;
}
.calendar__flex {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  overflow: hidden;
}
.calendar__wrapper {
  overflow: hidden;
}
.calendar__dates {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0 0 10px;
  white-space: nowrap;
}
.calendar-arrow {
  cursor: pointer;
  width: 40px;
  height: 80px;
  vertical-align: middle;
  text-align: center;
  color: #707070;
  font-size: 40px;
}
.calendar-arrow--inactive {
  opacity: 0.25;
  pointer-events: none;
}
.calendar-arrow:hover {
  color: #82BC00;
}
.calendar-arrow__icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.calendar-date {
  position: relative;
  margin: 0 8px;
  padding: 0;
}
.calendar-date__month {
  position: absolute;
  top: 0;
  font-size: 14px;
  color: #707070;
}
.calendar-day {
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #FFF;
  margin: 30px 0 0;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  transition: 0.1s all ease-in;
}
.calendar-day--selected,
.calendar-day:hover {
  background: #82BC00;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25);
}
.calendar-day--selected .calendar-day__day-of-week,
.calendar-day:hover .calendar-day__day-of-week {
  color: #FFF;
}
.calendar-day--selected .calendar-day__day-of-month,
.calendar-day:hover .calendar-day__day-of-month {
  color: #FFF;
}
.calendar-day__day-of-week {
  font-size: 14px;
  color: #707070;
}
.calendar-day__day-of-month {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 15px;
}
.bid-assist {
  min-height: 16px;
  margin: 0 0 10px;
}
.bid-assist__message {
  font-size: 12px;
  line-height: 16px;
}
.bid-assist__message .icon {
  font-size: 26px;
  line-height: 16px;
  vertical-align: middle;
  margin: 0 -4px;
}
.trade-micro-icon {
  padding: 2px 4px;
  margin: 0 2px;
  border-radius: 12px;
  font-size: 10px;
  color: #FFF;
}
.trade-banner-icon {
  padding: 1px 6px;
  margin: 0 2px 1px 4px;
  border-radius: 41px;
  font-size: 15px;
  color: #FFF;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trade-icon {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 0;
}
.trade-icon--danger {
  background-color: #F95341 !important;
}
.trade-icon--dark-gray {
  background-color: #333 !important;
}
.tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tabs__container {
  display: block;
  background-color: #F5F5F5;
  margin-bottom: 1rem;
  padding: 1.875rem;
}
.tab {
  border-bottom: 2px solid transparent;
  color: #707070;
  cursor: pointer;
  font-weight: 600;
  min-width: 104px;
  padding-bottom: 0.375rem;
  text-align: center;
}
.tab + .tab {
  margin-left: 1.875rem;
}
.tab--selected {
  border-bottom: 2px solid #82BC00;
  font-weight: 600;
  color: #333;
  cursor: default;
}
.separator {
  position: relative;
  text-align: center;
  margin-top: 0.428px;
}
.separator::before {
  content: '';
  left: 0;
  right: 0;
  border-bottom: 1px solid #DBDBDB;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.separator__label {
  background-color: #F5F5F5;
  color: #333;
  display: inline-block;
  padding: 0 10px;
  position: relative;
  font-weight: 600;
  line-height: 1.22;
  font-size: 18px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 20px;
}
.switch input {
  display: none;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #DBDBDB;
  border-radius: 34px;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  right: 16px;
  background-image: url('/images/unselected@3x.png');
  background-size: 21px;
  transition: 0.4s;
}
input:checked + .slider {
  background-color: #82BC00 !important;
}
input:checked + .slider:before {
  transform: translateX(19px);
  background-image: url('/images/selected@3x.png');
  background-size: 20px;
}
.timer-countdown {
  font-size: 14px;
  font-weight: bolder;
  color: #707070;
}
.timer-caption {
  width: 70px;
}
guided-floor-price {
  display: block;
}
.guided-floor-price:hover {
  background-color: transparent !important;
}
.guided-floor-price .blurb {
  margin-top: 22px;
}
.guided-floor-price .missing-floor-price {
  position: relative;
  z-index: 100;
  float: right;
}
.guided-floor-price .required-label {
  color: #F95341;
}
.guided-floor-price .pull-right {
  float: right;
}
.guided-floor-price .currency-input {
  display: block;
}
.guided-floor-price .currency-input__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.guided-floor-price .currency-input__label {
  padding-right: 10px;
  white-space: nowrap;
}
.guided-floor-price .currency-input__value-container {
  display: flex;
  align-items: center;
  background-color: #FFF;
  border: 1px solid #DBDBDB;
  border-radius: 6px;
  padding-left: 5px;
}
.guided-floor-price .currency-input__currency-symbol {
  line-height: normal;
}
.guided-floor-price .currency-input__value {
  background-color: transparent;
  height: 40px;
  width: 100%;
  text-align: right;
}
.guided-floor-price input[type='number'].currency-input__value {
  border: 0;
}
.guided-floor-price-modal .modal--small {
  width: 600px;
}
.guided-floor-price-modal .modal__body {
  padding: 0 75px;
}
.guided-floor-price-modal .currency-input__container {
  flex-direction: column;
}
.guided-floor-price-modal .currency-input__value--error {
  display: flex;
  justify-content: center;
  align-items: center;
}
.guided-floor-price-modal .currency-input__value--error .icon {
  font-size: 2rem !important;
}
.guided-floor-price-modal .blurb {
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
.guided-floor-price-modal .blurb__icon {
  top: 0;
  left: -42px;
}
.guided-floor-price-modal .btn:disabled {
  background-color: #DBDBDB;
  border-color: #DBDBDB;
  color: #FFF;
  font-weight: 600;
}
.disabled + .guided-floor-price {
  opacity: 0.25;
  pointer-events: none;
}
.openlane-auth {
  width: 347px;
  font-family: Heebo, sans-serif;
}
@media (max-device-width: 670px) {
  .openlane-auth {
    width: 100%;
  }
}
.openlane-auth * {
  box-sizing: border-box;
}
.openlane-auth.large {
  position: absolute;
  top: 35px;
  right: -48px;
}
@media (max-device-width: 670px) {
  .openlane-auth.large {
    position: initial;
  }
}
.openlane-auth--error-header {
  letter-spacing: -0.4px;
  margin-bottom: 12px !important;
}
.openlane-auth--error-text {
  margin-top: 0px !important;
  margin-bottom: 28px !important;
}
.openlane-auth--header {
  width: 100%;
  padding: 24px 36px;
  background: #ffffff;
  line-height: 0;
  border-radius: 3px 3px 0 0;
  border-bottom: 3px solid #0161ff;
}
@media (max-device-width: 670px) {
  .openlane-auth--header {
    width: calc(100% + 36px);
    margin: -18px -18px 0;
    border-radius: 0 0 3px 3px;
    padding: 0;
  }
}
.openlane-auth--header-inner {
  width: 100%;
  height: 100%;
}
@media (max-device-width: 670px) {
  .openlane-auth--header-inner {
    padding: 25px 18px 115px;
  }
}
.openlane-auth--header-inner .openlane-login-update-body-header {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 20px 0;
}
.openlane-auth--header-inner .openlane-login-update-body-content {
  font-size: 13px;
  line-height: 18px;
  margin-top: 10px;
  font-weight: 400;
  color: #333333;
}
.openlane-auth.large .openlane-auth--header {
  display: none;
}
@media (max-device-width: 670px) {
  .openlane-auth.large .openlane-auth--header {
    display: block;
  }
}
.openlane-auth--header-logo-kar {
  width: 85px;
}
@media (max-device-width: 670px) {
  .openlane-auth--header-logo-kar {
    width: 125px;
    margin-top: 36px;
    margin-bottom: 18px;
  }
}
.openlane-auth--body {
  width: 100%;
  background: #fff;
  padding: 36px;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.15);
}
@media (max-device-width: 670px) {
  .openlane-auth--body {
    padding: 20px 18px;
    border-radius: 3px;
    margin-top: -90px;
  }
}
.openlane-auth.large .openlane-auth--body {
  border-radius: 3px;
}
.openlane-auth--body-logo-traderev {
  width: 114px;
  height: 36px;
  margin-bottom: 25px;
}
@media (max-device-width: 670px) {
  .openlane-auth--body-logo-traderev {
    margin-bottom: 18px;
  }
}
.openlane-auth--body-inner {
  font-weight: 400;
  /**
             * TODO: Move to the Adesa component once https://karauctionservices.visualstudio.com/TradeRev/_workitems/edit/110139
             */
}
.openlane-auth--body-inner .captcha {
  margin: 0 0 20px -15px;
}
@media (max-device-width: 670px) {
  .openlane-auth--body-inner .captcha {
    margin-left: 0;
  }
}
.openlane-auth--body-inner #signature {
  border: 1px solid #979797;
}
.openlane-auth--body-inner > h1 {
  font-family: OpenSans;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-bottom: 30px;
}
.openlane-auth--body-inner > h1.beta-opt-in {
  font-size: 17px;
}
@media (max-device-width: 670px) {
  .openlane-auth--body-inner > h1 {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.openlane-auth--body-inner > h1.forgot-username {
  font-family: OpenSans, serif;
  display: block;
  margin-bottom: 12px;
}
.openlane-auth--body-inner > p {
  font-family: OpenSans;
  font-size: 16px;
  font-weight: normal;
  color: #707070;
  margin: 24px 0;
}
@media (max-device-width: 670px) {
  .openlane-auth--body-inner > p {
    font-size: 13px;
  }
}
.openlane-auth--body-inner > p > span {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}
.openlane-auth--body-inner > p > span.faded {
  color: #707070;
  display: block;
  margin-bottom: 12px;
}
.openlane-auth--body-inner > p > span.faded-bold {
  color: #707070;
  font-weight: 700;
}
@media (max-device-width: 670px) {
  .openlane-auth--body-inner > p > span {
    font-size: 13px;
  }
}
.openlane-auth--body-inner .hr-sect {
  display: flex;
  flex-basis: 100%;
  align-items: center;
  color: #000;
  margin: 8px 0;
  font-family: OpenSans;
  font-weight: 600;
}
.openlane-auth--body-inner .hr-sect:before,
.openlane-auth--body-inner .hr-sect:after {
  content: '';
  flex-grow: 1;
  background: #000;
  height: 1px;
  font-size: 18px;
  line-height: 0;
  margin: 0 8px;
}
.openlane-auth--body-inner .form-group.space-between {
  display: flex;
  justify-content: space-between;
}
.openlane-auth--body-inner .form-group.row-reverse {
  display: flex;
  flex-direction: row-reverse;
}
.openlane-auth--body-inner .form-group.justify-end {
  display: flex;
  justify-content: flex-end;
}
.openlane-auth--body-inner .form-group--readonly {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
.openlane-auth--body-inner .form-group--sublink {
  display: block;
  font-size: 14px;
  font-family: 'OpenSans';
  font-weight: 600;
  color: #006f44;
  text-decoration: underline;
}
.openlane-auth--body-inner .form-group .form-errors {
  font-family: 'OpenSans';
  font-size: 12px;
  font-weight: 600;
  color: #ff1a00;
  display: flex;
  margin-bottom: 6px;
}
.openlane-auth--body-inner .form-group .form-errors i {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background: url(images/red-alert.svg) no-repeat;
  flex: 0 0 auto;
}
.openlane-auth--body-inner .form-group label {
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
}
.openlane-auth--body-inner .form-group label.faded {
  color: #707070;
  display: block;
  margin-bottom: 12px;
}
.openlane-auth--body-inner .form-group label.faded-bold {
  color: #707070;
  font-weight: 700;
}
.openlane-auth--body-inner .form-group label.faded-email {
  color: #707070;
  display: block;
  margin-bottom: 18px;
}
.openlane-auth--body-inner .form-group input {
  width: 100%;
  height: 36px;
  margin-bottom: 10px;
  line-height: 36px;
  border: 1px solid #b0b0b0;
  border-radius: 3px;
}
.openlane-auth--body-inner .form-group input.error {
  border: 2px solid #ff1a00;
}
.openlane-auth--body-inner .form-group button {
  width: 122px;
  height: 36px;
  border: 2px solid #006f44;
  background: #fff;
  color: #006f44;
  border-radius: 3px;
  padding: 0;
  margin: 0;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-family: OpenSans;
  font-weight: 700;
}
.openlane-auth--body-inner .form-group button.sublink {
  border: none;
  background: transparent;
  width: auto;
  text-decoration: underline;
  text-transform: none;
  font-weight: 600;
  font-family: 'OpenSans', sans-serif;
  height: 21px;
  line-height: normal;
  letter-spacing: 0.03em;
}
.openlane-auth--body-inner .form-group button.sublink:hover:not(:disabled) {
  background: transparent;
}
.openlane-auth--body-inner .form-group button:hover:not(:disabled) {
  background: #f7f7f7;
}
.openlane-auth--body-inner .form-group button.primary {
  background: #006f44;
  color: #fff;
}
.openlane-auth--body-inner .form-group button.primary:hover:not(:disabled) {
  background: #00603b;
  border-color: #00603b;
}
.openlane-auth--body-inner .form-group button.primary:disabled {
  background: rgba(0, 111, 68, 0.9);
}
.openlane-auth--body-inner .form-group button.full-width {
  width: 100%;
  display: block;
}
.openlane-auth--body-inner .form-group button.back-to-sign-in {
  background: #006f44;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 10px;
  padding-right: 10px;
}
.openlane-auth--body-inner .form-group button.back-to-sign-in:hover:not(:disabled) {
  background: #00603b;
  border-color: #00603b;
}
.openlane-auth--body-inner .form-group button.back-to-sign-in:disabled {
  background: rgba(0, 111, 68, 0.9);
}
.openlane-auth--body-inner .form-group a.link {
  display: block;
  margin-top: 24px;
  font-family: OpenSans;
  font-size: 14px;
  font-weight: 600;
  color: #006f44;
  text-decoration: underline;
  text-align: center;
}
/**
 * Launch To Auction Modal
 */
.launch-to-auction-modal {
  overflow: visible;
  width: 560px;
}
.launch-to-auction-modal .blurb {
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
}
.launch-to-auction-modal .btn {
  font-size: 16px;
  padding: 0 40px;
}
.launch-to-auction-modal .btn--main {
  float: right;
}
.launch-to-auction-modal .btn--cancel {
  float: left;
  border-width: 1px;
}
.launch-to-auction-modal .subsections {
  margin-top: 10px;
  height: 10px;
  border-bottom: 1px solid #dbdbdb;
}
.launch-to-auction-modal .filter-check {
  min-width: 235px;
  max-width: 300px;
  width: -moz-max-content;
  width: max-content;
  float: right;
  bottom: 5px;
}
.launch-to-auction-modal .filter-check__label {
  margin: 0 0 0 0;
  border-bottom: none;
}
.launch-to-auction-modal .filter-check__wrapper--floating {
  top: -9px;
  z-index: 99999;
}
.launch-to-auction-modal .launchTimes .filter-check__label {
  border-bottom: none;
  margin-top: 10px;
}
.launch-to-auction-modal__wrapper {
  padding: 20px;
  text-align: left;
}
.launch-to-auction-modal__loader {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.95);
  align-items: center;
  justify-content: center;
  animation-duration: 0.2s;
}
.launch-to-auction-modal__loader--disabled {
  z-index: -1;
}
.launch-to-auction-modal__loader-spinner {
  font-size: 28px;
}
.launch-to-auction-modal__header {
  margin-bottom: 25px;
}
.launch-to-auction-modal__title {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
}
.launch-to-auction-modal__subtitle {
  padding: 0.5em 0;
  font-size: 16px;
  color: #707070;
}
.launch-to-auction-modal__section {
  overflow: hidden;
  margin: 11px 0 0;
  padding: 0 0 0 20px;
}
.launch-to-auction-modal__subsection {
  margin: 25px 0 0;
}
.launch-to-auction-modal__label {
  display: block;
  padding: 0.25em 0;
  font-size: 14px;
  color: #707070;
}
.launch-to-auction-modal__sub-label {
  font-size: 14px;
}
.launch-to-auction-modal .bubble {
  padding: 2px 30px;
}
.launch-to-auction-modal__icon {
  font-size: 27px;
}
.launch-to-auction-modal .expected-to-land {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.launch-to-auction-modal .expected-to-land__icon {
  font-size: 27px;
}
.launch-to-auction-modal .expected-to-land__separator {
  width: 20px;
  height: 17px;
  font-weight: 600;
  color: #000;
  padding: 5px;
}
.launch-to-auction-modal .expected-to-land__date-input {
  float: right;
  text-align: right;
  font-size: 14px !important;
  border-radius: 4px;
  background-color: #fff;
  margin: 0 0 0 15px;
  width: 125px;
  height: 28px;
  display: inline-flex;
  border: 1px solid #dbdbdb;
}
.launch-to-auction-modal .expected-to-land__date-input input[type='text'] {
  float: right;
  width: 100%;
  outline: none !important;
  background: transparent;
  border: none !important;
  text-align: right;
  padding: 0;
  font-weight: 600 !important;
}
floor-price-suggestion {
  display: block;
}
.floor-price-suggestion:hover {
  background-color: transparent !important;
}
.floor-price-suggestion__modal {
  width: 600px;
}
.floor-price-suggestion__title {
  margin-top: 12px;
  padding: 0px 24px;
  text-align: left;
}
.floor-price-suggestion__title--text {
  font-weight: 600;
  font-size: 18px;
  color: black;
}
.floor-price-suggestion__subtitle {
  margin-top: 7px;
}
.floor-price-suggestion__subtitle--text {
  font-weight: 400;
  font-size: 14px;
  color: #707070;
}
.floor-price-suggestion__cbb__subtitle {
  margin-top: 7px;
  margin-bottom: 10px;
}
.floor-price-suggestion__cbb__subtitle--text {
  font-weight: 400;
  font-size: 14px;
  color: black;
}
.floor-price-suggestion__info {
  font-size: 14px;
  margin: 12px 24px 0px 24px;
  display: flex;
}
.floor-price-suggestion__info .icon {
  margin-right: 6px;
}
.floor-price-suggestion__cbb-info {
  font-size: 14px;
  margin: 12px 24px 12px 24px;
  display: flex;
}
.floor-price-suggestion__cbb-info .icon {
  margin-right: 6px;
}
.floor-price-suggestion__cbb-line {
  height: 1px;
  background-color: #d7d7d7;
  margin-left: 24px;
  margin-right: 24px;
}
.floor-price-suggestion__upcoming-subtitle {
  font-weight: 400;
  font-size: 14px;
  color: black;
  margin: 12px 24px;
}
.floor-price-suggestion__sales-header {
  margin-left: 3px;
  margin-top: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}
.floor-price-suggestion__body {
  width: 517px;
  margin-left: 23px;
}
.floor-price-suggestion__label-block {
  margin-top: 18px;
  margin-left: 3px;
  margin-bottom: 18px;
  text-align: left;
}
.floor-price-suggestion__price-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.floor-price-suggestion__price {
  text-align: right;
  font-weight: 600;
  font-size: 14px;
  color: black;
}
.floor-price-suggestion__price-label {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  color: #707070;
}
.floor-price-suggestion__research {
  text-align: left;
}
.floor-price-suggestion .blurb {
  margin-top: 22px;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
}
.floor-price-suggestion .blurb__icon {
  top: 0;
  left: -42px;
}
.floor-price-suggestion .column {
  float: left;
  margin-left: 5px;
  text-align: left;
}
.floor-price-suggestion .column__margin {
  margin-left: 15px;
}
.floor-price-suggestion .line {
  border: 1px solid #dcdcdc;
}
.floor-price-suggestion .label {
  padding-right: 24px;
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
  color: #707070;
}
.floor-price-suggestion .label__strong {
  font-weight: 600;
  color: black;
}
.floor-price-suggestion .cbb-message {
  color: black;
}
.floor-price-suggestion .missing-floor-price {
  position: relative;
  z-index: 100;
  float: right;
}
.floor-price-suggestion .required-label {
  color: #F95341;
}
.floor-price-suggestion .pull-right {
  float: right;
}
.floor-price-suggestion .currency-input {
  display: block;
}
.floor-price-suggestion .currency-input__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-top: 11px;
  margin-bottom: 10px;
}
.floor-price-suggestion .currency-input__label {
  padding-right: 10px;
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
}
.floor-price-suggestion .currency-input__value-container {
  display: flex;
  align-items: end;
  background-color: #FFF;
  border: 1px solid #DBDBDB;
  border-radius: 6px;
  padding-left: 5px;
}
.floor-price-suggestion .currency-input__value-container--error {
  border: 2px solid #dd0000;
}
.floor-price-suggestion .currency-input__currency-symbol {
  align-self: center;
  line-height: normal;
}
.floor-price-suggestion .currency-input__value {
  background-color: transparent;
  height: 40px;
  width: 100%;
  text-align: right;
}
.floor-price-suggestion .currency-input__value--error {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.floor-price-suggestion .currency-input__value--error .icon {
  font-size: 2rem !important;
}
.floor-price-suggestion input[type='number'].currency-input__value,
.floor-price-suggestion input[type='text'].currency-input__value {
  border: 0;
}
.errors {
  font-size: 14px;
  font-style: normal;
  color: #dd0000;
}
.floor-price-info-modal {
  width: 600px;
  min-height: 700px;
  padding: 24px;
}
.floor-price-info-modal h3 {
  font-size: 24px;
}
.floor-price-info-modal h4 {
  font-size: 16px;
  font-weight: 600;
}
.floor-price-info-modal p {
  margin-top: 0px;
  margin-bottom: 28px;
  line-height: 20px;
}
.floor-price-info-modal .underlined {
  font-size: 14px;
  margin-top: 10px;
  padding-bottom: 32px;
  border-bottom: 2px solid #e7e7e7;
}
.floor-price-info-modal .close-container {
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 14px;
  display: flex;
}
.floor-price-info-modal img {
  margin-left: 4px;
  width: 12px;
}
.floor-price-warning {
  padding: 30px 30px 20px;
}
.floor-price-warning .modal__body {
  margin: 0px;
  font-size: 16px;
}
.floor-price-warning .modal__footer {
  margin-top: 20px;
  padding: 10px 0px;
}
.floor-price-warning .pull-left {
  margin-left: 0px;
}
.floor-price-warning__title {
  font-size: 24px;
  margin-bottom: 8px;
}
.floor-price-warning__caption {
  color: #707070;
}
.research {
  display: block;
  margin: 0 auto;
  max-width: 68.75rem;
}
.research__title {
  border-bottom: 1px solid #707070;
  padding: 1.437rem 0 0.5rem;
}
.research__vin {
  display: flex;
  align-items: center;
  border: 0;
  padding: 1.25rem 0;
}
.research__vin-label {
  font-weight: 600;
  flex: 0.9;
  color: #333;
}
.research__vin-input {
  flex: 3.76;
  min-width: 10.75rem;
}
.research__vin-submit {
  flex: 2.049;
  margin-left: 2.563rem;
}
.research__details {
  display: flex;
  padding-top: 1.563rem;
}
.research__details-submit {
  flex: 0 0 2.5rem;
  margin-top: auto;
}
.research__input-label {
  align-self: center;
  color: #333;
  font-weight: 600;
  padding-left: 0.625rem;
}
.research__input-label--disabled {
  color: #949494;
}
.research__input-group {
  display: flex;
  border-bottom: 1px solid #DBDBDB;
  justify-content: space-between;
  position: relative;
}
.research__input-group .research__filter-checkboxes {
  width: 13.125rem;
}
.research__input-group--last {
  margin-bottom: 50px;
}
.research__input-group--vertical {
  flex: 1;
  flex-direction: column;
  border-bottom: 0;
}
.research__input-group--vertical + .research__input-group--vertical {
  padding-left: 1.25rem;
}
.research__input-group--vertical:last-child {
  padding-top: 0.625rem;
  padding-bottom: 0.5625rem;
}
.research__input-group--vertical :last-child:not(ng-transclude) .research__filter-checkboxes {
  padding-bottom: 0.625rem;
}
.research__input-group--vertical .research__input-group--vertical :last-child:not(ng-transclude) .research__filter-checkboxes {
  padding-bottom: 0.625rem;
}
.research__input-group .filter-form__form-group {
  margin-bottom: 0;
}
.research__input-group .filter-form__label--disabled,
.research__input-group .filter-form__slider-preview--disabled {
  color: #949494;
}
.research__input-group .filter-check__wrapper--disabled {
  background-color: #FAFAFA;
}
.research__input-group .filter-check__wrapper--disabled span:not(.filter-check__arrow) {
  color: #DBDBDB;
}
.research__input-group .filter-check__wrapper--floating {
  top: -5px !important;
  width: 100%;
}
.research .activity__title {
  padding-left: 0;
}
.research__filter-checkboxes {
  padding: 0.313rem 0.625rem 0;
}
.research .rzslider[disabled] {
  opacity: 0.5;
}
.research .rzslider[disabled] .rz-pointer {
  background-color: #FFF;
}
.research__search-criteria {
  display: flex;
  list-style: none;
  margin: 0 25px;
  padding: 10px 0;
  justify-content: space-between;
  border-bottom: 1px solid #DBDBDB;
}
.research__column {
  width: 100%;
}
.research .research__column + .research__column {
  margin-left: 70px;
}
.research__results-header--sticky {
  position: fixed;
  top: 60px;
  background: #FFF;
  width: 1100px;
  z-index: 1;
}
.research .search-criterion__row {
  display: flex;
  justify-content: space-between;
}
.research .search-criterion__label {
  color: #707070;
}
.research .search-criterion__value {
  color: #333;
  font-weight: 600;
  white-space: nowrap;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.research .search-criterion__value--highlighted {
  color: #82bc00;
  font-size: 1.125rem;
}
.research__result-set-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #82bc00;
  font-size: 1.4rem;
  padding: 2.094rem 0;
  border-bottom: 1px solid #DBDBDB;
}
.research-results {
  display: block;
  background-color: #F5F5F5;
}
.research-results .loader {
  height: 180px;
  background-size: 8%;
  filter: brightness(112%);
  background-position: center 75%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.research-results .no-trades {
  height: auto;
  margin-top: 0;
  padding-top: 2rem;
  padding-bottom: 2.875rem;
}
.research-results .no-trades__icon {
  font-size: inherit;
  margin-bottom: 0;
}
.research-results .no-trades__label {
  margin-bottom: 0;
  font-size: 1.125rem;
}
.research-results .no-trades .icon-TR-Font_SadCar {
  font-size: 3.498rem;
}
.research-results .no-trades .icon-TR-Font_SadCar .path1:before {
  color: #DBDBDB;
}
.research-results .no-trades .icon-TR-Font_SadCar .path2:before,
.research-results .no-trades .icon-TR-Font_SadCar .path3:before,
.research-results .no-trades .icon-TR-Font_SadCar .path4:before {
  color: #707070;
}
.research-pro-results {
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 1.25rem;
  overflow: auto;
}
.research-pro-results__header {
  overflow: auto;
  list-style: none;
  width: 100%;
  padding: 0.5em 2em 0.5em 0;
  margin: 0;
  border-bottom: 1px solid #DBDBDB;
  background-color: #FFF;
}
.research-pro-results__result {
  overflow: hidden;
  border-bottom: 1px solid #DBDBDB;
  background-color: #F5F5F5;
  height: 90px;
  margin: 0;
}
.research-pro-results__result:hover {
  background: #FFF;
}
.research-pro-results__result:hover .research-pro-results__result-list--height {
  height: 55px;
}
.research-pro-results__result-list {
  overflow: hidden;
  list-style: none;
  position: relative;
  width: 100%;
  height: 90px;
  padding: 0 2em 0 0;
  display: flex;
  align-items: center;
  margin: 0;
}
.research-pro-results__extra-padding {
  padding-left: 2em;
}
.research-pro-results__item {
  float: left;
}
.research-pro-results__item--vehicle-image {
  height: 75px;
  position: absolute;
  top: 0;
  left: 0;
}
.research-pro-results__item--vehicle-image-colour-label {
  border-style: none;
  margin-left: 9px;
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 7%;
  text-align: center;
  font-size: 12px;
  height: 15px;
  line-height: 15px;
  border-radius: 15px;
  padding: 1px;
}
.research-pro-results__item--vehicle-details {
  width: 25%;
}
.research-pro-results__item--colour {
  width: 12%;
}
.research-pro-results__item--engine {
  width: 17%;
}
.research-pro-results__item--odometer {
  width: 12%;
}
.research-pro-results__item--location {
  width: 17%;
}
.research-pro-results__item--date {
  width: 12%;
}
.research-pro-results__item--price {
  width: 5%;
}
.research-pro-results__item--active {
  color: #82BC00;
}
.research-pro-results__item--sortable {
  font-weight: 800;
}
.research-pro-results__item--sortable:hover {
  color: #82BC00;
}
.research-pro-results__colour-box {
  text-align: center;
  font-size: 12px;
  height: 20px;
  line-height: 15px;
  width: 60%;
  border-radius: 15px;
  padding: 1px;
  border-style: solid;
  border-color: #F5F5F5;
  border-width: 2px;
}
.research-pro-results__unavailable {
  text-transform: uppercase;
  font-weight: 900;
  color: #707070;
}
.research-pro-results__result-rollover {
  overflow: hidden;
  list-style: none;
  height: 35px;
  margin: 0;
  padding: 0em 2em;
  border-top: 1px solid #DBDBDB;
}
.research-pro-results__result-rollover-item {
  float: left;
  padding: 0.4em 0em;
  width: 100%;
  font-size: 12px;
}
.research-pro-results__micro-icons {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.research-pro-results__micro-icons-item {
  float: left;
  line-height: 1;
  padding: 0px 3px 0px 0px;
  margin: 0;
  font-size: 14px;
  font-weight: 100;
}
.research-pro-results__micro-icons-item--label {
  padding-right: 8px;
}
.research-pro-results__headline:hover {
  color: #82BC00;
  cursor: pointer;
}
.research-pro-results__micro-icons-item--label {
  text-transform: capitalize;
  color: #707070;
}
.research-pro-results .icon-TR-Font_Micro-Automatic,
.research-pro-results__headline {
  color: #333;
}
.research-pro-results__header .research-pro-results__item--odometer,
.research-pro-results__header .research-pro-results__item--date {
  color: #333;
}
.research-pro-results__item--colour,
.research-pro-results__item--vehicle-details,
.research-pro-results__item--engine,
.research-pro-results__item--odometer,
.research-pro-results__item--location,
.research-pro-results__item--date {
  color: #707070;
}
.engine__cylinder-count {
  color: #333;
}
.research-recent-searches {
  display: block;
  background-color: #F5F5F5;
  padding: 1.0625rem 1.875rem 1.3125rem;
}
.research-recent-searches__heading {
  border-bottom: 1px solid #707070;
  padding-bottom: 0.625rem;
}
.research-recent-searches__list,
.research-recent-searches__criteria {
  list-style: none;
  margin: 0;
  padding: 0;
}
.research-recent-searches__list {
  display: flex;
}
.research-recent-searches__list-item {
  background: #FFF;
  border: 1px solid #DBDBDB;
  color: #707070;
  cursor: pointer;
  min-height: 112px;
  margin-top: 1.875rem;
  padding: 1.25rem;
  width: 100%;
  max-width: 236px;
  transition: box-shadow 0.25s ease-out;
}
.research-recent-searches__list-item + .research-recent-searches__list-item {
  margin-left: 2rem;
}
.research-recent-searches__list-item:hover {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.25s ease-in;
}
.research-recent-searches__list-element-title {
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.research-recent-searches__list-empty {
  height: 150px;
  text-align: center;
  padding: 4rem;
}
.timer--list {
  color: #82BC00;
  font-weight: 600;
}
.timer--list.timer--now-or-never {
  color: #F95341;
}
.timer--details {
  position: absolute;
  z-index: 10;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #82BC00;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  border-radius: 20px;
  padding: 0.3em 1em;
}
.timer--details.timer--now-or-never {
  background-color: #F95341;
}
.timer--normal-font-weight {
  font-weight: 400;
}
.active-timer--list {
  color: #333;
  font-weight: 600;
}
.active-timer--list.timer--now-or-never {
  color: #F95341;
}
.active-timer--list.timer--not-urgent {
  color: #707070;
}
.active-timer--details {
  position: absolute;
  z-index: 10;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  border-radius: 20px;
  padding: 0.3em 1em;
}
.active-timer--details.timer--now-or-never {
  background-color: #F95341;
}
.active-timer--details.timer--not-urgent {
  background-color: #707070;
}
.active-timer--details.timer--hidden {
  display: none;
}
.consign-pa {
  margin: 0 1em;
}
.consign-pa-form {
  margin: 0;
  padding: 0;
}
.consign-pa-form__title {
  font-weight: 600;
}
.consign-pa-form__control {
  overflow: hidden;
  padding: 1.5em 0;
}
.consign-pa-form__control .bubble {
  color: #000;
  text-align: center;
  width: 16em;
}
.consign-pa-form__control .bubble:hover {
  color: #fff;
}
.consign-pa-form__control__hint {
  font-size: 12px;
}
.consign-pa-form__control__option {
  width: 16em;
  text-align: center;
  float: left;
  margin: 0 0.5em;
}
.consign-pa-form__disclaimer {
  font-size: 12px;
  margin-bottom: 20px;
}
.consign-pa-form__floor-price {
  width: 50%;
  text-align: right;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
}
.consign-pa-form__floor-price__input {
  width: 75% !important;
  text-align: right;
  padding: 5px;
  font-family: Gibson, sans-serif;
  margin: 1em 0;
  font-weight: 600;
}
.consign-pa-form__floor-price__input__error {
  border: 1px solid #F95341 !important;
}
.consign-pa-form__floor-price__input--container {
  width: 35%;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.consign-pa-form__floor-price__input--dollar {
  position: absolute;
  left: 4px;
  padding: 5px;
  margin: 1em 0;
  font-weight: 600;
}
.consign-pa-form__notes {
  width: 100%;
  height: 12em;
  padding: 1em;
  margin: 1em 0;
  resize: none;
  border-radius: 6px;
  border: solid 1px rgba(151, 151, 151, 0.5);
  background-color: #ffffff;
}
.consign-pa-locations {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.consign-pa-location {
  overflow: hidden;
  padding: 1.5em;
  border-top: 1px solid #DBDBDB;
}
.consign-pa-location:hover {
  background: #DBDBDB;
}
.consign-pa-location__label {
  cursor: pointer;
  display: block;
  overflow: hidden;
}
.consign-pa-location__input {
  margin: 8px 30px 0 8px;
}
.consign-pa-location__input[type='radio'] {
  opacity: 100;
}
.consign-pa-location__title {
  font-size: 18px;
  font-weight: 600;
}
.consign-pa-location__address {
  font-style: normal;
  color: #707070;
}
.consign-pa-location__price {
  font-size: 24px;
  font-weight: 600;
}
.consign-instructions {
  font-weight: 600;
  margin-bottom: 10px;
}
.consign-form__group {
  overflow: hidden;
  padding: 15px 0;
  border-bottom: 1px solid #DBDBDB;
}
.consign-form__group--last {
  border: 0;
}
.consign-form__group--title {
  font-weight: 600;
  border-bottom-width: 2px;
}
.consign-form__label {
  float: left;
  line-height: 27px;
}
.consign-form__inputs {
  float: right;
}
.consign-form__inputs input[type='number'] {
  border: 0;
  background: transparent;
  text-align: right;
  font-weight: 600;
}
.consign-form__inputs select {
  direction: rtl;
}
.consign-form__terms {
  float: left;
}
.consign-form__terms-title {
  font-weight: 600;
}
.consign-form__images-title {
  font-weight: 600;
}
.consign-form__images-desc {
  margin-bottom: 10px;
}
.consign-form .bubble {
  margin-bottom: 0;
}
/* =Image Picker */
.image-picker {
  overflow: hidden;
}
.image-picker__item {
  position: relative;
  float: left;
  width: 133px;
  height: 100px;
  margin: 0 10px 10px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.image-picker__item--selected .image-picker__overlay {
  display: block;
}
.image-picker__item--selected .image-picker__select {
  display: none;
}
.image-picker__item--selected .image-picker__selected {
  display: block;
}
.image-picker__overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.image-picker__select {
  position: absolute;
  font-size: 20px;
  bottom: 5px;
  right: 5px;
  color: #FFF;
}
.image-picker__selected {
  display: none;
  position: absolute;
  font-size: 20px;
  bottom: 5px;
  right: 5px;
  color: #82BC00;
}
.activity {
  overflow: hidden;
  padding: 1em 2em;
}
.activity__title {
  margin: 0 0 1em;
  padding: 0 1em 0.5em;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #333;
}
.activity__widgets {
  padding: 0 0.75em;
}
.activity__widgets--left {
  float: left;
  width: 65%;
}
.activity__widgets--right {
  float: right;
  width: 35%;
}
.activity__badge {
  margin: 0 0.1em;
  padding: 0.1em 0.5em;
  background-color: #707070;
  border-radius: 45%;
  font-size: 12px;
  color: #FFF;
  text-align: center;
}
.activity__badge--alert {
  background: #F95341;
}
.activity__badge--success {
  background: #82BC00;
}
.widget {
  margin: 1em 0;
}
.widget__title {
  overflow: hidden;
  padding: 0.5em 0;
  font-size: 16px;
  font-weight: 600;
}
.widget__subtitle {
  padding: 0 0.5em;
  font-weight: 400;
}
.widget__loader {
  line-height: 0;
}
.widget__icon {
  padding: 0.1em 0.9em;
  background: #00a3ff;
  border-radius: 9px;
  font-family: Gibson;
  font-weight: 600;
  font-size: 13px;
  line-height: 13px;
  color: #fff;
  margin-left: 5px;
}
.nw {
  background: #FFF;
}
.nw__title {
  overflow: hidden;
  padding: 1em;
  cursor: default;
}
.nw__title--toggleEnabled:hover {
  cursor: pointer;
  background: #DBDBDB;
}
.nw__loader {
  margin-right: 10px;
}
.nw__negotiations {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.nw__negotiation {
  overflow: hidden;
  border-top: 1px solid #DBDBDB;
}
.nw__negotiation-link {
  display: inline-block;
  width: 100%;
  padding: 20px;
}
.nw__negotiation-link:hover {
  background-color: #DBDBDB;
}
.nw__label--title {
  font-size: 14px;
  font-weight: 600;
  color: #82BC00;
}
.nw__label--subtitle {
  font-size: 13px;
  color: #333;
}
.nw__icon {
  margin: 0 0.75em 0 0;
  vertical-align: middle;
  text-align: center;
  line-height: 21px;
}
.nw__icon--title {
  font-size: 24px;
}
.nw__icon--big {
  font-size: 18px;
}
.ftw {
  overflow: hidden;
  position: relative;
}
.ftw:hover .ftw__arrow {
  display: block !important;
}
.ftw__arrow {
  cursor: pointer;
  position: absolute;
  z-index: 100;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  background: rgba(250, 250, 250, 0.9);
  border-radius: 50%;
  text-align: center;
  display: none;
}
.ftw__arrow:hover {
  background: #FFF;
}
.ftw__arrow--left {
  left: 0;
}
.ftw__arrow--right {
  right: 0;
}
.ftw__arrow-icon {
  vertical-align: middle;
  font-size: 36px;
  color: #333;
  line-height: 50px;
  pointer-events: none;
}
.ftw__trades {
  position: relative;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  transition: 0.5s all ease-in-out;
}
.ftw__trade {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 175px;
  margin-right: 0.5em;
}
.ftw__trade:hover {
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.25);
}
.ftw__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.ftw__trade-thumbnail {
  display: block;
  width: 100%;
  height: 120px;
}
.ftw__trade-details {
  overflow: hidden;
  width: 100%;
  padding: 0.5em;
  background: #FFF;
}
.ftw__trade-headline {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.ftw__trade-auction {
  padding: 0.25em 0 0;
  border-top: 1px solid #DBDBDB;
  text-align: center;
}
.ftw__trade-auction-bid {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.ctw {
  background: #FFF;
}
.ctw__trade-states {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ctw__trade-state {
  position: relative;
  overflow: hidden;
  padding: 0.75em 1em;
  border-bottom: 1px solid #DBDBDB;
}
.ctw__trade-state:hover {
  cursor: pointer;
  background: #DBDBDB;
}
.ctw__trade-state:last-child {
  border: none;
}
.ctw__trade-state--substate {
  padding-left: 4em;
}
.ctw__trade-state--no-hover:hover {
  cursor: auto;
  background: #FFF;
}
.ctw__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.ctw__icon {
  margin: 0 0.75em 0 0;
  vertical-align: middle;
  text-align: center;
  line-height: 21px;
  font-size: 24px;
  color: #82BC00;
}
.aw {
  overflow: hidden;
  background-color: #FFF;
  padding: 1em;
}
.aw__chart {
  width: 200px;
  height: 200px;
  position: relative;
}
.aw__chart-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  margin-top: -80px;
  margin-left: -80px;
  padding: 2em 1em;
  background-color: #FFF;
  border-radius: 50%;
  text-align: center;
}
.aw__chart-data {
  margin-bottom: 0.5em;
}
.aw__chart-link {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.5em;
  border-bottom: 2px solid transparent;
  font-size: 16px;
  font-weight: 600;
  color: #707070;
}
.aw__chart-link:hover,
.aw__chart-link--active {
  border-bottom: 2px solid #82BC00;
  color: #333;
}
.aw__chart-labels--buy {
  margin-top: 20px;
}
.aw__chart-label--title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.aw__chart-label--subtitle {
  color: #707070;
}
.aw__list {
  margin-left: 200px;
}
.aw__list--sell {
  margin-top: 65px;
}
.aw__list--buy-no-closing {
  margin-top: 65px;
}
.aw__list--buy {
  margin-top: 35px;
}
.aw__trade-state {
  padding: 0.5em 0;
  border-bottom: 1px solid #DBDBDB;
  color: #82BC00;
}
.aw__trade-state:last-child {
  border: none;
}
.aw__trade-state--pending {
  color: #FABC41;
}
.aw__trade-state--closing {
  color: #4B6A0A;
}
.aw__trade-states {
  list-style: none;
  margin: 0 0 0 10px;
  padding: 0;
  font-size: 14px;
}
.aw__trade-state-label {
  overflow: hidden;
  font-size: 16px;
}
.aw__trade-state-label--title {
  font-weight: 600;
}
.aw__trade-state-label--subtitle {
  font-weight: 400;
  color: #707070;
}
.aw__trade-state-icon {
  vertical-align: middle;
  font-size: 24px;
}
.aw__trade-state-link {
  color: inherit;
}
.aw__trade-state-link:hover {
  color: inherit;
}
.csu-vin-search {
  overflow: hidden;
}
.csu-vin-search__input-wrapper {
  width: 65%;
}
.csu-vin-search__input {
  width: 100%;
}
.ec-events {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}
.ec-events__more-events {
  margin: 25px 0 0;
  text-align: center;
}
.ec-event {
  cursor: pointer;
  margin: 10px 0;
  padding: 15px 20px;
  background: #FFF;
}
.ec-event:hover {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
}
.ec-event--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}
.ec-event__flex {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.ec-event__trades {
  width: 10%;
  height: 100%;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  color: #333;
}
.ec-event-details {
  height: 100%;
  margin-left: 20px;
  font-size: 13px;
  color: #333;
}
.ec-event-details__title {
  font-size: 18px;
  font-weight: 800;
  text-align: left;
}
.ec-event-details__dealer {
  margin-right: 5px;
}
.ec-event-details__active-state-icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 26px;
  margin-right: -5px;
}
.ec-alert-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  text-align: center;
  color: #333;
}
.ec-no-events {
  margin: auto;
}
.ec-no-events__icon {
  font-size: 60px;
}
.ec-no-events__label {
  margin-top: -30px;
  color: #707070;
}
.ec-loading-events {
  margin: auto;
  color: #707070;
}
.tiw {
  background: #FFF;
  margin: 0;
  padding: 10px 5px 10px 5px;
}
.tiw__invitation {
  vertical-align: top;
  position: relative;
  overflow: hidden;
  padding: 1px;
}
.tiw__invitation__message {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.tiw__invitation__message__item {
  padding: 0 10px;
}
.tiw__btn {
  line-height: 25px;
  font-size: 12px;
}
.tiw__textarea {
  horiz-align: center;
  line-height: 1.5;
  font-family: Gibson, serif;
  font-size: 14px;
  width: 545px;
  height: 170px;
  border-radius: 4px;
  resize: none;
}
.ecp {
  background: #FFF;
  margin: 0;
  padding: 10px 5px 10px 5px;
}
.ecp__banner {
  vertical-align: top;
  position: relative;
  overflow: hidden;
  padding: 1px;
}
.ecp__banner__message {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.ecp__banner__message__item {
  padding: 0 10px;
}
.ecp__btn {
  margin: 8px;
  border: 2px solid #000;
  border-radius: 14px;
  line-height: 25px;
  font-size: 12px;
  font-family: Gibson;
  text-align: center;
  letter-spacing: 0.015em;
  color: #000;
}
.csu-search__group {
  overflow: hidden;
}
.csu-search__group--search {
  background: #FFF;
  padding: 1em;
}
.csu-search__label {
  line-height: 35px;
}
.csu-search-form {
  margin: 0;
}
.csu-search-form__input {
  width: 250px;
}
/**
 * Trade Carousel
 */
.trade-carousel {
  overflow: hidden;
  position: relative;
  padding-bottom: 10px;
}
.trade-carousel:hover .trade-carousel__arrow {
  display: block !important;
}
.trade-carousel__arrow {
  cursor: pointer;
  position: absolute;
  z-index: 102;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  background: rgba(250, 250, 250, 0.9);
  border-radius: 50%;
  text-align: center;
  display: none;
}
.trade-carousel__arrow:hover {
  background: #FFF;
}
.trade-carousel__arrow--left {
  left: 10px;
}
.trade-carousel__arrow--right {
  right: 10px;
}
.trade-carousel__arrow--disabled {
  background: rgba(250, 250, 250, 0.2);
}
.trade-carousel__arrow-icon {
  vertical-align: middle;
  font-size: 36px;
  color: #333;
  line-height: 50px;
  pointer-events: none;
}
.trade-carousel__trades {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.trade-carousel__no-trades {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  margin: 10px;
  height: 200px;
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.1);
}
.trade-carousel__no-trades-title {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
.trade-carousel__no-trades-description {
  font-size: 12px;
  color: #333;
  font-weight: 100;
  text-align: center;
}
.trade-carousel__no-trades-action {
  margin-top: 20px;
}
.trade-carousel__loading {
  text-align: center;
  margin: 20px 0;
  color: #82BC00;
  font-size: 30px;
  height: 200px;
}
.trade-carousel-extras {
  width: 100%;
}
.trade-carousel-extras__view-all-btn {
  display: block;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  width: 180px;
}
/**
 * Trade Card
 */
.trade-card {
  position: relative;
  width: 175px;
  margin-right: 0.5em;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #FFF;
}
.trade-card:hover {
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.25);
}
.trade-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 101;
}
.trade-card__thumbnail {
  width: 100%;
  height: 120px;
}
.trade-card__recommended {
  position: absolute;
  top: 90px;
  left: 10px;
  background: transparent;
  z-index: 101;
  font-size: 20px;
  background-color: #82BC00;
  color: #FFF;
  border-radius: 100%;
  padding-left: 1px;
}
.trade-card__shadow {
  position: absolute;
  left: 0px;
  top: 120px;
  width: 175px;
  height: 50px;
  box-shadow: inset -60px 0 20px -40px #FFF;
  z-index: 100;
}
.trade-card__details {
  overflow: hidden;
  width: 100%;
  padding: 5px 10px;
  background: #FFF;
  white-space: nowrap;
}
.trade-card__headline {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.trade-card__auction {
  margin: 0.25em 0 0;
  padding: 0.45em 0 0;
  border-top: 1px solid #DBDBDB;
  text-align: center;
}
.trade-card__auction-bid {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.progress-indicator {
  position: absolute;
  top: 90px;
  right: 15px;
}
.progress-indicator--device {
  overflow: hidden;
  display: inline-block;
  position: relative;
  top: 0;
  right: 0;
  width: auto;
  margin: 0 auto;
  text-align: center;
}
.progress-indicator__item {
  position: relative;
  float: left;
  text-align: center;
  font-size: 12px;
  padding: 0 30px;
}
.progress-indicator__item--completed .progress-indicator__dot {
  background-color: #82BC00;
}
.progress-indicator__item--active .progress-indicator__dot {
  background-color: #707070;
}
.progress-indicator__item:before,
.progress-indicator__item:after {
  content: '';
  position: absolute;
  top: 6px;
  width: 50%;
  height: 2px;
  background-color: #DBDBDB;
}
.progress-indicator__item:before {
  left: 0;
}
.progress-indicator__item:after {
  right: 0;
}
.progress-indicator__item--first:before {
  width: 0;
}
.progress-indicator__item--last:after {
  width: 0;
}
.progress-indicator__dot {
  position: relative;
  z-index: 1;
  transition: background-color 0.3s;
  margin: 0 auto 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #DBDBDB;
  background-color: #FFF;
}
.shipping-promo-icon {
  padding: 5px 10px;
  border-radius: 20px;
  background: #82BC00;
  font-weight: 600;
  font-size: 12px;
  color: #FFF;
  text-align: center;
}
.shipping-promo-icon:hover {
  background: #649e00;
}
.post-sale__section {
  overflow: hidden;
}
.post-sale__transportation-label {
  width: 317px;
  padding-right: 3px;
}
.post-sale__section-floor-plan {
  overflow: hidden;
  margin-left: 24px;
  margin-top: 10px;
}
.post-sale__shipping-amount-icon {
  position: relative;
  padding-left: 3px;
}
.post-sale__shipping-amount-label {
  position: relative;
  bottom: 1px;
}
.post-sale__shipping-amount-rate-info {
  font-size: 12px;
  font-weight: 600;
}
.post-sale__shipping-amount-rate-info:hover {
  color: #82bc02;
}
.post-sale__shipping-amount-image {
  position: relative;
  top: 3px;
  margin-left: 12px;
  width: 16px;
  height: 16px;
}
.post-sale__shipping-amount-text {
  display: inline-block;
}
.post-sale__shipping-loading {
  color: #82BC00;
  font-size: 20px;
  margin-top: -5px;
}
.post-sale__shipping-loading-message {
  position: absolute;
  margin-top: 20px;
  font-size: 12px;
}
.post-sale__label {
  font-weight: 600;
  margin-bottom: 20px;
}
.post-sale__label-alt {
  font-weight: 600;
  margin-bottom: 20px;
  padding-top: 20px;
}
.post-sale__sub-label {
  width: 290px;
  font-weight: 500;
  margin-top: 20px;
  margin-right: 30px;
  display: inline-block;
}
.post-sale__sub-label__location {
  position: relative;
  top: -7px;
}
.post-sale__sub-label__notes__content {
  padding-left: 3px;
}
.post-sale__element-notes {
  display: inline-flex;
  margin-bottom: 20px;
}
.post-sale__quote {
  display: inline-flex;
  margin: 0 0 20px;
}
.post-sale__quote__amount {
  font-weight: 600;
}
.post-sale__services-label {
  font-weight: 600;
  display: flex;
  align-items: center;
}
.post-sale__services-drop-down {
  display: flex;
  align-items: baseline;
}
.post-sale__radio {
  margin-bottom: 10px;
}
.post-sale__option {
  display: block;
  margin-left: 30px;
}
.post-sale__options {
  overflow: hidden;
  padding-bottom: 20px;
  border-bottom: 1px solid #DBDBDB;
  margin-bottom: 20px;
}
.post-sale__options--no-border {
  border: 0;
  padding: 0;
}
.post-sale__icon-details {
  border: 1px solid #707070;
  color: #707070;
  border-radius: 50%;
}
.post-sale__icon-details-box {
  position: relative;
  left: 1px;
}
.post-sale__review {
  margin-left: 30px;
}
.post-sale__method-title {
  font-weight: 600;
  padding: 5px 0;
}
.post-sale__method-item {
  overflow: hidden;
  border-top: 1px solid #DBDBDB;
  padding: 5px 10px;
}
.post-sale__method-item-label {
  float: left;
}
.post-sale__method-item-value {
  float: right;
}
.post-sale__method-total {
  padding: 5px 10px;
  text-align: right;
  font-weight: 600;
  border-top: 2px solid #DBDBDB;
}
.post-sale__credit-card-info {
  color: #82BC00;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
}
.post-sale__credit-card-info .icon {
  font-size: 24px;
  vertical-align: middle;
}
.post-sale__requires-credit-card {
  margin-left: 15px;
}
.post-sale__trd-info-wrapper {
  margin-bottom: -5px;
}
.post-sale__trd-label {
  font-family: Gibson, sans-serif;
  font-weight: bold;
  font-size: 14px;
}
.post-sale__trd-sublabel {
  font-family: Gibson, sans-serif;
  font-weight: lighter;
  color: #707070;
  font-size: 13px;
}
.post-sale__trd-quote-unavailable {
  font-size: 13px;
  color: #707070;
  margin-left: 7px;
}
.post-sale__trd-icon {
  margin-bottom: -3px;
}
.post-sale__trd-icon--vdp {
  width: 20px;
  height: 12px;
}
.radio-item {
  display: block;
  position: relative;
  padding: 0 4px;
  margin: 10px 0 0;
}
.radio-item__input[type='radio'] {
  display: none;
}
.radio-item__label {
  font-weight: 400;
  color: #333;
}
.radio-item__label:before {
  content: ' ';
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
  width: 16px;
  height: 16px;
  border-radius: 12px;
  border: 2px solid #DBDBDB;
  background-color: transparent;
}
.radio-item__input[type='radio']:checked + .radio-item__label:after {
  border-radius: 11px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 9px;
  left: 8px;
  content: ' ';
  display: block;
  background: #82BC00;
}
.radio-item__label__gray {
  color: #707070;
}
.edit-label {
  font-size: 12px;
  font-weight: 400;
}
.edit-label a {
  color: #DBDBDB;
}
.edit-label a:hover {
  color: #82BC00;
}
.step-navigation {
  overflow: hidden;
  margin: 20px 0 0;
}
.checkout-summary {
  width: 23%;
  float: right;
  background-color: #F5F5F5;
  padding: 20px 30px;
}
.checkout-summary__title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid #DBDBDB;
  margin-bottom: 10px;
}
.checkout-summary__section {
  border-bottom: 1px solid #DBDBDB;
  margin-bottom: 10px;
}
.checkout-summary__section-title {
  font-size: 16px;
  font-weight: 600;
}
.checkout-summary__item {
  overflow: hidden;
  padding: 5px 0;
}
.checkout-summary__item--method {
  font-weight: 600;
}
.checkout-summary__item--provider {
  font-weight: 400;
}
.checkout-summary__item--total {
  font-size: 16px;
  font-weight: 600;
  border-top: 2px solid #707070;
  border-bottom: 1px solid #DBDBDB;
}
.checkout-summary__item--fee {
  padding: 5px 0 0;
}
.checkout-summary__item--subtotal {
  font-weight: 600;
  padding: 0;
}
.checkout-summary__item--tax {
  padding: 0 0 0 20px;
}
.checkout-summary__subtotal {
  overflow: hidden;
  padding: 5px 0;
  border-top: 2px solid #DBDBDB;
}
.checkout-summary__label {
  float: left;
}
.checkout-summary__value {
  float: right;
}
.checkout-summary__section-total {
  padding: 5px 0;
  text-align: right;
  border-top: 2px solid #DBDBDB;
  font-weight: 600;
}
.widget__refresh-icon {
  font-size: 20px;
  color: #82BC00;
  vertical-align: middle;
}
.widget__last-updated {
  float: right;
  font-size: 12px;
  color: #707070;
  padding-top: 12px;
}
.widget--loading .widget__last-update-date,
.panel-widget--loading .widget__last-update-date {
  display: none;
}
.panel-widget__title {
  font-size: 16px;
}
.panel-widget__last-updated {
  display: block;
  text-align: left;
  font-size: 12px;
  color: #707070;
  margin-right: -3px;
}
.panel-widget__error {
  text-align: right;
  color: #F95341;
  padding: 10px;
}
.providers {
  transition: opacity 0.5s;
}
.widget--loading .providers,
.panel-widget--loading .providers {
  opacity: 0.5;
}
.ctw--padded {
  padding: 5px 15px;
}
.ctw--alert {
  text-align: right;
  padding: 15px;
  color: #F95341;
}
.provider {
  padding: 10px 0;
}
.provider__row {
  overflow: hidden;
}
.provider__name {
  display: block;
  width: 25%;
}
.provider__name--single {
  width: 80%;
  padding-top: 6px;
}
.provider__name--panel {
  display: inline;
  width: 55%;
}
.provider__layout__horz {
  padding: 10px 0 0;
  display: flex;
  width: 100%;
  text-align: justify;
}
.provider__layout__horz--single {
  padding: 0;
}
.provider__logo {
  display: block;
  max-height: 26px;
}
.provider__logo--panel {
  max-height: 22px;
  margin-top: 8px;
}
.provider__credit {
  float: right;
  line-height: 22px;
  width: 75%;
  text-align: right;
}
.provider__credit--container {
  display: inline-block;
  width: 50%;
}
.provider__credit--alert {
  color: #F95341;
}
.provider__credit--message {
  float: left;
  line-height: 20px;
  width: 100%;
  text-align: left;
  font-size: 12px;
}
.provider__credit--dropdown {
  width: 60%;
}
.provider__credit--smaller {
  font-size: 12px;
}
.provider__credit--available {
  font-size: 12px;
  float: right;
  color: #707070;
}
.provider__contact {
  margin-top: 10px;
  border-top: 1px solid #DBDBDB;
  padding-top: 10px;
  text-align: left;
}
.provider__contact .icon {
  font-size: 24px;
  color: #F95341;
}
.provider__contact span {
  vertical-align: middle;
}
.inline-provider {
  float: left;
  width: 50%;
}
.inline-provider__title {
  font-weight: 600;
}
.inline-provider__credit {
  display: inline-block;
  margin-right: 15px;
}
.inline-provider__credit--alert {
  color: #F95341;
}
.inline-provider__last-updated {
  display: inline-block;
  font-size: 12px;
  color: #707070;
}
.inline-provider--loading .inline-provider__credit,
.inline-provider--loading .widget__last-update-date {
  display: none;
}
.reports {
  overflow: hidden;
}
.reports__group {
  overflow: hidden;
  clear: both;
  margin-bottom: 2em;
}
.reports__title {
  padding: 0.5em 0;
  font-weight: 600;
}
.reports__float--left {
  float: left;
}
.reports__float--right {
  float: right;
}
.reports__float--half {
  width: 50%;
}
.reports__float--third {
  width: 33%;
}
.reports__float--two-thirds {
  width: 66%;
}
.reports-overview__graphs,
.reports-distribution__graphs {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 340px;
}
.reports-overview__graph,
.reports-distribution__graph {
  width: 100%;
  height: 330px;
  margin: 0 auto;
}
.reports-overview__legend,
.reports-distribution__legend {
  overflow: hidden;
  list-style: none;
  list-style-type: none;
  margin: 1em 0 0;
  padding: 0;
}
.reports-overview__legend-element,
.reports-distribution__legend-element {
  float: left;
  margin: 0 2em 0 0;
}
.reports-overview__legend-element--listed i,
.reports-distribution__legend-element--listed i {
  color: #707070;
}
.reports-overview__legend-element--sold i,
.reports-distribution__legend-element--sold i,
.reports-overview__legend-element--won i,
.reports-distribution__legend-element--won i {
  color: #82BC00;
}
.reports-overview__legend-element--closing i,
.reports-distribution__legend-element--closing i {
  color: #FABC41;
}
.reports-overview__legend-element--lost i,
.reports-distribution__legend-element--lost i {
  color: #F95341;
}
.reports-distribution__nav {
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
}
.reports-distribution__link {
  cursor: pointer;
  float: left;
  margin: 0 30px 15px 0;
  padding: 1px 0;
  color: #707070;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.reports-distribution__link:hover,
.reports-distribution__link--active {
  color: #333;
  border-bottom: 2px solid #82BC00;
}
.reports-distribution__data {
  margin: 0 0 20px;
}
.reports-distribution__data strong {
  color: #82BC00;
}
.reports-trades {
  overflow: hidden;
  padding: 0.5em;
  border-bottom: 1px solid #DBDBDB;
  border-right: 1px solid #DBDBDB;
}
.reports-trades--sell {
  height: 250px;
}
.reports-trades--buy-closing {
  height: 500px;
}
.reports-trades--buy {
  height: 350px;
}
.reports-trades--all-time {
  border-right: none;
}
.reports-trades__chart {
  position: relative;
  width: 50%;
}
.reports-trades__chart--all-time {
  text-align: center;
  width: 25%;
}
.reports-trades__chart-circle {
  position: absolute;
  top: 50%;
  left: 47%;
  width: 120px;
  height: 120px;
  margin-top: -61px;
  margin-left: -62px;
  padding: 25px 0;
  background: #F5F5F5;
  border-radius: 50%;
  text-align: center;
}
.reports-trades__chart-circle--all-time-sell {
  width: 80px;
  height: 80px;
  margin-top: -43px;
  margin-left: -38px;
  padding: 18px 0;
}
.reports-trades__chart-circle--all-time-buy {
  width: 100px;
  height: 100px;
  margin-top: -54px;
  margin-left: -45px;
  padding: 25px 0;
}
.reports-trades__chart-title {
  font-size: 14px;
  line-height: 20px;
  color: #707070;
}
.reports-trades__chart-title--chart {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}
.reports-trades__chart-title--all-time {
  font-size: 22px;
  font-weight: 600;
  line-height: 25px;
}
.reports-trades__chart-title--small {
  font-size: 11px;
  line-height: 15px;
}
.reports-trades__chart-title--positive {
  color: #82BC00;
}
.reports-trades__chart-title--warning {
  color: #FABC41;
}
.reports-trades__chart-label {
  font-size: 14px;
  color: #707070;
}
.reports-trades__chart-label--va {
  position: relative;
  top: -5px;
  vertical-align: middle;
}
.reports-trades__chart-label--number {
  padding: 0 5px;
  font-size: 24px;
  font-weight: 600;
  color: #707070;
}
.reports-trades__chart-label--small {
  font-size: 12px;
}
.reports-trades__chart-label--all-time {
  display: block;
  text-align: center;
}
.reports-trades__list {
  list-style: none;
  width: 50%;
  padding: 35px 10px 0;
  margin: 0;
}
.reports-trades__list--all-time {
  padding-top: 0;
}
.reports-trades__list-element {
  padding: 0.5em 0;
  border-bottom: 1px solid #DBDBDB;
  font-size: 14px;
  color: #707070;
}
.reports-trades__list-element:last-child {
  border-bottom: none;
}
.reports-trades__cars {
  margin-bottom: 20px;
}
.reports-trades__car {
  position: relative;
  margin: 5px auto;
  width: 180px;
  height: 110px;
  padding: 15px 0;
  text-align: center;
  color: #FFF;
}
.reports-trades__car-icon {
  position: absolute;
  width: 180px;
  height: 110px;
  font-size: 180px;
  top: -30px;
}
.reports-trades__car-icon--won {
  color: #82BC00;
}
.reports-trades__car-icon--bid {
  color: #707070;
}
.reports-trades__car-number {
  position: relative;
  line-height: 52px;
  font-size: 48px;
  font-weight: 600;
  color: #FFF;
}
.reports-trades__car-label {
  position: relative;
}
.hexagon {
  position: relative;
  width: 60px;
  height: 34.64px;
  background-color: #DBDBDB;
  margin: 17.32px 0;
}
.hexagon:before,
.hexagon:after {
  content: '';
  position: absolute;
  width: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}
.hexagon:before {
  bottom: 100%;
  border-bottom: 17.32px solid #DBDBDB;
}
.hexagon:after {
  top: 100%;
  width: 0;
  border-top: 17.32px solid #DBDBDB;
}
.reports-ranking {
  overflow: hidden;
  padding: 0.5em;
}
.reports-ranking--sell {
  border-bottom: 1px solid #DBDBDB;
  border-right: 1px solid #DBDBDB;
  height: 250px;
}
.reports-ranking--buy {
  border-top: 1px solid #DBDBDB;
}
.reports-ranking__ranks {
  list-style: none;
  width: 100%;
  margin: 0 0 0 10px;
  padding: 0;
}
.reports-ranking__rank {
  overflow: hidden;
  margin: 0 0 15px;
}
.reports-ranking__arrow-icon {
  position: relative;
  top: 20px;
  vertical-align: middle;
  font-size: 32px;
}
.reports-ranking__arrow-icon--up {
  color: #82BC00;
}
.reports-ranking__arrow-icon--down {
  color: #F95341;
}
.reports-ranking__rank-label--title {
  font-weight: 600;
  font-size: 16px;
  color: #707070;
}
.reports-ranking__rank-label--positive strong {
  color: #82BC00;
}
.reports-ranking__rank-label--positive .reports-ranking__down {
  display: none;
}
.reports-ranking__rank-label--negative strong {
  color: #F95341;
}
.reports-ranking__rank-label--negative .reports-ranking__up {
  display: none;
}
.reports-ranking__rank-number {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #707070;
}
.reports-ranking__rank-data {
  padding: 15px 0 0 30px;
}
.reports-pricing {
  overflow: hidden;
  height: 500px;
  padding: 0.5em 2em;
  border-bottom: 1px solid #DBDBDB;
}
.reports-pricing__closing {
  height: 500px;
}
.reports-pricing__no-closing {
  height: 350px;
}
.reports-pricing__no-data {
  padding-bottom: 1em;
}
.reports-pricing__line-graphs {
  color: #707070;
}
.reports-pricing__line-graph {
  margin: 0 0 15px;
}
.reports-pricing__line-graph-labels {
  overflow: hidden;
  position: relative;
  padding: 0 0 8px;
  font-size: 12px;
  color: #707070;
}
.reports-pricing__line-graph-labels--fade {
  opacity: 0.25;
}
.reports-pricing__line-graph-label--amount {
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 20px;
  padding: 0px;
  background: #FFF;
  text-align: center;
  font-size: 12px;
}
.reports-pricing__line-graph-label--amount:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 8px 7px 0;
  border-color: #FFF transparent;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -5px;
  left: 31px;
}
.reports-pricing__line-graph-bar {
  position: relative;
  height: 17px;
  background: #DBDBDB;
}
.reports-pricing__line-graph-bar--filler {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background: #82BC00;
}
.reports-pricing__line-graph-bar--filler:hover {
  background: #4B6A0A;
}
.reports-pricing__pricings {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
}
.reports-pricing__pricing {
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid #DBDBDB;
  color: #707070;
}
.reports-pricing__price {
  line-height: 28px;
  font-weight: 600;
  font-size: 28px;
  color: #707070;
}
.reports-pricing__price-details {
  text-align: right;
}
.reports-atp {
  padding: 0.5em 2em;
  border-bottom: 1px solid #DBDBDB;
}
.reports-atp--sell {
  height: 250px;
}
.reports-atp__breakdown {
  list-style: none;
  list-style-type: none;
  height: 60px;
  margin: 0.75em 0 0;
  padding: 0 10px;
}
.reports-atp__breakdown--bottom-border {
  border-bottom: 1px solid #DBDBDB;
}
.reports-atp__breakdown-element {
  float: left;
  width: 24%;
  font-size: 12px;
  color: #707070;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.reports-atp__breakdown-element--left-border {
  border-left: 1px solid #DBDBDB;
}
.reports-atp__price {
  padding: 0.25em 0;
  font-weight: 600;
  font-size: 14px;
}
.reports-atp__price--closing-profit {
  color: #82BC00;
}
.reports-atp__price--closing-avg {
  color: #FABC41;
}
.retail {
  overflow-x: hidden;
  width: 100%;
  min-height: 92%;
  margin-bottom: 0;
  background: #fff;
  font-family: Gibson, sans-serif;
  font-style: normal;
}
@media screen and (min-height: 700px) {
  .retail {
    min-height: 94%;
  }
}
@media screen and (min-height: 1026px) {
  .retail {
    min-height: 97%;
  }
}
.retail__container {
  width: 100%;
}
.retail-nav {
  width: 100%;
  height: 54px;
  background-color: #000;
}
.retail-nav__container {
  background-color: #000;
  display: flex;
}
.retail-nav__back-icon {
  width: auto;
  height: 17px;
  margin-left: 20px;
  margin-top: 18px;
  cursor: pointer;
}
.retail-nav__heading {
  color: #fff;
  padding: 20px 0px 20px 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1.2px;
}
.retail-footer {
  background: #fff;
  border: 0;
}
.retail-footer__copy {
  width: 45vh;
  text-align: center;
  margin: 0 auto;
  font-family: Gibson, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  color: #c8c8c8;
  padding-bottom: 25px;
}
.ti-btn {
  background: #7fbe00;
  border-radius: 0;
  padding: 10px 25px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2.35px;
  line-height: 29px;
}
.ti-btn:hover {
  background: #5d8b00;
}
.ti-btn-v2 {
  margin: 0 auto;
  background: #0020ff;
  border-radius: 6px;
  font-family: Gibson, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1.2px;
  color: #fff;
  text-transform: uppercase;
}
.ti-btn-v2:disabled {
  cursor: not-allowed;
}
.ti-btn-v2:hover {
  background: #0020ff;
}
.ti-error__title {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 18px;
}
.ti-error__desc {
  font-size: 14px;
}
.ti-success-invited {
  width: 494px;
  margin: 0 auto;
  margin-top: 55px;
}
.ti-success-invited__dealer-logo {
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
}
.ti-success-invited__dealer-logo img {
  height: 100px;
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
.ti-success-invited__title {
  margin-bottom: 40px;
  font-weight: 600;
  font-size: 18px;
}
.ti-success-invited__title--no-margin {
  margin-bottom: 0;
}
.ti-success-invited__desc {
  font-size: 14px;
  margin-top: 5px;
}
.ti-success-invited__address {
  margin-top: 40px;
}
@media screen and (min-width: 350px) and (max-width: 568px) {
  .ti-success-invited {
    width: 339px;
  }
}
@media screen and (min-width: 315px) and (max-width: 349px) {
  .ti-success-invited {
    width: 310px;
  }
}
.ti-success-prospective {
  width: 494px;
  margin: 0 auto;
  font-family: Gibson, sans-serif;
  margin-bottom: 24px;
}
.ti-success-prospective__icon {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 15px;
}
@media screen and (min-width: 350px) and (max-width: 568px) {
  .ti-success-prospective {
    width: 339px;
  }
}
@media screen and (min-width: 315px) and (max-width: 349px) {
  .ti-success-prospective {
    width: 310px;
  }
}
.ti-success-prospective__title {
  text-align: center;
  font-size: 36px;
  line-height: 36px;
  width: 446px;
  margin-bottom: 20px;
}
@media screen and (min-width: 350px) and (max-width: 568px) {
  .ti-success-prospective__title {
    width: 335px;
  }
}
@media screen and (min-width: 315px) and (max-width: 349px) {
  .ti-success-prospective__title {
    width: 290px;
  }
}
.ti-success-prospective__container {
  width: 100%;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  padding: 25px;
}
.ti-success-prospective__desc {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
}
.ti-success-prospective__group {
  display: flex;
  margin-bottom: 20px;
}
.ti-success-prospective__group-num {
  font-size: 36px;
  line-height: 36px;
  margin-top: -2px;
  margin-right: 10px;
}
.ti-success-prospective__group-desc {
  width: 401px;
}
.ti-success-prospective__group-bold {
  font-weight: 600;
  font-size: 16px;
  line-height: 130.9%;
}
.ti-success-prospective__group-text,
.ti-success-prospective__group-subtext {
  font-size: 16px;
  line-height: 130.9%;
}
.ti-success-prospective__group-subtext {
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: -20px;
}
.ti-success-prospective__disclaimer {
  margin-top: 25px;
  margin-bottom: 70px;
  align-items: center;
  padding: 18px 12px;
  background: #fff;
  border: 1px solid transparent;
  border-left: 9px solid transparent;
  box-shadow: 0px 9px 24px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  border-color: #0064bc;
  font-size: 14px;
  line-height: 16px;
  color: black;
  display: flex;
  flex-direction: row;
  text-align: left;
}
.ti-success-prospective__disclaimer-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex: 0 0 auto;
}
.ti-cr {
  width: 494px;
  margin: 0 auto;
  font-family: Gibson, sans-serif;
  margin-top: 25px;
}
@media screen and (min-width: 315px) and (max-width: 349px) {
  .ti-cr {
    width: 310px;
  }
}
@media screen and (min-width: 350px) and (max-width: 568px) {
  .ti-cr {
    width: 339px;
  }
}
.ti-cr-details {
  position: relative;
  padding: 10px 15px;
  margin-bottom: 25px;
  border: 3px solid #0da400;
  box-sizing: border-box;
  border-radius: 6px;
}
.ti-cr-details__vin-title-container {
  display: flex;
  flex-direction: row;
}
.ti-cr-details__vin-title-container img {
  width: 20px;
  height: 20px;
  margin-right: 3px;
}
.ti-cr-details__vin-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #000;
  margin-top: 2px;
  margin-bottom: 15px;
}
.ti-cr-details__vin {
  font-size: 16px;
  line-height: 16px;
  color: #000;
  margin-bottom: 10px;
}
.ti-cr-details__headline {
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.ti-cr-details__trim {
  font-size: 18px;
  color: #707070;
  float: left;
  margin-right: 2px;
}
.ti-cr-details__fueltype {
  font-size: 18px;
  color: #707070;
}
.ti-cr-details__edit {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: underline;
  text-transform: lowercase;
  color: #0020ff;
  margin-left: 10px;
}
.ti-cr-form {
  color: #000;
}
.ti-cr-form__upload-link {
  color: #0020ff;
  text-decoration: underline;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
}
.ti-cr-form__upload-link:hover {
  color: #0020ff;
}
.ti-cr-form__group {
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
@media screen and (min-width: 315px) and (max-width: 349px) {
  .ti-cr-form__group {
    padding: 10px;
  }
}
.ti-cr-form__group:last-of-type {
  box-shadow: none;
}
.ti-cr-form__title {
  color: #000;
  font-weight: normal;
  font-size: 24px;
  line-height: 30px;
  width: 85%;
  margin-bottom: 6px;
}
@media screen and (min-width: 350px) and (max-width: 568px) {
  .ti-cr-form__title {
    width: 100%;
  }
}
.ti-cr-form__instructions {
  padding: 1px 0 5px 0;
  font-size: 12px;
}
.ti-cr-form__desc {
  font-size: 16px;
  line-height: 130.9%;
}
.ti-cr-form__desc-bold {
  font-weight: 600;
}
.ti-cr-form__help:first-of-type {
  width: 301px;
  font-weight: 600;
}
.ti-cr-form__controls {
  padding: 20px 0;
  width: 100%;
}
.ti-cr-form__actions {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .ti-cr-form__actions {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.ti-cr-form__control {
  width: 100%;
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .ti-cr-form__control {
    width: 70%;
  }
}
.ti-cr-form__control:first-child {
  margin-top: 0px;
}
.ti-cr-form__control--stretch {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .ti-cr-form__control--name {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .ti-cr-form__control--email {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .ti-cr-form__control--phone-number {
    width: 60%;
  }
}
.ti-cr-form__input {
  width: 100%;
  padding: 8px;
  border: 1px solid #aeaeae;
  box-sizing: border-box;
  border-radius: 3px;
  outline: 0;
  font-size: 18px;
  line-height: 24px;
}
.ti-cr-form__input--mileage {
  border: 1px solid #aeaeae;
  box-sizing: border-box;
  border-radius: 3px;
  margin-right: 5px;
  width: 178px;
}
.ti-cr-form__textarea {
  width: 100%;
  height: 175px;
  padding: 15px;
  border: 1px solid #b6b6b6;
  border-radius: 3px;
  resize: none;
}
.ti-cr-form__disclosures {
  padding-top: 25px;
}
.ti-cr-form__legal {
  margin-top: -35px;
  font-size: 16px;
  line-height: 130.9%;
}
.ti-cr-form__legal-link {
  color: #0020ff;
}
.ti-cr-form__legal-link:hover {
  color: #0020ff;
}
.ti-cr-form__label {
  font-size: 16px;
  color: #000;
}
.ti-cr-form__label--error {
  color: #cf0d0d;
  font-weight: 400;
}
.ti-cr-form__flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ti-cr-form__flex-mileage {
  display: flex;
}
.ti-cr-form__btn {
  margin: 0 auto;
  background: #0020ff;
  border-radius: 6px;
  font-family: Gibson, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1.2px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 35px;
  padding: 10px 35px;
}
.ti-cr-form__btn:disabled {
  cursor: not-allowed;
}
.ti-cr-form__btn:hover {
  background: #0020ff;
}
.ti-cr-form__error {
  color: #cf0d0d;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.ti-cr-form-switch {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  color: #000;
}
.ti-cr-form-switch--mileage {
  width: 50%;
  margin-left: 25px;
}
.ti-cr-form-switch__divider {
  background: #0020ff;
  border: #0020ff;
}
.ti-cr-form-switch__input {
  cursor: pointer;
  width: 50%;
  padding: 12px 12px;
  text-align: center;
  transition: 100ms all linear;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: #707070;
  border: 1px solid #aeaeae;
  box-sizing: border-box;
  border-radius: 3px;
}
.ti-cr-form-switch__input:hover {
  background: #0020ff;
  color: #fff;
}
.ti-cr-form-switch__input--selected {
  background: #0020ff;
  color: #fff;
  font-weight: 600;
  border: 1px solid #0020ff;
  box-sizing: border-box;
  border-radius: 3px;
}
.ti-cr-form-cb {
  margin-bottom: 25px;
}
.ti-cr-form-cb:last-child {
  margin-bottom: 0;
}
.ti-cr-form-cb__control {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  color: #000;
}
.ti-cr-form-cb__control--legal {
  align-items: flex-start;
}
.ti-cr-form-cb__checkbox {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 24px;
  min-height: 24px;
  border: 2px solid #dbdbdb;
  border-radius: 2px;
  transition: 100ms all linear;
}
.ti-cr-form-cb__checkbox--small {
  min-width: 18px;
  min-height: 18px;
}
.ti-cr-form-cb__checkbox:hover {
  border: 2px solid #0020ff;
}
.ti-cr-form-cb__checkbox--selected {
  background: #0020ff;
  border: 1px solid transparent;
}
.ti-cr-form-cb__icon {
  color: #fff;
  font-size: 18px;
}
.ti-cr-form-cb__icon--small {
  font-size: 14px;
}
.ti-cr-form-cb__label {
  padding-left: 12px;
  font-size: 16px;
  color: #000;
}
.ti-cr-form-cb__label--legal {
  position: relative;
  top: -2px;
  color: #000;
}
.ti-cr-form-cb__label--error {
  color: #FABC41;
}
.ti-cr-media-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
  padding: 0 10px;
  text-align: center;
  border: 2px dashed #7fbe00;
  border-radius: 3px;
}
.ti-cr-media-box__label {
  font-size: 14px;
}
.ti-cr-media-grid {
  display: grid;
  grid-template-columns: repeat(2, 159px);
  grid-gap: 6px;
  margin-top: 20px;
  place-content: center;
}
@media screen and (min-width: 535px) {
  .ti-cr-media-grid {
    grid-template-columns: repeat(2, 159px);
  }
}
@media screen and (min-width: 768px) {
  .ti-cr-media-grid {
    grid-template-columns: repeat(3, 159px);
  }
}
@media screen and (min-width: 1024px) {
  .ti-cr-media-grid {
    grid-template-columns: repeat(3, 159px);
  }
}
.ti-cr-media-grid trade-in-media-thumbnail {
  margin: 0 auto;
}
.ti-vin {
  font-family: Gibson, sans-serif;
  color: #000;
}
.ti-vin .ti-vin-input__title {
  width: 446px;
  margin: 0 auto;
  text-align: center;
  font-style: normal;
  font-weight: normal;
  font-size: 36px;
  line-height: 36px;
  color: #000;
  margin-top: 20px;
}
@media screen and (min-width: 350px) and (max-width: 568px) {
  .ti-vin .ti-vin-input__title {
    width: 310px;
  }
}
@media screen and (min-width: 315px) and (max-width: 349px) {
  .ti-vin .ti-vin-input__title {
    width: 310px;
  }
}
.ti-vin .ti-vin__dealer-logo {
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
}
.ti-vin .ti-vin__dealer-logo img {
  height: 100px;
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
.ti-vin .ti-vin__desc {
  width: 446px;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 130.9%;
}
@media screen and (min-width: 350px) and (max-width: 568px) {
  .ti-vin .ti-vin__desc {
    width: 291px;
  }
}
@media screen and (min-width: 315px) and (max-width: 349px) {
  .ti-vin .ti-vin__desc {
    width: 310px;
  }
}
.ti-vin .ti-vin__links {
  margin-top: 4vh;
  text-align: center;
}
.ti-vin .ti-vin__link {
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #0020ff;
}
.ti-vin .ti-vin__link:hover {
  color: #0020ff;
}
.ti-vin .ti-vin__link-show {
  color: #000;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  text-decoration: none;
}
.ti-vin .ti-vin__link-show:hover {
  color: #000;
}
.ti-vin .ti-vin-help__desc {
  width: 306px;
  margin: 8px auto;
  font-size: 16px;
  line-height: 130.9%;
}
@media screen and (min-width: 500px) {
  .ti-vin .ti-vin-help__desc {
    width: 472px;
  }
}
.ti-vin .ti-vin-help__container {
  display: flex;
  flex-wrap: wrap;
  width: 380px;
  margin: 0 auto;
  justify-content: center;
}
@media screen and (min-width: 500px) {
  .ti-vin .ti-vin-help__container {
    width: 600px;
  }
}
.ti-vin .ti-vin-help__group {
  margin: 12px;
}
.ti-vin .ti-vin-help__copy {
  margin: 0 auto;
  width: 15vh;
  line-height: 14px;
}
.ti-vin .ti-vin-form__form-container {
  width: 380px;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  margin: 0 auto;
  padding-bottom: 1vh;
}
@media screen and (min-width: 300px) and (max-width: 400px) {
  .ti-vin .ti-vin-form__form-container {
    width: 310px;
  }
}
@media screen and (min-width: 500px) {
  .ti-vin .ti-vin-form__form-container {
    width: 442px;
  }
}
.ti-vin .ti-vin-form__desc {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 22px;
  font-size: 24px;
  line-height: 30px;
  padding-top: 20px;
}
.ti-vin .ti-vin-form__label {
  color: #000;
  margin-left: 22px;
}
.ti-vin .ti-vin-form__label-error {
  color: #dd0000;
}
.ti-vin .ti-vin-form__input {
  display: block;
  width: 338px;
  padding: 10px 5px;
  font-size: 16px !important;
  margin: 0 auto;
  border: 1px solid #aeaeae;
  box-sizing: border-box;
  border-radius: 3px;
}
@media screen and (min-width: 318px) and (max-width: 400px) {
  .ti-vin .ti-vin-form__input {
    width: 270px;
  }
}
@media screen and (min-width: 500px) {
  .ti-vin .ti-vin-form__input {
    width: 397px;
  }
}
.ti-vin .ti-vin-form__input-error {
  border: 2px solid #dd0000;
}
.ti-vin .ti-vin-form__errors {
  height: 2.2vh;
  margin: 3px 0 8px 0;
  font-size: 12px;
  color: #707070;
  margin-left: 22px;
}
.ti-vin .ti-vin-form__btn-wrapper {
  background: #0020ff;
  border-radius: 6px;
  width: 254px;
  margin: 0 auto;
  margin-top: 30px;
}
.ti-vin .ti-vin-form__btn-wrapper__btn {
  margin: 0 auto;
  background: #0020ff;
  border-radius: 6px;
  font-family: Gibson, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1.2px;
  color: #fff;
  text-transform: uppercase;
}
.ti-vin .ti-vin-form__btn-wrapper__btn:disabled {
  cursor: not-allowed;
}
.ti-vin .ti-vin-form__btn-wrapper__btn:hover {
  background: #0020ff;
}
.vim-form__label {
  color: #000;
}
.vim-form__input {
  width: 100%;
}
.vim-form__errors {
  margin-top: 5px;
  font-size: 12px;
  color: #707070;
}
.ti-media-thumbnail__item {
  position: relative;
  margin-bottom: 5px;
}
@media screen and (min-width: 350px) and (max-width: 568px) {
  .ti-media-thumbnail__item {
    margin-left: 3px;
  }
}
@media screen and (min-width: 315px) and (max-width: 349px) {
  .ti-media-thumbnail__item {
    margin-left: 3px;
  }
}
.ti-media-thumbnail__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: 136px;
  height: 101px;
  border: 1px solid #b6b6b6;
  border-radius: 3px;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 3px;
}
.ti-media-thumbnail__image-container:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.ti-media-thumbnail__image {
  max-width: 100%;
  max-height: 100%;
}
.ti-media-thumbnail__image--loading {
  opacity: 0.5;
}
.ti-media-thumbnail__image:hover {
  box-shadow: none;
}
.ti-media-thumbnail__icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
}
.ti-media-thumbnail__remove {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: -7px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: #000;
  border-radius: 50%;
  color: #fff;
}
.ti-media-thumbnail__remove:hover {
  background: #404040;
}
.ti-media-thumbnail__label {
  font-size: 14px;
}
.ti-media-thumbnail__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.8);
  color: #7fbe00;
}
.orientation-overlay {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #707070;
  overflow-y: hidden;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}
@media screen and (orientation: landscape) {
  .orientation-overlay {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }
}
.orientation-overlay__title {
  padding: 0 25px;
}
.vs-modal {
  position: absolute;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
}
.vs-modal__header {
  padding: 10px 25px;
  font-size: 18px;
}
.vs-modal__icon {
  margin-right: 5px;
  font-size: 18px;
}
.vs-modal__scanner {
  position: relative;
  width: 100%;
  height: 50%;
  background: #707070;
}
.vs-modal__scanner video {
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.vs-modal__container {
  display: flex;
  padding: 25px;
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: center;
}
.vs-modal__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
}
.vs-modal__desc {
  margin: 10px 0 30px 0;
  font-size: 14px;
}
.vs-modal__link {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  color: #7fbe00;
  text-align: center;
  text-decoration: underline;
}
.vs-modal-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 25px;
  background: #c0c0c0;
  text-align: center;
}
.vs-modal-overlay--transparent {
  background: transparent;
}
.vs-modal-overlay__title {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
}
.vs-modal-overlay__bar {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 0, 0, 0.5);
}
.drawingBuffer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.tiw-v2__textarea {
  line-height: 24px;
  font-family: Gibson, serif;
  font-size: 14px;
  width: 484px;
  height: 170px;
  border: 1px solid #b0b0b0;
  border-radius: 3px;
  resize: none;
  padding: 8px 16px 16px 16px;
}
.ti-v2-modal-container {
  cursor: auto !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 20000;
  justify-content: center;
  align-items: center;
}
.ti-v2-modal {
  background: #FFF;
  border-radius: 10px;
  animation-duration: 0.5s;
  overflow: hidden;
  cursor: auto !important;
}
.ti-v2-modal .btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 1.2px;
  border-radius: 6px;
  padding: 9px 23px;
}
.ti-v2-modal .btn-cancel {
  width: 172px;
}
.ti-v2-modal .btn--primary-button {
  width: 289px;
}
.ti-v2-modal__info-wrapper {
  width: 489px;
  line-height: 20px;
}
.ti-v2-modal__info-wrapper > ul {
  padding-left: 0;
  margin-bottom: 18px;
}
.ti-v2-modal__message-header {
  margin-bottom: 22px;
}
.ti-v2-modal__bullet {
  list-style-position: inside;
}
.ti-v2-modal__bullet > strong {
  position: relative;
  left: -5px;
}
.ti-v2-modal__bullet:first-of-type {
  margin-bottom: 20px;
}
.ti-v2-modal__bullet-span,
.ti-v2-modal__message-header {
  color: #6b6b6b;
}
.ti-v2-modal__btn-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.ti-v2-modal__title {
  font-size: 18px;
  font-weight: 600;
  margin: 20px;
}
.ti-v2-modal__title--left-aligned {
  font-size: 18px;
  font-weight: 600;
  margin-top: 11px;
  margin-bottom: 11px;
  text-align: left;
}
.ti-v2-modal__subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #F95341;
}
.ti-v2-modal__wrapper {
  position: relative;
}
.ti-v2-modal--large {
  width: 540px;
}
.ti-v2-modal__footer {
  overflow: auto;
  position: relative;
  padding: 0.3em 2em 1.5em;
  border-radius: 0 0 10px 10px;
}
.ti-v2-modal__footer--right {
  text-align: right;
}
.ti-v2-modal__footer--centered {
  text-align: center;
}
.ti-v2-modal--alert {
  text-align: center;
  font-size: 14px;
  color: #333;
}
.ti-v2-modal__alert {
  padding: 1em 2em;
}
.ti-v2-modal__alert-content {
  padding: 0 0 0.25em;
}
.ti-v2-modal__alert-content--left-aligned {
  text-align: left;
}
.pp {
  overflow: hidden;
  position: relative;
  width: 450px;
  height: 550px;
  background: transparent;
  border-radius: 5px;
}
.pp__close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 48px;
  color: #FFF;
}
.pp__close:hover {
  color: #82BC00;
}
.pp__body {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 450px;
  padding: 1em 1.5em;
  margin: 0 auto;
  background: #FFF;
}
.pp__loader {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.85);
  align-items: center;
  justify-content: center;
  animation-duration: 0.2s;
}
.pp__loader--disabled {
  z-index: -1;
}
.pp__loader-spinner {
  font-size: 28px;
}
.pp__group {
  overflow: hidden;
}
.pp__group--top {
  height: 200px;
  border-bottom: 2px solid #707070;
  text-align: center;
}
.pp__avatar {
  width: 90px;
  height: 90px;
  margin: 0.5em 0;
  background: #F5F5F5;
  border-radius: 50%;
}
.pp__name {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}
.pp__organization {
  color: #333;
}
.pp__details {
  list-style: none;
  height: 225px;
  margin: 0;
  padding: 0;
}
.pp-detail {
  overflow: hidden;
  height: 71.66666667px;
  border-bottom: 1px solid #DBDBDB;
  font-size: 14px;
  color: #333;
}
.pp-detail:last-child {
  border: none;
}
.pp-detail__group {
  overflow: hidden;
  display: inline-block;
  height: 100%;
}
.pp-detail__group--icon {
  width: 15%;
  margin: 0 10px;
}
.pp-detail__icon {
  line-height: 70px;
  font-size: 24px;
  color: #82BC00;
}
.pp-detail__label {
  line-height: 70px;
}
.pp-detail__label--address {
  margin-top: 15px;
  line-height: 18px;
}
.public-profile {
  overflow: hidden;
  padding: 30px 25px;
}
.pp-group {
  overflow: hidden;
}
.pp-avatar {
  width: 10%;
  height: 125px;
}
.pp-avatar__avatar {
  width: 125px;
  height: 125px;
  background: #F5F5F5;
  border-radius: 50%;
}
.pp-avatar__avatar--user {
  width: 95px;
  height: 95px;
}
.pp-section {
  margin-bottom: 20px;
}
.pp-section__title {
  padding: 0 0 7px 20px;
  border-bottom: 2px solid #707070;
  font-size: 16px;
  font-weight: 600;
}
.pp-details {
  width: 90%;
  padding-left: 3%;
}
.pp-details__anonymized {
  padding: 7px 0;
  font-size: 14px;
}
.pp-details-header {
  display: flex;
  align-items: center;
  position: relative;
  height: 125px;
}
.pp-details-header--user {
  height: 95px;
}
.pp-details-header__title {
  font-size: 18px;
  font-weight: 600;
}
.pp-contact__details {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pp-contact__detail {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #DBDBDB;
}
.pp-contact__icon {
  width: 20px;
  font-size: 22px;
  color: #82BC00;
  text-align: center;
}
.pp-contact__content {
  padding-left: 40px;
}
.pp-contact__address {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-size: 14px;
}
.pp-employees {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pp-employee {
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 2px solid #DBDBDB;
  color: #707070;
}
.pp-employee__summary {
  float: left;
}
.pp-employee__ratings {
  margin-top: 5px;
  float: right;
}
.pp-employee__rating {
  display: inline-block;
  margin: 0 0.5em;
}
.pp-employee__name {
  font-weight: 600;
  color: #000;
}
.pp-employee__avatar {
  width: 30px;
  height: 30px;
  margin: 0 15px;
  background: #F5F5F5;
  border-radius: 50%;
  vertical-align: middle;
}
.pp-employee__avatar--icon {
  margin: 0;
}
/*
  ========================================
  Search Container
  ========================================
*/
.search-container {
  max-width: 1144px;
  margin: 66px auto 0;
  position: relative;
}
.search-container__header {
  margin: 10px 0;
}
.search-container__button {
  cursor: pointer;
  border-radius: 19px;
  width: 217px;
  height: 38px;
  background-color: #dbdbdb;
  border: solid 2px #333;
  color: #333;
  white-space: nowrap;
}
.search-container__text1 {
  color: #000;
  font-size: 36px;
}
.search-container__text2 {
  font-size: 24px;
  color: #333;
}
.search-container__text3 {
  font-style: italic;
  font-size: 36px;
  color: #000;
}
.search-loader {
  background-position: center center;
}
.loading-more-trades {
  text-align: center;
  margin: 20px 0;
  color: #82BC00;
  font-size: 30px;
}
.trade-pagination {
  background-color: #F5F5F5;
  padding: 10px 20px;
  text-align: right;
  height: 60px;
}
/*
  ========================================
  Search List Element
  ========================================
*/
.search-list-element {
  position: relative;
  margin-bottom: 12px;
  width: 1148px;
  height: 105px;
  border-radius: 3px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  background-color: #FFF;
  padding-right: 20px;
}
.search-list-element .search-thumbnail-wrapper {
  position: relative;
  float: left;
  width: 120px;
  height: 105px;
  background: rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 3px 0 0 3px;
}
.search-list-element .search-list-wrapper {
  margin-left: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.search-list-element .search-list-wrapper__details {
  padding: 12px;
  color: #333;
}
.search-list-element .search-list-wrapper__details .make-model {
  color: #333;
}
.search-list-element .search-list-wrapper__details .year {
  border: solid 1.5px #333;
  border-radius: 5px;
  width: 63px;
  height: 26px;
  font-size: 20.5px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  line-height: normal;
}
.search-list-element .search-list-wrapper__details .make {
  font-size: 18px;
  font-weight: 600;
}
.search-list-element .search-list-wrapper__details .trim-vin {
  color: #707070;
  font-size: 14px;
  padding: 6px 0 6px 0;
}
.search-list-element .search-list-wrapper__details .distance {
  font-size: 16px;
}
.search-list-element .search-list-wrapper .trade-state {
  color: #333;
  font-weight: 600;
}
.search-list-empty {
  position: relative;
  box-sizing: border-box;
  padding: 24px;
  width: 1148px;
  height: 105px;
  border-radius: 3px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  background-color: #FFF;
  display: flex;
  align-items: center;
}
.search-list-empty__icon-wrapper {
  position: relative;
  flex: 1;
  color: #a9a9a9;
  font-size: 16px;
}
.search-list-empty__close-icon:before {
  position: absolute;
  top: 14px;
  left: 13px;
}
.search-list-empty__text {
  flex: 9;
}
.search-list-empty__text__first {
  font-size: 36px;
  margin-top: 24px;
  margin-bottom: 0;
}
.search-list-empty__text__second {
  font-size: 16px;
  margin-top: 13px;
}
/*
  ========================================
  Search bar
  ========================================
*/
.search-wrapper {
  display: flex;
  justify-content: space-evenly;
  height: 60px;
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 60px;
  z-index: 600;
  width: 100%;
}
.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 13px 0 24px;
  box-sizing: border-box;
  background-color: #FFF;
  position: absolute;
  top: 60px;
  box-shadow: 1px 1px 7px 6px rgba(0, 0, 0, 0.1);
  z-index: 600;
}
.search-bar__icon {
  margin-top: 8px;
}
.search-bar__icon:before {
  font-size: 28px;
}
.search-bar__cross {
  height: 20px;
  margin-top: 10px;
  transition: opacity 5s ease-in-out;
}
.search-bar__help {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 60px;
  padding: 10px 38%;
  box-sizing: border-box;
  position: fixed;
  top: 120px;
  z-index: 500;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
  opacity: 0;
}
.search-bar__help-text {
  background: #FFF;
  min-width: 570px;
  height: 60px;
  display: flex;
  padding: 10px;
  box-shadow: 1px 1px 7px 6px rgba(0, 0, 0, 0.1);
  align-items: center;
  width: 100%;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.13;
  color: #000;
  z-index: 700;
}
.search-bar__close {
  border-radius: 14px;
  border: solid 2px #000;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 15px;
  margin-top: 10px;
  background-color: #FFF;
}
.search-bar--fade-in-animation {
  opacity: 0;
  animation-name: search-fade--in-animation;
  animation-duration: 0.3s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}
.search-bar--in-animation {
  animation-name: search-bar--in-animation;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.search-bar--help-text-in-animation {
  animation-name: search-bar--help-text-in-animation;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
.search-bar--out-animation {
  animation-name: search-bar--out-animation;
  animation-duration: 0.5s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}
.search-bar--help-text-out-animation {
  animation-name: search-bar--help-text-out-animation;
  animation-duration: 0.5s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}
.search-bar--expanded {
  top: 0;
  height: 60px;
  width: 100%;
  left: 0;
}
.search-form {
  min-width: 570px;
  max-width: 570px;
  height: 40px;
  margin: 0 5px;
  flex: 1;
  padding: 0 8px 5px;
}
.search-form__input {
  -webkit-appearance: none;
  border: none;
  border-bottom: 2px solid #949494;
  font-size: 28px;
  font-family: Gibson;
  padding: 5px 3px;
  width: 100%;
  font-weight: 300;
}
.search-form__input[type='search']::-webkit-search-cancel-button {
  display: none;
}
.search-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
.search-divider__text {
  font-size: 24px;
  color: #707070;
}
.search-divider::before,
.search-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #707070;
}
.search-divider::before {
  margin-right: 17px;
}
.search-divider::after {
  margin-left: 17px;
}
.similar-text {
  margin-top: 60px;
}
@keyframes search-bar--in-animation {
  0% {
    top: 15px;
    height: 0;
    width: 100px;
    left: 78%;
  }
  100% {
    top: 0;
    height: 60px;
    width: 100%;
    left: 0;
  }
}
@keyframes search-bar--help-text-in-animation {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    height: 60px;
    top: 120px;
    opacity: 1;
  }
}
@keyframes search-bar--out-animation {
  0% {
    top: 0;
    height: 60px;
    width: 100%;
    left: 0;
  }
  100% {
    top: -60px;
  }
}
@keyframes search-bar--help-text-out-animation {
  0% {
    height: 60px;
    top: 120px;
    opacity: 1;
  }
  100% {
    top: -10px;
  }
}
@keyframes search-fade--in-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#ecp-wrapper {
  background-size: contain;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media (max-device-width: 670px) {
  #ecp-wrapper {
    align-items: initial;
    justify-content: initial;
    background-color: #fff;
  }
}
@media (max-device-width: 670px) {
  #ecp-wrapper .ecp-container .header {
    display: none;
  }
}
#ecp-wrapper .ecp-container .ecp-component {
  margin: 100px;
}
@media (max-device-width: 670px) {
  #ecp-wrapper .ecp-container .ecp-component {
    margin: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
}
@media (max-device-width: 670px) {
  #ecp-wrapper .ecp-container .footer {
    display: none;
  }
}
.accounting-sunset-banner {
  background: #272d33;
  border-radius: 20px;
  margin-bottom: 11px;
  color: #fff;
  display: flex;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  width: 550px;
}
.accounting-sunset-banner__container {
  padding: 24px;
  justify-content: space-between;
  letter-spacing: -0.15px;
}
.accounting-sunset-banner__heading {
  font-size: 20px;
  font-weight: 600;
}
.accounting-sunset-banner__details {
  word-wrap: normal;
  font-size: 12px;
  font-weight: 400;
  max-width: 722px;
  margin: 3px 0 0 0;
}
.accounting-sunset-banner__button {
  padding: 11px 21px 10px 10px;
  margin-top: 12px;
  border: 2px solid #272d33;
  box-shadow: 0px 1px 0px rgba(22, 29, 37, 0.05);
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  text-align: center;
}

/**
 * TR5 Visual migrations
 * The following imports should add or overwrite styling in order to include TR5 Visual into TR4.
 *
 * To enable the feature, ensure to activate `tr5Visual` property in the environment configuration fil (eg: config/traderev/dev.json).
 * 
 * Example: 
 *  @import './imports/create/<any_tr5_custom_file>'
 */
/**
 * App colours
 */
.color-primary {
  color: #82BC00 !important;
}
.color-success {
  color: #82BC00 !important;
}
.color-warning {
  color: #FABC41 !important;
}
.color-danger {
  color: #F95341 !important;
}
.color-white {
  color: #FFF !important;
}
.color-black {
  color: #000 !important;
}
.color-text {
  color: #333 !important;
}
.color-text-muted {
  color: #707070 !important;
}
/**
 * App colours
 */
.color-danger {
  color: #dd0000;
}
.color-primary {
  color: #0020ff !important;
}
/* 2ndry ELEMENT COLORS */
.btn,
a.btn {
  background-color: #0020ff;
  border-radius: 3px;
  color: #fff;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  min-height: 36px;
  font-weight: 600;
  font-size: 18px;
  height: -moz-fit-content;
  height: fit-content;
  line-height: normal;
  padding: 9px 25px;
}
.btn:disabled,
.btn:disabled:hover {
  background-color: #DBDBDB;
  color: #fff;
}
.btn--main {
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}
.btn--main:hover,
.btn:hover {
  background-color: #001d98;
  color: #fff;
}
.btn.btn--secondary.btn--cancel {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}
/**
 * Forms
 */
input[type='text']:focus {
  box-shadow: rgb(0 32 8.5%) 0px 1px 6px;
  border: 1px solid #0020ff;
}
select:not(nw-purchases select),
textarea {
  border: 1px solid #dbdbdb;
}
select:not(nw-purchases select):focus,
textarea:focus {
  border: 1px solid #0020ff;
}
/**
 * Headers
 */
h2 {
  text-transform: uppercase;
}
.page-heading {
  text-transform: uppercase;
}
/**
 * Links
 */
a {
  color: #0020ff;
  text-decoration: underline;
}
/**
 * BEM
 * Modals refactored to use BEM styling.
 */
.modal {
  border-radius: 3px;
  font-size: 16px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 12px 1px !important;
  text-align: left;
}
.modal__footer {
  background: none;
}
.modal_alert-title {
  font-size: 24px;
  font-weight: 400;
}
.modal-confirm__transport-quote-not-available {
  width: 665px;
}
.modal--medium {
  width: 530px;
}
body {
  background: #f9f9f9;
  color: #000;
  font-size: 16px;
}
.loader {
  background: #f9f9f9;
}
.main-container {
  background: none;
}
.container {
  overflow: visible;
  top: -5px;
}
.container--non-transparent {
  background: transparent;
}
.container--has-sidebar {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  border-radius: 3px;
}
.tabs__container {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  border-radius: 3px;
}
.tab--selected {
  border-bottom: 3px solid #000;
  color: #000;
}
.tabs {
  border-bottom: 2px solid #e7e7e7;
}
.tab {
  text-transform: uppercase;
}
.nav__title {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}
.nav__item {
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
}
.nav__item:hover {
  color: #0020ff;
}
.nav__item--active {
  background: #F5F5F5;
  color: #0020ff;
  font-weight: 600;
}
.subnav__item {
  color: #0020ff;
  text-decoration: underline;
}
.subnav__item--active {
  color: #82BC00;
}
.subnav__item:hover {
  color: #82BC00;
}
.footer__copyright {
  background: #f9f9f9;
}
.column-sidebar {
  float: left;
  width: 280px;
  padding: 30px 0;
  background-color: #fff;
}
.column-main {
  background-color: #fff;
}
.column-main--trades {
  min-height: unset;
}
.marketplace-column-sidebar {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  padding: 30px 0px;
}
.marketplace-column-sidebar .subnav {
  background-color: #fff;
  padding-left: unset !important;
}
.marketplace-column-sidebar .subnav__item {
  color: #000;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  padding: 10px 30px;
}
.marketplace-column-sidebar .subnav__item:hover,
.marketplace-column-sidebar .subnav__item--active {
  color: #0020ff;
  text-decoration: none;
}
.marketplace-column-sidebar .subnav__item--active {
  background-color: #F5F5F5;
  font-weight: 600;
}
.create-steps {
  overflow: visible;
}
.create-steps .main-container {
  border-radius: 3px;
}
.create-steps .main-container .padded {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  border-radius: 3px;
}
.create-steps .main-container .padded textarea {
  border: 1px solid #DBDBDB;
  border-radius: 0px;
  background-color: #F5F5F5;
}
.create-steps form .errors {
  font-size: 16px;
  font-style: normal;
  color: #dd0000;
}
.create-steps #adesa-load-import form .form-control input.ng-invalid.ng-dirty,
.create-steps #vin-step form .form-control input.ng-invalid.ng-dirty,
.create-steps #vrm-step form .form-control input.ng-invalid.ng-dirty {
  border: 2px solid #dd0000;
}
.create-steps #media-step .drop-box {
  border: 2px solid #707070;
}
.create-steps #media-step .drop-box__label strong {
  color: #0020ff;
}
.create-steps #media-step .drop-box:hover {
  border: 2px solid #0020ff;
}
.create-steps #media-step .photos-list ul li .content-wrapper .bubbles .bubble.damage,
.create-steps #media-step .video-list ul li .content-wrapper .bubbles .bubble.damage,
.create-steps #media-step .photos-list ul li .content-wrapper .bubbles .bubble.disabled,
.create-steps #media-step .video-list ul li .content-wrapper .bubbles .bubble.disabled {
  border-width: 2px;
  font-size: 16px;
}
.create-steps .side-container nav {
  background: #fff;
}
.create-steps .side-container nav .asis .container {
  justify-content: space-between;
  align-items: center;
}
.create-steps .side-container nav .asis .container .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
  right: unset !important;
}
.create-steps .side-container nav ul li,
.create-steps .side-container nav ul .active {
  color: #000;
}
.create-steps .side-container nav ul li .icon,
.create-steps .side-container nav ul li span.path1,
.create-steps .side-container nav ul li span.path2 {
  font-size: 24px;
}
.create-steps form.tr-form ul li {
  color: #000;
  font-size: 16px;
  padding: 18px 0;
}
.create-steps form.tr-form ul li .pull-right input,
.create-steps form.tr-form ul li .pull-right select {
  font-weight: 400;
}
.create-steps form.tr-form select {
  float: right;
  direction: ltr;
  background: #fff;
  padding: 6px;
  border-radius: 3px;
  border: 1px solid #dbdbdb;
  font-size: 16px;
}
.create-steps form.tr-form select.disabled-select {
  border: none;
}
.create-steps .divider {
  background: none;
}
.create-steps #details-step .displacement {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.upload-label {
  color: #000;
  font-size: 16px;
}
#vin-step label {
  color: #000;
  font-size: 16px;
}
.slider {
  top: 1px;
}
.slider:before {
  height: 30px;
  width: 30px;
  right: 20px;
  background-size: 31px !important;
}
.drop-box__label {
  color: #0020ff;
}
.bubble {
  border-width: 2px;
  font-size: 16px;
  border-color: #333;
  color: #000;
}
.bubble.disabled {
  color: #c8c8c8 !important;
  border-color: #dbdbdb !important;
}
.bubble:hover {
  background: #0020ff;
  border: 2px solid #0020ff;
}
.bubble--active {
  background: #333;
  color: #fff;
}
.bubble.active {
  background: #333;
  border-color: #333;
  color: #fff;
  font-weight: 400;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
}
.bubble--negative.bubble--active {
  border-color: #f95341;
}
.bubble--negative.bubble--active:hover {
  border-color: #0020ff;
}
.bubble .sub-title {
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  margin-top: 50px;
}
.detail__label--required {
  color: #dd0000;
  font-weight: 600;
}
.preset {
  height: 200px;
  padding: 10px 0px 0px 0px;
  margin-bottom: 54px;
}
.preset__item {
  float: right;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  border-radius: 6px;
  padding: 12px;
  height: 140px;
  margin-right: 15px;
}
.preset__name {
  font-size: 16px;
  text-transform: uppercase;
}
.preset__description {
  font-size: 16px;
}
.preset__item--active {
  border: 2px solid #0020ff;
  box-shadow: rgb(0 32 8.5%) 0px 1px 12px;
}
.preset__name--active {
  color: #0020ff;
}
.notification-page-heading {
  text-transform: uppercase;
  border-bottom: 2px solid #707070;
}
.communication-preference {
  margin-bottom: 54px;
}
.notification-types-heading {
  font-size: 24px;
  font-weight: 400;
}
.notification-types-seller__label,
.notification-types-buyer__label {
  font-size: 18px;
  text-decoration: none;
  list-style: none;
}
.notification-types-buyer,
.notification-types-seller {
  overflow: visible;
}
.notification-types-buyer__item {
  list-style: none;
  padding: 15px 0px;
  border-collapse: collapse;
  border-bottom: 1px solid #DBDBDB;
}
.notification-types-heading__item {
  font-weight: 400;
}
.notification-selector__notification--inactive {
  text-decoration: none;
}
.notification-selector__notification {
  font-size: 16px;
}
.notification-selector__checkbox {
  background-color: #fff;
  color: #fff;
  border-radius: 3px;
  margin: 0px 12px 0px 0px;
  height: 24px;
  width: 24px;
}
.notification-selector--checked .notification-selector__checkedbox {
  background-color: #fff;
  border-radius: 3px;
  border-color: #fff;
  margin: 0px 12px 0px 0px;
  height: 24px;
  width: 24px;
  color: #0020ff;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
}
.notification-selector .notification-selector__checkbox {
  color: #0020ff;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
}
.custom-communication-preference__icon--active {
  color: #0020ff;
}
.overview-filtering {
  width: unset;
  margin-right: 21px;
}
.bid-form--list-view .bid-form__input {
  border: 1px solid #DBDBDB;
  width: 170px !important;
  transition: none !important;
  border-right: 0px;
  right: -24px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.bid-form__bid-button {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-transform: uppercase;
  background-color: #0020ff;
  margin-right: 12px;
  border-radius: 3px;
}
.bid-form__bid-button--disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.bid-form--list-view .bid-form__bid-button {
  vertical-align: middle;
  font-size: 13px;
  line-height: 30px;
  padding: 0 1.25em;
  right: -9px;
}
.bid-form--details-view .bid-form__bid-button {
  width: 195px;
  padding: 0;
  font-size: 20px;
  line-height: 45px;
}
.bid-form__bid-button--full-width {
  width: 100% !important;
}
.trade-banner {
  border-top: 0px;
  height: 80px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
}
.trade-banner__home {
  text-decoration: none;
}
.trade-banner__info {
  padding: 10px 20px;
}
.trade-details {
  background: #f9f9f9;
}
.trade-details__headline {
  background: #fff;
  margin-bottom: 18px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
}
.trade-details__headline-dealer-thumbnail {
  display: none;
}
.trade-details__headline-dealer-details {
  margin-left: 0px;
}
.trade-details .details-section {
  padding: 0;
  background: none;
}
.trade-details .details-section__title-v2 {
  border-bottom: none;
  padding: 0px 20px;
  font-size: 24px;
  font-weight: 400;
  text-transform: capitalize;
}
.trade-details .details-section__list-element-v2 {
  border-bottom: none;
  font-size: 16px;
}
.trade-details__micro-icons li {
  font-size: 18px;
  text-transform: lowercase;
}
.trade-details__expected {
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
}
.trade-details-main-action-button,
.btn--launch-to-upcoming {
  height: unset;
}
.trade-details-main-action-button--adesa-in-lane-text,
.btn--launch-to-upcoming--adesa-in-lane-text {
  text-transform: uppercase;
}
.details-section-v2 {
  font-size: 16px !important;
  color: #000 !important;
  background: #fff !important;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  border-radius: 3px;
  margin-bottom: 18px;
  padding: 12px 12px 24px 12px !important;
}
.media-wrapper {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
}
.side-container {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  border-radius: 3px;
}
.side-container__title {
  color: #000;
}
.trade-action-button-wrapper {
  background-color: #fff;
}
.quick-actions {
  top: -10px;
}
.quick-actions__toggle {
  display: none;
}
.quick-actions__list {
  display: block;
}
.quick-actions-active {
  background: none;
}
.details-view .quick-actions__list-element {
  color: #0020ff;
}
.details-view .quick-actions__list-element-icon:before {
  font-size: 32px;
}
li.quick-actions__list-element {
  color: #000 !important;
}
li.quick-actions__list-element:hover {
  color: #0020ff !important;
}
li.quick-actions__list-element .quick-actions__list-element-icon {
  color: #000 !important;
}
li.quick-actions__list-element .quick-actions__list-element-icon:hover {
  color: #0020ff !important;
}
.btn-vhr-v2 {
  padding-top: 9px;
}
.details-section__content-v2--notes {
  background: #F5F5F5;
  margin: 0px 20px 0px 20px;
  padding: 20px;
}
.special-text-details:not(.special-text-details--expanded)::after,
.special-text-options:not(.special-text-details--expanded)::after {
  background: linear-gradient(rgba(255, 255, 255, 0), 80%, #ffffff);
}
.expand-details-link {
  color: #0020ff;
}
a.qa-badge,
a.qa-badge__icon,
a.qa-badge__label {
  text-decoration: none;
  color: #000;
}
a.qa-badge:hover,
a.qa-badge__icon:hover,
a.qa-badge__label:hover {
  color: #0020ff;
}
.trade-header-details {
  background: #fff;
}
.trade-header-details__section--arrow {
  padding: 8px 0px 0px 10px;
}
.trade-list-element .is-landed-tag {
  width: 240px;
}
.filter-wrapper {
  background: #fff;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
}
.filter-wrapper a {
  color: #000;
  text-decoration: none;
}
.infoband {
  top: -40px;
  left: 51px;
  width: calc(100% - 50px);
  padding: 0 12px 0 20px;
}
.infoband__information {
  margin-left: 0px;
  width: 74%;
}
.infoband .quick-actions {
  right: 50px;
}
.infoband .quick-actions__list-element {
  color: #000;
}
.infoband .quick-actions__list-element-icon {
  color: #000;
}
.infoband .quick-actions__list {
  top: 10px;
  position: relative;
  right: 20px;
}
.floor-price__trade-list-active {
  bottom: 14px;
  top: unset;
}
.quick-actions__list-element {
  position: relative;
  display: inline-block;
  margin: 0 6px;
  font-size: 14px;
  color: #F5F5F5;
}
.quick-actions__list-element:hover {
  color: #0020ff;
}
.quick-actions__list-element:hover .quick-actions__list-element-icon {
  color: #0020ff;
}
.quick-actions--active {
  background: transparent !important;
  color: #000;
}
.quick-actions-dropdown {
  position: relative;
}
.quick-actions-dropdown__wrapper {
  background: unset;
  border-radius: 3px;
  width: 27px;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 3px 0px 3px 6px;
}
.quick-actions-dropdown__wrapper--ellipsize {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 35px;
}
.quick-actions-dropdown__wrapper--floating {
  padding: 12px 24px 12px 8px;
  position: absolute;
  display: block;
  width: 250px;
  height: -moz-fit-content;
  height: fit-content;
  bottom: -5px;
  right: -4px;
  z-index: 10;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  background: #fff;
}
.quick-actions-dropdown__wrapper--single {
  padding-right: 0px;
  padding-left: 3px;
}
.quick-actions-dropdown__arrow {
  z-index: 11;
  position: absolute;
  font-size: 18px;
  box-sizing: border-box;
  border: 2px solid transparent;
  cursor: pointer;
  height: 27px;
  width: 27px;
  padding: 3px;
  margin: 4px 12px;
}
.quick-actions-dropdown__arrow--up {
  background: #F5F5F5;
  border: 2px solid #e7e7e7;
  border-radius: 3px;
}
.quick-actions-dropdown__parent {
  margin: 0 0 24px;
}
.quick-actions-dropdown__child-label {
  padding-left: 11px;
}
.quick-actions-dropdown__select-all {
  padding-top: 20px;
}
.quick-actions-dropdown__list {
  height: -moz-fit-content;
  height: fit-content;
  max-height: 200px;
  overflow-y: auto;
}
.quick-actions-dropdown__form-check {
  margin: 0 6px;
  color: #0020ff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  padding: 6px;
  border-radius: 3px;
}
.quick-actions-dropdown__form-check:hover {
  background-color: #F5F5F5;
}
.quick-actions-dropdown__actions {
  margin: 10px 0;
  border-top: 1px solid #c9c9c9;
  padding: 10px 0 0;
  text-align: right;
}
.quick-actions-dropdown__loader {
  position: relative;
  display: flex;
  color: #000;
}
.calendar-date__month {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
.calendar-day--selected,
.calendar-day:hover {
  background: #0020ff;
}
.eld__toggle {
  align-items: center;
  justify-content: flex-start;
  margin: 0px;
  padding: 0em 2em 1em;
}
.eld__toggle--label {
  margin-right: 15px;
}
.eld__wrapper {
  margin: 0em 2em 30px;
}
.floor-price-suggestion__body {
  width: unset;
  padding: 4px 24px;
  margin-left: 0px;
}
.floor-price-suggestion .blurb__icon {
  top: 3px;
  left: -37px;
}
.guided-floor-price-modal .modal__body {
  padding: 0px 6px !important;
}
.guided-floor-price .currency-input__container {
  align-items: flex-start !important;
}
.trade-micro-icon {
  padding: 2px 4px;
  margin: 0 2px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.switch {
  width: 45px;
  height: 30px;
}
.research__vin {
  margin: 40px 0;
  padding: 20px;
  border-radius: 6px;
  background-color: #f5f5f5;
}
.research__vin-input {
  width: 400px;
  height: 42px;
  font-size: 16px !important;
  flex: none;
}
.research__vin-label {
  flex: none;
  font-size: 16px;
  font-weight: 400;
  margin-right: 20px;
}
.research__vin-submit {
  margin-left: 330px;
  width: 200px;
  flex: none;
}
.research__form.research__details {
  margin: 40px 0;
  padding: 20px;
  border-radius: 6px;
  background-color: #f5f5f5;
}
.research__details-submit {
  margin-left: 100px;
  width: 200px;
  flex: none;
}
.research__title {
  text-transform: uppercase;
}
.research-results {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  border-radius: 3px;
}
.research__input-label,
.filter-form__label {
  font-size: 16px;
  font-weight: 400;
}
.rzslider .rz-bar.rz-selection {
  background: #0020ff;
}
.research-recent-searches {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  border-radius: 3px;
  margin-bottom: 3px;
}
.research-pro-results__item--colour,
.research-pro-results__item--vehicle-details,
.research-pro-results__item--engine,
.research-pro-results__item--odometer,
.research-pro-results__item--location,
.research-pro-results__item--date {
  color: #000;
}
.research-pro-results__result {
  background-color: #fff;
}
.research-pro-results__result:hover {
  background-color: #f5f5f5;
}
.research-pro-results__micro-icons-item {
  float: left;
  line-height: 1;
  padding: 0px 3px 0px 0px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
.research .search-criterion__value--highlighted {
  color: #000;
  font-size: 1.125rem;
}
.separator__label {
  background-color: #fff;
}
.nav-primary {
  height: 45px !important;
  background-color: #000;
}
.nav-primary__item {
  cursor: pointer;
  height: 45px;
  text-transform: uppercase;
  font-size: 14px;
  background: none;
  color: #FFF;
  padding: 8px 0px 3px 0px;
  margin: 0px 20px;
  letter-spacing: 2.29px;
}
.nav-primary__item.active {
  font-weight: 600;
  border-bottom: 4px solid #FFF;
}
.nav-secondary {
  top: 45px;
  background: #FFF;
  text-transform: uppercase;
  font-size: 14px;
  border-bottom: 1px solid #DBDBDB;
  letter-spacing: 0.82px;
}
.nav-secondary li:not(:last-child) {
  margin-right: 36px;
}
.nav-secondary li:last-child {
  margin-right: 16px;
}
.nav-secondary-search__items {
  margin: 0 0 0 50px;
  justify-content: unset;
}
.nav-secondary-search__items > li:last-child {
  order: -1;
}
.nav-icon__badge {
  background-color: red;
  font-size: 0px;
}
.nav-state-search {
  line-height: 45px;
}
.nav-panel .alert,
.todo__title,
.todo__trade-headline,
.todo__trade-trim,
.todo__time-ago {
  color: #000;
  text-decoration: none;
}
.todo {
  color: #000;
  text-decoration: none;
}
.nav-logo {
  position: relative;
  width: 160px;
  margin: 0 auto;
  height: 45px;
  margin-right: 40px;
  background: unset !important;
  background-color: #82bc00 !important;
}
.nav-logo__link {
  cursor: default;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background: url(images/traderev/nav-logo-tr5.svg) no-repeat center center;
}
.nav-logo .lg {
  float: left;
}
.nav-logo:after {
  content: '';
  position: absolute;
  top: 0px;
  right: -40px;
  border-width: 0px 25px 45px;
  border-right-style: solid;
  border-right-color: #000;
  border-left-style: solid;
  border-left-color: #82bc00;
  border-top-style: initial;
  border-top-color: initial;
  border-bottom-style: solid;
  border-bottom-color: #000;
  height: 0px;
  width: 0px;
}
.nav-dashboard__item {
  border-bottom: none;
}
.nav-dashboard__item-icon {
  color: #000;
}
.nav-dashboard__item-link {
  font-size: 14px;
  color: #000;
  padding: 6px 0px;
  margin-right: 6px;
}
.nav-dashboard__item-split > .nav-dashboard__item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-dashboard__item-split .nav-dashboard__item-label {
  line-height: unset;
}
.search-icon-wrapper > .search-icon {
  width: 166px;
  height: 32px;
  background: #F5F5F5;
  border-radius: 3px;
  font-family: Gibson, sans-serif;
  font-size: 1rem;
  box-shadow: none;
  padding-left: 24px;
  text-transform: uppercase;
}
.search-icon-wrapper:before {
  padding-left: 15px;
  transform: scale(0.7);
}
.user-summary__body {
  position: relative;
  top: -6px;
  font-size: 14px;
}
.user-summary__avatar {
  position: relative;
  top: -6px;
  width: 24px;
  height: 24px;
}
.dashboard-panel {
  width: 220px;
  right: 11px;
  top: 60px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 12px 1px;
  padding: 12px;
  max-height: 650px;
  height: unset;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.dashboard-panel::-webkit-scrollbar {
  display: none;
}
.dash-user {
  background-color: #FFF;
  padding: 0px 12px 12px 0px;
}
.dash-user__avatar {
  display: none;
}
.dash-user__body {
  color: #000;
  margin-left: 0;
  margin-left: 4px;
  white-space: normal;
  width: 100%;
}
.dash-user__company {
  display: none;
}
.dash-user__edit {
  color: #000;
  display: block;
  margin-left: unset;
}
.dash-user__name {
  border-bottom: 1px solid #DBDBDB;
}
@media screen and (min-width: 1024px) {
  .dash-user {
    background-color: #FFF;
  }
  .dash-user:hover .dash-user__edit {
    color: #0020ff;
  }
}
.nav-arrow--dashboard {
  border-color: transparent transparent #FFF transparent;
}
.notification-bar__item .nav-icon {
  display: block;
}
.logged-user-dealer-badge-container {
  border-radius: 3px;
}
.notification-bar__item {
  padding: 10px 2px 5px;
}
.notification-bar .nav-arrow {
  bottom: -15px;
}
.dashboard-widgets {
  padding: 10px 10px;
}
.user-card__full-name {
  text-transform: uppercase;
}
.user-card__picture {
  display: none;
}
.user-select-modal {
  box-shadow: rgb(0 0 0%) 0px 1px 36px;
}
.user-select-modal__header {
  background-color: #000;
}
.user-select-modal__search {
  margin-bottom: 20px;
}
.location-selector__label-fade {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #FFF 50%);
}
.location-selector__list-fade {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
/**
 * Sale Event Create Modal
 */
.sec {
  width: 550px;
}
.sec__wrapper {
  padding: 0.5em;
  text-align: left;
}
.sec__confirmbtn {
  border-color: transparent;
}
/**
 * Trade ACV Modal
 */
.trade-acv__wrapper {
  padding: 12px 24px;
  text-align: left;
}
.atse__wrapper {
  padding: 12px 21px;
  text-align: left;
}
.details-section__content-v2--notes {
  margin: 3% 2% 0 !important;
  background-color: #f9f9f9;
  color: #000;
}
.details-section__title__disclosure-number {
  margin: 6px;
}
.details-section__list-two-column--columns--space-between {
  display: flex;
  align-items: center;
  width: 100%;
}
.details-section__list-two-column--columns--space-between .details-section__icon--disclosure-v2--vehicle-history {
  padding-top: 6px;
  padding-left: 30px;
  width: 40%;
}
.details-section__list-two-column--columns--space-between .details-section__property {
  float: unset;
  width: 55%;
}
.details-section__list-two-column--columns--space-between .details-section__property .btn-vhr-v2 {
  float: none;
}
.trade-details__transport-details {
  display: flex;
  justify-content: flex-start;
}
.trade-details__transport-details--no-quote,
.trade-details__transport-details--content {
  margin: 20px 0px 15px;
}
.trade-details .details-section--no-background {
  background-color: #f9f9f9;
}
.trade-details .details-section__group--bos {
  padding: 0.6em 1em;
}
.trade-details .details-section__post-sale-section__white-bg {
  background-color: #fff;
}
.trade-details-ap .details-section__property--options-disclosure-v2 {
  line-height: 14px;
}
#trade-details .bid-list {
  background-color: #fff;
  border-top: 1px solid #DBDBDB;
}
#trade-details .current-bid__bid-amount {
  top: unset;
  bottom: -32px;
}
.dmp-checkout-box {
  width: 100%;
  border-top: 1px solid #DBDBDB;
  background-color: #fff;
}
.dmp-checkout-box .btn {
  height: unset;
  word-wrap: break-word;
  white-space: normal;
  line-height: 18px;
  padding: 8px;
}
.retail-share {
  width: 100%;
  border-top: 1px solid #DBDBDB;
  background-color: #fff;
}
.retail-share .btn {
  height: unset;
  word-wrap: break-word;
  white-space: normal;
  line-height: 18px;
  padding: 8px;
}
.retail-snippet {
  padding-top: 18px;
}
.retail-snippet__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 3px;
}
.retail-snippet__header > img {
  margin-right: 8px;
}
.descriptionContainer {
  color: #707070;
}
.descriptionContainer h1 {
  font-weight: 400 !important;
  font-size: 32px !important;
  color: #000;
  margin-bottom: 5px;
}
.trade-list-element {
  position: relative;
  z-index: 9;
  overflow: visible;
  height: 204px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  border-radius: 3px;
  margin-bottom: 18px !important;
}
.trade-list-element .thumbnail-wrapper {
  width: 240px;
  height: 204px;
}
.trade-list-element .thumbnail-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 240px;
  height: 204px;
}
.trade-list-element .details-wrapper .details h1 a {
  color: #333;
  text-decoration: none;
  font-size: 24px;
}
.trade-list-element .details-wrapper {
  height: auto;
}
.trade-list-element .is-landed-tag,
.trade-list-element .is-trade-in-tag {
  width: 240px;
}
.sorter__active {
  margin-bottom: 24px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  border-radius: 3px;
}
.sorter__actions {
  padding: 10px;
}
.details .trim {
  font-size: 16px !important;
  margin: 6px 0 !important;
}
.bulk-actions {
  width: 1194px;
}
/**
 * Trade Launch to DGN
 */
.trade-launch-to-dgn {
  width: 730px;
}
.trade-launch-to-dgn__wrapper {
  padding: 12px 30px;
  text-align: left;
}
/**
 * Trade Mark Arrived
 */
.trade-mark-arrived {
  width: 400px;
}
.trade-mark-arrived__wrapper {
  text-align: left;
}
.trade-mark-arrived .btn--submit {
  max-width: 215px;
}
.trade-mark-arrived .modal__footer {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
#trade-media-gallery .modal {
  box-shadow: none !important;
}
#trade-media-gallery .modal > .wrapper {
  background-color: #000;
  padding-top: 15px;
}
/**
 * Sale Event Trades Modal
 */
.sale-event {
  width: 890px;
}
.activity__title {
  font-size: 32px;
  font-weight: 400;
  border-bottom: none;
  margin: 0 0 16px 10px;
  padding: 0;
}
.activity__badge--alert {
  background: #dd0000;
  font-weight: 600;
}
.activity__omp-banner {
  height: 229px;
  background: #272d33;
  border-radius: 20px;
  margin-bottom: 11px;
  color: #fff;
  display: flex;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.activity__omp-banner--icon {
  border-radius: 20px;
}
.activity__omp-content {
  padding: 24px;
  justify-content: space-between;
  letter-spacing: -0.15px;
}
.activity__omp-content__text {
  width: 75%;
  float: left;
}
.activity__omp-content__icon {
  float: right;
  width: 25%;
}
.activity__omp-content__car {
  position: absolute;
  display: inline-block;
  z-index: 100;
  padding-top: 17px;
  right: 81px;
}
.activity__omp-content__circle {
  position: absolute;
  border-radius: 20px;
  top: 20px;
  right: 32px;
}
.activity__omp-icons {
  height: 26px;
  margin-bottom: 24px;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 10px;
  grid-auto-columns: min-content;
}
.activity__omp-icons__tr-logo {
  position: absolute;
  top: 35px;
  left: 195px;
}
.activity__omp-button {
  padding: 11px 21px 10px 10px;
  margin-top: 12px;
  border: 2px solid #272d33;
  box-shadow: 0px 1px 0px rgba(22, 29, 37, 0.05);
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  text-align: center;
}
.activity__omp-b-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.activity__omp-title {
  font-size: 14px;
}
.activity__omp-title-v2 {
  font-size: 14px;
  width: 83%;
}
.activity__omp-subtitle {
  position: relative;
}
.activity__omp-subtitle > button {
  position: absolute;
  top: -2px;
  left: 3px;
  border-radius: 2px;
  font-size: 8px;
  line-height: 12px;
  font-weight: 600;
  padding: 0 3px;
  color: #000000;
}
.trade-carousel {
  margin-top: 18px;
}
.trade-carousel__trades {
  background: #F5F5F5;
  padding: 18px;
  border-radius: 12px;
  box-shadow: inset -7px 0 9px -7px rgba(0, 0, 0, 0.4);
}
.trade-card {
  background: #F5F5F5;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  border-radius: 3px;
}
.widget {
  background: #fff;
  padding: 24px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  border-radius: 3px;
}
.widget__title {
  font-size: 24px;
  font-weight: 400;
  padding: 0;
  background: #fff;
}
.widget__subtitle {
  font-size: 16px;
  float: right;
  position: relative;
  top: 9px;
}
.widget__last-updated {
  float: none;
}
.widget .pull-right > form {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.widget .pull-right > form .btn {
  min-height: 36px;
  height: unset !important;
}
.ec {
  background-color: #F5F5F5;
  margin-top: 18px;
  padding: 18px;
  overflow: hidden;
  border-radius: 12px;
}
.ec-event {
  border-radius: 6px;
  border: 1px solid #DBDBDB;
}
.ec-event:hover {
  border: 1px solid #0020ff;
  box-shadow: rgb(0 32 6.375%) 0px 1px 12px;
}
.nw__title {
  padding-left: 0px;
}
.nw__title .color-danger {
  font-weight: 600;
}
.csu-vin-search {
  width: 100%;
}
.csu-vin-search > div.pull-right {
  width: unset !important;
}
.csu-vin-search__input-wrapper {
  width: 55%;
  padding-top: 4px;
}
.ctw__trade-state--no-hover {
  padding: 18px 0 0 0;
}
.aw__trade-state-link {
  color: #0020ff;
}
.aw__trade-state-link:hover {
  color: #0020ff;
}
.ecp__btn {
  line-height: 35px;
}
.ecp .pull-right {
  width: 100%;
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.ecp .pull-right .btn {
  min-height: 36px;
  height: unset !important;
}
.pohw {
  padding-top: 8px;
  padding-bottom: 7px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.pohw__summary {
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
}
.pohw__summary--amountOnHold {
  font-weight: 600;
}
.pohw__btn {
  padding: 9px 12px;
  border: 2px solid #000;
  box-sizing: border-box;
  border-radius: 3px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 13px;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  color: #000;
}
.pohw__btn:hover {
  color: #001d98;
  border-color: #001d98;
  background-color: #fff;
}
.providers {
  padding: 0;
}
.providers__credit--alert {
  color: #707070;
}
.provider__credit {
  width: 100%;
}
.provider__credit--container {
  display: inline-block;
  width: 60%;
}
.provider__name--panel {
  width: 40%;
}
.provider__logo--panel {
  max-width: 74px;
}
.post-sale-tr5 .column-full,
.post-sale-tr5 .checkout-summary {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
}
.reports {
  overflow: visible;
}
.reports__group {
  background: #fff;
  padding: 18px;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
}
.reports__title {
  text-transform: uppercase;
}
.reports-ranking__rank-label--title {
  color: #000;
}
.reports-ranking__rank-label--negative strong,
.reports-ranking__arrow-icon--down {
  color: #dd0000;
}
.reports-pricing__price,
.reports-pricing__pricing,
.reports-pricing__no-data,
.reports-trades__chart-label {
  color: #000;
}
.reports-pricing__line-graph-labels {
  color: #000;
  font-size: 16px;
}
.reports-ranking__rank-number {
  color: #000;
}
.hexagon {
  background-color: #fff;
}
.hexagon:before {
  border-bottom: 17.32px solid #fff;
}
.hexagon:after {
  border-top: 17.32px solid #fff;
}
.reports-distribution__link {
  -webkit-text-decoration: uppercase;
          text-decoration: uppercase;
  color: #000;
}
.reports-distribution__link:hover,
.reports-distribution__link--active {
  border-bottom: 2px solid #0020ff;
}
.reports-distribution__data strong {
  color: #000;
}
.reports-overview__legend-element--lost i,
.reports-distribution__legend-element--lost i {
  color: #dd0000;
}
.reports-trades__chart-circle {
  top: 49%;
  left: 49%;
  background: #fff;
}
.bl-badge--partial,
.bl-badge--in-progress,
.bl-badge--processing {
  border-color: #000;
  background: #fabc41;
  color: #000;
}
.bl-badge--unpaid,
.bl-badge--void,
.bl-badge--failed {
  border-color: #dd0000;
  color: #fff;
  background-color: #dd0000;
}
.settlement-table td {
  text-align: left;
  color: #000;
}
.overview-tab {
  text-transform: uppercase;
}
.overview-tab--active {
  border-bottom: 2px solid #0020ff;
  color: #000;
}
.public-profile {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px;
  padding: 30px 65px 30px 25px;
}
.pp-avatar__avatar {
  background: unset;
}
/**
 * Auction Settings
 */
.sub-header-divider {
  padding-bottom: 20px;
}
.auction-sub-header-text {
  font-size: 18px;
}
.auction-radio--settings {
  display: flex;
  margin-bottom: 13px;
}
.auction-radio--settings__input[type='radio'] {
  width: 18px;
  height: 20px;
  margin-left: 1px;
  margin-right: 9px;
}
.auction-radio--settings__label {
  font-weight: 400;
  color: #333;
  font-size: 17px;
}

