/* USER VARIABLES SECTION */

:root {
	--accent: #FFA000;
	--dark-orange: #FF7354;
	--text: #000B16;
	--regular-text: 16px;
	--lineheight: 1.65;
	--userfont: "Inter", sans-serif;
	--headlinefont: "Work Sans", sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}


/* GENERAL CSS SETTINGS */

::placeholder {
	color: #666;
}

::selection {
	background-color: var(--accent);
	color: #fff;
}

input,
textarea {
	outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
	border-color: red;
}

input:required:valid,
textarea:required:valid {
	border-color: green;
}

body {
	margin: 0;
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

h1,
h2,
h4,
h4,
h5,
h6 {
	color: #4A4A4A;
	font-family: var(--headlinefont);
}

a { color:inherit;
	color: #FFA000; 
	text-decoration:none; 
}

/* Page container takes all height */
.page-container {
	min-height: 100vh;
	position: relative;
}

/* Images styles */
.image {
	max-width: 100%;
	margin: 0 auto 30px auto;
	border-radius: 4px;
	display: block;
}

.accent {
	color: var(--accent);
	font-weight: bold;
}

/* Main content box */
.content {
	position: absolute;
	/* width: 600px; */
	/* min-width: 200px; */
	text-align: center;
	display: block;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -55%);
}


h1 {
	font-size: 42px;
	font-weight: 500;
	letter-spacing: 1px;
}

h2 {
	font-weight: bold;
	margin-bottom: 15px;
}

.checkbox-container {
	display: block;
	margin-top: 71px;
	margin-bottom: 30px;
}

.checkbox-list {
	width: 310px;
	margin: auto;

}

/* Label container */
label.container {
	text-align: left;
	display: block;
	position: relative;
	margin-bottom: 10px;
	padding: 7px 0 15px 52px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-bottom: 1px solid #E1E1E1;
	letter-spacing: 0.4px;
	/* padding-bottom: 30px; */
}

/* Hide default checkbox */
.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
	display: flex;
}

/* Custom checkbox  */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 40px;
	width: 40px;
	background-color: var(--accent);
	border-radius: 5px;
}


/* Checkmark indicator when not checked */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show checkmark indicator when checked */
.container input:checked~.checkmark:after {
	display: block;
}

/* Checkmark indicaton if checked */
.container .checkmark:after {
	left: 12px;
	top: 4px;
	width: 13px;
	height: 23px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}



/* Button styles */
.btn {
	display: inline-block;
	background: var(--dark-orange);
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	text-decoration: none;
	padding: 22px 60px;
	border-radius: 10em;
}


/* Footer settings */
footer {
	background: var(--dark-orange);
	text-align: center;
	color: #F9F9F9;
	height: 101px;
	position: absolute;
	bottom: 0;
	width: 100%;
	/* height: 2.5rem; */
}

.footer-txt {
	display: block;
	line-height: 101px;
}
