/* Add relevant fonts */
@font-face {
    font-family: "CorisReg";
    src: url("Corisande-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "CorisBold";
    src: url("Corisande-Bold.ttf") format("truetype");
}

/* set width and hide differnet elemenets at different points */
@media ( min-width: 1025px ) {
	.main-content-mobile {
		display: none;
	}
}
@media ( max-width: 1024px ) {
	.main-content-desktop {
		display: none;
	}
}
@media ( min-width: 576px ) {
	.main-content-mobile {
		width: 575px;
		margin: 0 auto;
	}
}

* {
	font-family: "CorisReg", sans-serif;
}

body {
	margin: 0;
	background-color: black;
}

/* Desktop styling */
.main-content-desktop {
	text-align: center;
}

.desktop-logo {
	margin-top: 5em;
	width: 200px;
}

.desktop-spacer {
	margin-top: 5em;
}

.desktop-subtitle {
	color: white;
}

.desktop-subtitle-2 {
	font-style: italic;	
	color: white;
}

/* Mobile site styling */
.main-content-mobile {
	width: 100vw;
	height: 100vh;
}

.main-content-mobile-gradient {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}

.pre-download-instructions {
	position: relative;
	padding-top: 30px;
}

.pre-download-instructions-title {
	color: white;
	font-family: "CorisReg", sans-serif;
	text-align: center;
	margin: 0;
	font-size: 7vw;
}

.pre-download-instructions-subtitle {
	color: white;
	font-family: "CorisReg", sans-serif;
	text-align: center;
	font-size: 4.5vw;
	margin-top: 20px;
	margin-bottom: 20px;
}
.main-content-mobile-select_boxes {
	border: 2px solid white;
	width: 90%;
	height: 20vw;
	border-radius: 4px;
	margin: 0 auto;
	margin-bottom: 20px;
	text-align: center;
	overflow: hidden;
}

.main-content-mobile-select_boxes-iOS {
	float: left;
	height: 21vw;
	width: 50%;
	display: table;
}

.main-content-mobile-select_boxes-Android {
	float: right;
	height: 21vw;
	width: 50%;
}

.main-content-mobile-select_boxes-iOS>p, .main-content-mobile-select_boxes-Android>p {
	margin: 0;
	color: white;
	font-size: 5vw;
	float: left;
	margin-top: 16%;
	margin-left: 4%;
}

.main-content-mobile-select_boxes-iOS>.logo, .main-content-mobile-select_boxes-Android>.logo {
	width: auto;
	/*height: 30%;*/
	height: 7vw;
	float: left;
	margin-top: 13%;
	margin-left: 25%;
}

.main-content-mobile-select_boxes-Android>.logo {
	margin-left: 20%;
}

.main-content-mobile-border {
	border-bottom: 1px solid white;
	width: 90%;
	margin: 0 auto;
}

.main-content-mobile-select_boxes-box.selected {
	background: white;
}

.main-content-mobile-select_boxes-box.selected>p {
	color: #749d3c;
}

.instructions {
	padding-top: 40px; 
	position: relative;
}

.download-instructions-list {
	margin-top: 0;
	padding-left: 15%;
	padding-right: 10%;
	max-width: 575px;
	margin: 0 auto;
	list-style: none;
}

.download-instructions-list>li {
	margin-bottom: -30px;
	font-size: 6vw;
	color: white;
	position: relative;

	counter-increment: custom;
}

.download-instructions-list>li>p {
	position: relative;
	top: -16vw;
	left: 5vw;
	font-size: 0.75em;
	line-height: 1.2em;	
}

.divider {
	margin-top: 23px;
	margin-bottom: 0px;
}

.download-instructions-list li:before
{
    content: counter(custom) " ";
	
	position: relative;
	left: -20px;
	font-size: 2em;
}

.download-instructions-list li:nth-child(10):before {
	left: -40px;
}

.download-instructions-list>.special-li {
	margin-bottom: 7.0em;
}

.download-instructions-list li:first-child {
    counter-reset: custom;
}

.download-button-wrapper {
	width: 35%;
	margin: 0 auto;
	margin-bottom: 3em;
}

.download-button {
	width: 100%;
}

.download-text {
	text-align: center;
	color: white;
	text-decoration: underline;
	margin-top: 8px;
	font-size: 4.5vw;
}

.download-link-logo {
	width: 100%;
	height: auto;
}

.download-link-logo {
	border-radius: 5px;
}

.BG-container {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: auto;
	opacity: 0.75;
	z-index: -1;
}

.done {
	text-align: center;
	font-size: 1.4em;
	text-decoration: underline;
	color: white;
	margin-top: 2em;
	margin-bottom: 2em;
	padding-bottom: 60px; 
}

.hidden {
	display: none;
}