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

main h1 {
	padding-top: 50px;
	margin-bottom: 0;
}

.faq-options {}
.faq-options > ul {}
.faq-options > ul > li {
	font-family: NunitoSans;
    font-weight: 400;
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.2;
	padding: 5px 0;
    margin-block-start: 0;
    margin-block-end: 0;
	color: var(--steel_light);
}
.faq[data-current="Frequently-Asked-Questions.html"]                        .faq-options > ul > li[data-label="ppr"],
.faq[data-current="Frequently-Asked-Questions/Purchase-process.html"]       .faq-options > ul > li[data-label="ppr"],
.faq[data-current="Frequently-Asked-Questions/Purchase-related-costs.html"] .faq-options > ul > li[data-label="prc"],
.faq[data-current="Frequently-Asked-Questions/Golden-Visa.html"]            .faq-options > ul > li[data-label="vsa"] { color: var(--highlight); font-weight: bold;  }


/* structure */

	.faq-options > ul > li > a {
	}
	.faq-options > ul > li > i {}
	.faq-options > ul > li > em { font-weight: inherit; }

	.faq-list {
		margin-top: 15px;
	}
	.faq-list > ul > li {
		margin-bottom: 15px;
	}
	.faq-list > ul > li > a {
		display: block;
		position: relative;
		width:  100%;
		height: 35px;
		margin: 0 0 -35px 0;
		text-decoration: none;
		z-index: 1;
	}
	.faq-list > ul > li > a > i {
		font-size:   20px;
		line-height: 20px;
	}
	.faq-list > ul > li > a > i:before { content:"\e955"; }
	.faq-list > ul > li[data-expanded="1"] > a > i:before { content:"\e953"; }

/* question */

	.faq-list > ul > li .que {
		display: block;
		position: relative;
		margin: 0 0 10px 30px;
		font-weight: 400;
		font-size: 1.15rem;
		color: var(--steel);
	}
	.faq-list > ul > li[data-expanded="1"] .que {
		font-weight: 700;
		color: var(--highlight);
	}
	.faq-list > ul > li[data-prefix="1"] .que .prefix {
		display: block;
		position: relative;
		width: 18px;
		height: 20px;
		margin: 0 0 -20px 0;
		padding: 0 0 0 2px;
		border-radius: 20px;
		background-color: var(--steel);
		color: white;
		text-align: center;
		font-weight: normal;
		font-size: 0.7em;
		opacity: 0.75;
	}
	.faq-list > ul > li[data-prefix="1"][data-expanded="1"] .que .prefix {
		background-color: var(--highlight);
		opacity: 1;
	}
	.faq-list > ul > li[data-prefix="1"] .que .copy {
		display: block;
		position: relative;
		margin: 0 0 0 30px;
	}

/* answer */

	.faq-list > ul > li .ans {
		display: block;
		position: relative;
		margin: 0 0 10px 30px;
		font-size: 1.2rem;
		line-height: 1.3;
		max-height: 0;
		visibility: hidden;
		opacity: 0;
		transition: opacity 0.5s ease 0.3s, max-height 0.2s ease 0s;
	}
	.faq-list > ul > li[data-prefix="1"] .ans {
		margin-left: 60px;
	}
	
	.faq-list > ul > li .ans * {
		font-size: 1.0rem;
		line-height: 1.3;
	}
	.faq-list > ul > li[data-expanded="1"] .ans {
		max-height: 1500px;
		visibility: visible;
		position: relative;
		margin: 0 0 30px 30px;
		height:auto;
		opacity: 1;
		transition: opacity 0.5s ease 0s, max-height 0.3s ease;
	}
	.faq-list > ul > li[data-expanded="1"] .ans:before {
		display: block;
		content:"";
		position:absolute;
		left: -20px; top: 0;
		width: 1px;
		bottom: 0;
		background-color: var(--highlight);
	}

	/* multiple cells */

		.faq-list > ul > li .ans .cells {
			display: table-row;
		}
		.faq-list > ul > li .ans .cells .cell {
			display: table-cell;
			padding: 3px 10px 3px 10px;
			vertical-align: top;
			border-bottom: 1px solid #CCC;
		}
		.faq-list > ul > li .ans .cells .cell.prc:first-child {}
		.faq-list > ul > li .ans .cells .cell.prc:last-child { text-align: right; }

		.faq-list > ul > li .ans .table { margin-top: 15px; margin-bottom: 15px; }
		.faq-list > ul > li .ans .table .cells:first-child .cell { border-top: 1px solid #CCC; }

	/* paragraph */

		.faq-list > ul > li .ans p.par {
			margin-bottom: 3px;
		}
		
	/* title */
		
		.faq-list > ul > li .ans p.par.ttl {
			font-family: NunitoSans;
			font-weight: 700;
			margin-top: 15px;
		}
		
	/* unordered list */

		.faq-list > ul > li .ans p.uli {
			margin-bottom: 3px;
		}
		.faq-list > ul > li .ans p.uli > i {
			display: block;
			position: relative;
			width: 15px;
			height: 15px;
			margin: 0 0 -15px 0;
			font-size: 0.95em;
			line-height: 1.1;
		}
		.faq-list > ul > li .ans p.uli > i:before { font-family: NunitoSans; content:"•"; }
		.faq-list > ul > li .ans p.uli > em {
			display: block;
			position: relative;
			margin: 0 -20px 0 16px;
		}

	/* custom html code */
		
		.faq-list > ul > li .ans .centered-framed-box {
			display: inline-block;
			vertical-align: top;
			margin-bottom: 15px;
			outline: 1px solid red;
			outline: none;
		}
		.faq-list > ul > li .ans .centered-framed-box .columns {
			display: flex;
		}
		.faq-list > ul > li .ans .centered-framed-box .columns[data-count="2"] {}
		.faq-list > ul > li .ans .centered-framed-box .columns[data-count="2"] .column {
			display: inline-block;
			text-align: center;
			width: 50%;
			vertical-align: top;
			padding: 15px 25px;
			margin-right: 10px;
			border: 1px solid var(--steel);
		}
		.faq-list > ul > li .ans .centered-framed-box .columns[data-count="2"] .column p {
			text-align: center;
			white-space: nowrap;
		}
		/* all mobile */ @media screen and (max-width:699px){ .faq-list > ul > li .ans .centered-framed-box .columns[data-count="2"] .column p { white-space: normal; } }
		
		.faq-list > ul > li .ans .centered-framed-box .columns[data-count="2"] .column p.title {
			font-weight: bold;
			margin-bottom: 5px;
		}

		

/* simple copy and list */

	.faq-copy {
		margin: 0 0 25px 0;
	}
	.faq-copy p { margin-bottom: 5px; }
	.faq-copy ul { margin-bottom: 5px; }
	.faq-copy ul li { list-style: disc; margin: 0 0 0 1.25em; }







/* responsives */

	/* desktop */	@media screen and (min-width:960px){
	}
	/* tablet */	@media screen and (min-width:700px) and (max-width:959px){
		.columns { display: block; }
		.columns .column { display: block; width: 100%!important; }
	}
	/* all mobile */ @media screen and (max-width:699px){
		.columns { display: block; }
		.columns .column { display: block; width: 100%!important; }
		.faq-list > ul > li .que { font-size: 1.0rem; }
		.faq-options { margin: 0 0 25px 0; }
		.faq-options ul {}
		.faq-options ul li {
			display: block; text-align: center;
			background-color: var(--steel_extralight);
			color: var(--steel);
			margin: 0 0 5px 0;
			border-radius: 5px;
			opacity: 0.5;
		}
		.faq[data-current="Frequently-Asked-Questions.html"]                        .faq-options > ul > li[data-label="ppr"],
		.faq[data-current="Frequently-Asked-Questions/Purchase-process.html"]       .faq-options > ul > li[data-label="ppr"],
		.faq[data-current="Frequently-Asked-Questions/Purchase-related-costs.html"] .faq-options > ul > li[data-label="prc"],
		.faq[data-current="Frequently-Asked-Questions/Golden-Visa.html"]            .faq-options > ul > li[data-label="vsa"] { background-color: var(--highlight); font-weight: bold; color: white; opacity: 1;  }
	}
	/* wide mobile */	@media screen and (min-width:550px) and (max-width:699px){
	}
	/* narrow mobile */	@media screen and (max-width:549px){
	}
