@charset "UTF-8";

/* html.js{
  display:none;
} */
body {
  font-family: 'Courier New', Courier, monospace;
  background: #eee;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif;
  font-weight: 500;
}

header {
  background-color: #fff;
  margin-bottom: 40px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

footer {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}


#resultsNotFound {
  display: none;
}

#accountDetails {
  display: none;
}

#accountDetails {
  font-family: 'Courier New', Courier, monospace;
}

.help-block.error {
  color: #ff0000b6;
}

::placeholder {
  color: rgb(42, 42, 42);
  opacity: 1;
  /* Firefox */
  font-size: 12px;
}

::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: rgb(42, 42, 42);
  font-size: 12px;
}

.pageOverlay {
  position: absolute;
  max-width: 80%;
  z-index: 1;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -35%);
  color: #ffffff;
  background: #0000006c;
}

.pageLoading {
  padding: 50px;
  border-radius: 8px;
}

p {
  margin: 0 5px 15px 5px;
}

.copywrite {
  font-size: 11px;
  padding: 0 90px 0 90px;
}

ul {
  list-style-type: none;
}

strong {
  color: #8CC63F;
}

#topCallBox {
  margin-top: 20px;
}

img#topLogo {
  max-width: 150px;
}

#topLogo {
  margin-top: 20px;
}

.mainContent {
  margin: 20px;
}

.mainContent h2 {
  font-size: 1.95em;
}

.mainContent p {
  font-size: 1.2em;
  /* line-spacing: 2px; */
  line-height: 2em;
}

#gMapFrame {
  margin: 0 auto;
  width: 100%;
  height: 400px;
  max-height: 450px;
  border: none;
}


#massCards {
  display: flex;
  flex-direction: row;
}

.card {
  margin: 1rem;
  /* max-width: 18rem; */
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16),
    0 2px 5px 0 rgba(0, 0, 0, 0.12);
}

.card-body .btn {
  display: block;
  margin: 0 auto;
}


/* Add the following CSS to ensure equal height for card-body class */
.card-body {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  height: 100%;
}

.card-body .card-title {
  margin-top: 0;
}

.card-body .card-text {
  flex-grow: 1;
}

.card-body .btn {
  margin-top: auto;
  /* This pushes the button to the bottom */
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.card-body button {
  margin-top: auto;
}

.cart-widget {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 250px;
  transition: all 0.3s ease;
}

.cart-widget.minimized {
  min-width: 180px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.cart-title-section {
  display: flex;
  align-items: center;
}

.cart-count-badge {
  background: #146c43;
  color: white;
  border-radius: 20%;
  padding: 2px 6px;
  font-size: 12px;
  margin-left: 5px;
}

.minimize-cart {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.2s;
  font-size: 12px;
  text-decoration: underline;
}

.minimize-cart:hover {
  background-color: #f8f9fa;
  color: #0056b3;
  text-decoration: none;
}

/* .cart-content {
 This will be animated with slideUp/slideDown 
} */

.cart-section {
  margin-top: 20px;
}

.empty-cart-message {
  text-align: center;
  color: #6c757d;
  font-style: italic;
  margin: 10px 0;
}

.cart-messages {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  min-width: 300px;
}

@media (max-width: 768px) {
  .cart-widget {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px 0;
    width: 98%;
  }

  .cart-widget.minimized {
    min-width: auto;
  }
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.vehicle-inputs {
  border-radius: 0.375rem;
}

.vehicle-inputs input:not(:first-child) {
  border-left: 0;
}

.vehicle-inputs input:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.vehicle-inputs input:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.vehicle-inputs input:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: #8719193b;
  border-color: #2f302f;
  opacity: var(--bs-btn-disabled-opacity);
}


.checkout-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.total-amount {
  font-size: 1.5em;
  font-weight: bold;
  color: #080808;
}

.empty-cart {
  text-align: center;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 8px;
}

.cart-section,
.checkout-btn,
.clear-cart,
.remove-from-cart {
  font-size: 0.75rem;
}

.cart-items-total {
  color: #5a7832;
}

.pay-btn {
  font-size: 0.75rem;
}

#search-results,
#registration_name,
#btn-vin,
#btn-plateId,
#btn-titleId {
  font-size: 0.75rem;
}