@charset "UTF-8";
/* CSS Document */

/* ------------------------------------------------------- */
/* --------------- Quick colours ------------------------- */
/* ------------------------------------------------------- */

.c3_custom_component {
	/* Base colours */
	--c3_yellow: #ffb600 !important;
	--c3_tangerine: #eb8c00 !important;
	--c3_orange: #d04a02 !important;
	--c3_rose: #d93954 !important;
	--c3_red: #e0301e !important;
	--c3_lightgrey: #dedede !important;
	--c3_grey: #7d7d7d !important;
	--c3_mediumgrey: #464646 !important;
	--c3_darkgrey: #2d2d2d !important;
	--c3_black: #000000 !important;
	--c3_white: #FFFFFF !important;
	/* Additional data colours */
	--c3_darkred1: #AA2417 !important;
	--c3_darkred2: #741910 !important;
	--c3_darkrose1: #A43E50 !important;
	--c3_darkrose2: #6E2A35 !important;
	--c3_darkorange1: #933401 !important;
	--c3_darkorange2: #571F01 !important;
	--c3_darktangerine1: #AE6800 !important;
	--c3_darktangerine2: #714300 !important;
    /* Further data colours BW */
    --c3_lightrose1: #F7C8C4 !important;
    --c3_lightyellow1: #FFDCA9 !important;
    --c3_lightyellow2: #FFC83D !important;
    --c3_darkyellow1: #EB8C00 !important;
    
}

* {
	font-family: "PwC Helvetica Neue", Helvetica, Arial, Sans-Serif;
    font-weight: 400;
}

/* --------------------- MASTER STRUCTURES --------------------- */

div#c3_chart_fig_1 {
	display: block;
	position: relative;
	width: 120%;
	margin-left: -10%;
}

div#c3_chart_fig_1 nav#c3_nav_mobile {
	display: none;
}

div#c3_chart_fig_1 section {
	display: block;
	position: relative;
	overflow: visible;
	padding: 20px;
	width: calc(100% - 50px - 50px);
	margin-top: 80px;
	margin-bottom: 100px;
	margin-left: 50px;
	margin-right: 50px;
	border-radius: 20px;
	background-color: var(--c3_black);
}

div#c3_chart_fig_1 section div.c3_div_quadrant_row {
	display: flex;
	position: relative;
	overflow: hidden;
}

div#c3_chart_fig_1 section div.c3_div_quadrant_row.c3_hidden {
	opacity: 0;
}

div#c3_chart_fig_1 section div.c3_div_quadrant_row:nth-child(1) { border-bottom: 4px var(--c3_white) solid; }
div#c3_chart_fig_1 section div.c3_div_quadrant_row:nth-child(2) { border-top: 4px var(--c3_white) solid; overflow: visible; }

div#c3_chart_fig_1 section article {
	display: block;
	position: relative;
	float: left;
	width: 50%;
	min-height: 300px;
	padding: 30px;
	background-color: var(--c3_rose);
	transition: width 0.4s ease, min-height 0.4s ease;
}

div#c3_chart_fig_1 section article.c3_hidden {
	opacity: 0;
}

/* --------------------- INNER STRUCTURES --------------------- */

div#c3_chart_fig_1 section article.c3_open,
div#c3_chart_fig_1 section article.c3_psuedo_open {
	width: 75%;
}

div#c3_chart_fig_1 section article.c3_closed {
	width: 25%;
}

div#c3_chart_fig_1 section article.c3_psuedo_open_height_only {
	min-height: 600px;
}

/* --------------------- INDIVIDUAL QUADRANTS (STRUCTURE) --------------------- */

div#c3_chart_fig_1 section article#c3_article_quadrant_0 {
	display: block;
	position: absolute;
	float: none;
	width: 200px;
	height: 200px;
	min-height: 0;
	padding: 0px;
	top: calc(50% - 100px);
	left: calc(50%  - 100px);
	background-color: rgba(204, 78, 2, 0.9);
	z-index: 10;
	transform: rotate(45deg);
	border-radius: 10px;
	transition: top 0.4s ease, left 0.4s ease, width 0.4s ease, height 0.4s ease;
}

div#c3_chart_fig_1 section article#c3_article_quadrant_0.c3_open {
	top: calc(50% - 250px);
	left: calc(50% - 250px);
	width: 500px;
	height: 500px;
}

div#c3_chart_fig_1 section article#c3_article_quadrant_0.c3_diamond_left { left: calc(25% - 100px); }
div#c3_chart_fig_1 section article#c3_article_quadrant_0.c3_diamond_right { left: calc(75% - 100px); }

div#c3_chart_fig_1 section article#c3_article_quadrant_0 a.c3_a_quadrant_opener { z-index: 20; }

div#c3_chart_fig_1 section article#c3_article_quadrant_1 { background-color: var(--c3_mediumgrey); }
div#c3_chart_fig_1 section article#c3_article_quadrant_2 { background-color: var(--c3_tangerine); }
div#c3_chart_fig_1 section article#c3_article_quadrant_3 { background-color: var(--c3_rose); }
div#c3_chart_fig_1 section article#c3_article_quadrant_4 { background-color: var(--c3_grey); }

div#c3_chart_fig_1 section article#c3_article_quadrant_2 h3 { text-align: right; color: var(--c3_black); }
div#c3_chart_fig_1 section article#c3_article_quadrant_4 h3 { text-align: right; }

div#c3_chart_fig_1 section article#c3_article_quadrant_2 p { width: 100%; padding-left: 25%; text-align: right; color: var(--c3_black); }
div#c3_chart_fig_1 section article#c3_article_quadrant_4 p { width: 100%; padding-left: 25%; text-align: right; }

div#c3_chart_fig_1 section article#c3_article_quadrant_2 a.c3_a_quadrant_read_more { margin-left: calc(100% - 180px); }
div#c3_chart_fig_1 section article#c3_article_quadrant_4 a.c3_a_quadrant_read_more { margin-left: calc(100% - 180px); }

div#c3_chart_fig_1 section article#c3_article_quadrant_1 a.c3_a_quadrant_close { right: 90px; left: auto; }
div#c3_chart_fig_1 section article#c3_article_quadrant_2 a.c3_a_quadrant_close { right: auto; left: 90px; }
div#c3_chart_fig_1 section article#c3_article_quadrant_4 a.c3_a_quadrant_close { right: auto; left: 30px; }

div#c3_chart_fig_1 section article div.c3_div_image_cover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/img_quad_1.jpg");
	background-size: cover;
	background-position: center center;
	opacity: 0.1;
}

div#c3_chart_fig_1 section article#c3_article_quadrant_2 div.c3_div_image_cover { background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/img_quad_3.jpg"); }
div#c3_chart_fig_1 section article#c3_article_quadrant_3 div.c3_div_image_cover { background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/img_quad_2.jpg"); }
div#c3_chart_fig_1 section article#c3_article_quadrant_4 div.c3_div_image_cover { background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/img_quad_4.jpg"); }

/* --------------------- GENERIC TEXT STYLES --------------------- */

div#c3_chart_fig_1 section article h3 {
	display: block;
	width: 100%;
	height: 50px;
	font-family: "PwC Helvetica Neue", Helvetica, Arial, Sans-Serif;
    font-weight: 200;
	font-size: 30px;
	line-height: 50px;
	color: var(--c3_white);
	padding-left: 60px;
	background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/icon_1.svg");
	background-repeat: no-repeat;
	background-size: 50px 50px;
	background-position: left center;
	transition: font-size 0.4s ease;
}

div#c3_chart_fig_1 section article p {
	display: none;
	overflow: hidden;
	font-family: "PwC Helvetica Neue", Helvetica, Arial, Sans-Serif;
    font-weight: 400;
	width: 75%;
	margin: 0px;
	color: var(--c3_white);
}

div#c3_chart_fig_1 section article p strong {
	display: block;
	position: relative;
	font-family: "PwC Helvetica Neue", Helvetica, Arial, Sans-Serif;
    font-weight: 200;
	line-height: 40px;
	font-size: 40px;
	margin-bottom: 10px;
	margin-top: 15px;
}

div#c3_chart_fig_1 section article a.c3_a_quadrant_read_more,
div#c3_chart_fig_1 section article a.c3_a_quadrant_back_to_menu {
	display: block;
	overflow: hidden;
	font-family: "PwC Helvetica Neue", Helvetica, Arial, Sans-Serif;
    font-weight: 700;
	width: 180px;
	height: 0px;
	line-height: 40px;
	padding-left: 15px;
	margin-top: 0px;
	color: var(--c3_black);
	background-color: var(--c3_white);
	background-image: url("https://www.pwc.co.uk/etc.clientlibs/pwc/clientlibs/rebrand-clientlibs/components-colors/resources/images/cta-btn-images/Right-Chevron-black.svg");
	background-repeat: no-repeat;
	background-position: 155px center;
	background-size: 10px auto;
	transition: all 0.4s ease;
}

div#c3_chart_fig_1 section article#c3_article_quadrant_0 a.c3_a_quadrant_back_to_menu {
	display: none;
}

div#c3_chart_fig_1 section article.c3_open a.c3_a_quadrant_read_more {
	margin-top: 20px;
	height: 40px;
}

div#c3_chart_fig_1 section a.c3_a_quadrant_read_more:hover {
	text-decoration: none;
	/* width: 190px; */
	background-position: 160px center;
}

div#c3_chart_fig_1 section a.c3_a_quadrant_opener {
	display: block;
	position: absolute;
	overflow: hidden;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	padding-left: 100%;
	z-index: 0;
	border-radius: 10px;
	background-color: rgba(0,0,0,0.0);
	transition: background-color 0.1s linear;
}

div#c3_chart_fig_1 section a.c3_a_quadrant_opener:hover {
	mix-blend-mode: overlay;
	background-color: rgba(0,0,0,0.25);
}

div#c3_chart_fig_1 section article.c3_open a.c3_a_quadrant_opener {
	height: 0%;
}

div#c3_chart_fig_1 section article a.c3_a_quadrant_close {
	display: block;
	position: absolute;
	overflow: hidden;
	top: 45px;
	right: 45px;
	width: 0px;
	padding-left: 0px;
	height: 0px;
	transition: all 0.25s ease;
}

div#c3_chart_fig_1 section article.c3_open a.c3_a_quadrant_close {
	top: 30px;
	right: 30px;
	padding-left: 30px;
	height: 30px;
}

div#c3_chart_fig_1 section article a.c3_a_quadrant_close::before,
div#c3_chart_fig_1 section article a.c3_a_quadrant_close::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 1px);
	left: 0px;
	width: 30px;
	height: 2px;
	background-color: var(--c3_white);
	transform: rotate(45deg);
}

div#c3_chart_fig_1 section article a.c3_a_quadrant_close::after {
	transform: rotate(-45deg);
}

div#c3_chart_fig_1 section article#c3_article_quadrant_2 a.c3_a_quadrant_close::before,
div#c3_chart_fig_1 section article#c3_article_quadrant_2 a.c3_a_quadrant_close::after {
	background-color: var(--c3_black);
}

/* --------------------- INDIVIDUAL QUADRANTS (TEXT STYLES) --------------------- */

div#c3_chart_fig_1 section article.c3_closed h3 {
    font-size: 0;
}

div#c3_chart_fig_1 section article#c3_article_quadrant_0 h3 {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -105px;
	margin-left: -105px;
	width: 210px;
	height: 210px;
	color: var(--c3_white);
	transform: rotate(-45deg);
	background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/icon_0.svg");
	background-position: center center;
	background-size: 80px 80px;
	background-repeat: no-repeat;
	transition: top 0.4s ease, left 0.4s ease, background-size 0.4s ease;
}

div#c3_chart_fig_1 section article#c3_article_quadrant_0 h3 span {
	display: block;
	position: absolute;
	font-family: "PwC Helvetica Neue", Helvetica, Arial, Sans-Serif;
    font-weight: 200;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	color: var(--c3_white);
	background-color: var(--c3_black);
}

div#c3_chart_fig_1 section article#c3_article_quadrant_0 p {
	position: absolute;
    top: 50%;
    left: 50%;
    width: 410px;
    height: 400px;
    margin-left: -240px;
    margin-top: -240px;
    padding: 0;
    padding-top: 40px;
    text-align: center;
    transform: rotate(-45deg);
}

div#c3_chart_fig_1 section article#c3_article_quadrant_0.c3_open h3 {
	top: 20px;
	left: 20px;
	background-size: 0px 0px;
}

div#c3_chart_fig_1 section article#c3_article_quadrant_0 a.c3_a_quadrant_read_more {
    position: absolute;
	top: 500px;
	left: calc(250px - (180px / 2));
	margin: 0px;
}

div#c3_chart_fig_1 section article#c3_article_quadrant_0.c3_open a.c3_a_quadrant_close {
    transform: rotate(-45deg);
}

div#c3_chart_fig_1 section article#c3_article_quadrant_0 a.c3_a_quadrant_read_more {
    position: absolute;
    top: 400px;
    left: 400px;
    margin: 0px;
    margin-left: -90px;
    margin-top: -20px;
    transform: rotate(-45deg);
}

/*
div#c3_chart_fig_1 section article#c3_article_quadrant_1 h3, 
div#c3_chart_fig_1 section article#c3_article_quadrant_2 h3, 
div#c3_chart_fig_1 section article#c3_article_quadrant_3 h3, 
div#c3_chart_fig_1 section article#c3_article_quadrant_4 h3 {
	display: none;
}
*/

div#c3_chart_fig_1 section article#c3_article_quadrant_1 a.c3_a_quadrant_read_more, 
div#c3_chart_fig_1 section article#c3_article_quadrant_2 a.c3_a_quadrant_read_more, 
div#c3_chart_fig_1 section article#c3_article_quadrant_3 a.c3_a_quadrant_read_more, 
div#c3_chart_fig_1 section article#c3_article_quadrant_4 a.c3_a_quadrant_read_more {
	display: none;
}

div#c3_chart_fig_1 section article#c3_article_quadrant_2 h3,
div#c3_chart_fig_1 section article#c3_article_quadrant_4 h3 {
	background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/icon_2.svg");
	background-position: right center;
	padding-left: 0;
	padding-right: 60px;
}

div#c3_chart_fig_1 section article#c3_article_quadrant_3 h3 {
	background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/icon_3.svg");
}

div#c3_chart_fig_1 section article#c3_article_quadrant_4 h3 {
	background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/icon_4.svg");
}

/* --------------------- Arrows --------------------- */

div#c3_chart_fig_1 div#c3_div_vertical_arrows,
div#c3_chart_fig_1 div#c3_div_horizontal_arrows {
	display: block;
	position: absolute;
	width: 8px;
	height: calc(100% - (20px * 2));
	background-color: var(--c3_white);
	top: calc(0% + 20px);
	left: calc(50% - (8px / 2));
	transition: height 2s ease, top 2s ease, left 0.4s ease;
}

div#c3_chart_fig_1 div#c3_div_vertical_arrows.c3_closed {
	height: 0%;
	top: 50%;
}

div#c3_chart_fig_1 div#c3_div_vertical_arrows.c3_left { left: calc(20px + (25% - 10px) - (8px / 2)); }
div#c3_chart_fig_1 div#c3_div_vertical_arrows.c3_right { left: calc(20px + (75% - 30px) - (8px / 2)); }

div#c3_chart_fig_1 div#c3_div_horizontal_arrows {
	display: block;
	width: calc(100% - (20px * 2));
	height: 8px;
	top: calc(50% - (8px / 2));
	left: 20px;
	transition: width 2s ease, left 2s ease;
}

div#c3_chart_fig_1 div#c3_div_horizontal_arrows.c3_closed {
	width: 0%;
	left: 50%;
}

div#c3_chart_fig_1 div#c3_div_vertical_arrows::before,
div#c3_chart_fig_1 div#c3_div_vertical_arrows::after {
	content: "";
	display: block;
	position: absolute;
	top: -15px;
	left: calc(-15px + (8px / 2));
	width: 0px;
	height: 0px;
	transform: rotate(45deg);
	border-top: 15px var(--c3_white) solid;
	border-left: 15px var(--c3_white) solid;
	border-bottom: 15px transparent solid;
	border-right: 15px transparent solid;
}

div#c3_chart_fig_1 div#c3_div_horizontal_arrows::before,
div#c3_chart_fig_1 div#c3_div_horizontal_arrows::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(-15px + (8px / 2));
	left: -15px;
	width: 0px;
	height: 0px;
	transform: rotate(45deg);
	border-top: 15px transparent solid;
	border-left: 15px var(--c3_white) solid;
	border-bottom: 15px var(--c3_white) solid;
	border-right: 15px transparent solid;
}

div#c3_chart_fig_1 div#c3_div_vertical_arrows::after {
	top: auto;
	bottom: -15px;
	border-top: 15px transparent solid;
	border-left: 15px transparent solid;
	border-bottom: 15px var(--c3_white) solid;
	border-right: 15px var(--c3_white) solid;
}

div#c3_chart_fig_1 div#c3_div_horizontal_arrows::after {
	left: auto;
	right: -15px;
	border-top: 15px var(--c3_white) solid;
	border-left: 15px transparent solid;
	border-bottom: 15px transparent solid;
	border-right: 15px var(--c3_white) solid;
}

div#c3_chart_fig_1 section div.c3_div_quadrant_row::before {
	content: "";
    display: block;
    position: absolute;
    top: -19px;
    left: -15px;
    width: 0px;
    height: 0px;
    transform: rotate(45deg);
    border-top: 15px transparent solid;
    border-left: 15px var(--c3_white) solid;
    border-bottom: 15px var(--c3_white) solid;
    border-right: 15px transparent solid;
}

div#c3_chart_fig_1 section div.c3_div_quadrant_row::after {
	content: "";
    display: block;
    position: absolute;
    top: -19px;
    right: -15px;
    width: 0px;
    height: 0px;
    transform: rotate(45deg);
    border-top: 15px var(--c3_white) solid;
    border-left: 15px transparent solid;
    border-bottom: 15px transparent solid;
    border-right: 15px var(--c3_white) solid;
}

div#c3_chart_fig_1 div#c3_div_vertical_arrows div#c3_div_label_top,
div#c3_chart_fig_1 div#c3_div_vertical_arrows div#c3_div_label_bottom {
	display: block;
	position: absolute;
	font-family: "PwC Helvetica Neue", Helvetica, Arial, Sans-Serif;
    font-weight: 400;
	font-size: 22px;
	line-height: 50px;
	text-align: center;
	width: 200px;
	height: 50px;
	top: -70px;
	left: -96px;
	background-color: var(--c3_black);
    color: var(--c3_white);
    border-radius: 10px 10px 0px 0px;
	opacity: 1;
	transition: opacity 0.25s linear;
}

div#c3_chart_fig_1 div#c3_div_vertical_arrows.c3_closed div#c3_div_label_top,
div#c3_chart_fig_1 div#c3_div_vertical_arrows.c3_closed div#c3_div_label_bottom {
	opacity: 0;	
}

div#c3_chart_fig_1 div#c3_div_vertical_arrows div#c3_div_label_bottom {
	top: auto;
	bottom: -70px;
	border-radius: 0px 0px 10px 10px;
}

div#c3_chart_fig_1 div#c3_div_horizontal_arrows div#c3_div_label_left,
div#c3_chart_fig_1 div#c3_div_horizontal_arrows div#c3_div_label_right {
	display: block;
	position: absolute;
	font-family: "PwC Helvetica Neue", Helvetica, Arial, Sans-Serif;
    font-weight: 400;
	font-size: 22px;
	line-height: 50px;
	text-align: center;
	width: 200px;
	height: 50px;
	top: -21px;
	left: -145px;
	transform: rotate(-90deg);
	background-color: var(--c3_black);
    color: var(--c3_white);
    border-radius: 10px 10px 0px 0px;
	opacity: 1;
	transition: opacity 0.25s linear;
}

div#c3_chart_fig_1 div#c3_div_horizontal_arrows.c3_closed div#c3_div_label_left,
div#c3_chart_fig_1 div#c3_div_horizontal_arrows.c3_closed div#c3_div_label_right {
	opacity: 0;
}


div#c3_chart_fig_1 div#c3_div_horizontal_arrows div#c3_div_label_right {
	left: auto;
	right: -145px;
	transform: rotate(90deg);
}

div#c3_chart_fig_1 div#c3_div_label_left_copy,
div#c3_chart_fig_1 div#c3_div_label_right_copy {
	display: block;
	position: absolute;
	font-family: "PwC Helvetica Neue", Helvetica, Arial, Sans-Serif;
    font-weight: 400;
	font-size: 22px;
	line-height: 50px;
	text-align: center;
	width: 200px;
	height: 50px;
	top: -29px;
	left: -145px;
	transform: rotate(-90deg);
	background-color: var(--c3_black);
    color: var(--c3_white);
    border-radius: 10px 10px 0px 0px;
}

div#c3_chart_fig_1 div#c3_div_label_right_copy {
	left: auto;
	right: -145px;
	transform: rotate(90deg);
}

/* --------------------- Mobile styles --------------------- */

@media only screen and (max-width: 992px) {
	
	div#c3_chart_fig_1 {
		width: 150%;
		margin-left: -25%;
	}
	
}

@media only screen and (max-width: 767px) {
	
	/* ---------- Overrides ----------- */
	
    div#c3_chart_fig_1 {
		width: 100%;
		margin-left: 0%;
	}
	
	div#c3_chart_fig_1 section {
		overflow: hidden;
		padding: 0px;
		width: 100%;
		margin-top: 20px;
		margin-bottom: 30px;
		margin-left: 0px;
		margin-right: 0px;
		border-radius: 0px;
		background-color: transparent;
	}
	
	div#c3_chart_fig_1 section div.c3_div_quadrant_row {
    	display: block;
		border: none !important;
	}
	
	div#c3_chart_fig_1 section div.c3_div_quadrant_row.c3_hidden {
    	opacity: 1;
	}
	
	div#c3_chart_fig_1 section article {
		position: relative !important;
		overflow: hidden;
		opacity: 1 !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		top: auto !important;
		left: auto !important;
		padding: 0 !important;
		margin-bottom: 40px !important;
		background-color: transparent !important;
		transform: rotate(0deg) !important;
		border-radius: 0px !important;
		transform: rotate(0deg) !important;
	}
	
	div#c3_chart_fig_1 section article h3 {
		display: block !important;
		position: relative !important;
		line-height: 60px !important;
		top: auto !important;
		left: auto !important;
		margin-top: 0px !important;
		margin-left: 0px !important;
		width: 100% !important;
		height: auto !important;
		text-align: left !important;
		padding: 0 !important;
		padding-left: 70px !important;
		color: var(--c3_black) !important;
		transform: rotate(0deg) !important;
		background-size: 50px 50px !important;
		background-position: left center !important;
	}
	
	div#c3_chart_fig_1 section article h3::before {
		content: "";
		display: block;
		position: absolute;
		top: 0px;
		left: 0px;
		width: 60px;
		height: 60px;
		background-color: var(--c3_orange);
		background-position: 10px 10px;
		background-size: 40px 40px;
		background-repeat: no-repeat;
	}
	
	div#c3_chart_fig_1 section article#c3_article_quadrant_0 h3::before {
		background-color: var(--c3_orange);
		background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/icon_0.svg");
	}
	
	div#c3_chart_fig_1 section article#c3_article_quadrant_1 h3::before {
		background-color: var(--c3_mediumgrey);
		background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/icon_1.svg");
	}
	
	div#c3_chart_fig_1 section article#c3_article_quadrant_2 h3::before {
		background-color: var(--c3_tangerine);
		background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/icon_2.svg");
	}
	
	div#c3_chart_fig_1 section article#c3_article_quadrant_3 h3::before {
		background-color: var(--c3_rose);
		background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/icon_3.svg");
	}
	
	div#c3_chart_fig_1 section article#c3_article_quadrant_4 h3::before {
		background-color: var(--c3_grey);
		background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/icon_4.svg");
	}
	
	div#c3_chart_fig_1 section article#c3_article_quadrant_0 h3 span {
		display: inline;
		position: relative;
		bottom: auto;
		left: auto;
		text-align: left;
		color: var(--c3_black);
		background-color: transparent;
	}
	
	div#c3_chart_fig_1 section article p {
		display: block;
		position: relative !important;
		font-size: 1.2rem !important;
		line-height: 1.7;
		top: auto !important;
		left: auto !important;
		width: 100% !important;
		height: auto !important;
		padding: 0 !important;
		margin: 0 !important;
		color: var(--c3_black);
		text-align: left !important;
		transform: rotate(0deg) !important;
	}
	
	div#c3_chart_fig_1 div#c3_div_horizontal_arrows,
	div#c3_chart_fig_1 div#c3_div_vertical_arrows,
	div#c3_chart_fig_1 section a.c3_a_quadrant_opener,
	div#c3_chart_fig_1 section article div.c3_div_image_cover {
		display: none;
	}
	
	div#c3_chart_fig_1 section article a.c3_a_quadrant_back_to_menu {
		display: block !important;
		padding: 0;
		padding-left: 20px;
		border: none;
		margin-top: 20px;
		width: 100%;
		height: 40px !important;
		background-position: left center;
	}
	
	/* ---------- Mobile specific stlyes ----------- */
	
	div#c3_chart_fig_1 nav#c3_nav_mobile {
		display: block;
		position: relative;
		overflow: hidden;
		margin-bottom: 30px;
		
	}
	
	div#c3_chart_fig_1 nav#c3_nav_mobile ul {
		display: block;
		position: relative;
		overflow: hidden;
		margin: 0;
		padding: 0;
		width: 100%;
		background-image: url("https://www.pwc.com/content/dam/pwc/gx/en/risk-management/assets/quadrants.jpg");
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
	
	div#c3_chart_fig_1 nav#c3_nav_mobile ul li {
		display: block;
		position: relative;
		overflow: hidden;
		margin: 0;
		padding: 0;
		float: left;
		width: 50%;
		height: 0;
		padding-top: 53.1%;
	}
	
	div#c3_chart_fig_1 nav#c3_nav_mobile ul li:nth-child(1) {
		display: block;
		position: absolute;
		left: 50%;
		top: 14%;
		width: 30%;
		height: 0;
		padding-top: 30%;
		margin-left: -15%;
		transform: rotate(45deg);
		z-index: 20;
	}
	
	div#c3_chart_fig_1 nav#c3_nav_mobile ul li a {
		display: block;
		position: absolute;
		font-size: 0px;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
	}
	
}

















