@font-face {
    font-family: SkyText-Regular;
    src: url(../fonts/SkyText-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/SkyText-Regular.woff) format("woff"), url(../fonts/SkyText-Regular.ttf) format("truetype"), url(../fonts/SkyText-Regular.svg#SkyText-Regular) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: SkyText-Bold;
    src: url(../fonts/SkyText-Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/SkyText-Bold.woff) format("woff"), url(../fonts/SkyText-Bold.ttf) format("truetype"), url(../fonts/SkyText-Bold.svg#SkyText-Bold) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: SkyText-Italic;
    src: url(../fonts/SkyText-Italic.eot?#iefix) format("embedded-opentype"), url(../fonts/SkyText-Italic.woff) format("woff"), url(../fonts/SkyText-Italic.ttf) format("truetype"), url(../fonts/SkyText-Italic.svg#SkyText-Italic) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: SkyTextMedium-Regular;
    src: url(../fonts/SkyTextMedium-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/SkyTextMedium-Regular.woff) format("woff"), url(../fonts/SkyTextMedium-Regular.ttf) format("truetype"), url(../fonts/SkyTextMedium-Regular.svg#SkyTextMedium-Regular) format("svg");
    font-weight: 400;
    font-style: normal
}

@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
    box-sizing: border-box;
    font-family: SkyText-Regular, Helvetica Neue Light, Helvetica Neue, Helvetica, Arial, sans-serif !important;
}

.fa, .far, .fas {
	font-family: "Font Awesome 5 Free" !important;
}

strong {
	font-weight: bold;
}

button:focus, img:focus {
	outline: none !important;
}

ol {
	list-style: disc;
	padding-left: 24px;
}

.w-82-auto {
	width: 82%;
	margin-left: auto;
	margin-right: auto;
}

.sky-gradient {
    display: inline-block;
    background: linear-gradient(90deg, #ff9e00, red 30.93%, #b5007d 61.67%, #21429c 88.09%, #0071ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.sky-gradient-lite {
    background-image: linear-gradient(90deg, #6f25ff, #f720ca);
}

.f100-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 54px;
}

.f100-header > img {
    width: 64px;
}

.f100-home-video > video {
    width: 100%;
}

.f100-code-video {
    position: relative;
}

.f100-code-input {
	/*
    position: absolute;
    bottom: 0;
    left: 0;
    */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9;
    background-color: white;
    padding: 16px 0;
}

.f100-code-input > label {
	font-size: 14px;
    font-family: "SkyTextRegular", sans-serif;
}

.f100-code-input > input {
    width: 90%;
    height: 28px;
    border: 2px solid transparent;
    border-bottom-color: black;
    font-size: 20px;
    text-indent: 4px;
    color: black;
    transition: all 200ms ease-in-out;
    font-family: "SkyTextRegular", sans-serif;
}

.f100-code-input > input:focus {
    border-bottom: 2px solid #064497;
    outline: none;
}

.f100-code-input > button {
	float: unset;
    margin-top: 16px;
    background-color: #064497;
    font-weight: 500;
    padding: 12.5px 0;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 22.5px;
    border: 0;
    font-family: "SkyTextRegular", sans-serif;
    width: 90%;
    min-width: 160px;
}

.f100-code-input > button:focus, .f100-code-input > button:active {
	outline: none;
}



.landing-modal {
	display: none;
}

.landing-modal-overlay {
	z-index: 9999;
	background-color: rgba(0, 0, 0, .8);
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.landing-modal-content {
    position: relative;
    background-color: white;
    flex-shrink: 0;
    width: 90%;
	min-height: 224px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    text-align: center;
    padding: 32px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.landing-modal-content.lightSpeedOut {
	animation-duration: 400ms;
}

.landing-modal-gradient-bar {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
    background: linear-gradient(90deg, #ff9e00, red 30.93%, #b5007d 61.67%, #21429c 88.09%, #0071ff);
    height: 4px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.landing-modal-text {
	width: 100%;
	text-align: center;
	margin: 16px 0;
	font-size: 22px;
	line-height: 28px;
	font-weight: bold;
}

.landing-modal-text-step2a, .landing-modal-text-step2b {
	display: none;
}

.landing-modal-input {
	display: none;
	width: 240px;
	border-radius: 16px;
	height: 32px;
	border: 1px solid #333;
	color: #333;
	margin-bottom: 24px;
	text-indent: 8px;
	font-size: 16px;
	line-height: 20px;	
}

.landing-modal-input:focus {
	outline: none;
}

.landing-modal-button-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-bottom: 24px;
}

.landing-modal-button {
	font-size: 24px;
	font-weight: bold;
	line-height: 36px;
	width: 200px;
	height: 36px;
	background-color: white;
	color: #007aff;
	border-radius: 30px;
	border: 1px solid #007aff;
	margin: 0 8px;
	padding: 0 6px;
}

.landing-modal-button:focus {
	outline: none;
}

.landing-modal-button-blue {
	background-color: #007aff;
	color: white;
}

.landing-modal-button-small {
	width: 80px;
}

.landing-modal-button-thin {
	width: 256px;
	font-size: 16px;
}

.landing-modal-button-step2a, .landing-modal-button-step2b {
	display: none;
}


.landing-modal-link {
	/*
	font-size: 15px;
	text-decoration: underline;
	line-height: 18px;
	color: #333;
	font-style: italic;
	*/
	display: none;
}


.landing-modal-nobookingfound {
	display: none;
	font-size: 15px;
	font-weight: bold;
	width: 90%;
    position: absolute;
    bottom: 8px;
    left: 5%;
    width: 90%;	
    color: #d2004c;
}

.landing-modal-text-closed {
	display: none;
}

.landing-sticky-skip {
	position: sticky;
	bottom: 42px;
	left: 65%;
	text-align: center;
	width: 26%;
	background-color: white;
	border-radius: 24px;
	display: none;
}

.landing-sticky-skip-button {
    text-align: center;
    cursor: pointer;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: ease;
    color: transparent;
    height: 48px;
    border-radius: 48px;
    font-family: inherit;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    border: 1px solid transparent;
    box-shadow: 0px 4px 16px -4px black;
}

.landing-sticky-skip-button:focus {
	outline: none;
}

.videotutorial-container {
	width: 100%;
	min-height: 704px;
}

.videotutorial-header {
	font-size: 28px;
	line-height: 32px;
	font-weight: bold;
	width: 100%;
	text-align: center;
	margin: 16px 0;
}

.videotutorial-item {
	margin: 16px 0 64px 0;
}

.videotutorial-link-item {
	margin: 16px 0 48px;
}

.videotutorial-link {
	/*
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
	margin: 0 16px;
	*/
}

.videotutorial-link:visited {
	color: #777;
}

.videotutorial-link > div {
	margin: 4px 16px;
}

.videotutorial-cover {
	width: 100%;
}

.videotutorial-title {
	font-size: 24px;
	line-height: 28px;
	font-weight: bold;
	width: 100%;
	text-align: center;
	margin: 16px 0;
}

.videotutorial-link-title {
	font-size: 18px;
	line-height: 22px;
	font-weight: bold;
	width: 100%;
	text-align: center;
	margin-bottom: 0;
}

.videotutorial-link-subtitle {
	font-size: 16px;
	line-height: 20px;
	width: 100%;
	text-align: center;
	color: #777;
}

.videotutorial-button {
	background-clip: unset;
	-webkit-background-clip: unset;
	width: 56px;
	height: 56px;
	border-radius: 28px;
	border: 1px solid transparent;
	margin-left: auto;
    margin-right: auto;
    display: block;
}


.videotutorial-modal {
	display: none;
}

.videotutorial-overlay {
	z-index: 9999;
	background-color: rgba(0, 0, 0, .8);
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.videotutorial-vid {
	width: 80%;
	position: relative;
	border-radius: 4px;
}

.videotutorial-close-button {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 29px;
	height: 29px;
}

#green {
	width:50%; 
}

.f100-footer {
	margin: 16px 0 32px;
}

.f100-footer, .f100-footer > * {
	width: 100%;
	text-align: center;
	color: #333;
}

.f100-footer-logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 54px;
}

.f100-footer-logo > img {
    width: 64px;
}

.f100-footer-legal > p {
	font-size: 14px;
}

.f100-footer-link {
	margin: 24px 0;
}

.f100-footer-link > p {
	font-size: 16px;
	font-weight: bold;
	text-align: center !important;
}

.f100-footer-text > p {
	color: #777;
    font-size: 14px;
	margin: 0 16px;
	text-align: center !important;
}
	
.f100-footer-modal {
	display: none;
}

.f100-footer-modal-overlay {
	z-index: 9999;
	background-color: rgba(0, 0, 0, .8);
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.f100-footer-modal-content {
	width: 100%;
	position: relative;
	border-radius: 4px;
}

.f100-footer-modal-close-button {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 29px;
	height: 29px;
}	

.home-vid-cta {
	height: 32px;
	width: calc(100% - 64px);
	margin: 8px 24px 16px 24px;
	border: 1px solid transparent;
	border-radius: 32px;
	background: linear-gradient(90deg, #ff9e00, red 30.93%, #b5007d 61.67%, #21429c 88.09%, #0071ff);
	background-size: cover;
	background-repeat: no-repeat;
	display: none !important;
}

.home-vid-cta > p {
	width: 100%;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	font-weight: bold;
	color: white;
}

.home-vid-modal {
	display: none;
}

.home-vid-overlay {
	z-index: 9999;
	background-color: rgba(0, 0, 0, .8);
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.home-vid-vid {
	width: 80%;
	position: relative;
	border-radius: 4px;
}

.home-vid-close-button {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 29px;
	height: 29px;
}
