body.trips {
	padding: 0;
	margin: 0;
	height: 1920px;
	width: 1080px;
	/*background: url(/images/bg-pattern.png) repeat;*/
}
body.trips #header {
	height: 125px;
	width: 1920px;
	color: white;
	display: flex;
	background-color: var(--darker-blue);
	box-shadow: 0px 3px 6px #00000034; 
}
body.trips #header span.logo {
	/*background-color: var(--darker-blue);*/
	position: relative;
	z-index: 2;
}
body.trips #header span.logo img {
	display: block;
	height: 55px;
	margin: 35px 30px;
	position: relative;
}
body #header div.flowprogress {
	flex-grow: 1;
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: stretch;
	align-items: center;
}
body #header div.flowprogress:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*
	background-color: var(--darker-blue);
	transform-origin: 100% 0;
	transform: skew(-45deg);
	box-shadow: var(--shadow-standard);
	*/
}
body #header div.flowprogress > span {
	position: relative;
	z-index: 1;
	font-size: 18px;
	text-align: center;
	position: relative;
	width: 100%;
}
body #header div.flowprogress > span span {
	display: block;
	border: 2px solid white;
	width: 14px;
	height: 14px;
	font-size: 12px;
	line-height: 14px;
	border-radius: 9px;
	background: var(--medium-blue);
	margin: 0 auto;
}
body #header div.flowprogress > span.active span {
	background: var(--light-blue);
}
body #header div.flowprogress > span.previous span {
	background: white;
	color: var(--darker-blue);
}
body #header div.flowprogress > span:before,
body #header div.flowprogress > span:after {
	content: '';
	border-bottom: 2px solid white;
	width: 50%;
	position: absolute;
	bottom: 9px;
	z-index: -1;
}
body #header div.flowprogress > span:before {
	left: 0;
}
body #header div.flowprogress > span:after {
	right: 0;
}
body #header div.flowprogress > span:first-child:before,
body #header div.flowprogress > span:last-child:after {
	border-bottom: none;
}
body #header #currenttime {
	font-weight: 600;
	font-size: 24px;
	padding: 0 50px;
	/*background: var(--darker-blue) !important;*/
	font-family: "Figtree", sans-serif;
	text-align: right;
	align-self: center;
}
body #header #currenttime span:first-child {
	display: block;
	/*background: var(--darker-blue);*/
	color: white;
	font-weight: 300;
	font-size: 67px;
	line-height: 67px;
	font-family: "Figtree", sans-serif;
}
body #header #currenttime span:last-child {
	display: block;
	/*background: var(--darker-blue);*/
	color: white;
	font-size: 24px;
	line-height: 24px;
	font-family: "Figtree", sans-serif;
}
body.trips #sidebar {
	box-sizing: border-box;
	width: 372px;
	height: 955px;
	padding: 45px 40px;
	float: left;
}
body.trips #main {
	box-sizing: border-box;
	margin-left: 372px;
	width: 1548px;
	height: 955px;
}
body.trips #main #triptypes {
	margin: 45px auto 0 0;
	padding: 40px;
	width: 1050px;
	display: flex;
	flex-wrap: wrap;
	justify-items: stretch;
	background: white;
	justify-content: center;
	box-sizing: border-box;
	box-shadow: var(--shadow-standard);
	border-radius: 5px;
	transition: var(--default-transition);
}
body.trips #main #triptypes div {
	width: 100%;
}
body.trips #main #triptypes div h1 {
	margin: 0;
	font-weight: 600;
	font-size: 32px;
	font-family: "Figtree", sans-serif;
}
body.trips #main #triptypes div p {
	margin: 0;
	color: var(--light-gray);
	font-size: 18px;
}
body.trips #main #triptypes > p {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0;
	transition: all ease-out 200ms;
}
/*
body.trips #main #triptypes > p:active {
	transform: translateY(5px);
	box-shadow: none !important;
}
*/
body.trips #main #triptypes > p.trips {
	background: var(--light-medium-blue);
	color: white;
	margin: 40px 40px 40px 0;
	height: 244px;
	flex-grow: 1;
	box-shadow: var(--shadow-closer);
}
body.trips #main #triptypes img {
	width: auto;
	margin-bottom: 10px;
}
body.trips #main #triptypes > .trips img {
	height:75px;
}
body.trips #main #triptypes > .passbook img {
	height:90px;
}
body.trips #main #triptypes > p.trips:nth-child(3) {
	margin-right: 0;
}
body.trips #main #triptypes > p.passbook {
	background: var(--medium-blue-text);
	color: white;
	height: 244px;
	width: 100%;
	box-shadow: var(--shadow-closer);
}
body.trips #main #triptypes > p span.tripname {
	font-weight: 600;
	font-size: 40px;
	font-family: "Figtree", sans-serif;
}
body.trips #main #triptypes > p span.farevalue {
	font-weight: 400;
	font-size: 22px;
	font-family: "Figtree", sans-serif;
}
body.trips #main #triptypes > p span.farevalue:after {
	content: ' / ';
}
body.trips #main #triptypes > p span.farevalue:last-child:after {
	content: '';
}
body.trips #main #passengerselect {
	margin: 45px auto 0 140px;
	padding: 30px;
	width: 710px;
	background: white;
	box-shadow: var(--shadow-standard);
	border-radius: 5px;
	transition: var(--default-transition);
}
body.trips #main #passengerselect h1 {
	margin: 0;
	font-weight: 600;
	font-size: 32px;
	font-family: "Figtree", sans-serif;
}
body.trips #main #passengerselect h2 {
	margin: 30px 0px 20px 0px;
	font-weight: 600;
	font-size: 22px;
	font-family: "Figtree", sans-serif;
}
body.trips #main #passengerselect h3 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 2em;
}
body.trips #main #passengerselect h3 span {
	background: white;
	color: var(--dark-gray);
	padding: 16px 24px 16px 32px;
	text-align: center;
	border: 2px solid var(--light-gray-border);
}
body.trips #main #passengerselect h3 span.BackBayLoc {
	background: var(--orange);
	color: white;
	padding: 16px 24px 16px 32px;
	text-align: center;
	box-shadow: 0px 1px 5px #57575729;
	border-radius: 7px;
}
body.trips #main #passengerselect h3 span.ConvCenterLoc {
	background: var(--light-medium-blue);
	color: white;
	padding: 16px 24px 16px 32px;
	text-align: center;
	box-shadow: 0px 1px 5px #57575729;
	border-radius: 7px;
}
body.trips #main #passengerselect p.paxSelect {
	margin: 30px 0 0 0;
	border: 2px solid var(--light-gray-border);
	color: var(--dark-gray);
	padding: 16px 24px 16px 32px;
	display: flex;
	align-items: flex-end;
}
body.trips #main #passengerselect p.BackBayNote {
	display: flex;
	font-size: 22px;
	color: var(--medium-gray);
	align-items: flex-end;
}
body.trips #main #passengerselect > p.warning {
	display: block;
	background: transparent;
	border-radius: 0;
	padding: 0;
}
body.trips #main #passengerselect p span.label {
	flex-grow: 1;
	margin-right: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100px;
}
body.trips #main #passengerselect p span.farename {
	font-weight: 600;
	font-size: 40px;
	line-height: 40px;
	font-family: "Figtree", sans-serif;
}
body.trips #main #passengerselect p span.farename span {
	font-size: 24px;
	margin-left: 10px;
}
body.trips #main #passengerselect p span.fare {
	color: var(--medium-gray);
	font-weight: 600;
	font-size: 26px;
	line-height: 26px;
	font-family: "Figtree", sans-serif;
	margin-top: 5px;
}
body.trips #main #passengerselect p input {
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	font-family: "Figtree", sans-serif;
	font-size: 37px;
	background: transparent;
	border-radius: 3px;
	border: none;
	margin: 0 10px;
	-webkit-appearance: none;
	-moz-appearance: textfield;
	box-sizing: border-box;
}
body.trips #main #passengerselect p button {
	width: 100px;
	height: 100px;
	line-height: 100px;
	padding: 0;
	box-sizing: border-box;
	font-size: 44px;
}
body.trips #main #passengernames {
	margin: 45px auto 0 127px;
	padding: 30px;
	width: 800px;
	background: white;
	box-shadow: var(--shadow-standard);
	border-radius: 5px;
	transition: var(--default-transition);
}
body.trips #main #passengernames h1 {
	margin: 0;
	font-weight: 600;
	font-size: 32px;
	font-family: "Figtree", sans-serif;
}
body.trips #main #passengernames p {
	margin: 10px 0;
	font-size: 18px;
	color: var(--light-gray);
}
body.trips #main #passengernames div.passbookbuttons {
	margin: 30px 0 10px;
	display: flex;
	justify-content: space-between;
}
body.trips #main #passengernames div.passbookbuttons p {
	color: white;
	background: var(--medium-blue-text);
	display: flex;
	flex-flow: column;
	height: 210px;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	box-shadow: var(--shadow-closer);
	transform:translateY(-15px);
	transition: transform ease-out .2s;
}
body.trips #main #passengernames div.passbookbuttons p:not(:nth-child(1)) {
	margin-left: 25px;
}
body.trips #main #passengernames div.passbookbuttons p.inactive {
	/* opacity: 0.4; */
	transform: none;
	background: var(--light-gray);
}
body.trips #main #passengernames div.passbookbuttons p span.farename {
	font-weight: 600;
	font-size: 40px;
	line-height: 50px;
	font-family: "Figtree", sans-serif;
}
body.trips #main #passengernames div.passbookbuttons p span.farename span {
	font-size: 24px;
	margin-left: 10px;
}
body.trips #main #passengernames div.passbookbuttons p span.fare {
	font-size: 30px;
	line-height: 38px;
}
body.trips #main #passengernames p.passbookname {
	margin: 38px 0 11px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	color: var(--dark-gray);
}
body.trips #main #passengernames p.passbookname span {
	width: 100%;
	font-weight: 600;
	font-size: 18px;
	font-family: "Figtree", sans-serif;
}
body.trips #main #passengernames p.passbookname label {
	display: none;
}
body.trips #main #passengernames p.passbookname input {
	font-weight: 500;
	font-size: 28px;
	line-height: 46px;
	border: 2px solid var(--medium-gray);
	font-family: "Figtree", sans-serif;
	padding: 16px 20px;
	box-sizing: border-box;
	border-radius: 5px;
	width: calc(50% - 14.5px);
}
body.trips #main #passengernames p.passbookname input:focus {
	outline: none;
	border-color: var(--light-blue-text);
}
body #main #purchaseprogress {
	position: absolute;
	top: 0;
	right: 80px;
	width: 280px;
	background: white;
	padding: 20px 25px;
	border-radius: 5px;
	box-shadow: var(--shadow-standard);
	transition: var(--default-transition);
}
body #main #purchaseprogress p.stops {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
body #main #purchaseprogress p.stops span.label {
	font-weight: normal;
	font-size: 22px;
	font-family: "Figtree", sans-serif;
	color: var(--medium-gray);
	order: 0;
	width: 100%;
}
body #main #purchaseprogress p.stops > span.fal {
	order: 1;
	color: var(--light-blue);
	font-size: 45px;
	align-self: center;
	margin: 20px 10px -22px 0;
}
body #main #purchaseprogress p.stops span.origin,
body #main #purchaseprogress p.stops span.destination {
	font-weight: 500;
	font-size: 24px;
	font-family: "Figtree", sans-serif;
	justify-self: start;
	padding: 8px 16px;
	border-radius: 7px;
}
body #main #purchaseprogress p.stops span.origin {
	order: 3;
	margin-left: 25px;
}
body #main #purchaseprogress p.stops span.destination {
	order: 2;
}
body #main #purchaseprogress p.stops span.origin span,
body #main #purchaseprogress p.stops span.destination span {
	margin-right: 4px;
}
body #main #purchaseprogress p.trip span.label {
	font-weight: normal;
	font-size: 22px;
	font-family: "Figtree", sans-serif;
	color: var(--medium-gray);
}
body #main #purchaseprogress p.trip span.triptype {
	display: block;
	font-weight: 600;
	font-size: 24px;
	line-height: 28px;
	font-family: "Figtree", sans-serif;
}
body #main #purchaseprogress #selectedfarelist {
	margin: 18px 0;
}
body #main #purchaseprogress #selectedfarelist p {
	font-weight: 600;
	font-size: 24px;
	line-height: 30px;
	font-family: "Figtree", sans-serif;
	margin: 0;
	padding: 2px 0;
	display: flex;
	justify-content: space-between;
	align-items: end;
}
body #main #purchaseprogress #selectedfarelist p.total {
	border-top: 1px solid var(--light-gray);
}
body #main #purchaseprogress #selectedfarelist p.total span:first-child {
	font-size: 22px;
	line-height: 25px;
	color: var(--medium-gray);
	font-weight: normal;
}
body #main #purchaseprogress #selectedfarelist p.total span:last-child {
	font-size: 32px;
	line-height: 40px;
}
body.trips #main p.nextbutton {
	margin: 40px 80px 0 0;
	text-align: right;
	position: fixed;
	bottom: 65px;
	right:0
}
