/**
 * "Book Tour Now" widget location tabs (Code Snippet 12 Task 3, T41).
 */
.kt-loc-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 14px;
}
.kt-loc-tabs .kt-loc {
  flex: 1 1 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  border: 2px solid #e5397d;
  background: #fff;
  color: #e5397d;
  border-radius: 999px;
  padding: 10px 12px;
  transition: all .15s ease;
}
.kt-loc-tabs .kt-loc:hover {
  background: #fde5ef;
}
.kt-loc-tabs .kt-loc.is-active {
  background: #e5397d;
  color: #fff;
}
