.phase6-panel {
  padding: 24px 26px;
  margin: 18px 0;
}
.pref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pref-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.pref-grid select {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 14px;
  padding: 11px;
  outline: 0;
}
.pref-grid option {
  color: #182d47;
}
.switch-row {
  position: relative;
}
.switch-row input {
  display: none;
}
.switch-row i {
  width: 48px;
  height: 27px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
}
.switch-row i:after {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: #fff;
  transition: 0.2s;
}
.switch-row input:checked + i {
  background: rgba(255, 255, 255, 0.35);
}
.switch-row input:checked + i:after {
  transform: translateX(21px);
}
.saved-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 10px;
  font-size: 14px;
}
.saved-head button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 13px;
  padding: 9px 12px;
  cursor: pointer;
}
.saved-place {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin: 7px 0;
}
.saved-place button:first-child {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  text-align: left;
  border-radius: 14px;
  padding: 10px 13px;
  cursor: pointer;
}
.saved-place strong,
.saved-place span {
  display: block;
}
.saved-place span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
}
.saved-place button:last-child {
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 12px;
  width: 40px;
  cursor: pointer;
}
.empty-saved {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
@media (max-width: 650px) {
  .pref-grid {
    grid-template-columns: 1fr 1fr;
  }
  .phase6-panel {
    padding: 20px 18px;
  }
}
