html,
body {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  height: 100%;
}
body:has(#main_header) {
  padding-top: 60px;
}
h1 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
h4 {
  color: #9b1a17;
  font-size: 1rem;
  font-weight: normal;
  text-transform: uppercase;
}
p {
  margin-bottom: 1rem;
}
a {
  color: #333333;
}
a:active,
a:focus,
a:hover {
  color: #333333;
  text-decoration: none;
}
a.with_icon {
  color: #333333;
}
a.with_icon svg {
  color: #9b1a17;
}
a.with_icon:active,
a.with_icon:focus,
a.with_icon:hover {
  color: #9b1a17;
}
i.null {
  color: #aaa;
}
#notification_bar {
  background-color: #9b1a17;
  color: white !important;
  height: 40px;
  text-align: center;
  padding: 10px;
  display: none;
}
#notification_bar a {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}
#notification_bar_footer {
  display: none;
}
body.notification_bar_open {
  padding-top: 100px;
}
body.notification_bar_open #notification_bar,
body.notification_bar_open #notification_bar_footer {
  display: block;
}
#close_notification_bar {
  float: right;
  font-weight: bold;
  cursor: pointer;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  width: 100%;
}
input[readonly] {
  background-color: #c9c9c9;
}
input[type="radio"] {
  margin-right: 1rem;
}
#dynamic_component > div {
  margin-top: 10px;
  margin-bottom: 10px;
}
#dynamic_component div:has(> .dynamic-form-group) {
  background-color: #aaa;
  border: 1px solid #888;
  padding: 10px;
}
#dynamic_component div:has(> .dynamic-form-group) > label {
  font-weight: 800;
}
#dynamic_component div > label + ul {
  list-style-type: none;
  padding: 0 0 0 0px;
  margin: -10px 0 0;
  font-size: small;
  color: red;
}
#dynamic_component div label {
  display: block;
}
.liveCollectionDeleteButton {
  align-content: end;
}
.help-text {
  color: #333333;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}
.button {
  background-color: #9b1a17;
  border-radius: 0;
  border: 1px solid #9b1a17;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: uppercase;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
}
.button:active,
.button:focus,
.button:hover {
  background-color: #333333;
  border-color: #333333;
  color: #FFF;
  text-decoration: none;
}
.button.secondary {
  background-color: #FFF;
  border: 1px solid #9b1a17;
  color: #9b1a17;
}
.button.secondary:active,
.button.secondary:focus,
.button.secondary:hover,
.button.secondary.manualFocus {
  background-color: #9b1a17;
  color: #FFF;
}
.button.ternary {
  background-color: #333333;
  border-radius: 0;
  border: 1px solid #333333;
  color: #FFF;
}
.button.ternary:active,
.button.ternary:focus,
.button.ternary:hover {
  background-color: #9b1a17;
}
.button.icon {
  border-radius: 50%;
  height: 2em;
  padding: 0;
  line-height: 2em;
  width: 2em;
}
.button.disabled {
  pointer-events: none;
  cursor: auto;
  background-color: #999999;
}
.button.ai-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  position: relative;
  font-size: 0.875rem;
  white-space: nowrap;
  top: -3px;
}
.button.ai-button:active,
.button.ai-button:focus,
.button.ai-button:hover {
  background: linear-gradient(135deg, #5568d3 0%, #62358a 100%);
  border-color: #5568d3;
  color: #FFF;
}
.button.ai-button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.form_button {
  border-radius: 10px;
  padding: 0.2rem 1rem;
}
.circleStatusConnection {
  height: 12px;
  width: 12px;
  background-color: green;
  border-radius: 50%;
  display: inline-block;
}
.circleStatusConnection.disabled {
  background-color: red;
}
.connectionDisabledActive {
  color: #a5a2a2;
}
.connectionDisabledActive input[type="text"],
.connectionDisabledActive select,
.connectionDisabledActive textarea {
  background-color: #d1d1d1;
}
.connection_disabled.dealer_connection .disable_button {
  color: #333333;
}
.text_small {
  font-size: 0.85rem;
}
.text_2rem {
  font-size: 2rem;
}
.text_7rem {
  font-size: 7rem;
}
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}
.text_red {
  color: #9b1a17;
}
.text_grey {
  color: #666666;
}
.text_dark {
  color: #222;
}
.margin_0 {
  margin: 0;
}
.margin_1 {
  margin: 1rem;
}
.margin_sides_1 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.margin_b_1 {
  margin-bottom: 1rem;
}
.margin_b_2 {
  margin-bottom: 2rem;
}
.padding_5px {
  padding: 5px;
}
.width_100 {
  width: 100%;
}
.login_title {
  text-transform: uppercase;
  font-size: 1.15rem;
}
body.route_loading .loading {
  display: inline-block;
}
body.route_loading .loading-page-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
}
body.route_loading .loading-page-container .loading-page-content {
  text-align: center;
  width: 100%;
}
.boxed {
  background-color: #f2f2f2;
  margin-bottom: 2rem;
}
.boxed .head {
  border-bottom: 1px solid #FFF;
  padding: 1rem;
  text-transform: uppercase;
}
.boxed .head h1,
.boxed .head h2,
.boxed .head h3,
.boxed .head h4 {
  color: #9b1a17;
  margin: 0;
}
.boxed .body {
  padding: 1rem;
}
.progress-bar {
  background-color: #9b1a17;
}
.customCheckbox {
  border: 1px solid #666666;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  height: 12px;
  margin-right: 5px;
  position: relative;
  width: 12px;
}
.customCheckbox svg {
  display: none;
}
.customCheckbox.checkboxChecked {
  border-color: #9b1a17;
  color: #9b1a17;
}
.customCheckbox.checkboxChecked svg {
  display: block;
  height: 9px;
  position: absolute;
  bottom: 0;
  top: 0px;
  left: 1px;
}
.floating_box {
  background-color: #f9f9fa;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
  padding: 1rem;
  z-index: 15;
}
#main_header {
  align-items: stretch;
  background-color: #333333;
  color: #FFF;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 666;
}
#main_header .main-header-bar {
  padding: 5px 15px;
  display: flex;
  height: 60px;
}
#main_header .ele {
  display: flex;
  align-items: center;
}
#main_header .separator {
  margin: 0 1rem;
}
#main_header .logo {
  align-items: center;
  display: flex;
  margin-right: 3vw;
  padding: 0.5rem 0;
}
#main_header .menu {
  align-items: center;
  display: flex;
  position: relative;
}
#main_header .menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}
#main_header .menu li {
  float: left;
}
#main_header .menu li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  text-transform: uppercase;
}
#main_header .dealers {
  align-items: center;
  display: flex;
  position: relative;
}
#main_header .dealers .current_dealer {
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
}
#main_header .dealers #edit_dealer {
  font-size: large;
  padding: 10px;
  color: white;
}
#main_header .dealers #dealers_menu {
  display: none;
  min-width: 100%;
  position: absolute;
  top: 100%;
  white-space: nowrap;
  z-index: 501;
  width: 1100px;
}
#main_header .dealers #dealers_menu .dealersColumn {
  flex: 1;
}
#main_header .dealers #dealers_menu .dealer {
  border-bottom: 1px solid #999999;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
#main_header .dealers #dealers_menu .dealer svg {
  color: #9b1a17;
}
#main_header .dealers #dealers_menu .dealer a {
  display: block;
  color: #333333;
}
#main_header .dealers #dealers_menu .dealer a:first-child {
  margin-right: 1rem;
}
#main_header .dealers #dealers_menu .dealer a:active,
#main_header .dealers #dealers_menu .dealer a:focus,
#main_header .dealers #dealers_menu .dealer a:hover {
  color: #9b1a17;
}
#main_header .dealers #dealers_menu .dealer a:active svg,
#main_header .dealers #dealers_menu .dealer a:focus svg,
#main_header .dealers #dealers_menu .dealer a:hover svg {
  color: #000;
}
#main_header .dealers #dealers_menu .dealer:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
#main_header .user_wrapper {
  align-items: center;
  display: flex;
  position: relative;
}
#main_header .user_wrapper .user-menu-toggle {
  color: #FFF;
  padding: 0.5rem;
  text-align: center;
}
#main_header .user_wrapper .user-menu {
  min-width: 100%;
  position: absolute;
  right: 0;
  top: 100%;
  white-space: nowrap;
  z-index: 501;
}
#main_header .user_wrapper .user-menu a {
  color: #333333;
  display: block;
  margin-bottom: 1rem;
}
#main_header .user_wrapper .user-menu a:last-child {
  margin-bottom: 0;
}
#main_header .user_wrapper .user-menu a svg {
  color: #9b1a17;
  margin-right: 0.5rem;
}
#main_header .user_wrapper .user-menu a:active,
#main_header .user_wrapper .user-menu a:focus,
#main_header .user_wrapper .user-menu a:hover {
  color: #9b1a17;
}
#main_header .user_wrapper .user-menu hr {
  margin: 0 0 1rem;
}
#main_header #sale-contract-menu-container {
  height: 100%;
}
#main_header #sale-contract-menu-container > li {
  height: 100%;
  display: flex;
  align-items: center;
}
#main_header #sale-contract-menu-container li:hover > .sub-menu {
  display: block !important;
}
#main_header .sale-contract-menu-toogle {
  color: #FFF;
  background-color: #9b1b18;
  padding: 0.5rem 1rem !important;
  text-align: center;
}
#main_header .sale-contract-menu-toogle:hover,
#main_header .sale-contract-menu-toogle.selected {
  text-decoration: none;
}
#main_header #sale_contract_menu {
  min-width: 150px;
  position: absolute;
  left: 2rem;
  top: 100%;
  white-space: nowrap;
  z-index: 501;
  background-color: #999999;
  overflow: visible;
}
#main_header #sale_contract_menu a {
  color: black;
  display: block;
  text-transform: uppercase;
  text-align: left;
  padding: 0.5rem 1rem;
  border: 1px solid white;
  border-bottom: none;
  border-right: none;
}
#main_header #sale_contract_menu a:last-child {
  margin-bottom: 0;
}
#main_header #sale_contract_menu a:active,
#main_header #sale_contract_menu a:focus,
#main_header #sale_contract_menu a:hover {
  background-color: #9b1a17;
  color: white;
}
#main_header #sale_contract_menu .dropdown-toggle::after {
  display: none;
}
#main_header #sale_contract_menu li {
  width: 100%;
  position: relative;
}
#main_header #sale_contract_menu li ul.dropdown {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  padding: 0;
  background: #999999;
}
#main_header #sale_contract_menu li ul.dropdown a {
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
}
#main_header .right_separator {
  margin-left: auto;
}
#main_header .user-menu {
  display: none;
}
#main_header #sale_contract_menu {
  display: none;
}
#main_header .lang_switcher {
  color: #FFF;
  padding: 0.5rem;
  text-transform: uppercase;
}
.route_user_options #password_change_success_message {
  display: none;
  text-align: center;
  margin-top: 20px;
}
#footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #000;
  color: #fff;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  z-index: 11;
}
#footer .privacy_policy {
  text-align: right;
}
#footer a {
  color: #fff;
}
#footer a:active,
#footer a:focus,
#footer a:hover {
  text-decoration: underline;
}
#main_content {
  padding: 2rem 0 20px;
}
@media only screen and (max-width: 650px) {
  #main_content {
    padding: 2rem 0 50px;
  }
  #footer {
    text-align: center;
  }
  #footer .privacy_policy {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  #footer {
    text-align: center;
  }
}
.boxed .head .block_collapse_toggle {
  font-size: 1rem;
  padding: 5px 0;
  text-transform: none;
  color: #9b1a17;
  font-weight: 600;
}
.boxed .head .block_collapse_toggle svg {
  float: right;
}
.boxed .head .block_collapse_toggle:hover,
.boxed .head .block_collapse_toggle:focus {
  color: #9b1a17;
}
#popups_overlay {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 998;
  align-items: center;
}
#popups_overlay.open {
  display: flex;
  background-color: rgba(255, 255, 255, 0.9);
}
#confirm_popup {
  width: 300px;
}
.popup {
  display: none;
  background-color: white;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px 0px #888;
  text-align: left;
  z-index: 999;
  margin: 0 auto;
}
#error_popup {
  max-height: 90%;
  overflow-y: auto;
}
#error_popup .error_message pre {
  text-transform: none;
}
#error_popup .error_popup_actions {
  white-space: nowrap;
}
.mouse-pointer {
  cursor: pointer;
}
.submit {
  margin-top: 1rem;
}
body.route_lost_password #main_content,
body.route_reset_password #main_content {
  align-items: center;
  background-color: #000;
  background-image: url(/dist/images/login-bg.fcd9e674.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
}
body.route_lost_password #main_content .svg-inline--fa,
body.route_reset_password #main_content .svg-inline--fa {
  height: 0.9em;
}
body.route_lost_password #main_content input,
body.route_reset_password #main_content input {
  width: 100%;
  padding: 10px 0;
}
body.route_lost_password #main_content .loading_button_container,
body.route_reset_password #main_content .loading_button_container {
  width: 100%;
}
body.route_lost_password #main_content .loading_button_container .button_loading,
body.route_reset_password #main_content .loading_button_container .button_loading {
  width: 100%;
  padding: 10px 0;
}
body.route_lost_password #main_content .password_support p,
body.route_reset_password #main_content .password_support p,
body.route_lost_password #main_content .new_password_support p,
body.route_reset_password #main_content .new_password_support p {
  color: #FFF;
  margin: 0;
  text-align: center;
}
body.route_lost_password #lost_pw_form,
body.route_reset_password #lost_pw_form,
body.route_lost_password #reset_pw_form,
body.route_reset_password #reset_pw_form,
body.route_lost_password #password_reset_form,
body.route_reset_password #password_reset_form,
body.route_lost_password #confirm_lost_pw_form,
body.route_reset_password #confirm_lost_pw_form,
body.route_lost_password #confirm_password_reset_form,
body.route_reset_password #confirm_password_reset_form {
  background-color: #f9f9fa;
  margin-bottom: 2rem;
  max-width: 440px;
  padding: 3vw;
}
body.route_lost_password #lost_pw_form.hidden,
body.route_reset_password #lost_pw_form.hidden,
body.route_lost_password #reset_pw_form.hidden,
body.route_reset_password #reset_pw_form.hidden,
body.route_lost_password #password_reset_form.hidden,
body.route_reset_password #password_reset_form.hidden,
body.route_lost_password #confirm_lost_pw_form.hidden,
body.route_reset_password #confirm_lost_pw_form.hidden,
body.route_lost_password #confirm_password_reset_form.hidden,
body.route_reset_password #confirm_password_reset_form.hidden {
  display: none;
}
.password_section {
  position: relative;
}
.password_section #inputPassword {
  padding-right: 35px;
}
.password_section svg {
  position: absolute;
  right: 10px;
  top: 40%;
  cursor: pointer;
}
.password_section.hidden svg.fa-eye {
  display: none;
}
.password_section.revealed svg.fa-eye-slash {
  display: none;
}
.button_choice {
  background-color: #999999;
  border-radius: 0;
  border: 1px solid #999999;
  color: black;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: uppercase;
}
.button_choice:active,
.button_choice:focus,
.button_choice:hover,
.button_choice.active,
.button_choice.selected {
  background-color: #9b1a17;
  border-color: #9b1a17;
  color: #FFF;
  text-decoration: none;
}
.text_describe_button_choice {
  padding: 0.5rem;
  text-transform: uppercase;
}
.loading_button_container {
  display: inline-flex;
  position: relative;
  align-items: center;
  align-content: center;
}
.loading_button_container .loading_icon {
  display: none;
}
.loading_button_container.loading .button_loading,
.loading_button_container.locked .button_loading,
.loading_button_container.disabled .button_loading {
  opacity: 0;
  pointer-events: none;
}
.loading_button_container.loading .loading_icon,
.loading_button_container.locked .loading_icon,
.loading_button_container.disabled .loading_icon {
  display: inline;
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #9b1a17;
  width: 35px;
  height: 35px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
  font-size: 0;
  background-color: transparent;
  cursor: auto;
  position: absolute;
  margin: 0 auto;
  right: 0;
  left: 0;
}
#loading_overlay {
  display: none;
}
#loading_overlay.open {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
}
#loading_overlay .loading_icon {
  display: inline;
  border: 24px solid #f3f3f3;
  border-radius: 50%;
  border-top: 24px solid #9b1a17;
  width: 200px;
  height: 200px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
  font-size: 0;
  background-color: transparent;
  cursor: auto;
  position: absolute;
  margin: 0 auto;
  right: 0;
  left: 0;
}
.vehicle_state {
  text-transform: uppercase;
  font-weight: bold;
}
.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.img-modal-popup {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.img-modal-popup:hover {
  opacity: 0.7;
}
.table {
  display: table;
}
.table .table-row {
  display: table-row;
}
.table .table-row .table-cell {
  display: table-cell;
  padding: 5px;
}
#modal_img {
  display: none;
  position: fixed;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.9);
}
#modal_img .close_modal_img {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
#modal_img .close_modal_img:hover,
#modal_img .close_modal_img:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
#modal_img #img_modal_content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 767px;
  animation-name: zoom;
  animation-duration: 0.6s;
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.flexible-collection .remove-flexible-element,
.flexible-collection .add-flexible-element {
  border-color: #111;
  background: linear-gradient(180deg, #8f0000 0%, #ff0000 49%, #460000 51%, #ff2020 100%);
  border-radius: 5px;
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 3px rgba(0, 0, 0, 0.3);
  padding: 5px;
  width: 28px;
  text-align: center;
  font-size: 30px;
  line-height: 20px;
  color: white;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000;
}
.flexible-collection .flexible-collection-element {
  position: relative;
  padding: 10px;
  padding-right: 40px;
  margin-bottom: 15px;
  background-color: #bbb;
  border-radius: 5px;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.16), 0 4px 6px rgba(0, 0, 0, 0.45);
}
.flexible-collection .flexible-collection-element .remove-flexible-element {
  position: absolute;
  top: 0;
  right: 0;
}
.flexible-collection .flexible-collection-element:first-of-type .move-flexible-collection-element-up,
.flexible-collection .flexible-collection-element:last-of-type .move-flexible-collection-element-down {
  opacity: 0.4;
  filter: grayscale(90%);
  pointer-events: none;
}
.flexible-collection .add-flexible-element {
  display: block;
  margin: 0 auto;
}
.flexible-collection .move-flexible-collection-element-up,
.flexible-collection .move-flexible-collection-element-down {
  position: absolute;
  right: 0;
  border-color: #111;
  background: linear-gradient(180deg, #8f0000 0%, #ff0000 49%, #460000 51%, #ff2020 100%);
  border-radius: 5px;
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 3px rgba(0, 0, 0, 0.3);
  padding: 5px;
  width: 28px;
  z-index: 10;
  text-align: center;
  font-size: 30px;
  line-height: 20px;
  color: white;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000;
}
.flexible-collection .move-flexible-collection-element-up {
  top: 50px;
}
.flexible-collection .move-flexible-collection-element-down {
  top: 80px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.text-error {
  color: red;
}
.result-box {
  margin-top: 60px;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes glow {
  0% {
    outline: 5px solid #f2f2f2;
  }
  50% {
    outline: 5px solid #0f0;
  }
  100% {
    outline: 5px solid #f2f2f2;
  }
}
.glow {
  animation: glow 0.7s ease-in-out;
  -webkit-animation: glow 0.7s ease-in-out;
}
input[type=number].value-different,
input[type=text].value-different,
select.value-different,
textarea.value-different,
div[contenteditable=true].value-different {
  background-color: #ffffdc !important;
  transition: background-color 0.5s ease-in;
}
input[type=number].value-same,
input[type=text].value-same,
select.value-same,
textarea.value-same {
  transition: background-color 0.5s ease-in;
}
input[type=checkbox].value-different {
  outline: 5px solid #ffffdc;
  transition: outline 0.5s ease-in;
}
input[type=checkbox].value-same {
  outline: 5px solid #f2f2f2;
  transition: outline 0.5s ease-in;
}
.select2-selection--clearable .select2-selection__arrow {
  display: none;
}
#vin-decode-wizard #styles-selector .style_option {
  display: inline-block;
  border: 1px solid black;
  padding: 15px;
  margin-right: 10px;
  max-width: 200px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}
#vin-decode-wizard #styles-selector .style_option img {
  width: 100%;
}
#vin-decode-wizard #styles-selector .style_option.selected {
  border: 3px solid black;
  padding: 13px;
}
.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  margin-top: 8px;
  border-radius: 3px;
  transition: background-color 0.2s;
  min-width: 230px;
  font-size: 18px;
  width: 100%;
  cursor: pointer;
}
.oauth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  margin-top: 8px;
  border: 1px solid #adbcc5;
  border-radius: 3px;
  color: #333;
  transition: background-color 0.2s;
  min-width: 230px;
  font-size: 18px;
  width: 100%;
  cursor: pointer;
  background-color: #ffffff;
}
.oauth-button:hover {
  background-color: #e8e8e8;
}
.oauth-button .oauth-button__icon {
  margin-right: 8px;
  width: 24px;
  height: 24px;
}
.alert-warning {
  border-color: #ccc;
}
.dealers-listing {
  padding-left: 12px;
  padding-right: 12px;
}
.dealers-listing__select {
  height: 48px;
}
body.route_ #main_content,
body.route_app_login #main_content {
  align-items: center;
  background-color: #000;
  background-image: url(/dist/images/login-bg.fcd9e674.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
}
body.route_ .main_content_box,
body.route_app_login .main_content_box {
  background-color: #f9f9fa;
  margin-bottom: 2rem;
  max-width: 440px;
  padding: 3vw;
}
body.route_ .main_content_box label,
body.route_app_login .main_content_box label {
  color: #666666;
  font-size: 1.15rem;
  text-transform: uppercase;
}
body.route_ .main_content_box input,
body.route_app_login .main_content_box input {
  border: 1px solid #999999;
  border-radius: 0;
  font-size: 1.15rem;
  padding: 1rem 0.5rem;
  width: 100%;
}
body.route_ .main_content_box input:focus,
body.route_app_login .main_content_box input:focus {
  outline-color: #9b1a17;
  outline-offset: -1px;
  outline-style: solid;
}
body.route_ .login_support p,
body.route_app_login .login_support p {
  color: #FFF;
  margin: 0;
  text-align: center;
}
body.route_ .password_section,
body.route_app_login .password_section {
  position: relative;
}
body.route_ .password_section #inputPassword,
body.route_app_login .password_section #inputPassword {
  padding-right: 35px;
}
body.route_ .password_section svg,
body.route_app_login .password_section svg {
  position: absolute;
  right: 10px;
  top: 40%;
  cursor: pointer;
}
body.route_ .password_section.hidden svg.fa-eye,
body.route_app_login .password_section.hidden svg.fa-eye {
  display: none;
}
body.route_ .password_section.revealed svg.fa-eye-slash,
body.route_app_login .password_section.revealed svg.fa-eye-slash {
  display: none;
}
body.route_ #footer,
body.route_app_login #footer {
  margin-top: -2.3rem;
}
body.route_privacy_policy h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 2rem;
}
body.route_dealer_home .new_vehicle_section {
  color: #666666;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
body.route_dealer_home .new_vehicle_section .button {
  min-width: 6rem;
}
body.route_dealer_home .dealer_home_vehicles_stats {
  text-align: left;
}
body.route_dealer_home .topbar {
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  right: 15px;
  left: 15px;
  z-index: 500;
}
body.route_dealer_home .topbar#button_menu {
  top: 60px;
}
body.route_dealer_home .topbar#vehicle_filter {
  top: 95px;
}
body.route_dealer_home .filter_bar,
body.route_dealer_home .master_filter_bar {
  font-family: Arial;
}
body.route_dealer_home table#listing {
  margin-bottom: 2rem;
  width: 100%;
}
body.route_dealer_home table#listing th,
body.route_dealer_home table#listing td,
body.route_dealer_home table#listing span.mobile {
  border: 1px solid #FFF;
  color: #666666;
  padding: 0.5rem;
}
body.route_dealer_home table#listing th.entry_status_active,
body.route_dealer_home table#listing td.entry_status_active,
body.route_dealer_home table#listing span.mobile.entry_status_active {
  color: #000;
  font-weight: 600;
}
body.route_dealer_home table#listing th.entry_status_draft,
body.route_dealer_home table#listing td.entry_status_draft,
body.route_dealer_home table#listing span.mobile.entry_status_draft {
  color: #666666;
  font-weight: 400;
}
body.route_dealer_home table#listing th.entry_status_sold,
body.route_dealer_home table#listing td.entry_status_sold,
body.route_dealer_home table#listing span.mobile.entry_status_sold {
  color: #9b1a17;
  font-weight: 400;
}
body.route_dealer_home table#listing th.entry_status_reserve,
body.route_dealer_home table#listing td.entry_status_reserve,
body.route_dealer_home table#listing span.mobile.entry_status_reserve {
  color: #000;
  font-weight: 600;
}
body.route_dealer_home table#listing th.entry_status_in_transaction,
body.route_dealer_home table#listing td.entry_status_in_transaction,
body.route_dealer_home table#listing span.mobile.entry_status_in_transaction {
  color: #000;
  font-weight: 600;
}
body.route_dealer_home table#listing span.mobile {
  padding: 0;
}
body.route_dealer_home table#listing thead th,
body.route_dealer_home table#listing thead td {
  background-color: #f2f2f2;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
}
body.route_dealer_home table#listing thead tr {
  vertical-align: baseline;
  position: relative;
}
body.route_dealer_home table#listing .customCheckbox {
  margin: 0;
  display: block;
}
body.route_dealer_home table#listing #all_checkboxes_action {
  color: #666666;
  font-size: 2rem;
  line-height: 1.75rem;
}
body.route_dealer_home table#listing .vehicle_row {
  display: none;
}
body.route_dealer_home table#listing .vehicle_row.visible {
  display: table-row;
}
body.route_dealer_home table#listing .vehicle_row td {
  border-bottom: 1px solid #f2f2f2;
}
body.route_dealer_home table#listing .vehicle_row td.vehicle_price_listing .editing_section {
  display: none;
}
body.route_dealer_home table#listing .vehicle_row td.vehicle_price_listing.editing p,
body.route_dealer_home table#listing .vehicle_row td.vehicle_price_listing.editing span {
  display: none;
}
body.route_dealer_home table#listing .vehicle_row td.vehicle_price_listing.editing .editing_section {
  display: block;
}
body.route_dealer_home table#listing .vehicle_row td.vehicle_price_listing.editing .editing_section .input_price {
  width: 80%;
}
body.route_dealer_home table#listing .vehicle_row td.vehicle_price_listing.editing .editing_section .loading_button_container .loading_icon {
  width: 20px;
  height: 20px;
}
body.route_dealer_home table#listing .sortable {
  display: flex;
}
body.route_dealer_home table#listing .sortable svg {
  display: none;
  color: #9b1a17;
  float: right;
  font-weight: bold;
  margin-left: 10px;
}
body.route_dealer_home table#listing .sortable.sorting-ASC svg.fa-long-arrow-up {
  display: block;
}
body.route_dealer_home table#listing .sortable.sorting-DESC svg.fa-long-arrow-down {
  display: block;
}
body.route_dealer_home table#listing td.td-mobile-content {
  width: 100%;
  position: relative;
}
body.route_dealer_home table#listing td.td-mobile-content span {
  display: block;
}
body.route_dealer_home table#listing p.slashed {
  text-decoration: line-through;
  margin-bottom: 0;
}
body.route_dealer_home table#listing .vehicle_img_preview {
  background-size: cover;
  background-position: center center;
  width: 90px;
  height: 70px;
  border: 1px solid #aaa;
  border-radius: 5px;
  text-align: center;
  padding-top: 23%;
  position: relative;
}
body.route_dealer_home table#listing .count_label {
  position: absolute;
  color: white;
  border: 1px solid black;
  border-radius: 10px;
  background: #000;
  top: 2px;
  right: 2px;
  font-size: 9px;
  padding-left: 5px;
  padding-right: 5px;
}
body.route_dealer_home table#listing .filter_bar,
body.route_dealer_home table#listing .master_filter_bar {
  width: 100%;
}
body.route_dealer_home table#listing .mobile_vehicle_edit_link {
  position: absolute;
  right: 0;
  top: calc(50% - 7px);
  font-weight: 900;
  font-size: 14px;
  line-height: 0;
}
body.route_dealer_home table#listing .listing-mobile-header {
  display: none;
}
body.route_dealer_home #vehicle_listing_loading_icon {
  width: 100%;
  height: 60px;
  padding-bottom: 30px;
}
body.route_dealer_home #download_vehicle_list_form {
  display: none;
}
.title_head {
  color: #9b1a17;
}
body.route_dealer_options .updates-list .update_status_unstarted {
  color: red;
}
body.route_dealer_options .updates-list .update_status_finished {
  color: green;
}
body.route_dealer_options .updates-list .update_status_started {
  color: #ffc90e;
}
body.route_dealer_options .updates-list .updateDetails {
  display: inline-block;
  margin-right: 15px;
}
body.route_dealer_options .head {
  position: relative;
}
body.route_dealer_options .head .add_button {
  position: absolute;
  top: 0.8rem;
  font-weight: 900;
  font-size: 18px;
  padding: 0px 8px;
}
body.route_dealer_options .head .style_button {
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  padding: 0px 5px;
}
body.route_dealer_options .head .rightTools {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}
body.route_dealer_options #new_connection_modal {
  display: none;
  background-color: white;
  border: 1px solid #9b1a17;
  padding: 25px;
  margin: 0 auto;
  max-width: 90%;
  width: 720px;
}
body.route_dealer_options #new_connection_modal .dealer_connection .row {
  display: none;
}
body.route_dealer_options .cron_job_checkbox {
  margin-right: 5px;
}
body.route_dealer_options .hide_location {
  display: none;
}
body.route_dealer_options #dealer_connections_form abbr {
  text-decoration: none;
}
body.route_dealer_options .img_overlay {
  position: relative;
}
body.route_dealer_options .img_overlay img {
  width: 100%;
}
body.route_dealer_options .img_overlay .delete {
  position: absolute;
  top: 0;
  right: 0;
}
body.route_dealer_options .nav-tabs {
  border: 0;
}
body.route_dealer_options .nav-tabs .nav-item {
  margin: 5px;
}
body.route_dealer_options #dealer-options-content.multilingual .unlingual {
  display: none;
}
body.route_dealer_options #dealer-options-content.multilingual .language_helper {
  color: #666666;
  font-size: 0.85rem;
}
body.route_dealer_options #dealer-options-content.unilingual .multilingual {
  display: none;
}
body.route_dealer_options #dealer-options-content.unilingual .language_helper {
  display: none;
}
body.route_dealer_options .exportedUrl {
  margin: 10px 0;
  border: 1px solid grey;
  padding: 5px;
}
body.route_dealer_options .exportedUrl p {
  margin-bottom: 5px;
}
body.route_dealer_options .scheduled_job_row {
  padding: 25px 0;
}
body.route_dealer_options .scheduled_job_row.editing .viewOnly {
  display: none;
}
body.route_dealer_home.notification_bar_open .topbar#button_menu {
  top: 100px;
}
body.route_dealer_home.notification_bar_open .topbar#vehicle_filter {
  top: 135px;
}
#modal_container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  align-items: center;
}
#modal_container #close_modal {
  position: absolute;
  top: 30px;
  right: 30px;
  color: black;
  font-size: 42px;
  font-weight: 900;
}
#popup_new_dealer_status_description {
  width: 300px;
  position: absolute;
  z-index: 100;
}
#popup_discount_rule {
  width: 300px;
  position: absolute;
  z-index: 100;
}
#all_action_popup {
  display: none;
  position: absolute;
  z-index: 999;
}
#all_action_popup {
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: normal;
}
#all_action_popup .align-center {
  text-align: center;
}
#add_vehicle_from_data_form {
  display: none;
}
.edit_template_title {
  position: absolute;
  min-width: 260px;
}
.close_edit_template_title {
  float: right;
}
.button_choice .btn_edit_template_title {
  display: none;
}
.button_choice.active .btn_edit_template_title {
  display: inline-block;
}
.button_choice.active .btn_edit_template_title:active,
.button_choice.active .btn_edit_template_title:focus,
.button_choice.active .btn_edit_template_title:hover {
  color: black;
}
body.route_dealer_home .download_vehicle_list_button,
body.route_dealer_home .edit_selected_vehicles {
  float: right;
  margin-left: 12px;
}
body.route_dealer_home .download_vehicle_list_button.hidden,
body.route_dealer_home .edit_selected_vehicles.hidden {
  display: none;
}
body.route_dealer_home .download_vehicle_list_svg {
  height: 18px;
  filter: brightness(0) invert(1);
}
body.route_dealer_home #download-popup {
  background-color: #aaa;
  border: 1px solid gray;
  padding: 15px;
}
body.route_dealer_home #download-popup .download-button {
  cursor: pointer;
  display: inline-block;
  margin: 0 15px;
}
body.route_dealer_home #download-popup .download-button svg {
  height: 60px;
}
@media only screen and (min-width: 768px) {
  body.route_dealer_home .dealer_home_vehicles_stats {
    text-align: right;
  }
}
@media only screen and (max-width: 1199px) {
  body.route_dealer_home .download_vehicle_list_button .download_vehicle_list_text {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  body.route_dealer_home .add_vehicle_button.button {
    font-size: 26px;
    line-height: 13px;
    padding: 3px;
    min-width: auto;
    vertical-align: middle;
    border-radius: 3px;
  }
  body.route_dealer_home .download_vehicle_list_button {
    font-size: 26px;
    line-height: 13px;
    padding: 3px;
    min-width: auto;
    vertical-align: middle;
    border-radius: 3px;
  }
  body.route_dealer_home .download_vehicle_list_svg {
    height: 25px;
    filter: brightness(0) saturate(100%) invert(14%) sepia(45%) saturate(5348%) hue-rotate(351deg) brightness(93%) contrast(94%);
  }
  body.route_dealer_home .topbar#vehicle_filter {
    top: 0px;
  }
  body.route_dealer_home table#listing .vehicle_row.visible,
  body.route_dealer_home table#listing thead tr {
    display: block;
  }
  body.route_dealer_home table#listing .listing-mobile-header {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
  }
}
.custom-control.custom-checkbox {
  padding-left: 0;
}
div .checkmark {
  height: 21px;
  display: flex;
  align-items: center;
}
div .checkmark svg {
  display: none;
}
div .checkmark svg.fa-lock-open {
  display: block;
}
div input:checked ~ .checkmark svg.fa-lock {
  display: block;
  padding: 0 1.75px;
}
div input:checked ~ .checkmark svg.fa-lock-open {
  display: none;
}
.note-editor .dropdown-style ul {
  margin: 0px;
  padding-left: 0px;
  list-style: none;
}
.note-editor .dropdown-style ul li {
  padding-left: 10px;
  cursor: pointer;
}
.note-editor .dropdown-style ul li:hover {
  background: #eee;
}
.toolbar {
  position: relative;
}
body.route_vehicle_view .nav-tabs {
  position: absolute;
  z-index: 10;
}
body.route_vehicle_view #drop-area {
  border: 2px dashed #333;
  padding: 1rem;
}
body.route_vehicle_view .list_section {
  background-color: #ddd;
}
body.route_vehicle_view .list_section .list_element {
  box-shadow: inset 0 0 0 1px #bbb;
  border-left: 0;
  border-radius: 5px;
  display: inline-block;
  margin: 5px;
  padding: 5px 0;
}
body.route_vehicle_view .list_section .list_element span {
  padding: 0 5px;
}
body.route_vehicle_view .list_section .list_element .list_element_remove {
  border-radius: 5px;
  text-decoration: none;
  margin-left: 0;
  padding: 7px;
  padding-right: 10px;
  padding-left: 10px;
  box-shadow: inset 0px 0px 0px 1px gray;
  box-sizing: border-box;
}
body.route_vehicle_view .list_section .list_element .option_value {
  padding-left: 5px;
  padding-right: 5px;
}
body.route_vehicle_view #fixed_bottom_bar {
  display: none;
}
body.route_vehicle_view #vehicle_description_section {
  margin-top: 20px;
}
body.route_vehicle_view .switch_dealer_dropdown_container {
  display: inline-block;
  position: relative;
}
body.route_vehicle_view .switch_dealer_dropdown_container .switch_dealer_dropdown {
  position: absolute;
  z-index: 10;
  background-color: white;
  min-width: 100%;
  display: none;
  text-align: left;
  border: 1px solid #9b1a17;
  text-transform: uppercase;
}
body.route_vehicle_view .switch_dealer_dropdown_container .switch_dealer_dropdown .dealer_choice {
  padding: 5px;
  cursor: pointer;
  white-space: nowrap;
}
body.route_vehicle_view .switch_dealer_dropdown_container .switch_dealer_dropdown .dealer_choice.vehicle_dealer {
  color: #9b1a17;
  cursor: auto;
  pointer-events: none;
  margin-right: 25px;
  width: 100%;
}
body.route_vehicle_view .switch_dealer_dropdown_container .switch_dealer_dropdown .dealer_choice.vehicle_dealer::after {
  content: '<';
  float: right;
}
body.route_vehicle_view .vehicle_discount_rule {
  color: #9b1a17;
}
body.route_vehicle_view .save_vehicle {
  cursor: wait;
  pointer-events: none;
}
body.route_vehicle_view .vehicleRow:not(:last-child) {
  margin-bottom: 1rem;
}
body.route_vehicle_view .vehicleRow p {
  margin-bottom: 0;
}
body.route_vehicle_view .vin_input_container {
  position: relative;
  margin-bottom: 0;
}
body.route_vehicle_view .vin_input_container input {
  padding-right: 45px;
}
body.route_vehicle_view .vin_input_container .vin_redecode {
  position: absolute;
  top: 2px;
  bottom: 2px;
  right: 2px;
  width: 30px;
  background-color: #aaa;
  text-align: center;
  display: flex;
}
body.route_vehicle_view .vin_input_container .vin_redecode.loading {
  pointer-events: none;
  cursor: auto;
}
body.route_vehicle_view .vin_input_container .vin_redecode.loading::after {
  color: #888;
}
body.route_vehicle_view .vin_input_container .vin_redecode svg {
  color: #444;
  margin: auto;
}
body.route_vehicle_view .descriptionLockToggle,
body.route_vehicle_view .optionsLockToggle {
  display: inline-flex;
  margin-left: 15px;
}
body.route_vehicle_view .audit-log-entry {
  padding: 10px;
  margin: 0;
  border: 1px solid #aaa;
}
body.route_vehicle_view .audit-log-entry .audit-log-title {
  text-align: center;
  padding: 0px 60px;
  white-space: nowrap;
  font-size: 24px;
}
body.route_vehicle_view .audit-log-entry .audit-log-title a {
  color: #9b1a17;
  text-decoration: underline;
}
body.route_vehicle_view .audit-log-entry .audit-log-row:nth-child(2n) {
  background-color: #ebebeb;
}
body.route_vehicle_view .audit-log-entry .audit-log-row:hover {
  background-color: #d6d6d6;
}
body.route_vehicle_view .audit-log-entry .audit-log-row div {
  display: flex;
  align-items: center;
}
body.route_vehicle_view .vehicleExclusionCheckbox.readonly {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}
body.route_vehicle_view select[readonly] {
  pointer-events: none;
}
body.route_vehicle_view .slashed {
  text-decoration: line-through;
}
body.route_vehicle_view #vehicle_edit_form.multilingual .unlingual {
  display: none;
}
body.route_vehicle_view #vehicle_edit_form.multilingual .language_helper {
  color: #666666;
  font-size: 0.85rem;
}
body.route_vehicle_view #vehicle_edit_form.unilingual .multilingual {
  display: none;
}
body.route_vehicle_view #vehicle_edit_form.unilingual .language_helper {
  display: none;
}
body.route_vehicle_view label[title] {
  cursor: help;
}
body.route_vehicle_view .chromeImageContainer {
  position: relative;
  width: 220px;
  display: inline-block;
  transition: all 1s ease;
  z-index: 1;
}
body.route_vehicle_view .chromeImageContainer .chromeImage {
  width: 100%;
  margin: 5px;
}
body.route_vehicle_view .chromeImageContainer .chromeImage.invalid {
  border: 1px solid red;
}
body.route_vehicle_view .chromeImageContainer .chromeImage.invalid.possibleFallback {
  border: 4px dashed orange;
}
body.route_vehicle_view .chromeImageContainer .chromeImage.valid {
  border: 4px solid green;
}
body.route_vehicle_view .chromeImageContainer .invalidityReason {
  position: absolute;
  bottom: 4px;
  left: 5px;
}
body.route_vehicle_view .chromeImageContainer:hover {
  z-index: 2;
  transform: scale(1.5);
}
.boxed {
  position: relative;
}
.thinkingOverlay {
  display: none;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.thinkingOverlay.visible {
  display: flex;
  align-items: center;
}
.thinkingOverlay .thinkingIcon {
  width: 50%;
  height: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  body.route_vehicle_view #bottom_spacer {
    height: 59px;
  }
  body.route_vehicle_view .nav-tabs {
    padding-bottom: 5px;
    position: inherit;
    margin-bottom: 30px;
  }
  body.route_vehicle_view #fixed_bottom_bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 10;
    padding: 0 20px;
    border-top: 1px solid grey;
    font-size: 20px;
    height: 60px;
    display: flex;
    align-items: center;
  }
  body.route_vehicle_view #fixed_bottom_bar .fixed_bottom_bar_center {
    text-align: center;
  }
  body.route_vehicle_view #fixed_bottom_bar .fixed_bottom_bar_right {
    text-align: center;
  }
  body.route_vehicle_view .modal-content {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  body.route_vehicle_view .add_option_button {
    font-size: 24px;
    line-height: 12px;
    padding: 10px;
  }
}
.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:active,
.btn-default:hover {
  background-color: #e6e6e6;
  text-decoration: none;
}
.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn.active,
.btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.13);
}
#fieldMappingSection .countFieldsNotFound {
  animation: blinker 2s linear infinite;
  position: absolute;
  top: 24px;
  padding-left: 6px;
  color: black;
  font-weight: bold;
  font-size: 16px;
}
@keyframes blinker {
  50% {
    color: red;
  }
}
#fieldMappingSection .nav-link {
  padding-right: 20px;
}
#fieldMappingSection .showOrHideFoundFields {
  padding: 5px;
  float: right;
}
#fieldMappingSection .showOrHideFoundFields .hide-found-icon {
  display: none;
}
#fieldMappingSection.showFoundFields .showOrHideFoundFields .show-found-icon {
  display: none;
}
#fieldMappingSection.showFoundFields .showOrHideFoundFields .hide-found-icon {
  display: block;
}
#fieldMappingSection .allFieldsAreMappedMessage {
  text-align: center;
  text-transform: uppercase;
  color: #9b1a17;
  display: none;
}
#fieldMappingSection .noFieldToMapMessage {
  text-align: center;
  text-transform: uppercase;
  color: #9b1a17;
}
#fieldMappingSection .fieldMappingRow:hover {
  background-color: #999999;
}
#fieldMappingSection .fieldMappingRow.found {
  display: none;
}
#fieldMappingSection.showFoundFields .fieldMappingRow.found {
  display: flex;
}
body.route_support_options #global_options_form input[type=checkbox] {
  float: right;
}
body.route_admin_home .dealers-listing {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
}
body.route_admin_home .dealers-listing .dealer-card {
  background-color: #eee;
  border-radius: 10px;
  border: 1px solid #222;
  margin: 15px;
}
body.route_admin_home .dealers-listing .dealer-card .dealer-card-home-link,
body.route_admin_home .dealers-listing .dealer-card .dealer-card-options-link {
  display: inline-block;
  padding: 15px;
}
body.route_admin_home .users-listing {
  margin: 30px 0;
}
body.route_admin_home .users-listing .users-column-toggle {
  cursor: pointer;
}
body.route_admin_home .users-listing .users-column {
  display: none;
}
body.route_support_cron_jobs .cronJob {
  margin-top: 15px;
}
body.route_support_cron_jobs .cronJob svg {
  width: 20px;
  height: 20px;
}
body.route_support_users .toggle-user-dealer-display {
  margin-left: 30px;
}
body.route_support_users .user-dealer-display.hidden {
  display: none;
}
body.route_support_users .box {
  vertical-align: top;
  margin: 15px;
  display: inline-block;
  padding: 10px;
  border: 1px solid #9b1a17;
}
body.route_support_users .box select {
  width: 100%;
}
body.route_support_users .control-button {
  color: white;
  font-weight: 900;
  padding: 5px;
  line-height: 0;
  border-radius: 100%;
  font-size: 20px;
  float: right;
  line-height: 9px;
  margin-left: 15px;
}
body.route_support_users .remove-user-dealer-association {
  background-color: red;
}
body.route_support_users .add-user-dealer-association {
  background-color: green;
}
body.route_support_jobs .select2 {
  min-width: 320px;
}
.job_row {
  padding-top: 10px;
  padding-bottom: 10px;
}
.job_row:nth-child(2n) {
  background-color: #ebebeb;
}
.job_row:hover {
  background-color: #d6d6d6;
}
.job_row div {
  display: flex;
  align-items: center;
}
.job_row .job_actions {
  justify-content: space-around;
}
.job_row pre {
  margin: 0;
}
.job_row.filteredOut {
  display: none;
}
.job_row .editingOnly {
  display: none;
}
.job_row.editing .job_actions a:not(.editingOnly) {
  display: none;
}
.job_row.editing .editingOnly {
  display: block;
}
.job_row.editing [contenteditable] {
  background-color: white;
}
.job_row.disabled_job {
  color: #aaa;
}
.job_row.disabled_job pre {
  color: #aaa;
}
.job_row.stalled {
  border: 2px dashed red;
}
body.route_update_detail #update_trigger .start_message,
body.route_update_detail #update_trigger .finished_message {
  display: none;
}
body.route_update_detail #update_trigger.stopped .stop_message {
  display: none;
}
body.route_update_detail #update_trigger.stopped .start_message {
  display: block;
}
body.route_update_detail #update_trigger.finished {
  opacity: 0.6;
  pointer-events: none;
}
body.route_update_detail #update_trigger.finished .stop_message,
body.route_update_detail #update_trigger.finished .start_message {
  display: none;
}
body.route_update_detail #update_trigger.finished .finished_message {
  display: block;
}
body.route_update_detail .error {
  color: red;
}
body.route_update_detail .update-details .update-step {
  padding: 5px 0;
  line-height: 40px;
  cursor: pointer;
}
body.route_update_detail .update-details .update-step:target {
  border: 3px solid #ca0000;
  font-weight: 600;
}
body.route_update_detail .update-details .update-step:nth-child(2n) {
  background-color: #ebebeb;
}
body.route_update_detail .update-details .update-step .done-checkmark {
  font-weight: 900;
  color: green;
  font-size: 18px;
}
body.route_update_detail .update-details .update-step .step-content {
  display: none;
  line-height: 20px;
  font-weight: 400;
}
body.route_update_detail .update-details .update-step.done-step {
  background-color: #92a6ff;
}
body.route_update_detail .update-details .update-step.done-step:nth-child(2n) {
  background-color: #6f89fc;
}
body.route_update_detail .update-details .update-step.active .step-content {
  display: block;
}
.banner-row label {
  display: block;
}
.banner-row .img-preview {
  width: 100%;
}
.banner-row .banner_places label {
  display: inline-block;
  padding: 5px;
  margin-right: 5px;
}
body.route_support_banners .header-row {
  position: sticky;
  top: 0;
  background-color: #f2f2f2;
  padding: 15px 0;
  z-index: 30;
}
body.route_support_banners .banner {
  display: none;
  background-color: #ffdede;
  padding: 15px 5px;
  transition: 0.3s;
  text-align: center;
}
body.route_support_banners .banner.visible {
  display: block;
}
body.route_support_banners .banner.alternate {
  background-color: #d7acac;
}
body.route_support_banners .banner:hover {
  background-color: #9b1a17;
  color: white;
  font-weight: 600;
}
body.route_support_banners .banner .websites {
  margin-top: 20px;
  margin-bottom: 0;
}
body.route_support_banners .website {
  display: inline-block;
  margin-right: 15px;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
}
body.route_support_banners .website.website-env-prod {
  border: 2px solid black;
}
body.route_support_banners .website.website-env-dev {
  border: 2px dashed blue;
}
body.route_support_banners .website.website-make-mazda {
  background-color: #7a0536;
  color: white;
}
body.route_support_banners .website.website-make-ford {
  background-color: #143d74;
  color: white;
}
body.route_support_banners .website.website-make-mitsubishi {
  background-color: #ff0000;
  color: black;
}
body.route_support_banners .website.website-make-nissan {
  background-color: #9e8600;
  color: white;
}
body.route_support_banners .website.website-make-honda {
  background-color: #3e007b;
  color: white;
}
body.route_support_banners .website.website-make-acura {
  background-color: #00eeff;
  color: black;
}
body.route_support_banners .website.website-make-toyota {
  background-color: #a52100;
  color: white;
}
body.route_support_banners .website.website-make-hyundai {
  background-color: #13948d;
  color: black;
}
body.route_support_banners .website.website-make-lincoln {
  background-color: #ffda34;
  color: black;
}
body.route_support_banners .website.website-make-cadillac {
  background-color: #006e1c;
  color: white;
}
body.route_support_banners .website.website-make-lotus {
  background-color: #3091d1;
  color: black;
}
body.route_support_banners .website.website-make-chrysler {
  background-color: #744100;
  color: white;
}
body.route_support_banners .website.website-make-subaru {
  background-color: #af89ce;
  color: black;
}
body.route_support_banners .website.website-make-volvo {
  background-color: #a2ce89;
  color: black;
}
body.route_support_banners .website.website-make-lexus {
  background-color: #324b04;
  color: white;
}
body.route_support_banners .website.website-make-kia {
  background-color: #ff9900;
  color: black;
}
body.route_support_banners .website.website-make-volkswagen {
  background-color: #b4b4b4;
  color: black;
}
body.route_support_banners .header-row {
  text-align: center;
  font-weight: 600;
}
body.route_support_banners .banner-listing-image {
  display: inline-block;
  width: 200px;
  margin-bottom: 30px;
}
body.route_support_banners .legend .website-filter {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 20px;
}
body.route_support_banners .legend .website-filter.selected {
  border-bottom: 5px solid #9b1a17;
  margin-bottom: 15px;
}
body.route_support_banners .legend .website {
  margin-right: 0;
  margin-bottom: 5px;
}
body.route_support_banner_view .img-preview {
  width: 100%;
}
body.route_support_banner_view #banner-form > div {
  margin-bottom: 20px;
}
body.route_support_banner_view #banner-form .banner_images_section .banner_images_config {
  display: none;
}
body.route_support_banner_view #banner-form .banner_images_section .banner_images_config.visible {
  display: flex;
}
body.route_support_banner_view #banner-form input[type=date],
body.route_support_banner_view #banner-form .switch {
  display: block;
}
body.route_support_banner_view #banner-form .banner-location-option {
  display: none;
}
body.route_support_banner_view #banner-form .banner-location-option.visible {
  display: inline-block;
}
body.route_support_banner_view #banner-form .banner-location-option label {
  margin-left: 5px;
  margin-right: 20px;
}
body.route_view_generated_file .table {
  background-color: #ddd;
  border: 1px solid black;
}
body.route_view_generated_file .table .table-row:first-child {
  position: sticky;
  top: 60px;
  background-color: #ccc;
}
body.route_view_generated_file .table .table-cell {
  border: 1px solid grey;
}
.multiselect-dropdown-element.hidden {
  display: none !important;
}
.multi-csv[data-elements-count="1"] .keyValue-key {
  display: none;
}
#edit_user_form {
  margin-top: 24px;
}
#edit_user_form.hidden {
  display: none;
}
.vehicle-table {
  margin: 15px;
  border: 2px solid black;
}
.vehicle-table .vehicle-row {
  padding: 5px;
  background-color: #ddd;
}
.vehicle-table .vehicle-row:nth-child(2n) {
  background-color: #ccc;
}
.vehicle-table .vehicle-row:hover {
  background-color: #7a0536;
  color: white;
}
.vehicle-table .vehicle-row:hover a {
  color: white;
  text-decoration: underline;
}
.vehicle-table .vehicle-row .vehicle-prop {
  display: inline-block;
  padding: 5px;
}
.vehicle-table .vehicle-row .vehicle-image {
  width: 100px;
}
form[name='manual_gallery'] {
  margin-bottom: 15px;
}
form[name='manual_gallery'] #manual_gallery {
  margin-bottom: 15px;
}
form[name='manual_gallery'] #manual_gallery > div {
  margin-bottom: 10px;
}
table.manual-gallery-table td {
  vertical-align: middle;
}
.ai-stat-number {
  font-size: 2rem;
  margin: 0;
}
.ai-stat-number-large {
  font-size: 2.5rem;
  margin: 0;
}
.ai-badge {
  background-color: #666666;
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.875rem;
}
.ai-badge-success {
  background-color: #28a745;
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.875rem;
}
.ai-badge-danger {
  background-color: #dc3545;
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.875rem;
}
.ai-badge-light {
  background-color: #f8f9fa;
  color: #495057;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.875rem;
}
.ai-badge-variable {
  background-color: #f8f9fa;
  color: #495057;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.875rem;
  margin-right: 5px;
}
.ai-progress-container {
  width: 100%;
  background-color: #e9ecef;
  border-radius: 4px;
  height: 20px;
}
.ai-progress-bar {
  height: 20px;
  border-radius: 4px;
  transition: width 0.3s;
}
.ai-progress-bar-success {
  background-color: #28a745;
}
.ai-progress-bar-warning {
  background-color: #ffc107;
}
.ai-progress-bar-danger {
  background-color: #dc3545;
}
#submenu {
  list-style: none inside;
  margin: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 5px 0;
  background-color: #f2f2f2;
}
#submenu a {
  display: block;
  padding: 0 15px;
  text-decoration: none;
  /* this is the width of the menu items */
  line-height: 35px;
  /* this is the hieght of the menu items */
  color: black;
  text-transform: uppercase;
  font-weight: bold;
  background: #999999;
}
#submenu a.selected,
#submenu a:hover {
  background: #9b1a17;
  color: white;
}
@media only screen and (max-width: 1199px) {
  #submenu {
    justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  #submenu {
    flex-direction: column;
  }
}
.software_update {
  background-color: #f2f2f2;
}
.software_update .name {
  font-size: 1rem;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #9b1a17;
}
.software_update .date {
  font-size: 0.9rem;
}
.software_update img {
  max-width: 90%;
}
.software_update .tag {
  background-color: #9b1a17;
  color: white;
  font-size: 0.9rem;
  padding: 2px;
  margin-left: 5px;
}
.software_update video {
  height: auto !important;
}
.software_update .wrap_text {
  word-break: break-all;
}
@media only screen and (max-width: 1920px) {
  .software_update video {
    width: 60% !important;
  }
}
@media only screen and (max-width: 1000px) {
  .software_update video {
    width: 80% !important;
  }
}
@media only screen and (max-width: 500px) {
  .software_update video {
    width: 100% !important;
  }
}
body.route_sale_contract_view input:read-only,
body.route_new_sale_contract input:read-only,
body.route_submission_view input:read-only {
  background-color: #cecece;
  cursor: default;
}
label.required::after {
  color: red;
  content: "*";
}
.label_size_lowercase {
  font-size: 12px;
  text-transform: lowercase;
}
.letter {
  height: 25px;
  width: 25px;
  color: white;
  background-color: #9b1a17;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}
.custom_radio {
  float: left;
  margin-right: 5px !important;
  margin-top: 3px;
}
.padding_left {
  padding-left: 1rem;
}
.sales_agreement_between_merchants {
  margin-left: 5px;
  margin-bottom: 2px;
}
.col-centered {
  float: none;
  text-align: left;
  margin-left: 15%;
}
.funding_option.selected .funding_box {
  background-color: white;
  border: 1px;
  border-style: groove;
}
.funding_box {
  padding: 10px;
  margin-left: 2%;
  margin-right: 2%;
}
.funding_box label {
  text-transform: none;
}
.funding_input_checkbox {
  background-color: #9b1a17;
  text-transform: uppercase;
  padding: 8px;
  color: white;
  cursor: pointer;
  user-select: none;
}
.hide {
  display: none;
}
.not_hide {
  display: block !important;
}
.sale_contract_floating_box {
  position: absolute;
  background-color: #f9f9fa;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
  padding: 1rem;
  z-index: 15;
  right: 45px;
  text-align: center;
  display: none;
}
.bottom-toolbar .sale_contract_floating_box {
  bottom: 50px;
}
.calculator label {
  text-transform: none;
}
.invalid-message {
  display: none;
}
.boxed.invalid {
  border: 1px solid red;
}
.boxed.invalid .invalid-message {
  display: block;
  color: red;
}
#sale_contract_saleContractCalculator_saleContractCalculatorFields_extended_warranty_description_value,
#submission_saleContractCalculator_saleContractCalculatorFields_extended_warranty_description_value {
  width: auto;
}
#sale_contract_saleContractCalculator_saleContractCalculatorFields_extended_warranty_description,
#submission_saleContractCalculator_saleContractCalculatorFields_extended_warranty_description {
  display: inline-block;
  width: auto;
}
body.route_dealer_sale_contracts .preview_pdf_svg,
body.route_dealer_wholesale .preview_pdf_svg,
body.route_vehicle_sale_contracts .preview_pdf_svg {
  height: 16px;
  filter: brightness(0) saturate(100%) invert(14%) sepia(45%) saturate(5348%) hue-rotate(351deg) brightness(93%) contrast(94%);
}
body.route_dealer_sale_contracts .preview_contract:hover,
body.route_dealer_wholesale .preview_contract:hover,
body.route_vehicle_sale_contracts .preview_contract:hover {
  cursor: pointer;
}
body.route_dealer_sale_contracts .topbar,
body.route_dealer_wholesale .topbar,
body.route_vehicle_sale_contracts .topbar {
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  right: 15px;
  left: 15px;
  z-index: 500;
}
body.route_dealer_sale_contracts .master_filter_bar,
body.route_dealer_wholesale .master_filter_bar,
body.route_vehicle_sale_contracts .master_filter_bar {
  font-family: Arial;
}
body.route_dealer_sale_contracts table,
body.route_dealer_wholesale table,
body.route_vehicle_sale_contracts table {
  margin-bottom: 2rem;
  width: 100%;
}
body.route_dealer_sale_contracts table th,
body.route_dealer_wholesale table th,
body.route_vehicle_sale_contracts table th,
body.route_dealer_sale_contracts table td,
body.route_dealer_wholesale table td,
body.route_vehicle_sale_contracts table td,
body.route_dealer_sale_contracts table span.mobile,
body.route_dealer_wholesale table span.mobile,
body.route_vehicle_sale_contracts table span.mobile {
  border: 1px solid #FFF;
  color: #666666;
  padding: 0.5rem;
}
body.route_dealer_sale_contracts table thead th,
body.route_dealer_wholesale table thead th,
body.route_vehicle_sale_contracts table thead th,
body.route_dealer_sale_contracts table thead td,
body.route_dealer_wholesale table thead td,
body.route_vehicle_sale_contracts table thead td {
  background-color: #f2f2f2;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
}
body.route_dealer_sale_contracts table thead tr,
body.route_dealer_wholesale table thead tr,
body.route_vehicle_sale_contracts table thead tr {
  vertical-align: baseline;
  position: relative;
}
body.route_dealer_sale_contracts table span.mobile,
body.route_dealer_wholesale table span.mobile,
body.route_vehicle_sale_contracts table span.mobile {
  padding: 0;
}
body.route_dealer_sale_contracts table .customCheckbox,
body.route_dealer_wholesale table .customCheckbox,
body.route_vehicle_sale_contracts table .customCheckbox {
  margin: 0;
  display: block;
}
body.route_dealer_sale_contracts table td.td-mobile-content,
body.route_dealer_wholesale table td.td-mobile-content,
body.route_vehicle_sale_contracts table td.td-mobile-content {
  width: 100%;
  position: relative;
}
body.route_dealer_sale_contracts table td.td-mobile-content span,
body.route_dealer_wholesale table td.td-mobile-content span,
body.route_vehicle_sale_contracts table td.td-mobile-content span {
  display: block;
}
body.route_dealer_sale_contracts table .table_row td,
body.route_dealer_wholesale table .table_row td,
body.route_vehicle_sale_contracts table .table_row td {
  border-bottom: 1px solid #f2f2f2;
}
body.route_dealer_sale_contracts table .sortable,
body.route_dealer_wholesale table .sortable,
body.route_vehicle_sale_contracts table .sortable {
  display: flex;
}
body.route_dealer_sale_contracts table .sortable svg,
body.route_dealer_wholesale table .sortable svg,
body.route_vehicle_sale_contracts table .sortable svg {
  display: none;
  color: #9b1a17;
  float: right;
  font-weight: bold;
  margin-left: 10px;
}
body.route_dealer_sale_contracts table .sortable.sorting-ASC svg.fa-long-arrow-up,
body.route_dealer_wholesale table .sortable.sorting-ASC svg.fa-long-arrow-up,
body.route_vehicle_sale_contracts table .sortable.sorting-ASC svg.fa-long-arrow-up {
  display: block;
}
body.route_dealer_sale_contracts table .sortable.sorting-DESC svg.fa-long-arrow-down,
body.route_dealer_wholesale table .sortable.sorting-DESC svg.fa-long-arrow-down,
body.route_vehicle_sale_contracts table .sortable.sorting-DESC svg.fa-long-arrow-down {
  display: block;
}
body.route_dealer_sale_contracts .mobile_content_edit_link,
body.route_dealer_wholesale .mobile_content_edit_link,
body.route_vehicle_sale_contracts .mobile_content_edit_link {
  position: absolute;
  right: 40px;
  top: calc(50% - 7px);
  font-weight: 900;
  font-size: 14px;
  line-height: 0;
}
body.route_dealer_sale_contracts .mobile_content_preview_link,
body.route_dealer_wholesale .mobile_content_preview_link,
body.route_vehicle_sale_contracts .mobile_content_preview_link {
  position: absolute;
  right: 20px;
  top: calc(50% - 7px);
  font-weight: 900;
  font-size: 14px;
  line-height: 0;
}
body.route_dealer_sale_contracts #table_listing_loading_icon,
body.route_dealer_wholesale #table_listing_loading_icon,
body.route_vehicle_sale_contracts #table_listing_loading_icon {
  width: 100%;
  height: 60px;
  padding-bottom: 30px;
}
.select2-selection--clearable .select2-selection__arrow {
  display: none;
}
.right-column {
  width: 15px;
}
.remove-row {
  background-color: #9b1a17;
  color: white;
  cursor: pointer;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
}
#wholesale_vehicle_body {
  display: table-row-group;
}
.sale_contract_vehicles .table-row .table-cell:first-child {
  width: 360px;
}
#gallery .photo_category {
  margin-bottom: 1.2rem;
}
#gallery .col:has(.img_overlay) {
  margin-bottom: 2rem;
  min-height: 66px;
  padding: 0px;
}
#gallery .col:has(.img_overlay) .ui-sortable-placeholder {
  border: 1px double black;
  border-radius: 5px;
  background: #aaa;
  opacity: 0.2;
  display: inline-block;
  margin: 0.5rem 0.5rem 0 0;
  max-width: 150px;
  width: 100px;
  height: 75px;
  position: relative;
}
#gallery .col:has(.img_overlay) .enlarge {
  height: 66px;
  background: #999;
  display: inline-block;
  width: 1px;
}
#gallery .col:has(.img_overlay) .img_overlay {
  display: inline-block;
  border: 1px solid #aaa;
  border-radius: 5px;
  margin: 0.5rem 0.5rem 0 0;
  max-width: 150px;
  width: 100px;
  position: relative;
  height: 75px;
  overflow-y: hidden;
}
#gallery .col:has(.img_overlay) .img_overlay img {
  max-height: 100%;
}
#gallery .col:has(.img_overlay) .img_overlay.loading {
  background: url(/dist/images/Spinner-200px.67ed9503.gif);
  background-size: 100%;
  background-position: center;
}
#gallery .col:has(.img_overlay) .img_overlay.loading img {
  display: none;
}
#gallery .col:has(.img_overlay) .img_overlay .delete {
  background-color: rgba(0, 0, 0, 0.8);
  color: #FFF;
  display: none;
  line-height: 15px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  width: 15px;
}
#gallery .col:has(.img_overlay) .img_overlay:hover .delete {
  display: block;
}
.selectMultiple {
  width: 100%;
  position: relative;
}
.selectMultiple select {
  display: none;
}
.selectMultiple > div {
  position: relative;
  z-index: 2;
  padding: 3px 3px 0 3px;
  border: 1px solid #888;
  background: #fff;
  font-size: 14px;
  min-height: 30px;
  box-shadow: 0 4px 16px 0 rgba(22, 42, 90, 0.12);
  transition: box-shadow 0.1s ease;
}
.selectMultiple > div:hover {
  box-shadow: 0 4px 24px -1px rgba(22, 42, 90, 0.16);
}
.selectMultiple > div .arrow {
  right: 1px;
  top: -3px;
  bottom: 0;
  cursor: pointer;
  width: 28px;
  position: absolute;
}
.selectMultiple > div .arrow:before,
.selectMultiple > div .arrow:after {
  content: '';
  position: absolute;
  display: block;
  width: 2px;
  height: 8px;
  border-bottom: 8px solid #99A3BA;
  top: 43%;
  transition: all 0.1s ease;
}
.selectMultiple > div .arrow:before {
  right: 12px;
  transform: rotate(-130deg);
}
.selectMultiple > div .arrow:after {
  left: 9px;
  transform: rotate(130deg);
}
.selectMultiple > div span {
  color: #99A3BA;
  display: block;
  position: absolute;
  left: 12px;
  cursor: pointer;
  transition: all 0.1s ease;
}
.selectMultiple > div span.hide {
  opacity: 0;
  visibility: hidden;
  transform: translate(-4px, 0);
}
.selectMultiple > div a {
  position: relative;
  padding: 0 8px 4px 22px;
  color: #1E2330;
  display: inline-block;
  vertical-align: top;
  margin: 0 6px 0 0;
}
.selectMultiple > div a em {
  font-style: normal;
  display: inline;
  white-space: nowrap;
}
.selectMultiple > div a:before {
  content: '';
  left: 0;
  top: 0;
  bottom: 6px;
  width: 100%;
  position: absolute;
  display: inline;
  background: rgba(228, 236, 250, 0.7);
  z-index: -1;
}
.selectMultiple > div a i {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 22px;
  display: block;
}
.selectMultiple > div a i:before,
.selectMultiple > div a i:after {
  content: '';
  display: block;
  width: 2px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #4D18FF;
}
.selectMultiple > div a i:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.selectMultiple > div a i:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.selectMultiple > div a.notShown {
  opacity: 0;
  transition: opacity 0.1s ease;
}
.selectMultiple > div a.notShown:before {
  width: 28px;
  transition: width 0.1s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.1s;
}
.selectMultiple > div a.notShown i {
  opacity: 0;
  transition: all 0.1s ease 0.1s;
}
.selectMultiple > div a.notShown em {
  opacity: 0;
  transform: translate(-6px, 0);
  transition: all 0.1s ease 0.1s;
}
.selectMultiple > div a.notShown.shown {
  opacity: 1;
}
.selectMultiple > div a.notShown.shown:before {
  width: 100%;
}
.selectMultiple > div a.notShown.shown i {
  opacity: 1;
}
.selectMultiple > div a.notShown.shown em {
  opacity: 1;
  transform: translate(0, 0);
}
.selectMultiple > div a.remove:before {
  width: 28px;
  transition: width 0.1s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0s;
}
.selectMultiple > div a.remove i {
  opacity: 0;
  transition: all 0.1s ease 0s;
}
.selectMultiple > div a.remove em {
  opacity: 0;
  transform: translate(-12px, 0);
  transition: all 0.1s ease 0s;
}
.selectMultiple > div a.remove.disappear {
  opacity: 0;
  transition: opacity 0.1s ease 0s;
}
.selectMultiple > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  z-index: 1;
  position: absolute;
  top: 77%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transform: translate(0, 20px) scale(0.8);
  transform-origin: 0 0;
  filter: drop-shadow(0 12px 20px rgba(22, 42, 90, 0.08));
  transition: all 0.1s ease, transform 0.1s cubic-bezier(0.87, -0.41, 0.19, 1.44), filter 0.1s ease 0.1s;
}
.selectMultiple > ul li {
  color: #1E2330;
  background: #fff;
  padding: 4px 16px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background 0.1s ease, color 0.1s ease, transform 0.1s ease 0.1s, opacity 0.1s ease 0.1s, border-radius 0.1s ease 0.1s;
}
.selectMultiple > ul li:hover {
  background: #4D18FF;
  color: #fff;
}
.selectMultiple > ul li:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}
.selectMultiple > ul li.remove {
  transform: scale(0);
  opacity: 0;
}
.selectMultiple > ul li.remove:after {
  animation: ripple 0.4s ease-out;
}
.selectMultiple > ul li.notShown {
  display: none;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.1s ease, opacity 0.1s ease;
}
.selectMultiple > ul li.notShown.show {
  transform: scale(1);
  opacity: 1;
}
.selectMultiple.open > div {
  box-shadow: 0 4px 20px -1px rgba(22, 42, 90, 0.12);
}
.selectMultiple.open > div .arrow:before {
  transform: rotate(-50deg);
}
.selectMultiple.open > div .arrow:after {
  transform: rotate(50deg);
}
.selectMultiple.open > ul {
  transform: translate(0, 12px) scale(1);
  opacity: 1;
  visibility: visible;
  filter: drop-shadow(0 16px 24px rgba(22, 42, 90, 0.16));
}
@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  25% {
    transform: scale(30, 30);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(50, 50);
  }
}
body .dribbble {
  position: fixed;
  display: block;
  right: 20px;
  bottom: 20px;
  opacity: 0.5;
  transition: all 0.1s ease;
}
body .dribbble:hover {
  opacity: 1;
}
body .dribbble img {
  display: block;
  height: 36px;
}
.ai-feedback-gradient {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.ai-success-bg {
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.ai-success-text {
  color: #155724;
}
.ai-success-icon {
  color: #28a745;
}
.ai-spinner-brand {
  color: #e31e24;
}
.ai-feedback-button {
  transition: all 0.2s;
}
.ai-close-button {
  color: #999999;
}
/*
@import '~@fortawesome/fontawesome-pro/less/fontawesome';
@import "~@fortawesome/fontawesome-pro/less/solid";
*/

/*!
 * jQuery UI CSS Framework 1.14.1
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 *
 * https://api.jqueryui.com/category/theming/
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*!
 * jQuery UI Datepicker 1.14.1
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 *
 * https://api.jqueryui.com/datepicker/#theming
 */
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}

/*!
 * jQuery UI Sortable 1.14.1
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 */
.ui-sortable-handle {
	touch-action: none;
}

.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0;max-width:100%;resize:none;height:18px;vertical-align:bottom;font-family:sans-serif;overflow:hidden;word-break:keep-all}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px;position:relative}.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right:25px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;position:absolute;right:0;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:inline-block;margin-left:5px;margin-top:5px;padding:0;padding-left:20px;position:relative;max-width:100%;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px;position:absolute;left:0;top:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}

