* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
  font-family: Inter;
  src: url(Inter-Regular.ttf);
}

@font-face {
  font-family: Inter-SemiBold;
  src: url(Inter-SemiBold.ttf);
}

html {
	background-image: linear-gradient(#F1F5F9, white);
	height: 100vh;
}

body {
	width: 100%;
	padding-top: 5vh;
}

h1 {
	width: 80%;
	text-align: center;
	font-family: 'Inter-SemiBold', sans-serif;
	margin: 0 10% 5vh 10%;
	font-size: 3rem;
	color: #1E293B;
}

h2 {
	width: 80%;
	text-align: center;
	font-family: 'Inter-SemiBold', sans-serif;
	margin: 5vh 10%;
	font-size: 2rem;
	color: #1E293B;
}

p {
	width: 80%;
	text-align: center;
	font-family: 'Inter', sans-serif;
	margin: 5vh 10%;
	font-size: 1rem;
	color: #1E293B;
}

form {
	display: block;
	width: 80%;
	margin: 5vh 10%;
	text-align: center;
}

form select {
	padding: 4% 1%;
	width: 100%;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	background-color: white;
	border-color: #E2E8F0;
	border-radius: 0.5rem;
	text-align: center;
	font-size: 1rem;
}

form input {
	display: block;
	padding: 4% 1%;
	width: 100%;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	background-color: white;
	border-color: #E2E8F0;
	border-radius: 0.5rem;
	text-align: center;
	font-size: 1rem;
	margin-top: 2vh;
}

#msgBox {
	display: none;
	width: 100%;
	text-align: center;
	margin-top: 2vh;
	color: red;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
}

a#checkout {
	background-color: #3399ff;
	color: #ffffff;
	font-family: 'Inter-SemiBold', sans-serif;
	border-radius: 0.5rem;
	border: 0;
	font-size: 1rem;
	cursor: pointer;
	display: block;
	transition: all 0.2s ease;
	box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
	width: 65%;
	margin: 5vh 17.5%;
	text-decoration: none;
	text-align: center;
	height: 8vh;
	line-height: 8vh;
}

a#checkout:hover {
	background-color: #177CFF;
}

a#pp_checkout {
	background-color: #ffdd57;
	color: #ffffff;
	font-family: 'Inter-SemiBold', sans-serif;
	border-radius: 0.5rem;
	border: 0;
	font-size: 1rem;
	cursor: pointer;
	display: block;
	transition: all 0.2s ease;
	box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
	width: 65%;
	margin: 5vh 17.5%;
	text-decoration: none;
	text-align: center;
	height: 8vh;
	line-height: 8vh;
}

a#pp_checkout:hover {
	background-color: #FFCC00;
}

a#pp_checkout img {
	height: 4vh;
	margin: 2vh 0;
}

a#returning {
	background-color: #00bd70;
	color: #ffffff;
	font-family: 'Inter-SemiBold', sans-serif;
	border-radius: 0.5rem;
	border: 0;
	font-size: 1rem;
	cursor: pointer;
	display: block;
	transition: all 0.2s ease;
	box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
	width: 65%;
	margin: 5vh 17.5%;
	text-decoration: none;
	text-align: center;
	line-height: 8vh;
}

a#returning:hover {
	background-color: #009256;
}

#sc_logo {
	width: 65%;
	display: block;
	margin: 10vh 17.5%;
}

p.terms {
	text-align: left;
	margin: 2vh auto;
}

#time_left {
	font-family: 'Inter-SemiBold', sans-serif;
	display: block;
	width: 90%;
	margin: 0 5%;
	text-align: center;
	font-size: 5em;
	font-weight: bold;
	color: #32a852;
}

#payment-form {
	width: 80vw;
	margin: 0 10vw;
}

#payment-submit {
	width: 30vw;
	margin: 5vh 35vw;
	display: none;
}

div#success, div#failure {
	display: none;
}

#try_again {
	width: 80%;
	text-align: center;
	font-family: 'Inter-SemiBold', sans-serif;
	margin: 5vh 10%;
	font-size: 1rem;
	color: #1E293B;
	text-decoration: underline;
	display: block;
}

svg {
	display: block;
	width: 100%;
	text-align: center;
}