body {
	padding: 2% 0;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size: 13px;
	margin: 0;
}
h1 {
	font-size: 38px;
	font-weight: 600;
	color: #451247;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
}
h2 {
	font-size: 18px;
}
h3 {
	font-size: 18px;
	font-weight: 600;
}
.confetti {
	background: url('../images/confetti.png') no-repeat center;
	width: 30vmin;
	height: 30vmin;
	background-size: contain;
}
.bold {
	font-weight: 600;
}
.advisoa-logo {
	background: url('../images/advisoa-logo.svg') no-repeat center;
	margin-top: 1.1%;
}
.advisoa-logo.small {
	height: 39px;
	width: 213px;
}
.row {
	display: flex;
	flex-direction: row;
}
.column {
	display: flex;
	flex-direction: column;
}
input::placeholder {
	  color: #451247;
	opacity: 0.5;
}

input:not([type='radio']), button {
	padding: 16px;
	font-size: 18px;
	font-weight: 600;
	border: 2px solid #451247;
	border-radius: 10px;
	width: 100%;
	text-align: center;
	color: #451247;
	background: none;
	width: 33%;
	box-sizing: border-box;
}

input[type='radio'] {
	margin: 0;
	padding: 0;
	border: none;
	width: auto;
	cursor: pointer;
}

input[type='radio']:after {
	width: 15px;
	height: 15px;
	border-radius: 15px;
	top: -3px;
	left: -3px;
	position: relative;
	background-color: #a288a3;
	content: '';
	display: inline-block;
	visibility: visible;
	border: 2px solid #a288a3;
	cursor: pointer;
}

input[type='radio']:checked:after {
	width: 15px;
	height: 15px;
	border-radius: 15px;
	top: -3px;
	left: -3px;
	position: relative;
	background-color: #451247;
	content: '';
	display: inline-block;
	visibility: visible;
	border: 2px solid #451247;
	cursor: pointer;
}

button {
	cursor: pointer;
}
button.focused {
	background: #00B67A;
	border-color: #00B67A;
	color: #ffffff;
}

.form-column > .custom-select {
	left: 32%;
}

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background: none;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #451247;
  padding: 16px;
  border: 2px solid #451247;
	border-radius: 10px;
  cursor: pointer;
	font-weight: 600;
	font-size: 17px;
	width: 33%;
	background: #ffffff;
}

.select-selected.select-arrow-active {
	border-bottom: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.select-selected.select-arrow-active ~ .select-items div {
	border-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.select-selected.select-arrow-active ~ .select-items div:not(:last-child) {
	border-bottom: 1px solid #a288a3;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background: none;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #a288a3;
	color: #ffffff;
}

.custom-range {
  width: 100%; /* Width of the outside container */
	position: relative;
}

/* The range itself */
.custom-range > input[type='range'] {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 8px; /* Specified height */
  background-color: rgba(69,18,71,0.5);
	border: none;
  outline: none; /* Remove outline */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
	padding: 0;
}

.custom-range-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 16px;
	width: 66%;
	box-sizing: border-box;
}

.range-value {
	color: #451247;
	font-size: 19px;
	font-weight: bold;
	margin-bottom: 30px;
	border: none;
	outline: none;
}

.custom-range > .custom-label {
	position: absolute;
	top: 50%;
	left: 27px;
	transform: translateY(-50%);
	font-size: 11px;
	font-weight: 600;
	color: #ffffff;
	pointer-events: none;
}

/* Mouse-over effects */
.custom-range > input[type='range']:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The range handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.custom-range > input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 50px; /* Set a specific range handle width */
  height: 50px; /* range handle height */
  background: #451247;
	border: none;
	padding: 0;
	border-radius: 50%;
  cursor: pointer; /* Cursor on hover */
}

.custom-range > input[type='range']::-moz-range-thumb {
  width: 50px; /* Set a specific range handle width */
  height: 50px; /* range handle height */
  background: #451247;
	border-radius: 50%;
	border: none;
	padding: 0;
  cursor: pointer; /* Cursor on hover */
}

form .column > *:not(:last-child) {
	margin-bottom: 16px;
	
}
.margin-top {
	margin-top: 2%;
}
.margin-bottom {
	margin-bottom: 1.7%;
}
.vCenter {
	align-items: center;
}
.center {
	text-align: center;
}
.row.center {
	justify-content: center;
}
.progress-bar { 
  height: 7px;
  background: rgba(69,18,71,0.5);
}
.progress-bar > span {
  display: flex;
  height: 100%;
  background-color: #451247;
	justify-content: flex-end;
}
.progress-bar > span > span {
	font-size: 15px;
	position: relative;
	top: 11px;
	left: 0;
}
#foot-note-wrapper {
	margin-top: 62px;
}
#foot-note {
	text-align: left;
	margin-left: 16px;
	font-size: 14px;
	font-weight: 600;
}

.trustpilot-logo {
	background: url('../images/trustpilot.png') no-repeat center;
	width: 434px;
	height: 33px;
	background-size: contain;
	margin-top: 16px;
	cursor: pointer;
}

#btnBack {
	cursor: pointer;
	position: absolute;
	top: 40%; /* 50% minus the body padding */
	left: 5%;
	transform: translateY(-50%);
	width: 118px;
	height: 78px;
	background: url('../images/chevron-left.png') no-repeat center;
	background-size: contain;
}

@media only screen and (max-width: 1024px) {
	body {
		padding: 6% 0;
	}
	input:not([type='radio']), button {
		width: 90%;
	}
	h1 {
		font-size: 34px;
	}
	.row {
		padding: 0 4%;
		box-sizing: border-box;
	}
	.custom-range-wrapper {
		width: 90%;
	}
	.select-items div,.select-selected {
		width: 90%;
	}
	.form-column > .custom-select {
		left: 0.5%;
	}
	.margin-top {
		margin-top: 4%;
	}
	.margin-bottom {
		margin-bottom: 3.4%;
	}
	#btnBack {
		top: 40%; /* 50% minus the body padding */
		left: 4%;
		width: 78px;
		height: 38px;
		transform: translateY(-50%);
	}
}

@media only screen and (max-width: 599px) {
	#btnBack {
		left: -4%;
	}
}

@media only screen and (max-width: 390px) {
	#btnBack {
		left: -7%;
	}
}