body {
  --primary-color: #446BE1;
	--secondary-color: #A6D79B;
  --gray-color: #C9D1F3;
	--gray-light-color: #F8F9FA
}

html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 10px;
	font-family: Roboto, sans-serif;
}

.bg-primary-color {
	background-color: var(--primary-color);
}

.text-primary-color {
	color: var(--primary-color);
}

.bg-secondary-color {
	background-color: var(--secondary-color);
}

.text-secondary-color {
	color: var(--secondary-color);
}

.bg-gray-light-color {
	background-color: var(--gray-light-color);
}

.text-gray-color {
	color: var(--gray-color);
}

.hover-effect:hover {
	opacity: 0.5;
	background-color: var(--secondary-color);
}

section.main #refCode,
section.second-form #refCode {
	font-size: medium;
	border: 1px solid #D3D3D3;
	border-radius: 9px;
	font-family: Roboto, sans-serif;
	font-weight: bold;
	font-size: 1.9em;
	line-height: 1em;
	text-align: center;
	outline: none !important;
	width: 100%;
	height: 60px;
	max-width: 400px;
}

section.main #form-submit-btn,
section.second-form #form-submit-btn {
	width: 100%;
	height: 50px;
	border-radius: 9px;
	font-family: Roboto, sans-serif;
	font-weight: normal;
	line-height: 1em;
	text-align: center;
	margin-bottom: 20px;
	max-width: 300px;
}

section.main .new-york-times-logo {
	display: block;
	height: 44px;
	vertical-align: middle;
	width: 150px;
}

section.bg-white .container .image-container,
section.second-form .container .image-container {
	max-width: 400px;
}

section.debt-list .container .image-container {
	max-width: 300px;
}

section.bg-white .expensives-list li,
section.debt-list .expensives-list li {
  position: relative;
  padding-left: 60px;
}

section.bg-white .expensives-list li::before,
section.debt-list .expensives-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-image: url("/campaigns/skyline/images/check-green.svg");
  background-size: cover;
}

section.debt-list .expensives-list li::before {
	width: 40px;
  height: 40px;
  background-image: url("/campaigns/skyline/images/check-green-outline.svg");
}

section.survey .box-wrapper {
	max-width: 1200px;
  width: 100%;
  padding: 20px;
}

section.survey form .landing-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	height: 40px;
	max-width: 260px;
}

section.survey #surveyForm input, #surveyForm select {
	font-size: 1.5rem;
	padding: 10px;
}

section.survey select:first-child {
	color: #949292;
}

section.survey #surveyForm input, #surveyForm select {
	font-size: 1.5rem;
	padding: 15px;
}

section.survey #surveyForm input::placeholder, #surveyForm select {
	font-size: 1.5rem;
}

section.survey #surveyForm select {
	padding-top: 1.9rem !important;
	padding-bottom: 1.9rem !important;
}

section.survey input[type="date"] {
  font-size: 15px;
	padding-top: 8px !important;
	padding-bottom: 8px !important;
}

section.survey input[type="date"]:before {
  content: attr(placeholder) !important;
  color: #aaa;
  font-size: 15px;
	padding-bottom: 20px;
}

section.survey label.error-message {
	font-size: 14px;
	margin-top: 3px;
}

section.thank-you hr {
  max-width: 800px;
  width: 100%;
  color: darkgray;
}