<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">form { 
	padding: 1em; 
	background: #f9f9f9; 
	margin-bottom: 1em; 
}

input, textarea { 
	display: block; 
	margin-bottom: 1em; 
	width: 100%; 
	max-width: 500px; 
}

button { 
	margin-top: 0.5em; 
}

.myitinerary-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.myitinerary-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.myitinerary-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .2s;
  border-radius: 34px;
}

.myitinerary-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .2s;
  border-radius: 50%;
}

.myitinerary-toggle input:checked + .myitinerary-slider {
  background-color: #2271b1;
}

.myitinerary-toggle input:checked + .myitinerary-slider:before {
  transform: translateX(26px);
}

</pre></body></html>