html, body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	background-color: #e6edf7;
}
.c-blue {
	color: #0D6EFD;
}
.spot {
	color: red;
	font-weight: bold;
	font-size: 16px;
}
.seen {
	margin: 15px auto;
}
.seen-media {
	color: #555;
	margin: 20px 0px;
}
/* Page has a statue of liberty background, and then a semi-transparent content container */
.full-page {
	min-height: 100vh;
	padding: 13px;
	background-image: url("bg.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.content-container {
	background-color: rgba(255, 255, 255, 0.90);
	border-radius: 15px 15px 0px 0px;
	min-height: 80vh;
}
/* gradient from top to bottom, #5BF676 to #03BF25 */
.green-header {
	background-position: 0%;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	padding: 6px 10px;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	background-color: #5d8eff;
}
.us-flag {
	/* Ensures the flag is aligned to the left */
	flex-shrink: 0;/* Prevent the flag from shrinking */
}
.center-text {
	flex-grow: 1;
	/* Allows the text container to take up available space */
	display: flex;
	justify-content: center;
	/* Centers the text horizontally */
	align-items: center;/* Centers the text vertically, if needed */
}
.persistent-headline {
	font-size: 29px;
	font-weight: bold;
	padding: 30px 20px 0px;
	text-align: center;
	color: #5d8eff;
}
/** Button Styles */

.button-positive {
	background-color: #5d8eff;
	color: white;
	padding: 30px 10px;
	border-radius: 5px;
	text-align: center;
	margin: 10px;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
	cursor: pointer;
}
.button-negative {
	border: 3px solid #5d8eff;
	color: #5d8eff;
	padding: 10px 10px;
	border-radius: 5px;
	text-align: center;
	margin: 10px;
	font-size: 30px;
	font-weight: bold;
	background-color: rgba(255, 255, 255, 0.4);
	cursor: pointer;
}
/** Form **/
.form-container {
	padding: 20px;
	font-size: 20px;
	text-align: center;/* background-color: red; */
}
.question {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}
.page-number {
	font-size: 15px;
	margin-bottom: 10px;
}
/** Bottom Bar **/

.bottom-bar {
	background-color: #525252;
	padding: 5px;
	text-align: center;
	border-radius: 0px 0px 15px 15px;
	color: #fff;
}
@keyframes throb {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
.throbbing {
	display: inline-block;
	color: red;
	animation: throb 1.5s infinite;
}
.congrats {
	border-radius: 15px 15px 0 0;
	background: #5d8eff;
	color: #fff;
	font-weight: bold;
	padding: 5px;
	border-top: 1px solid #5d8eff;
	border-left: 1px solid #5d8eff;
	border-right: 1px solid #5d8eff;
}
.last-page-card {
    background-color: #fff;
    padding: 13px;
    border-radius: 0 0 15px 15px;
    border-bottom: 1px solid #5d8eff;
    border-left: 1px solid #5d8eff;
    border-right: 1px solid #5d8eff;
}
.footer {
	background-color: #1c1c1c;
	color: #a4a4a4;
	padding: 10px;
	font-size: 13px;
}

/** desktop breakpoint **/

@media (min-width: 768px) {
.content-container {
	width: 50%;
	margin: 0 auto;
	border-radius: 15px;
}
.bottom-bar {
	display: none;
}
.hide-on-desktop {
	display: none;
}
}
#articles {
	display: none;
}
.articles-container {
  max-width: 750px;
  margin: 0 auto;
}
.articles-content {
  border-radius: 4px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.articles-heading {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #333;
}
.articles-img {
  max-width: 220px;
}
.article-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.article-cta {
  display: block;
  text-align: center;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background-color: #3d9aff;
  border-radius: 4px;
  margin: 20px auto 10px auto;
  width: 100%;
  max-width: 200px;
}
.fade-in {
  animation: fadeIn 0.6s ease-in forwards;
}
.fade-out {
  animation: fadeOut 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
.loading-phase {
	margin-top: 15px;
}
.loading-phase .loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  text-align: center;
}

.loading-phase .loading.active {
  opacity: 1;
  visibility: visible;
}
.loading h4 {
	font-size: 18px;
	font-weight: bold;
	
}


@media screen and (max-width:500px) {
  .articles-img {
    max-width: 150px;
    width: 100%;
  }
}