/*@import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro';*/

/* VARIABLES */
:root {
	--background-color: #fff;
	--background-color-rgb: 255,255,255;
	--background-color-inverse-rgb: 0,0,0;
	--text-default: #000;
	--text-lighter: #333;
	--text-inverse: #fff;
	--hover-grey: #eee;
	--hover-grey-darker: #ddd;
	--background-whitesmoke: #f5f5f5;
	--color-link-hover: #007df6;

	--header-height: 4em;
	--header-highlight_color: #f0d500;
	--header-dropdown-menu-item-height: 3.0em;
	--header-dropdown-menu-item-icon-height: 2.25em;
}

body.night_mode {
	--background-color: #121212;  /* A soft black that is less harsh than pure black */
	--background-color-rgb: 18,18,18;
	--background-color-inverse-rgb: 255,255,255;
	--text-default: #E0E0E0;  /* Soft greyish white, providing good contrast without being too bright */
	--text-lighter: #BDBDBD;  /* Lighter grey for elements that need less emphasis */
	--text-inverse: #121212;  /* Dark color for use on lighter backgrounds, matching the background color */
	--hover-grey: #333;
	--hover-grey-darker: #333;
	--background-whitesmoke: #222;
}

html {
	padding: 0;
	height: 100%;
	margin: 0;
}

body {
	height: 100%;
	min-width: 300px;
	width: 100%;
	font-family: 'Roboto', sans-serif;
	color: var(--text-default);
	font-size: 100%;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--background-color);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	text-align: center;
	margin: 0;
	position: relative;
	padding: 0;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.5em;
}

h3 {
	font-size: 1.25em;
}

h4 {
	font-size: 1em;
}

h5 {
	font-size: 0.875em;
}

h6 {
	font-size: 0.75em;
}

p {
	font-size: 1em;
}

.extremely_small_text {
	font-size: 0.5em;
}

.very_small_text{
	font-size: 0.75em;
}

.small_text{
	font-size: 0.875em;
}

.normal_text {
	font-size: 1.0em;
}

.large_text {
	font-size: 1.25em;
}

.very_large_text {
	font-size: 2.0em;
}

li {
  font-size: 1.20em;
}

.hide, .hidden {
  display: none !important;
}

.align_left {
	text-align: left;
}

.align_right {
	text-align: right;
}

.align_center {
	text-align: center;
}

.medium_screen_break, .header_button_break {
	display: none;
}

.small_screen_break {
	display: none;
}

.cursor_pointer {
	cursor: pointer !important;
}

.desktop, .mobile {
	opacity: 0;
}

/* END MAIN COMPONENTS */

/* standard (blue) buttons */
.standard_button {

	width: 50%;
	padding: 15px 5px;
	border-radius: 10px;
	color: var(--text-inverse);
	font-weight: 500;
	cursor: pointer;
	outline: none;
	border: none;

	/* fallback */
	background-color: #1da1f2;

	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1b99e6), to(#1da1f2));

	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #1da1f2, #1b99e6);

	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #1da1f2, #1b99e6);

	/* IE 10 */
	background: -ms-linear-gradient(top, #1da1f2, #1b99e6);

	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #1da1f2, #1b99e6);
}

body.night_mode .standard_button {
	color: var(--text-default);
}

.standard_button:not(.disabled):hover {

	
	/* fallback */
	background-color: #1069bc;

	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1069bc), to(#1da1f2));

	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #1da1f2, #1069bc);

	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #1da1f2, #1069bc);

	/* IE 10 */
	background: -ms-linear-gradient(top, #1da1f2, #1069bc);

	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #1da1f2, #1069bc);
}

/* NAVIGATION BUTTONS */
button.blue_navigation_button {
	background-color: #45a3ff;
	border-radius: 50%;
	height: 5em;
	width: 5em;
	padding: 0 !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: none;
	-webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.2);
	box-shadow: 0 2px 3px rgba(0,0,0,0.2);
	cursor: pointer;
}

button.blue_navigation_button:hover {
	border-color: dodgerblue;
	background-color: dodgerblue;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

button.blue_navigation_button img {
	width: 2.5em;
}

/*    *   *   *   *   *
 * HEADER
 *    *   *   *   *   */

.site_header {
	display: flex;
	align-items: center;
	width: 100%;
	height: var(--header-height);
	margin: 0 auto;
	background: #333;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
	color: white;
	cursor: default;
}

/* BAR LEFT (HOME) */

.site_header .home_container {
	position: relative;
	height: 100%;
	padding: 0 1.25em;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-bottom: 3px solid transparent;
	text-decoration: none;
}

.site_header .home_container:hover {
	border-bottom: 3px solid #f0d500;
}

.site_header .home_container img.siteLogo {
	height: 30px;
	margin-right: 0.5em;
}

.site_header .home_container span {
	font-family: 'Raleway', sans-serif;
	display:block;
	font-size: 1.5em;
	font-weight: 500;
	color: white;
	text-decoration: none;
	text-align: left;
}

.site_header .home_container:hover span {
	color: #f0d500;
}

/* END BAR LEFT (HOME) */

/* NEW HEADER */
.site_header .main_menu  {
	display: flex;
	align-items: flex-start;
	flex: 1;
}

.site_header .main_menu a {
	text-decoration: none;
	cursor: pointer;
}

.site_header .main_menu .main_menu_item  {
	height: var(--header-height);
	display: flex;
	align-items: center;
}

.site_header .main_menu .main_menu_item:last-child  {
	margin-right: 1em;
	margin-left: auto;
}

.site_header .main_menu .main_menu_item .main_menu_item_trigger {
	background-color: rgba(0,0,0,0);
	border: none;
	appearance: none;
	appearance: none;
	padding: 0 1em;
	height: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	font-size: 1em;
	color: currentColor;
	border-radius: .25em;
	font-weight: 400;
}

.site_header.member .main_menu .main_menu_item .main_menu_item_trigger {
	padding: 0 1.25em;
}

.site_header .main_menu .main_menu_item .main_menu_item_trigger svg {
	transition: rotate .2s;
}

.site_header .main_menu .main_menu_item:hover .main_menu_item_trigger svg,
.site_header .main_menu .main_menu_item :focus .main_menu_item_trigger svg,
.site_header .main_menu .main_menu_item :focus-within .main_menu_item_trigger svg,
.site_header .main_menu .main_menu_item:active .main_menu_item_trigger svg {
	rotate: 180deg;
}

.site_header .main_menu .main_menu_item:hover .main_menu_item_trigger,
.site_header .main_menu .main_menu_item :focus .main_menu_item_trigger,
.site_header .main_menu .main_menu_item :focus-within .main_menu_item_trigger,
.site_header .main_menu .main_menu_item:active .main_menu_item_trigger {
	cursor: pointer;
	color: black;
	background-color: var(--header-highlight_color);
	text-decoration: none;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu {
	position: fixed;
	top: calc(var(--header-height) - 2px);
	left: 0;
	background-color: rgba(51,51,51,1);
	width: 100%;
	max-height: calc(100vh - var(--header-height) - 1em);
	overflow-y: auto;
	padding: 2em;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	pointer-events: none;

	transition:
			opacity 180ms ease,
			transform 180ms ease,
			visibility 0s linear 180ms;
}

.site_header .main_menu .main_menu_item:hover .dropdown_items_menu,
.site_header .main_menu .main_menu_item:focus-within .dropdown_items_menu,
.site_header .main_menu .main_menu_item:active .dropdown_items_menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
	box-shadow: 0 3px 6px rgba(51,51,51,0.4);
	transition:
			opacity 180ms ease,
			transform 180ms ease,
			visibility 0s;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu:before {
	content: '';
	position: absolute;
	top: 0.5em;
	left: 2em;
	right: 2em;
	background: #aaa;
	height: 1px;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu h2.dropdown_menu_content_title {
	font-family: 'Raleway', sans-serif;
	text-align: left;
	font-size: 1.25em;
	margin: 0 0 1em 0;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content.top_row {
	margin-bottom: 2em;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content .dropdown_menu_item {
	height: var(--header-dropdown-menu-item-height);
	width: 18em;
	border-radius: 0.75em;
	overflow: hidden;
	background-color: #474747;
	opacity: 1 !important;
	border: none !important;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content .dropdown_menu_item:not(.disabled):hover {
	outline: 2px solid var(--header-highlight_color);
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content .dropdown_menu_item a.menu_item_link {
	height: var(--header-dropdown-menu-item-height);
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: white;
	position: relative;
	text-decoration: none;
	border: none !important;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content .dropdown_menu_item a.menu_item_link.disabled {
	color: #aaa;
	filter: grayscale(1);
	opacity: 1;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content .dropdown_menu_item:hover a.menu_item_link:not(.disabled) {
	background-color: #292929;
	color: var(--header-highlight_color);
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content .dropdown_menu_item a.menu_item_link .item_image_wrapper {
	width: var(--header-dropdown-menu-item-height);
	height: var(--header-dropdown-menu-item-height);
	margin-right: 0.75em;
	padding-left: 0.5em;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content .dropdown_menu_item a.menu_item_link .item_image_wrapper img.item_image {
	display: block;
	height: var(--header-dropdown-menu-item-icon-height);
	border-radius: 50%;
	transform: scale(1);
	transition: transform 0.2s ease;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content .dropdown_menu_item a.menu_item_link:not(.disabled):hover .item_image_wrapper img.item_image {
	transform: scale(1.05);
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content .dropdown_menu_item a.menu_item_link .item_label {
	font-size: .95rem;
	flex: 1;
	height: var(--header-dropdown-menu-item-height);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content .dropdown_menu_item a.menu_item_link .chevron_wrapper {
	padding: 0 1em 0 0.5em;
	height: var(--header-dropdown-menu-item-height);
	display: flex;
	justify-content: center;
	align-items: center;
}

.site_header .main_menu .main_menu_item .dropdown_items_menu .dropdown_menu_content .dropdown_menu_item a.menu_item_link .chevron_wrapper svg.chevron_right {
	rotate: 270deg;
}

.site_header .main_menu .action_buttons_container {
	position: relative;
	display: flex;
	height: var(--header-height);
	align-items: center;
	margin-left: auto;
	padding: 0 0.75em;
	gap: 0.5em;
}

.site_header .main_menu .action_buttons_container:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5em;
	bottom: 0.5em;
	background-color: #555;
	width: 1px;
}

.site_header .main_menu .action_buttons_container button.action_button {
	font-family: 'Nunito', sans-serif;
	border-radius: 0.5em;
	background: none;
	color: var(--header-highlight_color);
	border: 2px solid var(--header-highlight_color);
	cursor: pointer;
	padding: 0.5em 1em;
	text-transform: uppercase;
	font-weight: bold;
	white-space: nowrap;
}

.site_header .main_menu .action_buttons_container button.action_button.solid {
	color: #333;
	background: linear-gradient(to bottom, #ffe518, #f0d500);
}

.site_header .main_menu .action_buttons_container button.action_button:hover {
	background: linear-gradient(to bottom, #f0d500, #e7ce09) !important;
	color: #333 !important;
	box-shadow: 0 0 4px rgba(255,255,255,0.5);
}

.site_header .main_menu .action_buttons_container img.icon.language {
	width: 1.5em;
}


/* MOBILE */

#mobile_indicator, #phone_indicator {
	height: 0;
	width: 0;
	position: absolute;
	top: 0;
	left: 0;
    display: none;
}

#navigation_menu_mobile {
	display: none;
}

.mobile_header_menu {
	width: 2em;
	height: 2em;
	position: relative;
	margin: 0.375em 2em 0 auto;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

.mobile_header_menu span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #fff;
	border-radius: 0.5em;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.mobile_header_menu span:nth-child(1) {
	top: 0;
}

.mobile_header_menu span:nth-child(2),
.mobile_header_menu span:nth-child(3) {
	top: 0.75em;
}

.mobile_header_menu span:nth-child(4) {
	top: 1.5em;
}

.mobile_header_menu.open span:nth-child(1) {
	top: 0.75em;
	width: 0;
	left: 50%;
}

.mobile_header_menu.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.mobile_header_menu.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.mobile_header_menu.open span:nth-child(4) {
	top: 0.75em;
	width: 0;
	left: 50%;
}

/*    *   *   *   *   *
    MOBILE MENU
 *    *   *   *   *   */

#mobile_menu_container {
	position: fixed;
	top: 3.75em;
	left: 0;
    width: 100%;
	height: 0;
	background-color: rgba(51, 51, 51, 0.99);
	z-index: 10000;
	overflow: hidden;
	transition: height 0.25s ease-out;
}

#mobile_menu_container.open {
	height: calc(100vh + 3em);
}

#mobile_menu {
	position: relative;
	width: 100%;
	margin: 0 auto;
	height: calc(100% - 6em);
	overflow-y: scroll;
	color: var(--text-inverse);
	padding: 1em 0 5em 0;
}

#mobile_menu .main_item {
	width: 100%;
	padding: 0.6125em 1.5em;
	color: var(--text-inverse);
	cursor: default;
	letter-spacing: 2px;
	font-size: 1.25rem;
	margin-left: 0.75rem;
}

body.night_mode #mobile_menu .main_item {
	color: var(--text-default);
}

#mobile_menu .main_item:hover {
	background: black;
}

#mobile_menu .items_submenu {
	display: none;
	margin-left: 1.5em;
}

.items_submenu .sub_item {
	font-size: 1.125rem;
	color: var(--text-inverse);
	margin: 0.75em 0;
	letter-spacing: 1px;
	padding: 0.25em 0;
}

body.night_mode .items_submenu .sub_item {
	color: var(--text-default);
}

#mobile_menu .items_submenu .sub_item.disabled {
	color: #aaa;
}

.toggle_submenu {
	float: right;
	height: 1em;
	width: 1em;
	-webkit-transition: -webkit-transform 200ms ease;
	transition: -webkit-transform 200ms ease;
	-o-transition: transform 200ms ease;
	transition: transform 200ms ease;
	transition: transform 200ms ease, -webkit-transform 200ms ease;
}

.toggle_submenu.open {
	-webkit-transform: rotate( -180deg );
	-ms-transform: rotate( -180deg );
	transform: rotate( -180deg );
}

.toggle_submenu_dummy {
	float: left;
	height: 1em;
	width: 1em;
	opacity: 0;
}

  /*    *   *   *   *   *
    END MOBILE MENU GUEST
 *    *   *   *   *   */



/* END MOBILE */

.caret {
  font-size: 1.5em;
  vertical-align: middle;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  	display:block;
}

/*    *   *   *   *   *
 * FOOTER
 *    *   *   *   *   */

#footer{
	width: 100%;
	position: relative;
	z-index: 100;
}

#footer_top {
	width: 100%;
	background: #333333;
	margin: 0;
	color: var(--text-inverse);
}

body.night_mode #footer_top {
	color: var(--text-default);
}

#footer_top_content {
	width: 66.66%;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#footer_bottom_content {
	width: 75%;
	margin: 0 auto;
	padding: 50px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#footer .footer_column {
	width: 25%;
	margin: 2em 0;
}

#footer h3 {
	margin: 0;
	margin-bottom: 10px;
}

#footer .footer_link {
	margin-top: 0.375em;
}

#footer .footer_special_link {
	display: none;
}

#footer .footer_link a {
	font-size: 0.95em;
	color:white;
	font-weight: normal;
	text-decoration: none;
}

#footer .footer_special_link a {
	display: block;
	font-size: 0.8125em;
	color:white;
	font-weight: normal;
	text-decoration: none;
	margin-left: 1em;
	margin-top: 0.5em;
}

#footer .footer_link:hover a, #footer .footer_special_link:hover a {
	color: #f0d500;
}

#footer_bottom_left,
#footer_bottom_center,
#footer_bottom_right {
	width: 33%;
}

#footer_bottom_left img {

}

#footer_bottom_right_content {
	font-size: 0.75em;
	text-align: right;
}

#footer_bottom_left img.klarna_logo {
	height: 3em;
}

/*    *   *   *   *   *
	END OF FOOTER
 *    *   *   *   *   */



/* NAVIGATION ARROWS */

.quiz_navigation_arrow {
	max-width: 150px;
}

.quiz_navigation_arrow img {
	width: 100%;
}

.quiz_navigation_arrow:hover {
	background: whitesmoke;
}

.quiz_navigation_arrow:active {
}

#arrow_back, #roadsign_arrow_back {
	position: fixed;
	top: 50%;
	left:10%;
	z-index: 1;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

#arrow_forward, #roadsign_arrow_forward {
	position: fixed;
	top: 50%;
	right:10%;
	z-index: 1;
	/* bring your own prefixes */
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

/* END NAVIGATION ARROWS */

/* RECO (Site reviews) */

div.recoContainer {
	width: 50%;
	margin: 2em auto;
}

div.recoContainer .recoHeader {
	margin-bottom: 1.0em;
}

/* END RECO (Site reviews) */

/* RECO TYPE 2 (content promo insert container) */

div.reco_promo_container {
	position: relative;
	padding: 2em 0;
	margin: 2em auto;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	text-align: center;
}

div.reco_promo_container h2 {
	font-size: 1.75em;
	margin-top: 0;
}

div.reco_promo_container p.reco_description {
	color: grey;
}

div.reco_promo_container button.btn_reco_signup {
	margin-top: 2em;
	border: none;
	outline: none;
	cursor: pointer;
	font-weight: bold;
	padding: 0.75em 2em;
	border-radius: 0.5em;
	font-size: 1.0em;
	text-decoration: none;
}

/* END RECO TYPE 2 (content promo insert container) */

/* READSPEAKER */
div.readspeaker_button {
	display: none;
}

/* END READSPEAKER */

/* SIGNUP PROMO DIALOG */
div.signup_promo_dialog {
	position: fixed;
	bottom: 2em;
	right: 2em;
	height: 6em;
	width: 6em;
	border-radius: 50%;
	z-index: 100;
	cursor: pointer;
	box-shadow: 0 3px 6px rgba(0,0,0,0.33);

	background-color: #f0d500;
	background: -webkit-linear-gradient(top, #ffe518, #f0d500);
	background: -moz-linear-gradient(top, #ffe518, #f0d500);
	background: -o-linear-gradient(top, #ffe518, #f0d500);
}

body.night_mode div.signup_promo_dialog {
	color: black;
}

div.signup_promo_dialog.increased_margin_bottom {
	bottom: 4.5em;
}

div.signup_promo_dialog:hover {
	background-color: #c9b200;
	background: -webkit-linear-gradient(top, #f0d500, #c9b200);
	background: -moz-linear-gradient(top, #f0d500, #c9b200);
	background: -o-linear-gradient(top, #f0d500, #c9b200);
}

div.signup_promo_dialog div.dialog_text_container {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}

div.signup_promo_dialog div.dialog_text_container div.dialog_text {
	font-size: 1em;
	font-weight: normal;
}

div.signup_promo_dialog div.dialog_text_container div.dialog_text.large {
	font-size: 1.25em;
	font-weight: bold;
}


/* END SIGNUP PROMO DIALOG */

/* REFER A FRIEND CONTENT */
div.refer_friend_content {
	position: relative;
	width: 100%;
	max-width: 60em;
	margin: 2em auto 3em auto;
}

div.refer_friend_content.theory,
div.refer_friend_content.quiz {
	border-top: 2px solid #eaeaea;
	padding-top: 2em;
	margin: 3em 0;
}

div.refer_friend_content h2 {
	margin-top: 0;
	margin-bottom: 1em;
}

div.refer_friend_content p {
	margin: 1.5em 1em 0 1em;
}

div.refer_friend_content.theory p,
div.refer_friend_content.quiz p{
	margin: 1.5em 0 0 0;
}

div.refer_friend_content div.refer_friend_banner_container {
	width: 100%;
	position: relative;
	padding: 0 1.5em;
	margin-top: 2em;
}

div.refer_friend_content.theory div.refer_friend_banner_container,
div.refer_friend_content.quiz div.refer_friend_banner_container{
	padding: 0;
}

div.refer_friend_content div.refer_friend_banner_container img.refer_friend_banner {
	width: 100%;
	border-radius: 0.75em;
}

body.night_mode div.refer_friend_content div.refer_friend_banner_container img.refer_friend_banner {
	filter: brightness(0.85);
}

div.refer_friend_content div.refer_friend_banner_container button.btn_refer_friend {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 0.75em 1.5em;
	border-radius: 0.25em;
	outline: none;
	border: none;
	font-size: 1.5em;
	font-weight: bold;
	cursor: pointer;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.25);
	box-shadow: 0 1px 2px rgba(0,0,0,0.25);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;

	background-color: #f0d500;
	background: -webkit-linear-gradient(top, #ffe518, #f0d500);
	background: -moz-linear-gradient(top, #ffe518, #f0d500);
	background: -ms-linear-gradient(top, #ffe518, #f0d500);
	background: -o-linear-gradient(top, #ffe518, #f0d500);
}

div.refer_friend_content div.refer_friend_banner_container button.btn_refer_friend:hover {
	-webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.5);
	box-shadow: 0 3px 6px rgba(0,0,0,0.5);
	transform: translate(-50%, -50%) scale(1.025);
}

/* END REFER A FRIEND CONTENT */


/* LOADING ANIMATION */

#loader_container {
	display: block;
	width: 100%;
	height: 100%;
	overflow: auto;
	background:rgba(0, 0, 0, 0.65);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20000;
	text-align: center;
}

#loader_container.front {
	z-index: 200000;
}

#loader_container_mini {
	display: block;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	text-align: center;
}

.sk-fading-circle {
	margin: 0 auto;
	width: 50px;
	height: 50px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 200;
}

.sk-fading-circle_mini {
	width: 30px;
	height:30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.sk-circle, .sk-circle-black {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.sk-circle:before {
	content: '';
	display: block;
	margin: 0 auto;
	width: 15%;
	height: 15%;
	background-color: var(--background-color);
	border-radius: 100%;
	-webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
		  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-circle-black:before {
	content: '';
	display: block;
	margin: 0 auto;
	width: 15%;
	height: 15%;
	background-color: var(--text-default);
	border-radius: 100%;
	-webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
		  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-circle2 {
  -webkit-transform: rotate(30deg);
	  -ms-transform: rotate(30deg);
		  transform: rotate(30deg);
}
.sk-circle3 {
  -webkit-transform: rotate(60deg);
	  -ms-transform: rotate(60deg);
		  transform: rotate(60deg);
}
.sk-circle4 {
  -webkit-transform: rotate(90deg);
	  -ms-transform: rotate(90deg);
		  transform: rotate(90deg);
}
.sk-circle5 {
  -webkit-transform: rotate(120deg);
	  -ms-transform: rotate(120deg);
		  transform: rotate(120deg);
}
.sk-circle6 {
  -webkit-transform: rotate(150deg);
	  -ms-transform: rotate(150deg);
		  transform: rotate(150deg);
}
.sk-circle7 {
  -webkit-transform: rotate(180deg);
	  -ms-transform: rotate(180deg);
		  transform: rotate(180deg);
}
.sk-circle8 {
  -webkit-transform: rotate(210deg);
	  -ms-transform: rotate(210deg);
		  transform: rotate(210deg);
}
.sk-circle9 {
  -webkit-transform: rotate(240deg);
	  -ms-transform: rotate(240deg);
		  transform: rotate(240deg);
}
.sk-circle10 {
  -webkit-transform: rotate(270deg);
	  -ms-transform: rotate(270deg);
		  transform: rotate(270deg);
}
.sk-circle11 {
  -webkit-transform: rotate(300deg);
	  -ms-transform: rotate(300deg);
		  transform: rotate(300deg); 
}
.sk-circle12 {
  -webkit-transform: rotate(330deg);
	  -ms-transform: rotate(330deg);
		  transform: rotate(330deg); 
}
.sk-circle2:before {
  -webkit-animation-delay: -1.1s;
		  animation-delay: -1.1s; 
}
.sk-circle3:before {
  -webkit-animation-delay: -1s;
		  animation-delay: -1s; 
}
.sk-circle4:before {
  -webkit-animation-delay: -0.9s;
		  animation-delay: -0.9s; 
}
.sk-circle5:before {
  -webkit-animation-delay: -0.8s;
		  animation-delay: -0.8s; 
}
.sk-circle6:before {
  -webkit-animation-delay: -0.7s;
		  animation-delay: -0.7s; 
}
.sk-circle7:before {
  -webkit-animation-delay: -0.6s;
		  animation-delay: -0.6s; 
}
.sk-circle8:before {
  -webkit-animation-delay: -0.5s;
		  animation-delay: -0.5s; 
}
.sk-circle9:before {
  -webkit-animation-delay: -0.4s;
		  animation-delay: -0.4s;
}
.sk-circle10:before {
  -webkit-animation-delay: -0.3s;
		  animation-delay: -0.3s;
}
.sk-circle11:before {
  -webkit-animation-delay: -0.2s;
		  animation-delay: -0.2s;
}
.sk-circle12:before {
  -webkit-animation-delay: -0.1s;
		  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; } 
}

/* END LOADING ANIMATION */

/* VIDEO.JS CSS OVERRIDES */
.vjs-menu-button-popup .vjs-menu {
	left: -6em !important;
}

.vjs-menu li {
	outline: none;
	padding: 0.75em 0.5em !important;
}

@media only screen and (max-width : 480px) {
	.vjs-menu li.vjs-menu-item:hover, .vjs-menu li.vjs-menu-item:focus {
		background-color: transparent !important;
	}
}


/********************

	MEDIA QUERIES

*********************/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1600px) {

	div.recoContainer {
		width: 60%;
	}

	#footer_top_content {
		width: 80%;
	}

}

/* Large Devices, Wider Screens */
@media only screen and (max-width : 1500px) {

	.quiz_navigation_arrow {
		max-height: 130px;
	}

	#arrow_back, #roadsign_arrow_back {
		left:5%;
	}


	#arrow_forward, #roadsign_arrow_forward  {
		right:5%;
	}

}

@media only screen and (max-width : 1370px) {
	div.recoContainer {
		width: 70%;
	}
}

@media only screen and (max-width : 1250px) {
	.site_header:not(.member) .main_menu .main_menu_item.large_screen_only  {
		display: none;
	}

	.site_header .main_menu .main_menu_item .main_menu_item_trigger {
		padding: 0 0.75em;
	}

	.site_header.member .main_menu .main_menu_item .main_menu_item_trigger {
		padding: 0 1em;
	}
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.site_header.member .main_menu .main_menu_item.large_screen_only  {
		display: none;
	}

	.site_header .home_container span {
		font-size: 1.375em;
	}

	.site_header .main_menu .main_menu_item .main_menu_item_trigger {
		padding: 0.5em 0.75em;
	}

	.medium_screen_break {
		display: block;
	}

	/* END HEADER */

	.quiz_navigation_arrow {
		max-height: 120px;
	}

	#arrow_back, #roadsign_arrow_back {
		left:20px;
	}


	#arrow_forward, #roadsign_arrow_forward  {
		right:20px;
	}

	div.recoContainer {
		width: 80%;
	}

	#footer_top_content {
		width: 90%;
	}

	#footer_bottom_content {
		width: 80%;
	}
}

@media only screen and (max-width : 1040px) {
	.site_header:not(.member) .main_menu .main_menu_item.larger_screen_only  {
		display: none;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	html {
		font-size: 0.95em;
	}

	.site_header.member .main_menu .main_menu_item.larger_screen_only  {
		display: none;
	}

	/* THIS WIDTH AND LESS IS MOBILE */
	#mobile_indicator {
		display: inline-block;
	}

	.quiz_navigation_arrow {
		max-height: 100px;
	}

	#arrow_back, #roadsign_arrow_back {
		left: 0.25em;
	}

	#arrow_forward, #roadsign_arrow_forward  {
		right: 0.25em;
	}

	#footer_top_content {
		width: 95%;
	}

	#footer_bottom_content {
		width: 90%;
	}

	div.recoContainer {
		width: 90%;
	}

	button.blue_navigation_button {
		height: 3.5em;
		width: 3.5em;
	}

	button.blue_navigation_button img {
		width: 2em;
	}

	div.content_container.member div.refer_friend_content div.refer_friend_banner_container button.btn_refer_friend {
		font-size: 1em;
		padding: 0.75em 1.0em;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	
	.standard_button {
		width: 100%;
	}	
	
	#footer_top_content {
		width: calc(100% - 4em);
	}

	#footer_bottom_content {
		width: 90%;
		padding: 50px 0;
	}

	.quiz_navigation_arrow {
		max-height: 60px;
	}

	button.blue_navigation_button {
		height: 3.5em;
		width: 3.5em;
	}

	button.blue_navigation_button img {
		width: 2em;
	}

	div.recoContainer {
		width: 95%;
		margin-bottom: 1em;
	}
}

/* Small tablets, phablets */ 
@media only screen and (max-width : 620px) {

	div.signup_promo_dialog {
		bottom: 1em;
		right: 1em;
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {

	/*override cookie consent css*/
	div.cc-window.cc-floating.cc-type-info.cc-theme-block.cc-bottom.cc-left.cc-color-override-688238583 {
		margin-bottom: 4em;
	}

	#phone_indicator {
		display: inline-block;
	}

	.small_screen_break {
		display: block;
	}

	#footer_top_content {
		width: calc(100% - 2em);
	}

	#footer_bottom_content {
		width: 95%;
		padding: 50px 0;
	}

	#footer .footer_column {
		width: 49%;
		text-align: center;
	}

	#footer_bottom_content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
		padding: 25px 0;
	}

	#footer_bottom_left, #footer_bottom_center, #footer_bottom_right {
		width: 66%;
		display: block;
		text-align: center;
		margin-bottom: 1em;
	}

	#footer_bottom_right {
		display: block;
	}

	#footer_bottom_right_content {
		text-align: center;
	}

	#footer_bottom_left img {
	}

	.quiz_navigation_arrow {
		max-height: 50px;
	}

	button.blue_navigation_button {
		height: 2.75em;
		width: 2.75em;
	}

	button.blue_navigation_button img {
		width: 1.5em;
	}

	div.refer_friend_content div.refer_friend_banner_container button.btn_refer_friend {
		font-size: 1em;
	}

}

/* Small phone */ 
@media only screen and (max-width : 380px) {

}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 360px) {

	.main_item {
		font-size: 1.0rem;
		padding: 0.75em 1.0em;
	}
}

/********************

	END MEDIA QUERIES

*********************/