/************font files*****************/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Oswald:wght@500;700&display=swap');
/*
font-family: 'Open Sans', sans-serif;
font-family: 'Oswald', sans-serif;
*/
/************font files*****************/
:root{
    --primary:#cc0004;
    --secondary:#404040;
    --highlight:#C60000;
    --oswald: 'Oswald', sans-serif;
    --opensans: 'Open Sans', sans-serif;
}

body {
  overflow-x: hidden;
}



/******top bar*********/
.top-bar {
    background-color: var(--secondary);
    position: relative;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    max-height: 50px;
}
.top-bar::after {
    content: '';
    position: absolute;
    width: 50%;
    left: 0;
    top: 0;
    height: 100%;
    background-color: var(--primary);
    z-index: 0;
    clip-path: polygon(0 0, 97% 1%, 100% 100%, 0% 100%);
}
.topbar_wrapper{
    position: relative;
    z-index: 1;
}
.top-bar a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;  
}
/****/


/*****************Search Page***********************/
.inventorySearch_wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
}
.inventorySearch_wrapper .container {
    font-size: 17px;
}
.inventorySearch_inner{
    background: #FAFAFA4D 0% 0% no-repeat padding-box;
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    padding: 15px;
}
.inventorySearch_inner .inventorySearch_input:focus{
    border: 0;
    outline: 0;
    border-right: 1px solid #ccc;
}
.inventorySearch_inner .inventorySearch_input {
    width: 100%;
    border: 0;
    background-color: transparent;
    border-right: 1px solid #ccc;
    border-radius: 0;
    color: #707070;
}
.inventorySearch_range .inventorySearch_rangeinput {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #DBDBDB;
    border-radius: 3px;
    width: 100%;
    padding: 5px 12px;
    color: #707070;
}
.inventorySearch_range .inventorySearch_rangeinput:focus{
    border: 1px solid #DBDBDB;
    outline: 0;
}
.inventorySearch_range .row [class*="col-"] {
    padding-left: 10px;
}

.inventorySearch_submit > button {
    background-color: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 30px;
    width: 50px;
    color: #1994fc;
    /*border-left: 1px solid #ccc ;*/
}
.inventorySearch_submit > button:hover, .inventorySearch_submit > button:focus{
    outline: 0;
}


.modal-dialog label{
    font-weight: black;
}

.modal-dialog .form-control{
    min-height: 40px;
}

#serviceForm .form-control {
    min-height: 40px;
}

#contactForm .form-control {
    min-height: 40px;
}

.form-group {
    margin-bottom: 0.5rem;
}

.bg-light {
    background-color: #D3D3D3!important;
}

#main-nav a {
    font-weight: bold;
}

.navbar {
    border-bottom: 2px solid var(--primary);
}

.navbar .nav-link {
  font-size: 18px;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  color: black;
}

.navbar .nav-item.active {
    border-left: #444 3px solid;
}

.navbar .nav-item.active a {
    color: var(--primary);
}

.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
    color: var(--primary);
}

.navbar-light .navbar-toggler {
    border: 2px solid black;
}

#myCarousel .carousel-item {
  height: 450px;
}

#myCarousel .carousel-caption {
  color:var(--primary);
}

.carousel-control-prev, .carousel-control-next {
    width: 10%;
    filter: invert(100%);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    height: 40px;
    width: 30px;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 2px solid white;
}

#info {
  position: relative;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

#additions {
  position: relative;
  min-height: 400px;
  background: url('../img/media.jpg');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 0 -400px;
  text-align: center;
  color: #fff;
}

#additions a {
  color: #fff;
}

#page-header {
  height: 200px;
  background: url('../img/image1.jpg');
  background-position: 0 -360px;
  background-attachment: fixed;
  color: #fff;
  border-bottom: 1px #eee solid;
  padding-top: 50px;
}

.about-img {
  margin-top: -50px;
}

#faq .card {
  border: #444;
}

#faq a {
  color: #fff;
  text-decoration: none;
}

#faq .card-body,
#faq .card-header {
  background: #333;
}

#main-footer {
    background-color: #D3D3D3!important;
    font-weight: bold;
}

.img-link
{
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1); 
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1); 
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1);
    transition: all 200ms ease-in;
    transform: scale(1);   

}

.img-link:hover
{
    box-shadow: 0px 0px 150px #000000;
    z-index: 1000;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.5);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.5);   
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.5);
    transition: all 200ms ease-in;
    transform: scale(1.5);
    position:relative;
    background-color: var(--primary);
}

#reviews {
  background-color: lightgray;
}

#wsites {
  background-color: lightgray;
}

.review {
    border: solid 1px gray;
    height: 250px;
    overflow-y: auto;
    border-radius: 10px;  
    background-color: #F0F0F0;
    font-size: 14px;
    padding-right: 20px;
}

.checked {
    color: orange;
}

#main-footer {
    margin-bottom: 0px;
}

#main-footer p {
    margin-bottom: 0px;
    font-size: 18px;
}

#main-footer a {
    color: black;
}

.rightdiv {
    position: fixed;
    top: 8%;
    right: 0px;
    display: none;
    width: 500px;
    
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(233,236,239,1) 100%);
    z-index: 555;
    padding: 20px 40px;    
}

.back-to-top {
    position: fixed;
    bottom: 50%;
    right: 0px;
    display: none;
    z-index: 99999999;
}

.list-group-item {
    font-size: 20px;
    font-weight: 500;
    background-color: #fdfdfe;
}

.not_valid {
    border-color: #ff2325 !important;
    border-width: 3px !important;
}

.main-wrapper {
    width: 100%;
    background-image: url("../img/demo_.jpg");
}

.set-i i
{
    width: 50px;
    height: 50px;
    line-height: 47px;
    border: 2px solid var(--primary) !important;
    text-align: center;
    border-radius: 100% !important;
    font-size: 20px !important;
}

.set-i i:hover
{
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid !important;
    text-align: center;
    border-radius: 100% !important;
    font-size: 20px !important; 
    background-color: #fa2837 !important;
    color: #fff !important;

}

.btn-dark {
    background-color: var(--primary);
    font-size: 30px;
}

.card img {
    border: 2px solid var(--primary) !important;
    border-radius: 5px !important;
}

#features .list-group-item {
    border: 1px solid var(--primary) !important;
}

#contact img {
    border: 2px solid var(--primary) !important;
    border-radius: 5px !important;
}

#contact_wrapper .card {
    border: 2px solid var(--primary) !important;
    border-radius: 5px !important;
}

#contact .card {
    border: 2px solid var(--primary) !important;
    border-radius: 5px !important;
}


#main-footer {
    border-top: 2px solid var(--primary) !important;
}

.price-field-stricken {
    text-decoration: line-through;
    font-size: 16px;
    margin-left: 8px;
    padding-top: 10px;
}

.price-field {
    color: red;
}

.regdiv {
    margin-top: 0px;
    margin-bottom: 15px;
    padding: 15px;
    border: 2px solid var(--primary) !important;
    border-radius: 5px !important;
}

#wsites img {
    border: 2px solid var(--primary) !important;
    border-radius: 5px !important;
}

#resent_vehicles {
    margin-top: 90px;
    margin-bottom: 50px;
}

#resent_vehicles .card {
    background-color: #eee;
    color: black;
}

#resent_vehicles .card-text {
    white-space:nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0px;
}

#resent_vehicles .card-header {
    min-height: 180px; 
    background-size: cover;
}

#reviews .carousel-item {
   padding-right: 80px; 
}

#images-link .img-thumbnail {
    background-color: var(--primary);
}

.table-flt {
    border: 2px solid #e5e5e5;
    overflow-x: hidden;
}

.table-flt > thead > tr > th,
.table-flt > tbody > tr > th,
.table-flt > tfoot > tr > th,
.table-flt > thead > tr > td,
.table-flt > tbody > tr > td,
.table-flt > tfoot > tr > td {
    border-bottom: solid 1px #e5e5e5;
    height: 30px;
    padding-right: 2px;
    padding-left: 2px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.table-int {
    width: 100%;
    color: black;
}

.table-int > thead > tr > th,
.table-int > tbody > tr > th,
.table-int > tfoot > tr > th,
.table-int > thead > tr > td,
.table-int > tbody > tr > td,
.table-int > tfoot > tr > td {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 2px;
    padding-right: 2px;
    white-space:nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50px;
    border-bottom: solid 1px #e5e5e5;
    border-top: solid 1px #e5e5e5;
}

.table-int th {
    width: 35%;
}

.inventory-wrapper {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
}

.inventory-in {
    padding-top: 5px;
}

#vehicles_div .inventory {
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding-bottom: 5px;
}

#vehicles_div .card {
    background-color: #eee;
    color: black;
    font-weight: 700;
    font-size: 16px;
    font-family: Lato, Helvetica, Arial, sans-serif;
}

#vehicles_div .card-text {
    white-space:nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0px;
    font-family: Helvetica, sans-serif;
}

#vehicles_div .card-header {
    min-height: 250px; 
    background-size: cover;
}

#vehicles_div {
    min-height: 300px;
}

#vehicles_div td {
    padding-left: 0px;
    font-size: 14px;
    height: 33px;
    font-family: Helvetica, sans-serif;
}

#vehicles_div table {
    margin-bottom: 0px;
}

.veh-memo {
    font-size: 12px;
    background-color: white!important;
    border: none;
    margin-bottom: 5px;
    scrollbar-width: none!important;
}

.veh-memo::-webkit-scrollbar {
    width: 10px;
}
 
.veh-memo::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
 
.veh-memo::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

.pending {
    border: 5px solid red !important;
    border-radius: 5px !important;
}

.text-block {
    color: red;
    font-size: 42px;
}

.form-inline label {
    display: inline;
}

#creditit_app_frm .row {
    margin-bottom: 10px;
}

#creditit_app_frm .form-control {
    margin-bottom: 10px;
}

.sticky {
  position: sticky;
  top: 120px;
}

#vert_filter_div {
    max-height: 740px;
}

#our_values .col-md-6  {
    padding-left: 40px;
    padding-right: 40px;
}

#our_values .col-lg-3 {
    padding-left: 40px;
    padding-right: 40px;
}

.control-lbl {
    font-weight: bold;
}

.img-pending {
    background-color: red!important;
}

.product-holder {
    position: relative;
    display: block;
}

.plus-image {
    left: 20%;
    right: 20%;
    top: 35%;
    position: absolute;
    margin-top: -25px;
    margin-left: -25px;
}

.pagination input {
    width: 80px;
}

.mmodel {
    color: black;
    font-weight: 500;
    font-size: 28px;
}

.details-div{
    min-height: 60px;
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 5px;
    max-height: 600px;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 13px;
    resize: vertical;
}

.table-ts > thead > tr > th,
.table-ts > tbody > tr > th,
.table-ts > tfoot > tr > th,
.table-ts > thead > tr > td,
.table-ts > tbody > tr > td,
.table-ts > tfoot > tr > td {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 5px;
    padding-right: 5px;
    white-space:nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    border: solid 1px #e5e5e5;
    font-size: large;
    font-weight: 500;
}

#add-comments p {
    font-weight: bold;
    padding-bottom: 15px;
}

.singleDetail_form {
    border: 1px solid #DBDBDB;
    border-radius: 10px;
    padding: 40px 20px;
}
.singleDetail_form_header{
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.fas {
    color: var(--primary);
}

@media (max-width: 1500px) {    
    .table-flt > thead > tr > th,
    .table-flt > tbody > tr > th,
    .table-flt > tfoot > tr > th,
    .table-flt > thead > tr > td,
    .table-flt > tbody > tr > td,
    .table-flt > tfoot > tr > td {
        font-size: 14px;
    }
    .table-flt .form-control {
        height: 28px;
    }
    .table-flt select {
        height: 28px!important;
        padding: 2px;
        font-size: 0.9rem;
    }
    
    .sticky {
        position: initial;
        top: 0px;
    }

    .pagination input {
        width: 60px;
    }
    
    #vert_filter_div {
        max-height: 650px;
    }
    
    .mmodel {
        font-size: 14px;
    }

    .table-int > tbody > tr > th,
    .table-int > tbody > tr > td {
        font-size: 12px;
    }
        
    #vehicles_div td {
        font-size: 12px;
    }
    
    .veh-memo {
        height: 50px;
    }
}





