﻿/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/


/* Global */
a, a:hover, a:active {
    color: inherit;
}

body, html {
    font-size: 16px;
    position:relative;
    z-index:0;
    background-color:#fff;
    width: 100%;
    height: -webkit-fill-available;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
    body, html {
        overflow:hidden;
    }
}

img {
    max-width: 100%;
    height: auto;
}

[hidden] {
    visibility: hidden !important;
}

.w-100 {
    width: 100%;
}

@media (min-width: 992px) {
    .h-lg-100 {
        height: 100%;
    }
}

@media (min-width:768px) and (max-width:992px) {
    .d-tablet{
        display: none;
    }
}

.d-block {
    display:block;
}

.alert {
    background-color:#cacaca;
    color: #000;
    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    -o-box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    -ms-box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
		border-color: transparent; 
}
button[data-dismiss="alert"] span {
	font-size: 26px;
}

/* Header */		
.header {
    position:fixed;
    top:0;
    left: 0;
    right:0;
    z-index:10;
    display:block;
    height: 60px;
    width: 100%;
    padding:10px 15px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
}

.header__customer-logo img, .header__brand-logo img {
    width: auto;
    height: 100%;
    max-height: 40px;
}


/* Footer */
footer {
    width: 100%;
    display:block;
    background-color: #fff;
    color:#000;
    padding:15px;
    font-size: 0.7rem;
    -webkit-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
    footer {
        height:60px;
        position: absolute;
        bottom: 0;
    }
}

footer a, footer a:hover, footer a:link, footer a:visited, footer a:focus {
    color:#000;
    text-decoration: none;
}

footer i {
    background-color: #cecece;
    width: 30px;
    height: 30px;
    font-size:1rem;
    -webkit-border-radius:100px;
    -moz-border-radius:100px;
    -o-border-radius:100px;
    -ms-border-radius:100px;
    border-radius:100px;
    color:#ffffff;
}

footer i:before {
    font-size:0.875rem;
    line-height: 30px;
}

/* Inputs */
.form-group {
    position: relative;
}

.form-control {
    box-sizing: border-box;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    -o-border-radius:0;
    -ms-border-radius:0;
    border-radius:0;
    margin-bottom:20px;
    color:#333;
    padding:10px 15px;
    font-size:0.875rem;
    font-weight: 500;
    border: 2px solid #cecece;
}

.form-control:focus {
    outline: none;
    border: 2px solid #666;
    box-shadow: none;
}

label {
    font-weight: 600;
    font-size: 0.875rem;
}

.code__holder-addon {
    flex:0 1 auto;
    padding-right:3px; 
}

.code__holder-input {
    flex:1 1 auto;
}

.code__holder-input, .code__holder-input:focus, .code__holder-input:active {
    border:none;
    padding:0;
    outline: none;
    font-weight: 600;
}

.field-validation-error {
    display: block;
    width: auto;
    color: #dc3545;
    opacity: 0.8;
    margin-top: 0;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.valuation-form .field-validation-error {
    margin-top: 1rem;
}

.checkbox {
    position:relative;
    width:100%;
    padding-left: 2rem;
    height: 25px;
    line-height:25px;
    background-color:transparent !important;
    color: #9c9c9c;
    letter-spacing: 1px;
}

select::-ms-expand {
    display: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 25px;
    line-height:25px;
}
  
/* Create a custom checkbox */
.checkmark {
position: absolute;
top: .75rem;
left: 1.5rem;
height: 15px;
width: 15px;
background: none!important;
border: 2px solid #cecece;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
background-color: #cacaca;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark, .radio_list__item.selected .checkmark, .radio_list__item.selected-time .checkmark {
background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after, .radio_list__item.selected .checkmark:after, .radio_list__item.selected-time .checkmark:after {
display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after, .radio_list__item .checkmark:after {
left: 3px;
top: 1px;
width: 4px;
height: 8px;
border: solid white;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Buttons */
.btn {
    border-width: 0;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    -o-border-radius:30px;
    -ms-border-radius:30px;
    border-radius:30px;
    line-height: 32px;
    padding:6px 30px;
    font-size: 1.45rem;
    font-weight: 600;
    min-width: 180px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media (max-width:600px) { 
    .btn {
        font-size: 1.45rem;
        width: 100%;
        padding: 6px 0px;
    }
}

.btn:hover {
    box-shadow:2px 2px 2px rgba(0, 0, 0, 0.4);
}

.btn.btn-primary {
    background-color:#0a77b7;
    line-height: 32px;
}

.btn.btn-primary:hover {
    background-color:#333;
}

.btn.btn-default {
    background-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

.btn.btn-default:active, .btn.btn-default:focus, .btn.btn-default:hover {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
}
.btn-back, .btn-next, .btn-alt {
    border: 2px solid #d5d5d5;
    margin-bottom: 20px;
    color: #707070;
    position: relative;
    padding: 6px 75px;
    font-weight: 300;
    min-width: 275px;
    line-height: 32px;
    font-size: 1.2rem;
    transition: 500ms;
    transform: translateY(0rem);
}
.btn-alt {
    margin: 0;
    background: none;
    padding: 0.375rem 0.75rem;
    max-width: auto;
    min-width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.btn-alt:hover, .btn.btn-pagenumber:hover {
    box-shadow: none;
    color: #707070;
    border-color: #a1a1a1;
}
.btn.btn-pagenumber {
    background: none;
    border: 2px solid #ccc;
    border-radius: 8px;
    margin: 5px;
    padding: 0;
    min-width: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-weight: 500;
    font-size: 16px;
}
.shortlist-count {
    border-radius:50%;
    height: 1.5rem;
    width: 1.5rem;
    display: inline-flex;
    justify-content: center;
    margin-left: 0.5rem;
    align-items: center;
    font-size: 15px;
    line-height: 1rem;
    font-weight: 500;
}
.btn.loading {
    position: relative;
    transition: none;
    overflow: hidden;
    z-index: 0;
    text-indent: -9999px;
}

.btn.loading:after {
    content: "";    
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s ease infinite;
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

@media (max-width: 767px) {
    .shortlist-btn .btn-alt {
        position: fixed;
        top: 70px;
        right: 7px;
        text-indent: -9999px;
        border-radius: 7px;
        height: 60px;
        width: 60px;
        background: #fff;
    }
    .shortlist-btn .btn-alt:after {
        content: "\f004";    
        font-family: 'FontAwesome';
        position: absolute;
        font-size: 2.2rem;
        text-indent: 0;
        z-index: 1;
        transform: scale(1);
        transition: 500ms;
    }
    .shortlist-btn .btn-alt:hover:after {
        transform: scale(1.1);
    }
    .shortlist-count {
        position: absolute;
        height: 1rem;
        width: 1rem;
        z-index: 2;
        top: 4px;
        right: 4px;
        text-indent: 0;
        font-size: 12px;
    }
}

.shortlist-btn.added .btn {
    box-shadow: 0 0 0 0 rgb(110, 110, 110);
	transform: scale(1);
	animation: pulse 2s 2;
}
@keyframes pulse {
	0% {
		transform: scale(0.95);
        background-color: rgb(110, 110, 110);
		box-shadow: 0 0 0 0 rgba(110, 110, 110, 1);
        color: #fff;
	}
	
	70% {
		transform: scale(1);
        background-color: rgba(255, 255, 255, 1);
		box-shadow: 0 0 0 10px rgba(110, 110, 110, 0);
	}
	
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(110, 110, 110, 0);
	}
}

.btn-next:after {
    content: "\f061";    
    font-family: 'FontAwesome';
    position: absolute;
    right :1rem;
    font-size: 1rem;
    color: #d5d5d5;and active
}
.btn-back:hover, .btn-next:hover {
    box-shadow: none;
    color: #707070;
    border-color: #a1a1a1;
}
.btn-back:active, .btn-next:active {
    transform: translateY(0.2rem);
    box-shadow: none;
}
.btn-back:after {
    content: "\f060";
    font-size: 1rem;
    font-family: 'FontAwesome';
    position: absolute;
    left :1rem;
    color: #d5d5d5 !important;
}
.btn-back:hover:after {
    -webkit-animation: bounceRight 1s ease-in infinite;
    animation: bounceRight 1s ease-in infinite;
    opacity: 1;
}
.btn-next:hover:after {
    -webkit-animation: bounceLeft 1s ease-in infinite;
    animation: bounceLeft 1s ease-in infinite;
    opacity: 1;
}

/* Text */

h1 {
    font-size:1.8rem;
    line-height: 2.2rem;
    font-weight: bold;
}

h2 {
    font-size:1.4rem;
    line-height: 1.8rem;
    font-weight: bold;
}

h3 {
    font-size:1.2rem;
    line-height: 1.6rem;
    font-weight: bold;
}

h4 {
    font-size:1rem;
    line-height: 1.2rem;
    font-weight: 400;
    color: #9C9C9C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p small {
    font-size:0.7rem;
}

/* Widget */
.widget__body {
    background-color:#333;
    color:#fff;
    border:4px solid rgba(255,255,255,1);
    display:inline-block;
    width: auto;
    margin: 0 auto;
    padding:30px;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    -o-border-radius:30px;
    -ms-border-radius:30px;
    border-radius:30px;
}

.widget__body.sm {
    padding:10px 15px;
}

.widget__body hr {
    border-width: 3px;
    border-color: rgba(255,255,255,0.2);
}

.widget_white {
    background-color:#fff;
    border-radius:12px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.widget_white__body {
    padding:20px 15px;
}

.display-4 {
    color:#343434;
}

/* Content */
.content {
    height: 100%;
    background-color:#F4F6F7;
    padding-top: 60px;
}

.content.no_header {
    padding-top: 0;
}

.content .content__left_inner {
    background-color:#F4F6F7;
}

.content .content__left_inner .content__left_inner_pad {
    padding-left:30px;
    padding-right:30px;
    padding-top:30px;
    padding-bottom:30px;
}

@media (min-width:500px) {
    .content .content__left_inner .content__left_inner_pad {
        padding-left:60px;
        padding-right:60px;
    }
}

@media (min-width: 992px) {
    .content .content__left_inner {
        overflow-y: scroll;
        overflow-x: visible;
        height: 100%;
    }

    .content .content__left_inner  .content__left_inner_pad  {
        padding-left:30px;
        padding-right:30px;
        padding-bottom: 120px;
        height: auto;
        min-height: 100%;
    }

    .content .content__left_inner.no_scroll {
        overflow-y: hidden;
        overflow-x: hidden;
        height: 100%;
    }

    .content .content__left_inner.no_scroll .content__left_inner_pad  {
        padding-left:30px;
        padding-right:30px;
        padding-bottom: 120px;
        height: auto;
        min-height: 100%;
    }
}

@media (min-width: 1400px) {
    .content .content__left_inner .content__left_inner_pad {
        padding-left:60px;
        padding-right:60px;
    }
}


.content .content__left_inner::-webkit-scrollbar {
    width: 10px;
  }
   
.content .content__left_inner::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

.content .content__left_inner::-webkit-scrollbar-thumb {
    background-color: darkgrey;
}

.content .content__left_inner::-webkit-scrollbar-thumb:hover {
    background-color: slategrey;
}

.content .main-title, .content .main-title h1, .content .main-title h2 {
    color:#000000;
}

.content__right_img {
    position:relative;
    z-index:1;
    width:100%;
}

.content__right_overlay {
    position:absolute;
    z-index:2;
    bottom:0;
    right:auto;
    left: auto;
    width: 100%;
    background-color:rgba(0, 0, 0, 0.3);
}

.content__right_overlay_top {
    position:absolute;
    z-index:2;
    top:0;
    right:auto;
    left: auto;
    width: 100%;
}

.callout {
    background-color:#000;
    color:#fff;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    -o-border-radius:30px;
    -ms-border-radius:30px;
    border-radius:30px;
    padding:10px 15px;
}

.alert {
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    -o-border-radius:30px;
    -ms-border-radius:30px;
    border-radius:30px;
    font-size: 0.7rem;
}


.alert-dismissible .close {
    padding: .90rem 1.25rem;
    outline:none;
    color:#fff;
    font-size: 1rem;
    line-height: 1rem;
    text-shadow: none;
}
.alert-dismissible .close:hover, .alert-dismissible .close:active {
    color:#fff !important;
    color:initial;
    outline:none;
}

@media (max-width: 512px) {
    .alert-dismissible .close {
        padding: .80rem 1.25rem;
    }
}

.alert.sm {
    font-size:0.7rem;
}

.alert.sm.alert-dismissible .close {
    padding:10px;
}
 
@media (min-width: 512px) {
    .alert {
        font-size: 0.875rem;
    }
}

.radio_list {
    -webkit-flex-basis: auto;
    -ms-flex-basis: auto;
    flex-basis: auto;
}

.radio_list__item {
    width: auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    cursor: pointer;
    background-color: transparent !important;
    position:relative;
    border: 2px solid #d8d8d8;
    padding:  0.5rem 1.5rem;
    border-radius: 5px;
    text-transform: none;
    margin: 0 5px 10px; 
    min-width: 166px;
    user-select: none;
    -webkit-user-drag: none;
}
@media (max-width:500px) {
    .radio_list__item {
        width: 100%;
    }
    .time-row {
        margin-left: -5px;
        margin-right: -5px;
    }
    .time_item {
        width: 50%;
    }
    .time_item a {
        margin: 0 5px 10px;
        width: auto;
    }
}
@media (max-width:380px) {
    .time_item {
        width: 100%;
    }
}

.radio_list__item:hover, .radio_list__item:focus {
    text-decoration: none;
    border-color: #d8d8d8;
    outline: none;
}


a:disabled.btn-date, .time_item a:disabled, .time_item a.disabled, a.disabled.btn-date, .time_item a:hover.disabled, a:hover.disabled.btn-date {
    background-color: #cacaca !important;
    cursor:not-allowed !important;
}




.double__btn .first, .double__btn .last {
    margin-bottom:20px;
    width: 100%;
}

@media (min-width: 420px) {
    .double__btn .first, .double__btn .last {
        margin-bottom:20px;
        width: auto;
    }
    .double__btn .last { 
        margin-left:auto;
    }
}

/* Cars */
.cars-list .car button {
    cursor: pointer;
    background-color: #f6f6f6;
    outline:none;
    position: relative;
    overflow: hidden;   
    padding:0;
    border:none;
    color: #bbb;
    box-shadow:0px 0px 30px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform:translate(-3px);
    -moz-transform:translate(-3px);
    -o-transform:translate(-3px);
    -ms-transform:translate(-3px);
    transform:translate(-3px);
}

.cars-list .car button:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 0 10px rgb(0 0 0 / 0%);
    transition: all 0.3s ease-in-out;
}
.cars-list .car button.selected-car:before {
    box-shadow: 0 0 10px rgb(0 0 0 / 70%);
}

@media (hover: hover) and (pointer: fine) {
    .cars-list .car:hover > button {
        box-shadow:0px 0px 60px rgba(112, 112, 112, 0.6);
        background: #fff;
    }
    .cars-list .car button:hover {
        opacity:0.8;
    }
    .cars-list .car:hover > button:before   {
        box-shadow: 0 0 10px rgb(0 0 0 / 70%);
    }
}


.cars-list .car button:selected {
    outline: none;
    border:none;
    color: #000;
}

.cars-list .car button.selected-car { 
    color:#000;
    -webkit-transform:translate(0);
    -moz-transform:translate(0);
    -o-transform:translate(0);
    -ms-transform:translate(0);
    transform:translate(0);
    box-shadow:0px 0px 40px rgba(0, 0, 0, 0.8);
    transform: scale(1.015);

}
.cars-list .car .car-image {
    position: relative;
    z-index:0;
    background-color:#111;
}

.cars-list .car .car-image img {
    position: relative;
    z-index:1;
    max-width: 100%;
    height: auto;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    mix-blend-mode: multiply;
}


/* .cars-list .car button.selected-car .car-image:before {
    position:absolute;
    top:50%;
    left:auto;
    right:auto;
    z-index:2;
    height: auto;
    width: 100%;
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    color:#fff;
    font-size: 2rem;
    -webkit-transform: translateY(-26px);
    -moz-transform: translateY(-26px);
    -o-transform: translateY(-26px);
    -ms-transform: translateY(-26px);
    transform: translateY(-26px);
} */

/* Used Cars Page */

.visually-hidden {
    clip: rect(0,0,0,0)!important;
    border: 0!important;
    height: 1px!important;
    margin: -1px!important;
    overflow: hidden!important;
    padding: 0!important;
    position: absolute!important;
    white-space: nowrap!important;
    width: 1px!important;
}
.gallery .carousel-control-next, .gallery .carousel-control-prev {
    background: none;
    border: none;
    z-index: 10;
}
.gallery .carousel-control-next i, .gallery .carousel-control-prev i {
    color: #000;
    background: #fff;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 26px;
    cursor: pointer;
}
.gallery {
    width: 77%;
    padding: 0 12px;
}
.btn.btn-add {
    width: 100%;
    padding: 6px 0px;
}
@media (max-width: 767px) {
    .gallery {
        width: 100%;
        padding: 0 0px;
    }
    .btn.btn-add {
        width: auto;
        padding: 6px 30px;
    }
}
.gallery-thumbs {
width: 23%;
}
.gallery img, .gallery-thumbs img {
    border-radius: 10px;
    margin-bottom: 16px;
    width: 100%;
    height: auto;
}
#viewDetailsModal .modal-dialog {
    max-width: 960px;
}

.search-field {
    min-width: 20%;
}
.search-field select {
    width: 100%;
    line-height: 22px;
    height: 44px;
    padding: 6px 20px;
    border-radius: 5px;
    border: 2px solid #cdcdcd;
    color: #7b7b7b;
    font-size: .9rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    background: url(https://bluesky.sirv.com/Global/Assets/Images/icons/down-arrow.png) no-repeat;
    background-position: right 10px center;
    padding: 6px 28px 6px 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sticky-bar {
    position: sticky;
    top: 0;
    z-index: 9999980;
    background: #fff;
}
.link {
    cursor: pointer;
    color: #4B91E2;
    text-decoration: underline;
}
a.expand {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
}
.car-title {
    font-size: 20px;
}
.car-version {
    font-size: 16px;
}
.car-price {
    font-size: 28px;
    font-weight: bold;
    color: #9f9f9f;
    margin: 0;
}
.car-img {
    width: 100%;
    position: relative;
    text-align: center;
}
.car-img img {
    width: 100%;
    z-index: 2;
    position: relative;
}
.car-img:before {
    content: "No image available";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.viewDetailsContent .car-price {
    font-size: 32px;
    font-weight: 800;
}
.viewDetailsContent .dealership {
    font-weight: 600;
    color: #9f9f9f;
    font-size: 14px;
    margin-bottom: 2rem;
}
.btn-shortlistRemove {
    padding: 0;
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: auto;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 24px;
    box-shadow: none;
    transform: scale(1);
    transition: 500ms;
    background: #fff!important;
    border: 2px solid #d5d5d5;
    z-index: 3;
}
.btn-shortlistRemove:hover {
    transform: scale(1.1);
}
.btn-shortlistRemove i {
    color: #d5d5d5 ;
}
.btn-primary.btn-continue {
    min-width: auto;
}
.shadow-lg {
    box-shadow: 0 0 30px #ccc;
}
.vehicle-details {
    font-family: 'Fira Sans', Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}
.car {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 10px;
}
.car img {
    width: 100%;
}
.car-specs i {
    font-size: 20px;
}
.car-specs p {
    font-weight: bold;
    color: #9f9f9f;
    line-height: 1;
}

@media (max-width: 767px) {
    .search-form {
        position: fixed;
        top: 0;
        left: -100%;
        transition: 500ms;
        z-index: 9999999;
        background: #fff;
        overflow: auto;
        height: 100vh;
        width: 100%;
        padding-top: 100px;
        padding: 100px 1rem 1rem;
    }
    .search-form.active {
        left: 0;
    }
    #extraOptions {
        display: flex!important;
    }
    .mobile-filter {
        position: fixed;
        z-index: 9999998;
        bottom: 0;
        width: 100%;
        left: 0;
        padding: 1rem;
        background: #fff;
    }
}

.cars-list .car p {
    font-size:1.5rem;
    font-weight: 500;
    padding:5px;
}

@media (max-width:575px) {
    .cars-list .car button {
        display: flex;
        align-items: center;
        padding: 1rem;
        width: 100%;
    }
    .cars-list .car img {
        width: 100px; 
    }
    .cars-list .car p {
        width: calc(100% - 100px);
        line-height: 1.5rem;
    }
}


/* Copy Code */
.copy-button {
    border:none;
    background:none;
    cursor: pointer;
    color: #fff;
}


/* Image */
.image {
    position: relative;
    z-index:0;
    background-color: #333;
}

.image img {
    width: 100%;
    max-width:100%;
    height:auto;
    position:relative;
    z-index: 1;
}

/* Steps */
.steps {
    padding: 15px;
}

@media screen and (min-width:500px) {
    .steps {
        padding:30px;
    }
}

.steps li {
   list-style-type: none; 
   text-align:center;
   width: 100%;
   position: relative;
   z-index:0;
}

.steps li.active {
    cursor: pointer;
}

.steps li.active a:hover {
    text-decoration: none;
}

.steps li i {
    position: relative;
    z-index:2;
    font-size:1.2rem;
    background-color: #e9ecef;
    color:#343434;
    width: 45px;
    height: 45px;
    -webkit-border-radius:100px;
    -moz-border-radius:100px;
    -o-border-radius:100px;
    -ms-border-radius:100px;
    border-radius:100px;
}

.steps li i:before{
    line-height: 45px;
}

.steps li.active i {
    background-color: #343434;
    color:#fff;
}

.steps li .progress {
    position: absolute;
    z-index: 1;
    width: 50%;
    height: 4px;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    -o-border-radius:0;
    -ms-border-radius:0;
    border-radius:0;
}

.steps li .progress .progress-bar {
    background-color: #343434;
    border:none;
    outline: none;
}

.steps li .progress.after {
    /* right: -18px; */
    right:0;
    top: 21px;
}

.steps li .progress.before {
    /* left: -18px; */
    left:0;
    top: 21px;
}

.steps li p {
    font-size:0.7rem;
    color:#fff;
    margin-bottom:0;
    margin-top:15px;
 }

 .complete p:before {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% + 2px);
    top: 7px;
    width: 5px;
    height: 9px;
    border: solid #d8d8d8;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0;
}

 @media (max-width:420px) {
    .steps li p span {
        display: none;
    }
 }


 /* Register Form */
 .iframe_wrap > div {
    padding-top:0;
    height:100%;
}

.iframe_wrap iframe {
    min-height: 100%;
}

.iframe_wrap > div iframe {
    width:100%;
}

/* Tablet Portrait and Landscape */
@media 
  (min-device-width: 800px) 
  and (max-device-width: 1280px)
  and (-webkit-min-device-pixel-ratio: 2) {
    .iframe_wrap > div iframe {
        padding:0 0 60px 0;
    }
}


/* Mobile Portrait and Lanscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 992px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
    .iframe_wrap > div iframe {
        padding:0 0 120px 0;
    }
}
/* 2022 RESKIN */
.content {
    background:#fff;
    font-family: 'Fira Sans', Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    position: relative;
    z-index: -1;
}

.horizon {
    position: relative;
}

.shadow {
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
label {
    font-weight: 400;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9c9c9c;
}
.signin-form {
    max-width:360px;
    margin: 0 auto;
}
.mw-500 {
    max-width:500px;
    margin: 0 auto;
}
.mw-430 {
    max-width:430px;
    margin: 0 auto;
}
.mw-200{
    max-width:200px;
    margin: 0 auto;
}
.mw-1130 {
    max-width: 1130px;
    margin: 0 auto;
}
@media (max-width:991px) { 
    .mw-430 {
        max-width: none;
    }
}

.reg-input {
    background: #FEC20A;
    border: 4px solid #000;
    text-align: center;
    font-size: 3.5rem;
    line-height: 1;
    padding: 0.5rem;
    border-radius: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    max-width: 350px;
    margin: 0 auto;
    text-transform: uppercase;
}
.content__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}
@media (max-width:991px) { 
    .content__img {
        padding: 0;
    }
}
@media (max-width:600px) { 
    .content__img {
        height: auto;
        object-fit: revert;
        width: 100%;
    }
    .image-wrap.h-100 {
        height: auto !important;
    }
}
a.btn-date {
    min-width: 242px;
}

.progression {
    display: flex;
    justify-content: center;
}
.progression-steps {
    padding: 1rem 0 0;
    list-style: none;
    display: flex;
    margin-bottom: 3rem;
}
.progression-steps li {
    position: relative;
    padding: 1rem;
}
.progression-steps li p {
    margin:0;
    color: #9C9C9C;
}
.progression-steps li.active p {
    margin:0;
    color: #000;
    font-weight: 600;
}
.progression-steps li:before {
    position: absolute;
    content: "";
    height:7px;
    width: 7px;
    background: #d8d8d8;
    border-radius: 50%;
    border:4px solid #fff;
    bottom:0px;
    left: calc(50% - 2px);
    box-sizing: content-box;
    z-index:1;
}
.progression-steps li.active:before {
    background: blue;
}
.progression-steps li:after {
    position: absolute;
    content: "";
    height:2px;
    width: 100%;
    background: #d8d8d8;
    bottom:6px;
    left: 0;
}
.progression-steps li:first-child:after {
    width: 50%;
    left: 50%;
}
.progression-steps li:last-child:after {
    width: 50%;
    left: 0;
}
.opacity-0 {
    opacity: 0;
}
h1 {
    font-size: 3.1rem;
    line-height:3.5rem;
}
.sub-title {
    font-size: 1.5rem;
    line-height: 1.8rem;
}
@media (max-width:600px) { 
    h1 {
        font-size: 1.8rem;
        line-height: 2rem;
    }
    .sub-title {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
}
.event-dates {
    color: #9C9C9C;
    text-transform: uppercase;
}
.message-box {
    background: #EEEEEE;
    border: 1px solid #D9D9D9;
    padding: 1rem;
    width: 300px;
    text-align: center;
    position: absolute;
    bottom: -2rem;
    left: calc(50% - 150px);
    z-index: 100;
}
.info {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 1);
    text-align: center;
    color: #707070;
    padding: 0.5rem;
    border-radius: 5px;
    display: inline-block;
}
.info i {
    color: rgba(74, 144, 226, 1);
    margin-right: .5rem;
}
.info a {
    color: inherit;
    font-weight: 600;
}
.load-icon {
    animation:spin 1s linear infinite;
    margin-right: 0.5rem;
}
.form-control {
    border-radius: 5px;
}
.scrollbar {
    height:100%;
    overflow: hidden auto;
    -webkit-box-pack: start;
    scrollbar-width: none;
}
.scrollbar::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    appearance: none;
}
@media (max-width:991px) { 
    .scrollbar {
        height: auto;
        overflow: auto;
    }
}

.modal .modal-content {
    border-radius: 0;
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #ccc;
    text-decoration: none;
}
.toggle-btn, .toggle-btn:active {
    color: #9C9C9C;
}
.toggle-btn span {
    border-bottom: 1px solid #9C9C9C;
}
.toggle-btn:hover, .toggle-btn:active {
    text-decoration: none;
}



.copy-button {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 1);
    text-align: center;
    color: #000;
    font-weight: 600;
    padding: 0 1rem;
    border-radius: 5px;
    display: inline-block;
    font-size: 2.5rem;
}
.copy-button i {
    color: rgba(74, 144, 226, 1);
    margin-left: 1rem;
    font-size: 2rem;
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    }
}

@media (max-width:991px) { 
    .progression {
        position: absolute;
        top: 90px;
        width: 100%;
        left:0;
    }
    .shadow {
            box-shadow: 0 0 0px rgba(0,0,0,0);
    }
    
    .image-wrap {
        padding-top: 100px;
    }
}
@media (max-width:600px) { 
    .progression-steps li {
        padding: 1rem 0.4rem;
        font-size: 12px;
    }
    h1 {
        font-size: 2rem;
    }
    .message-box {
        position: fixed;
        bottom: 0.5rem;
        width: calc(100% - 1rem);
        left: 0.5rem;
    }
    .info {
        display: block;
    }
}

/*Bootstrap*/
.collapsing {
    transition: height .500s ease;
}




/* /left bounce */
  @keyframes bounceLeft {
    0%,
    20%,
    50%,
    80%,
    100% {
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    40% {
      -ms-transform: translateX(10px);
      transform: translateX(10px);
    }
    60% {
      -ms-transform: translateX(5px);
      transform: translateX(5px);
    }
  }

  /* right bounce */
  @keyframes bounceRight {
    0%,
    20%,
    50%,
    80%,
    100% {
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    40% {
      -ms-transform: translateX(-10px);
      transform: translateX(-10px);
    }
    60% {
      -ms-transform: translateX(-5px);
      transform: translateX(-5px);
    }
  }

.iframe_wrap {
flex: 1 1 auto;
overflow:hidden;
}
.iframe_wrap > div {
width: 100%;
display: grid;
}
.iframe_wrap > div iframe{
width: calc(100% + 17px);
}
@media (max-width:991px) { 
    .iframe_wrap > div iframe{
        width: 100%;
    }
}
@media (max-width:600px) { 
    .btn-submit {
        width: 100%;
    }
    .image_register {
        min-height:none;
        height:none;
        padding-bottom:60%;
    }    
}