@font-face {
	font-family: "Suisse Int'l";
	src: url('/static/fonts/SuisseIntl-Book-WebS.woff2') format('woff2'),
		url('/static/fonts/SuisseIntl-Book-WebS.woff') format('woff'),
		url('/static/fonts/SuisseIntl-Book-WebS.ttf') format('ttf'),
		url('/static/fonts/SuisseIntl-Book-WebS.eot') format('eot'),
		url('/static/fonts/SuisseIntl-Book-WebS.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

body,
html {
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-family: "Suisse Int'l", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	letter-spacing: 0.07em;
	color: rgb(33, 33, 33);
}

a {
	color: inherit;
	text-decoration: none;
}

#content {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#content > main {
	flex: 1 0;
	width: 100%;
	max-width: 80em;
	box-sizing: border-box;
	padding: 0px 1em;
	margin: 2em auto;
}

@media (min-width: 64em) {

#content > main {
		padding: 0px 3.75em;
		margin: 5em auto 11.25em
}
	}

.pageHeader {
	display: flex;
	align-items: center;
	flex: 0 0;
}

.pageHeader > .pageHeader_logo {
	width: 200px;
}

.pageFooter {
	padding: 0px 1.25em;
	background: rgb(33, 33, 33);
	min-height: 8.75em;
	color: rgb(117, 117, 117);
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	flex: 0 0;
}

@media (min-width: 38em) {

.pageFooter {
		padding: 0px 2.5em
}
	}

@media (min-width: 64em) {

.pageFooter {
		padding: 0px 3.75em
}
	}

.pageFooter_content {
		width: 100%;
		max-width: 66.25em;
		margin: 0px auto;
		display: flex;

		justify-content: center;
		align-items: flex-start;
		flex-flow: column wrap;
	}

@media (min-width: 38em) {

.pageFooter_content {
			flex-flow: row wrap;
			justify-content: flex-start;
			align-items: center
	}
		}

.pageFooter_content_links > ul,
			.pageFooter_content_links > ul > li {
				list-style: none;
				padding: 0;
				margin: 0;
			}

.pageFooter_content_links > ul > li {
				margin: 0.5em 0;
			}

@media (min-width: 38em) {

.pageFooter_content_links > ul > li {
					display: inline-block;
					margin: 0 0 0 3em
			}
				}

.centerContent {
	text-align: center;
	padding: 2em 0;
}

.colorLight {
	color: rgb(77, 77, 77);
}

.bigBtn {
	display: inline-block;
	padding: 1em 2em;
	background: #de2b41;
	color: #fff;
	border-radius: 1.8em;
	transition: background ease 200ms;
	outline: none;
	border: none;
	cursor: pointer;
}

.bigBtn:focus,
	.bigBtn:active,
	.bigBtn:hover {
		background: #f3c0d8;
	}

.fsRegular {
	font-size: 100%;
	line-height: 1.4166667;
}

@media (min-width: 38em) {

.fsRegular {
		font-size: 150%;
		line-height: 1.3333333
}
	}

.fsBig {
	font-size: 2em;
	line-height: 1.1875;
}

@media (min-width: 38em) {

.fsBig {
		font-size: 2.2em;
		line-height: 1.3
}
	}

.fsBig > h1,
	.fsBig > h2 {
		margin: 0;
	}

.contentTitle {
	text-align: center;
}

.moment_videoContent {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

.moment_videoContent video {
			box-sizing: border-box;
			width: 100%;
			max-width: 100vw;
			aspect-ratio: 16/18;
			margin: 4em 0 2em 0;
			padding: 5px;
		}

@media (min-width: 38em) {

.moment_videoContent video {
				padding: 0;
				width: unset;
				max-height: 80vh
		}
			}

.moment_expiry {
		margin: 2em 0 4em 0;
	}

.socialIcons {
	display: flex;
	justify-content: center;
	margin: 1em 0;
}

.socialIcons > a > svg {
		margin: 5px;
		width: 40px;
	}

.socialIcons > a > svg path {
			fill: currentColor;
		}

.postRide * {
		box-sizing: border-box;
	}

.postRide_form {
		width: 100%;
		max-width: 30em;
		padding: 0 2em;
		margin: 2em auto;
		display: flex;
		flex-direction: column;
	}

.formField {
	position: relative;
	display: flex;
	flex-direction: column;
}

.formField::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background: rgb(222, 43, 65);
		opacity: 0;
		transition: opacity 0.2s ease;
	}

.formField:focus-within::after {
		opacity: 1;
	}

.formField > input {
		display: block;
		border: none;
		background: rgb(33, 33, 33);
		color: #ffffff;
		padding: 1em;
		text-align: center;
	}

.formField > input:focus {
			outline: none;
		}

.formError {
	margin: 1em 0;
	text-align: center;
	color: rgb(222, 43, 65);
}

.formActions {
	display: flex;
	justify-content: center;
	margin: 2em 0;
}
