/******************************************* GLOBAL ***********************************************/

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --blue: #003399;
    --dark-red: #940b0b;
    --light-red: #ed1818;
    --black: #000;
    --white: #fff;
    --off-white: #f7f7f7;
    --dark-grey: #121212;
    --mid-grey: #555;
    --light-grey: #cdcdcd;
  }
#btn-back{
	cursor:pointer;
}
.tiny{
    font-size:10px;
}

body {
    font-family: "Lato", sans-serif;
    font-size:12px;
}
.c-black{
    color:var(--black);
}
.ml-5{
    margin-left:5px;
}
.mr-5{
    margin-right:5px;
}
.no-margin{
    margin:0px!important;
}
.no-padding{
    padding: 0px !important;;
}
.p-10{
    padding:10px;
}
.inline-centered-column {
    display: flex;
    justify-content: center;
    flex-direction:column;
    align-items: center;
}
.inline-centered-row {
    display: flex;
    justify-content: center;
    flex-direction:row;
    align-items: center;
}
 .clearall{
     clear:both;
 }
 .no-padding{
     padding:0px!important;
 }
 .no-margin{
     margin:0px!important;
 }
 .center {
     text-align: center !important;
 }
 .bg-custom {
	background: #cdcdcd;
	margin-bottom: 15px;
	transition: all 500ms linear;
}
.bg-custom.active {
    left: 0px;
  }
@media (max-width: 768px) {
    .bg-custom {
        position: absolute;
        left: -110%;
        z-index: 99;
    }
}
 .form-select{
    font-size:12px!important;
 }
 .card {
    font-size: 12px;
}
.floating-button {
	position: absolute;
	top: 0%;
	right: 6px;
	display: none;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	color: var(--dark-grey);
	align-items: center;
	background: #cdcdcd;
	padding: 8px;
	border-radius: 50px;
	width: 50px !important;
	z-index: 999;
    cursor:pointer;
}
.float-btn{
    position: fixed!important;
    bottom: 10px!important;
    right: 10px!important;
    z-index: 999999!important;
}
@media (max-width: 768px) {
    .floating-button {
        display:flex;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    }
}
@media (max-width: 992px) {
	.m-m{
		margin-bottom:15px;
	}
}
/* ==============================  FILE UPLOAD ================================*/

.smaller{font-size:12px;}

.inputfile + label {
    font-size:12px!important;
    background: #696969;
    color: #fff!important;
    display: inline-block;
    padding:10px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.inputfile:focus + label,
.inputfile + label:hover {
    background: #cdcdcd;
    color: #212121!important;
}

.inputfile{
    display:none;
}

/* UPLOADER */

#drop_file_zone {
	border: 1px dashed #121212;
	text-align: center;
	padding: 20px;
}

#drag_upload_file {
  width:50%;
  margin:0 auto;
}

#drag_upload_file p {
  text-align: center;
}

#drag_upload_file #selectfile {
  display: none;
}

.thumbnail {
    height: 100px!important;
    margin: 10px;
    display:inline;
}


/******************************************* PAGINATION ***********************************************/
.paginate {
    cursor: pointer;
    display: inline;
    text-decoration: none;
    background:#a7c3e2;
    color:var(--white)!important;
    
}
.paginate:hover{
    background: var(--black)!important;
    color:var(--white)!important;
	text-decoration:none!important;
}
 .page-btns {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px) {
.page-btns {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
}
.pg-btn {
    width: 20px !important;
    text-align: center !important;
    margin: 0px 0px;
    border-radius: 4px!important;
    background: #770f10!important;
    color: var(--white)!important;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    font-size:14px;
}

.current-page-btn{
    background:var(--black)!important;
    color:var(--white)!important;
}
.pg-btn:hover{
    background:var(--black)!important;
   
	text-decoration:none!important;
}

.pg-btn-ext {
	width: 100px !important;
	text-align: center !important;
	margin: 0px 5px;
	padding: 5px 20px;
	border-radius: 2px;
	font-weight: 600;
	border-radius: 4px;
	transition: all 0.5s ease-in-out;
	font-size: 14px;
	background: #770f10;
}
@media (max-width: 768px) {
.pg-btn-ext {
    width: 120px!important;
    display: inline-block;
}
	.page-numbers{
		margin:10px 0px;
	}
}
/******************************************* SEARCH FORMS ***********************************************/

 .form-heading{
    color: Var(--dark-grey);
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
 }
 .custom-button {
    padding: 10px;
   background: #770f10;
	color: var(--white) !important;
    font-size: 12px;
    border: 1px solid var(--dark-grey);
    border-radius: 4px;
    font-family: "Lato", sans-serif;
    min-width: 150px;
    margin: 35px 0px;
    transition: all 0.5s ease-in-out;
}
 .custom-button:hover{
    background:var(--mid-grey);
    color:var(--light-grey);
    border:1px solid transparent;
 }
.custom-btn {
	padding: 15px 20px;
	background: #770f10;
	color: var(--white) !important;
	font-size: 14px;
	/* border: 1px solid var(--dark-grey); */
	border-radius: 4px;
	font-family: "Lato", sans-serif;
	width: 100%;
	margin: 5px 0px;
	transition: all 0.5s ease-in-out;
	border: 1px solid transparent;
}
.custom-btn:hover {
	text-decoration:none!important;
    background:var(--mid-grey);
    color:var(--light-grey);
    border:1px solid transparent;
}
.custom-select{
    width: 30%!important;

}
.mr-5{
    margin-right:5px;
}
.m-w-25 {
	min-width: 250px;
}
.no-display{
    display:none;
}
.none{
    display:none;
}
.custom-form-control {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--black);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--light-grey);
    font-family: "Lato", sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.autocomplete-suggestions {
    background: var(--light-grey);
    color: var(--dark-grey);
    padding: 10px;
    overflow-y: scroll;
    cursor:pointer;
}
.autocomplete-suggestions strong {color: var(--blue); }
.footer-search {
	padding: 10px;
	border: 1px solid var(--black);
	width: 100%;
}
.footer-search-submit {
	border: 1px solid var(--black);
	background: var(--white);
	color: var(--black);
	height: 46px;
	width: 46px;
	position: absolute;
	right: 0px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
.no-line:hover{
	text-decoration:none!important;
}
 /******************************************* TEMPLATES ***********************************************/

 /******************************************* AVANT GARDE ***********************************************/
.ag-heading-holder {
    background: #770f10;
    color: #fff;
    padding: 5px;
  
}
.ag-img-holder {
	position: relative;
	height: 220px;
	background-position: center top !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	/* Border-radius: 20px 20px 0px 0px; */
}
 .ag-car-content {
    background: var(--off-white);
    padding: 10px;
    
}
 .ag-car-price {
	color: #770f10;
	line-height: 14px;
	font-family: "Lato", sans-serif;
	font-size: 18px;
	font-weight: 400;
}
.ag-vehicle-heading3 {
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 700;
	margin:0px;
    text-align:left;
    color: var(--white);
    
}
.ag-vehicle-heading6 {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
    min-height: 40px;
    margin: 0px;
    text-align: left;
    color: var(--white);
    display: flex;
    align-items: center;
}
.ag-flex-space {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 .ag-flex-space-inside {
    display: flex;
    justify-content: space-evenly;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    align-items: center;
}
 .ag-vehicle {
	margin-bottom: 20px;
	transition:all 0.3s ease-in-out;
}
.ag-vehicle:hover {
	box-shadow: 9px 9px 5px var(--light-grey), -9px -9px 15px var(--white);
}
.fs-20{
    font-size:20px;
    color:var(--black);
}

/******** LIST ******/
.agl-vehicle-heading3 {
	font-family: "Lato", sans-serif;
	font-size: 24px;
	font-weight: 700;
	margin: 10px 0px 0px 0px;
	/* text-align: center; */
	color: var(--black);
}
.agl-vehicle-heading6 {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
	margin: 0px;
    text-align:center;
    color: var(--black);
}
.agl {
	font-size: 25px;
	color: var(--black);
}
.agl-car-column {
    background: var(--off-white);
    border-radius: 30px;
    padding: 0px;
    margin-bottom:20px;
    position:relative;
    box-shadow: 9px 9px 18px var(--light-grey), -9px -9px 18px var(--white);
}
.agl-img-holder {
	height: 180px;
	background-size: cover !important;
	background-position: center center !important;
	border-radius: 20px 0px 0px 20px;
}

.agl-car-min-details {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 10px;
}
.agl-car-column-footer-alt{
    padding:0px;
}
.agl-inline-centered-adjusted-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.agl-align {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.agl-small-text{
    font-family: "Lato", sans-serif;
    text-align: center;
    font-size:16px;
    color: var(--black);
    font-weight: 600;
}
.agl-price-alt{
    font-weight: 800;
    text-align: left;
    font-size: 24px;
    float:right;
}
.agl-car-price {
    color: var(--black);
    font-size: 27px;
    font-weight: 600;
    line-height: 18px;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 700;
}
/******************************************* ELEGANCE ***********************************************/

.el-img-holder {
    position:relative;
    height: 200px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    border-radius:20px 20px 0px 0px;
}
.el-car-content {
    padding: 15px;
    border-radius: 0px;
    background: var(--white);
}
.el-car-footer {
    padding: 15px;
    border-radius: 0px 0px 20px 20px;
    background: var(--white);
}
.el-car-price {
   color: var(--mid-grey);
   font-size: 24px;
   font-weight: 700;
   line-height: 18px;
   font-family: "Lato", sans-serif;
   font-size: 24px;
   font-weight: 700;
}
.el-vehicle-heading3 {
   font-family: "Lato", sans-serif;
   font-size: 24px;
   font-weight: 700;
   margin: 0px;
   text-align:left;
   color: var(--black);
}
.el-vehicle-heading6 {
   font-family: "Lato", sans-serif;
   font-size: 14px;
   font-weight: 500;
   min-height: 40px;
   margin: 0px;
   text-align:left;
   color: var(--black);
}
.el-flex-space {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.el-flex-space-inside {
    display: flex;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    align-items: center;
    justify-content: flex-start;
}
.el-vehicle {
   margin-bottom: 0px;
   padding: 0px;
   border-radius: 20px 20px 0px 0px;
   background:transparent;
   box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.5);
}
.el-vehicle-footer {
    margin-bottom: 20px;
    padding: 0px;
    border-radius: 0px 0px 20px 20px;
    background:transparent;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.5);
 }

/******** LIST ******/ 
.ell-car-price {
    color: var(--black);
    font-size: 27px;
    font-weight: 600;
    line-height: 18px;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 700;
}
.ell {
	font-size: 25px;
	color: var(--black);
}
.ell-car-column {
    background: var(--off-white);
    border-radius: 30px;
    padding: 0px;
    margin-bottom:20px;
    position:relative;
    box-shadow: 3px 3px 10px 0px rgb(0 0 0 / 50%);
}
.ell-img-holder {
	height: 180px;
	background-size: cover !important;
	background-position: center center !important;
	border-radius: 20px 0px 0px 20px;
}
.ell-vehicle-heading3 {
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0px 0px 0px;
    text-align:left;
    color: var(--mid-grey);
 }
 .ell-vehicle-heading6 {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
   
    margin: 0px;
    text-align:left;
    color: var(--mid-grey);
 }
.ell-car-min-details {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 10px;
}
.ell-car-column-footer-alt{
    padding:0px;
}
.ell-inline-centered-adjusted-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.ell-align {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: start;
}
.ell-small-text {
    text-align: center;
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
    font-family: "Lato", sans-serif;
}
.ell-price-alt{
    font-weight: 800;
    text-align: left;
    font-size: 24px;
    float:left;
}

 /******************************************* SIMPLICITY ***********************************************/

 .s-img-holder {
    position:relative;
    height: 200px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    border-radius:0px;
}
.s-car-content {
    padding: 0px;
    border-radius: 0px;
    display: flex;
    justify-content: flex-end;
}
.s-car-price {
   color: var(--black);
   font-size: 27px;
   font-weight: 600;
   line-height: 18px;
   font-family: "Lato", sans-serif;
   font-size: 24px;
   font-weight: 700;
}
.s-vehicle-heading3 {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0px 0px 0px;
    text-align:left;
    color: var(--mid-grey);
}
.s-vehicle-heading6 {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--mid-grey);
    margin: 0px;
    text-align:left;
}
.s-flex-end {
    display: flex;
    flex-direction: column;
    width: 50px;
    align-items: center;
}
.s-flex-end i{
    color:var(--dark-grey);
}
.s-flex-end:hover i{
    color:var(--mid-grey);
}
.s-flex-space-inside {
   display: flex;
   justify-content: space-evenly;
   font-family: "Lato", sans-serif;
   font-size: 14px;
   font-weight: 500;
   color: var(--black);
   align-items: center;
}
.s-vehicle {
    background: var(--off-white);
   margin-bottom: 20px;
   padding: 0px;
   border-radius: 0px;
}
.s-fs-30 {
	font-size: 30px;
	color: var(--black);
	float: right;
	padding: 10px;
}
.s-col-f{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-content: center;
}

/******** LIST ******/ 

.sl-car-price {
    color: var(--black);
    font-size: 27px;
    font-weight: 600;
    line-height: 18px;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 700;
}
.sl {
	font-size: 25px;
	color: var(--black);
}
.sl-car-column {
    background: var(--off-white);
    border-radius: 0px;
    padding: 0px;
    margin-bottom:20px;
    position:relative;
   
}
.sl-img-holder {
	height: 180px;
	background-size: cover !important;
	background-position: center center !important;
	border-radius: 0px 0px 0px 0px;
}
.sl-vehicle-heading3 {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0px 0px 0px;
    text-align: left;
    color: var(--mid-grey);
 }
 .sl-vehicle-heading6 {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--mid-grey);
    margin: 0px;
    text-align: left;
 }
.sl-car-min-details {
	display: flex;
    flex-direction: column;
}
.sl-car-column-footer-alt{
    padding:0px;
}
.sl-inline-centered-adjusted-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sl-align {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: start;
}
.sl-small-text{
    text-align: center;
    font-size:16px;
    color: var(--black);
    font-weight: 600;
}
.sl-price-alt{
    font-weight: 800;
    text-align: left;
    font-size: 24px;
    float:left;
}

/******************************************* CLASSIC ***********************************************/
.cl-car-price {
    color: var(--white);
    font-size: 27px;
    font-weight: 600;
    line-height: 18px;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 700;
}
.c-img-holder {
    position:relative;
    height: 200px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    border-radius:0px;
}
.c-car-content {
 
   padding: 10px;
   border-radius: 0px;
}
.c-car-content-alt {
	background-color: transparent;
	background-image: linear-gradient(300deg, var(--white) 50%, var(--light-red) 50%);
	padding: 10px;
	border-radius: 0px;
	margin-bottom: 20px;
}
.c-car-price {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0px 0px 0px 0px;
    text-align:left;
    color: var(--white);
    padding:10px
}
.c-vehicle-heading3 {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0px 0px 0px 0px;
    text-align:left;
    color: var(--white);
    padding:0px
}
.c-vehicle-heading6 {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin: 0px;
    text-align:left;
}
.c-vehicle-heading6-right {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin: 0px;
    text-align:right;
}
.c-flex-end {
	display: flex;
	background-color: transparent;
	background-image: linear-gradient(120deg, var(--blue) 40%, var(--dark-red) 40%);
	align-items: center;
	justify-content: flex-end;
	align-content: center;
}
.c-flex-space-inside {
   display: flex;
   justify-content: space-evenly;
   font-family: "Lato", sans-serif;
   font-size: 14px;
   font-weight: 500;
   color: var(--black);
   align-items: center;
}
.c-vehicle {
    background: var(--blue);
   
   padding: 0px;
   border-radius: 0px;
}
/******** LIST ******/
.cl {
	font-size: 25px;
	color: var(--black);
}
.cl-car-column {
    background: var(--blue);
    border-radius: 0px;
    padding: 0px;
    margin-bottom:20px;
    position:relative;
    
   
}
.cl-img-holder {
	height: 100%;
	background-size: cover !important;
	background-position: center center !important;
}
.cl-vehicle-heading3 {
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0px 0px 0px 0px;
    text-align:left;
    color: var(--white);
 }
 .cl-vehicle-heading6 {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
   
    margin: 0px;
    text-align:left;
    color: var(--white);
 }
 .cl-car-min-details {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.cl-car-column-footer-alt{
    padding:0px;
}
.cl-inline-centered-adjusted-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cl-align {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: start;
}
.cl-align-end {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}
.cl-small-text{
    text-align: center;
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
    font-family: "Lato", sans-serif;
}
.cl-price {
	font-weight: 800;
	text-align: right;
	font-size: 24px;
	float: right;
	background-color: transparent;
	background-image: linear-gradient(120deg, var(--blue) 20%, var(--black)0006E 20%);
	padding: 13px;
	width: 50%;
}
.cl-price-alt {
	font-weight: 800;
	text-align: right;
	font-size: 24px;
	float: right;
	background-color: transparent;
	background-image: linear-gradient(120deg, var(--blue) 20%, var(--blue) 20%);
	padding: 13px;
	width: 50%;
}
.fs-20-white{
    font-size:20px;
    color:var(--white);
 }

/******************************************* MOTORS CLONE ***********************************************/

.mc-img-holder {
    height: 200px;
	background-position: center center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	border: 1px solid var(--light-grey);
 }
 .mc-heading-holder{
    border-bottom: 1px solid var(--light-grey);
    display: flex;
    justify-content: space-between;
 }
 .mc-car-content {
    padding: 5px 0px;
    color: var(--dark-grey);
    border-bottom: 1px solid var(--light-grey);
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
 .mc-car-price {
    font-size: 12px;
	color: var(--white);
	font-weight: 600;
	margin: 0px;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-image: linear-gradient(100deg,var(--white) 10%, var(--dark-grey) 10%);
	min-width: 110px;
    font-family: "Lato", sans-serif;
}
.mc-vehicle-heading3 {
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 700;
	margin: 10px 0px 0px 0px;
    text-align:center;
    color: var(--mid-grey);
    
}
.mc-vehicle-heading6 {
    font-family: "Lato", sans-serif;
    color: var(--dark-grey);
	overflow: hidden;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 700;
	text-align: left;
	height: 42px;
	margin: 0px;
	overflow: hidden;
}
.mc-flex-space {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 .mc-flex-space-inside {
    display: flex;
    justify-content: space-evenly;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    align-items: center;
}
 .mc-vehicle {
	margin-bottom: 20px;
}
.fs-14{
    font-size:14px;
    color:var(--dark-grey);
}

/******** LIST ******/
.mcl-vehicle-heading3 {
    font-family: "Lato", sans-serif;
    margin-top: 3px;
    padding-top: 2px;
    font-size: 22px;
    line-height: 24px;
    font-weight: 700;
    overflow: hidden;
}
.mcl-vehicle-heading6 {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
	margin: 0px;
    text-align:center;
    color: var(--mid-grey);
}
.mcl {
	font-size: 25px;
	color: var(--black);
}
.mcl-inline{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:var(--dark-grey);
}
.mcl-car-column {
	background: var(--white);
	border-radius: 0px;
	padding: 0px;
	margin-bottom: 20px;
	position: relative;
	border-bottom: 1px solid var(--light-grey);
}
.mcl-img-holder {
	height: 180px;
	background-size: cover !important;
	background-position: center center !important;
	border-radius: 0px;
}

.mcl-car-min-details {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 10px;
}
.mcl-car-column-footer-alt{
    padding:0px;
}
.mcl-inline-centered-adjusted-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mcl-align {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: flex-start;
	border-right: 1px solid var(--light-grey);
	margin-right: 5px;
}
.mcl-small-text{
    font-family: "Lato", sans-serif;
    text-align: center;
    font-size:12px;
    color: var(--dark-grey);
    font-weight: 600;
}
.mcl-price-holder {
    width: 40%;
    min-width: 40%;
}
.mcl-price-alt {
    font-weight: 800;
    text-align: right;
    font-size: 22px;
    float: right;
    color: var(--white);
    background-image: linear-gradient(120deg,var(--white) 15%, var(--dark-grey) 15%);
    width: 100%;
}
@media (max-width: 1200px) {
    .mobile-no-margin {
        margin: 0px !important;
        max-width: 100% !important;
    }
    .mcl-price-alt {
        font-weight: 800;
        text-align: right;
        font-size: 20px;
        float: right;
        color: var(--white);
        background-image: linear-gradient(120deg,var(--white) 15%, var(--dark-grey) 15%);
       
    }
}
@media (max-width: 992px) {
    .mcl-inline {
        flex-wrap: wrap;
    }
    .mcl-price-holder {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin-bottom: 10px;
    }
    .mcl-price-alt {
        width: 60%;
    }
}
@media (max-width: 450px) {
    .mcl-align {
        min-width: 100px;
    }
    .mcl-price-alt {
        font-size: 18px;
        width: 60%;
    }
}
@media (max-width: 380px) {
    .mcl-price-alt {
        width: 70%;
    }
}