/* ------------------------------------- Global ------------------------------------- */
:root {
  --main: #32BABC;
  --main-light: #37cacc;
  --main-dark: #227e80;
  --secondary: #c46f00;
  --secondary-light: #FBAC43;
}

/*Custom Fonts*/
@font-face {
  font-family: 'DidactGothic';
  src: url('../fonts/Didact_Gothic/DidactGothic-Regular.ttf') format('truetype');
}



html, body {
  width: auto !important;
  overflow-x: hidden !important;    
  /*font-family: 'DidactGothic';*/
  font-family: 'Montserrat', sans-serif;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px !important;
  box-sizing: border-box;
  color:#444;
  min-height: 100vh;
}


a {
  color: #6ABE45;
  transition: color .5s;  
  background-color: transparent;
}
a:hover {
  color: #333;
  text-decoration: none;
}



.my-container {
  /*padding-left:5%;
  padding-right:5%;*/
  width:100%;
  min-height:70vh;
  
}
@media (max-width: 575px) {
  .my-container {
    padding-left:0;
    padding-right:0;
    width:100%;
  }
}


.bg-contain {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


.btn-success {
  color: #fff;
  background-color: var(--main);
  border-color: var(--main);
}
.btn-success:hover {
  color: #fff;
  background-color: var(--main-light);
  border-color: var(--main-light);
}



/* ------------------------------------- Header ------------------------------------- */

.nav-icon {
  color:#6ABE45;
}



.ic-search {
  width:0;
  height:0;
  overflow: visible;
  position: relative;
  top: 31px;
  left: 10px;
  color:#BBB;
  display: inline-block;

}
@media (max-width: 575px) {
  #search_from {
    position: relative;
  }
}


.ic-search > .fa {
  position: relative;
  top:-30px;
  left: 3px;
  display: inline-block;
}
.h-search {
  display: inline;
  width: 97%;;
  padding-left:30px;
  box-shadow: inset 2px 2px 2px rgba(0,0,0,.2);
  border-top:1px solid #FFF;
  border-left:1px solid #FFF;
  border-right:1px solid #CCC;
  border-bottom:1px solid #DDD;
  background: #EFEFEF;
}
.hd-menu {
  transition: background .5s;
}
.hd-menu:hover {
  background: var(--main-dark);
}
.active-hd-menu {
  background:var(--main-light);
}

.outter-header {
  height:0;  
}


.burger-menu {
  display: inline-block;
  color:#666;
  font-size:26px;
}
.burger-menu-txt { position: relative; top:7px; width:auto; color:#666;}

.navigator { width:100%;}
@media (min-width: 576px) {
.navigator {
  display: grid;
}
}

.menu {
  position: absolute;  
  z-index:3;
  top:38px;
  height:0;
  display: none;
}
.menu-inner {
  position: relative;
  width: auto;
  background:white;
  text-align: center;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, .2);
  font-size:95%;
  font-weight: normal;
  border: 1px solid #CCC;
}
.menu-inner a {
  display: block;
  text-align:left;
  padding:8px 5px 8px 8px;
  width:200px;
  text-transform: capitalize;
  text-decoration: none;
  transition: background .5s;
  color:black;
}
.menu-inner a:hover {
  background:var(--main-light);
}

.logo {
  color:#AAA;
  position:relative; left:-22px;
}

/* ------------------------------------- Page (Free-format page) ------------------------------------- */
.page_title {
  z-index:1;
  width: calc(100% - 0.15%);
  height:67px;
  position:relative;
  left:.1%;
  padding:10px; 
  border:1px solid #353535; 
  background-color: rgba(0, 52, 102, .9);
  text-align: center;
  font-size:28px;
  color:white;
  text-shadow: 0 0 8px rgba(255,255,255,.8);
}



/* ------------------------------------- Home > Banner ------------------------------------- */
.card {
  border: none;
}

.carousel-item {
  height: calc(100vh - 70px); background-position: center; background-repeat: no-repeat; background-size: cover;
}
.carousel-control-prev {
  left:-1%;
}


/* ------------------------------------- Home > Rows ------------------------------------- */

.h1 {
  font-size: 38px;
  width: 100%; 
  text-align: center; 
  border-bottom: 1px solid #666; 
  line-height: 0.1em;
  margin: 10px 0 40px; 
}
@media (max-width: 575px) {
  .h1 {
    font-size: 24px;
  }
}

.h1 span { 
   background:#fff; 
   padding:0 20px; 
}

.h2 {
  font-size: 20px;
}

.choose-block {
  color:#000;
  opacity: .7;
  line-height: .9;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  text-shadow: 0 2px 8px rgba(255,255,255,1);
  background-image: linear-gradient(to right top, #fbfbfb, #f4f4f4, #eeeeee, #e7e7e7, #e1e1e1);
  
  font-size:32px;
  padding:20px;
  border:1px solid #DDD;
  height:240px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:20px 0;
}

.wave {
  background-image: url('../images/wave_rec.svg');
  background-position: center;
  background-repeat: no-repeat;
}
/* ------------------------------------- Footer ------------------------------------- */
.back-top {
  position:relative; top:-36px;/*-46px;*/ height:0;
  opacity:.7; font-size:40px; margin:0 auto;
  transition: opacity .5s;
  cursor: pointer;
}
.back-top:hover {
  opacity:1;
  text-shadow: 0 0 8px rgba(255,255,255,.6);
}
.footer-title {
  width:100%;
  font-size: 22px;
  border-left:3px solid var(--secondary-light);;
  color: var(--main-light);
  padding:0 0 0 5px;
  
  overflow: visible;
  margin-bottom:10px;
}

/* ------------------------------------- Vehicle Listing ------------------------------------- */

.cat-trigger {
  z-index:10;
  cursor: pointer;
  border-radius: 50%;
  width:40px;
  height: 40px;
  z-index: 4;
  background-color: rgba(0,0,0,0.5);
  box-shadow: 0 0 6px rgba(0,0,0,0.8);
  text-align: center;
  padding: 7px 0 0 1px;
  color: #EEE;
  position: fixed;
  right: 0;
  top: 50vh;
}

@media (max-width: 575px) {

  .category-panel-outter {
    display: none;
    z-index: 3;

  }

  .category-panel {
    position: fixed !important;
    overflow-y: scroll;
    overflow-x: hidden;
    height:auto;
    max-height: 70vh;
    background:white;
    width: 89%;
    box-shadow: 0 0 6px black;
  }

  .category-active {
    display: block !important;
    
  }
}



.ico-cus {
  color:#333;
  margin-right:4px;
}
.ico-cus2 {
  margin-right:4px;
}
.filter_menu {
  padding:8px;
  margin:0;
  color:#333;
  transition:background .5s, color .5s;
}
.filter_menu:hover {
  background: var(--main);
  color:#FFF;
}
.active_filter_menu {
  color:#FFF;
  background: #008e9b;
}

.btn-vehicle-enquiry, .btn-vehicle-view {
  color:#FFF; font-size:14px; cursor: pointer;
}
.btn-vehicle-enquiry {
  background: var(--main);
  transition: background .5s;
}
.btn-vehicle-view {
  background: var(--secondary);
  transition: background .5s;
}
.btn-vehicle-enquiry:hover {
  background: var(--main-light);
  color:#FFF;
}
.btn-vehicle-view:hover {
  background: var(--secondary-light);
  color:#FFF;
}
@media (max-width: 575px) {
  .btn-vehicle-enquiry, .btn-vehicle-view {
    font-size:14px;
  }
}

/* ------------------------------------- Cart & Checkout ------------------------------------- */

.cart {
  width:100%;
}
.cart table, .cart th, .cart td {
padding:8px;
vertical-align:top;

}
.cart th {
background:#888;
border-left:1px solid #888;
color:white;
border:1px solid #777;
font-weight: normal;
text-align:center;
min-width: 100px;
}
.cart td {
border:1px solid #CCC;
}

.guest {
  width:100%;
}
.guest td {
  vertical-align:top;
  padding:6px;
}


.checkout-head {
  background: rgb(255,227,0);
  background: linear-gradient(90deg, rgba(255,227,0,1) 0%, rgba(255,227,0,1) 49%, rgba(255,248,0,0) 100%); 
  color:white;
  font-size:140%; 
  border-bottom:3px solid #666;
  text-align:left;
  min-width: 100px;
}
.checkout-head > a{
  color:#000;
}



.checkout td {
  vertical-align:top;
  padding:10px;
}

.label{
  font-size:60%;
  color:#777;
}
@media (max-width: 575px) {
  .label{
    display: none;
  }
}
