.sub-template {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #F5F5F5;
}

.sub-template .banner {
  height: 270px;
}

.sub-template .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-template main {
  flex: 1;
}

.sub-template main .content {
  position: relative;
  top: -86px;
  background: #fff;
  border-radius: 16px;
  width: 500px;
  margin: 0 auto;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: center;
}

.sub-template main .content h2 {
  font-size: 20px;
  font-weight: 700;
}

.sub-template main .content form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sub-template main form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sub-template main .content form .field>label {
  display: block;
  font-weight: 600;
  font-size: 20px;
}

.sub-template main form .input,
.sub-template main .reservation-details .input,
.vehicle textarea {
  width: 100%;
  display: flex;
  padding: 10px 14px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #D0D5DD);
  background: #F9FAFB;

  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.vehicle textarea {
  height: 50px !important;
  resize: none;
}

.sub-template main form .field .input {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.sub-template main form .field .input>div {
  width: 50%;
}

.time select {
  width: 100%;
}

.content form .submit {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.content form .submit .button,
.content form .submit button {
  display: block;
  padding: 14px 64px;
  background: #00F1C8;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 24px;
  border: none;
  cursor: pointer;
}

.content form .submit .cancel {
  background: none;
  border: 2px solid #ccc;
}

.content .status {
  width: 100%;
  background: #E3E3E3;
  height: 52px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
}

.content .status-edit {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
}

.sub-template main .content.wide {
  max-width: 60%;
  width: 100%;
}

.reservation-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reservation-details .item {

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reservation-details .item h3 {
  font-weight: 700;
}

.reservation-details .buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.buttons .button {
  padding: 10px 20px;
  border-radius: 24px;
  border: 2px solid #DAD4D4;
}

.buttons .submit {
  background: #00F1C8;
  border: none;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}

.status-edit {
  display: flex;
}

.status-edit .title {
  font-weight: 600;
  font-size: 20px;
}

#sch_result {
  width: 100%;
}

#mb_login>h2 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

#bo_list h2 {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
}

.services,
.about_us {
  display: flex;
  gap: 20px;
}

.services .pic {
  width: 30%;
}

.about_us .map {
  width: 40%;
}

.services .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .desc ul,
.about_us .desc ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services .desc ul li,
.about_us .desc ul li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services .desc ul h3,
.about_us .desc ul h3 {
  font-size: 18px;
  font-weight: 600;
}

.about_us .desc ul h3 span {
  color: #ccc;
  margin-right: 10px;
}

.about_us .desc ul h3 a {
  color: #3498db;
}

.services .desc ul p,
.about_us .desc ul p {
  padding-left: 20px;
}

.ctt_admin {
  display: none !important;
}

.container article {
  padding: 10px;
}
@media (max-width:600px){
  .about_us {
    flex-direction: column;
  }
  .about_us .map {
    width: 100%;
  }
}