/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 06 2026 | 03:57:15 */
/* GRID */
.taxi-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (orientation: landscape) and (max-width: 1024px) {
  .taxi-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (orientation: portrait) and (max-width: 768px) {
  .taxi-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.taxi-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  background: #fff;
}

/* META */
.taxi-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

/* ROUTE */
.taxi-card-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  gap: 10px;
}

.taxi-place {
  color: rgba(0,122,0,0.8);
}

/* LINE */
.taxi-route-line {
  flex: 1;
  position: relative;
  margin: 0 10px;
  border-top: 2px dashed rgba(0,122,0,0.8);
 
}

.taxi-direct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,122,0,0.8);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
 z-index : 1; 	
}

/* FOOTER */
.taxi-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.taxi-price {
  font-size: 18px;
  font-weight: bold;
  color: #cc1100;
}

/* BUTTON */
.taxi-btn {
  padding: 8px 14px;
  background: rgba(0,122,0,0.8);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight : bold; 	
}