body {
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 50px;
  background-color: #fff;
  border: 1px solid #f5f5f5;
}

.page-header {
  position: sticky;
  top: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  text-align: center;
  font-size: 18px;
}
.page-header .back-button {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.bgi {
  width: 80%;
  height: 25vh;
  max-height: 460px;
  margin: 10px auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.title {
  margin: 10px 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.description {
  padding: 0 16px;
  text-indent: 2em;
  font-size: 14px;
}

.content {
  padding: 0 16px;
  text-indent: 2em;
  font-size: 14px;
}

.route-info {
  width: 90%;
  margin: 10px auto;
  text-align: center;
}
.route-info tr:nth-child(odd) {
  background-color: rgba(0, 123, 255, 0.1);
}
.route-info tr:last-child {
  background-color: transparent;
}
.route-info tr:last-child td:first-child {
  font-weight: 600;
  color: #ff5500;
}
.route-info td {
  padding: 2px 5px;
  border: 1px solid #999;
}
.route-info td.book {
  background-color: #fff;
  color: rgb(0, 112, 233);
  font-weight: bold;
  text-decoration: underline;
}

.subtitle {
  margin: 20px 0 10px;
  padding: 0 16px;
  font-weight: bold;
}

.price-info {
  width: 90%;
  margin: 10px auto;
  text-align: center;
}
.price-info th {
  padding: 2px 5px;
  font-weight: normal;
  border: 1px solid #999;
  background-color: rgba(0, 123, 255, 0.1);
}
.price-info th:last-child {
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
}
.price-info td {
  padding: 2px 5px;
  border: 1px solid #999;
}

ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 16px;
}
ul a {
  color: #2D5B7A;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.3s ease, color 0.3s ease;
  padding-bottom: 2px;
}
ul a:hover, ul a:focus {
  color: #E53935;
  background-size: 100% 2px;
}
ul a:active {
  color: #c23934;
}

@media (max-width: 748px) {
  ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fixed-btn {
    position: fixed;
    bottom: 10%;
    right: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(37, 211, 102);
}

.fixed-btn .service-btn {
    color: #fff;
    font-size: 30px;
}

@media (max-width: 768px) {
    .fixed-btn {
        bottom: 20%;
        right: 5%;
    }
}/*# sourceMappingURL=routes.css.map */