.booking_form-group {
    margin-bottom: 20px;
}

.booking_form-label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #ccc;
}

.booking_form-control-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.booking_form-control-wrapper i {
    font-size: 18px;
    color: #666;
    position: relative !important;
    float: none !important;
}


.booking_form-control {
    margin-top: 0px;
    border: none;
    outline: none;
    flex: 1;
    font-size: 0.9em;
	letter-spacing: 1px;
    background: transparent;
    color: #999;
    padding: 0 0 10px 2.2em;
    border-bottom: 1px solid #666;
    transition: border-color 0.2s ease;
}

.booking_form-control:focus {
    border-color: #999;
    color: whitesmoke;
    outline: none;
}
.booking_form-control:valid {
    border-color: #999;
    color: whitesmoke;
    outline: none;
}
select.booking_form-control option {
    background-color: #444;
    color: whitesmoke;
}

.booking_form-control.booking_filled {
    color: whitesmoke;
}
.ctwx-card {
  width: 220px;
  height: 220px;
  margin: 20px auto;
  padding: 14px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  list-style: none;
  position: relative;
}

.ctwx-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.ctwx-qr {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.ctwx-qr .ctwx-qr-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

body .ctwx-card .ctwx-qr .ctwx-qr-img {
  float: none;
  position: static;
}

.ctwx-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
  transition: transform .18s ease, box-shadow .18s ease;
}

@media (max-width: 420px) {
  .ctwx-card { width: 180px; height: 180px; padding: 10px; }
  .ctwx-qr { width: 120px; height: 120px; }
  .ctwx-title { font-size: 14px; }
}