/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Hanlding Updates
-----------------------------------------------------------------*/
body {
  background: #ffffff;
  color: #535b61;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
}
/*-------- Preloader --------*/
#hertz-preloader {
  position: fixed;
  z-index: 999999999 !important;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#hertz-preloader [data-loader="dual-ring"] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 5px solid #FFD100;
  border-color: #FFD100 #f1f5f6 #FFD100 #f1f5f6;
  animation: dual-ring 0.8s linear infinite;
}
#main-wrapper {
  background: #ffffff;
}
.main-wrapper {
    background: #ffffff;
}
.hertz-custom-underline {
  position: relative;
  display: inline-block;
}
.hertz-custom-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #FFD700; /* Yellow color */
}
.hertz-self-custom-underline {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background-color: #FFD700; /* Yellow color */
  transition: background-color 0.3s ease;
}
.hertz-self-card-link {
  text-decoration: none;
}
.hertz-self-transition-card {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.hertz-self-transition-card:hover {
  background-color: #FFD700;
  border-color: #FFD700;
  color: #ffffff !important; /* Ensure that text color changes to white */
}
.hertz-self-transition-card:hover .hertz-self-card-title, .hertz-self-transition-card:hover .hertz-self-card-text {
  color: #ffffff !important; /* Ensure that the card title and text change to white */
}
.hertz-self-transition-card:hover .hertz-self-custom-underline {
  background-color: #ffffff !important; /* Ensure the underline changes to white */
}
/* Back to Top */
#hertz-back-to-top {
  display: none;
  position: fixed;
  z-index: 1030;
  bottom: 8px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #fff;
  font-size: 16px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}
#hertz-back-to-top:hover {
  background-color: #FFD700;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
html[dir="rtl"] #hertz-back-to-top {
  left: 10px;
  right: auto;
}
/* Hertz Button */
.btn-outline-hertz {
  color: #FFCC00;
  border-color: #FFCC00;
}
.btn-outline-hertz:hover {
  background-color: #FFCC00;
  border-color: #d0a90c;
  color: #fff;
}
/* Thrifty Button */
.btn-outline-thrifty {
  color: #007BC3;
  border-color: #007BC3;
}
.btn-outline-thrifty:hover {
  background-color: #007BC3;
  border-color: #0d8ed9;
  color: #fff;
}
/* Dollar Button */
.btn-outline-dollar {
  color: #DA1A32;
  border-color: #DA1A32;
}
.btn-outline-dollar:hover {
  background-color: #DA1A32;
  border-color: #da4154;
  color: #fff;
}
#footer .nav .nav-item .hertz-nav-link {
  padding-left: 0;
  padding-right: 0;
  color: #252b33;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#footer .nav .nav-item .hertz-nav-link:focus {
  color: #FFCC00;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#footer .nav .hertz-nav-link:hover {
  color: #FFCC00;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.vehicle-image {
  width: 50px; /* Set the width you want for all images */
  height: auto;
  margin-left: 10px; /* Add spacing between images */
  object-fit: cover; /* Ensure the image covers the given width */
}
.btn-hertz {
  background-color: #FFCC00;
  border-color: #FFCC00;
  min-width: 150px; /* Set the minimum width */
}
.btn-hertz:hover {
  color: #000;
  background-color: #FDD208;
  border-color: #FDD208;
}
.icon-yellow {
  color: #FFD100;
}
.hertz-alert-info {
  color: #0AB284;
  background-color: #EBF9F5;
  border-color: #08906C
}
.hertz-alert-info .alert-link {
  color: #04414d
}
.hertz-link {
    color: #FFCC00;
    text-decoration: none; /* Optional: removes underline if not needed */
}

.hertz-link:hover {
    color: #FDD208;
    text-decoration: underline; /* Optional: adds underline on hover */
}