<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*@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;
}

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
 *    *   *   *   *   */

.header {
	width: 100%;
	height: 60px;
	margin: 0 auto;
	background: #333333;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
	color: var(--text-inverse);
	cursor: default;
}

/* BAR LEFT (HOME) */

#header .bar_left {
	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;
}

#header .bar_left:hover {
	border-bottom: 3px solid #f0d500;
}

#header .bar_left img.siteLogo {
	height: 30px;
	margin-right: 0.5em;
}


#header .bar_left a {
	font-family: 'Raleway', sans-serif;
	display:block;
	font-size: 1.5em;
	font-weight: 500;
	color: white;
	text-decoration: none;
}

#header .bar_left:hover a {
	color: #f0d500;
}

/* END BAR LEFT (HOME) */

/* BAR CENTER (MAIN NAVIGATION) */

#header .bar_center {
	position: relative;
	width: 100%;
	height: 100%;
}

#header .navigation_menu div {
	width: 14.25%;
	height: 100%;
	position: relative;
}

#header a.header_link {
	color: white;
	text-decoration: none;
	font-size: 0.875em;
	width: 100%;
	height: 100%;
	border-bottom: 3px solid transparent;

	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;
}

#header a.header_link:hover  {
	color: #f0d500;
	border-bottom: 3px solid #f0d500;
}

#header a.header_link.pageActive  {
	color: #f0d500 !important;
	border-bottom: 3px solid #f0d500 !important;
	font-weight: 500 !important;
}

#header a.header_link img.icon.language,
#header img.icon.user {
	max-height: 1.25em;
	max-width: 1.25em;
	margin-right: 0.25em;
}

#header img.icon.user {
	margin-right: 0.5em;
}

#header #header_selected_language img.icon.language {
	margin-right: 0.75em;
	height: 1.25em;
	max-height: unset;
	max-width: unset;
}

/* END HEADER CENTER (NAVIGATION) */


#header .bar_right {
	padding: 0 0.5em;
	height: 100%;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

#header.member .bar_right {
	width: 18em;
}

/* HEADER LANGUAGE SELECTION */
#header .language_selection_container {
	cursor: pointer;
	color: #ccc;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#header img.globe {
	width: 1.4em;
	height: 1.4em;
	margin-right: 0.4em;
}

i.globe {
	font-size: 1.5em;
	margin-right: 0.25em;
}

i.user_icon {
	font-size: 1.25em;
	margin-right: 0.5em;
}

/* END HEADER LANGUAGE SELECTION */

/* HEADER GUEST */

/* HEADER BUTTONS */

.header_button {
	height: 45px;
	cursor: pointer;
	position: relative;
	margin: 0.25em;
	padding: 0 0.75em;
	min-width: 6em;
	border-radius: 5px;
	color: var(--text-default);
	font-weight: 500;
	font-size: 0.875em;
}

body.night_mode .header_button {
	color: var(--text-inverse);
}

.header_button.login {

	/* 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);
}

.header_button.login: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);
}

.header_button.signup {

	outline: none;

	/* fallback */
	background-color: #f0d500;

	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #ffe518, #f0d500);

	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #ffe518, #f0d500);

	/* IE 10 */
	background: -ms-linear-gradient(top, #ffe518, #f0d500);

	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #ffe518, #f0d500);
}

.header_button.signup:hover {

	/* fallback */
	background-color: #c9b200;

	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #f0d500, #c9b200);

	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #f0d500, #c9b200);

	/* IE 10 */
	background: -ms-linear-gradient(top, #f0d500, #c9b200);

	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #f0d500, #c9b200);
}

.logout {
	background: #ccc;
}

.logout:hover {
	background: #bbb;
}

/* END HEADER GUEST */


/*    *   *   *   *   *
 * HEADER MEMBER
 *    *   *   *   *   */

#member_bar_right_desktop {
	width: 100%;
	height: 100%;
	border-bottom:3px solid transparent;
}

/* HEADER DROPDOWN MENUS */
.dropdown_header {
	cursor: default;
}

.navigation_dropdown_container {
	position: relative;
	width: 100%;
}

/*.navigation_dropdown_menu {
	display: none;
	position: absolute;
	z-index: 50;
	top: 0;
	left:0;
	width: 100% !important;
}*/

.navigation_dropdown_menu {
	display: none;
	position: relative;
	z-index: 50;
	min-width: 16em;
	background-color: var(--text-lighter);
	overflow-y: auto;
	height: unset !important;
	max-height: calc(100vh - 7em);
}

.navigation_dropdown_menu.roadsigns {
	min-width: 25em;
}

#member_dropdown {
	position: absolute;
	top: 60px !important;
}

.navigation_dropdown_menu a {
	display: block;
	position: relative;
	min-width: 16em;
	padding: 0.75em 1.5em;
	color: #eaeaea !important;
	background: #333333;
	text-decoration: none;
	cursor: pointer;
	font-size: 0.875em;
	text-align: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.navigation_dropdown_menu a.hidden {
	display: none;
}

.navigation_dropdown_menu.roadsigns a {
	min-width: 25em;
}

.navigation_dropdown_menu.games a {
	height: 3.5em;
}

.navigation_dropdown_menu a.underlined {
	padding-top: 1.0em;
	padding-bottom: 1.0em;
	border-bottom: 1px solid #eaeaea;
}

.navigation_dropdown_menu a.underlined:after {
	position: absolute;
	bottom: 0;
	left: 1em;
	right: 1em;
	height: 1px;
	background-color: var(--background-color);
}

/*.navigation_dropdown_menu a:first-child:not(.underlined) {
	padding-top: 1.2em;
}*/

.navigation_dropdown_menu:not(.games) a:last-child {
	padding-bottom: 1.2em;
}

.navigation_dropdown_menu a:not(.disabled):hover {
	color:#000 !important;
	background-color: #eaeaea;
}

.navigation_dropdown_menu a .icon {
	margin-right: 1em;
}

.navigation_dropdown_menu a .flag_icon {
	margin-right: 1em;
	height: 1.5em;
}

.navigation_dropdown_menu a img.icon {
	max-height: 1.375em;
	width: 1.5em;
	margin-right: 1.25em;
}

.navigation_dropdown_menu a img.icon.wider {
	max-width: 1.75em;
}

.navigation_dropdown_menu a img.icon.game_car {
	width: auto;
	max-height: unset;
	height: 1.125em;
}

.navigation_dropdown_menu a img.icon.game_roadsign {
	margin-left: 0.5em;
	margin-right: 1.875em;
	width: 1.75em;
	max-height: unset;
}

.navigation_dropdown_menu a:not(.disabled):hover img.icon:not(.colored) {
	-webkit-filter: invert(100%);
	filter: invert(100%);
}

.navigation_dropdown_menu a.disabled {
	color: #aaa !important;
	opacity: 1 !important;
}

.navigation_dropdown_menu a.disabled:hover {
	border: none;
	background-color: dimgrey;
	cursor: default;
}

.navigation_dropdown_menu a.disabled.underlined:hover {
	border-bottom: 1px solid #eaeaea;
}

.navigation_dropdown_menu a.disabled .icon {
	opacity: 0.5;
}

/* END QUIZ DROPDOWN MENU */


/* 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-right: 2em;
	margin-top: 0.375em;
	-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 */


/* User's display name in dropdown menu */
#display_name{
  display: inline;
  color:#ccc;
  font-size: 1.0em;
  margin-right: 20px;
}

#user_default_image {
  height: 1.125em;
  border-radius: 50%;
  margin-right: 0.75em;
}

.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;
}

/* HEADER GENERAL */

/* * * * * * *  *
* END OF HEADER *
* * * * * * * * */

/*    *   *   *   *   *
 * 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 .footer_column {
	width: 20%;
	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 {
	width: 100%;
	background: var(--background-color);
	margin: 0;
	color: var(--text-inverse);
}

#footer_bottom_content {
	width: 100%;
	margin: 0 auto;
	padding: 3em 0 6em 0;
}

#footer_bottom_badges,
#footer_bottom_copyright {
	width: 100%;
}

#footer_bottom_badges {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 2em;
}

#footer_bottom_badges div.badge_container {
}


#footer_bottom_badges div.center_badge {
	margin: 0 9em;
}

#footer_bottom_badges img.klarna_logo {
	height: 3em;
}

#footer_bottom_copyright {
	font-size: 0.75em;
	color: #333;
}

body.night_mode #footer_bottom_copyright {
	color: white;
}

/*    *   *   *   *   *
	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) {

	/* HEADER */

	.header_button {
		font-size: 0.8em;
	}

	/* END HEADER */

	.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%;
	}
}


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	/* HEADER */

	#header .bar_left a {
		font-size: 1.5em;
	}

	.header_button {
		height: 50px;
	}

	.medium_screen_break {
		display: block;
	}

	.navigation_dropdown_menu a {
		font-size: 0.875em;
	}

	.navigation_dropdown_menu,
	.navigation_dropdown_menu a,
	.navigation_dropdown_menu.roadsigns,
	.navigation_dropdown_menu.roadsigns a {
		min-width: 16em;
	}

	/* 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%;
	}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

	html {
		font-size: 0.95em;
	}

	/* THIS WIDTH AND LESS IS MOBILE */
	#mobile_indicator {
		display: inline-block;
	}

	/* HEADER */

	#header .bar_right, #header.member .bar_right {
		width:100%;
		padding:unset;
		cursor:pointer;
	}

	.header_button {
		display:none;
	}

	.navigation_dropdown_menu a {
		font-size: 0.75em;
	}

	.header_button_break {
		display: block;
	}

	/* END HEADER */

	.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_badges div.center_badge {
		margin: 0 6em;
	}

	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);
	}

	.quiz_navigation_arrow {
		max-height: 60px;
	}

	div.recoContainer {
		width: 95%;
		margin-bottom: 1em;
	}

}

/* Small tablets, phablets */ 
@media only screen and (max-width : 620px) {

	#footer_bottom_badges div.center_badge {
		margin: 0 4em;
	}

	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;
	}

	/* HEADER */

	#header {
		height: 60px;
	}

	/* END HEADER */

	#footer_top_content {
		width: calc(100% - 2em);
	}

	#footer .footer_column {
		width: 49%;
		text-align: center;
	}

	#footer_bottom_content {
		padding: 2em 0 6em 0;
	}

	#footer_bottom_badges {
		justify-content: space-around;
	}

	#footer_bottom_badges div.center_badge {
		margin: 0;
	}

	#footer_bottom_badges div.badge_container.klarna {
		width: 100%;
		margin-bottom: 1em;
	}

	.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

*********************/</pre></body></html>