/*
	Theme Name: Quality Mark Self Assessment for Housing Justice
	Description: Quality Mark Self Assessment for Housing Justice
	Version: 1.0.0
	Author: Direction Forward (@direction4ward)
	Author URI: https://www.directionforward.com
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

:root {
	--purple: #30273C;
	--pink: #F07E77;
	--grey: #F4F4F4;
	--formgrey: #ededed;
	--lightgrey: #fafafa;
}

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
	overscroll-behavior: none;
}
body {
	padding: 0;
	margin: 0;
	overscroll-behavior: none;
	font-size: 18px;
	line-height: 1.444em;
	font-family: 'Helvetica Now Text Regular', Helvetica, Arial, sans-serif;
	color: black;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color: inherit;
	text-decoration: underline;
	font-family: 'Helvetica Now Text Medium';
	font-weight: normal;
}
a:hover {

}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.onlyifloggedout {

}
body.logged-in .onlyifloggedout {
	display: none;
}
.onlyifloggedin {
	display: none;
}
body.logged-in .onlyifloggedin {
	display: block;
}

/* wrapper */
.wrapper {
	max-width:1280px;
	width:95%;
	margin:0 auto;
	position:relative;
}
/* header */
.header {
	background-color: white;
	padding: 3em 5% 3em 5%;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-inner > div {

}
.menu-holder {
	cursor: pointer;
	width: 60px;
	z-index: 2;
}
.menu-toggle {
	height: 20vw;
	width: 100%;
	max-height: 20px;
	margin: 0 0 0 auto;
	position: relative;
}
.menu-toggle-line {
	position: absolute;
	display: block;
	height: 2px;
	width: 100%;
	background-color: var(--purple);
	margin: 0 auto;
	transition: all 0.125s ease-in-out;
}
.menu-toggle-line:nth-of-type(1) {
	transform: none;
	top: 0;
}
.menu-toggle-line:nth-of-type(2) {
	transform: none;
	bottom: 0;
}
.menu-toggle-text {
	position: absolute;
	top: 100%;
	width: 100%;
	padding: 10px 0 10px 0;
	text-align: center;
	font-size: 20px;
	line-height: 1.0em;
	color: var(--purple);
	left: 0;
	font-family: 'Futura PT Bold';
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	transition: opacity 0.125s ease-in-out;
	opacity: 1;
}
.menu-toggle.opened .menu-toggle-text {
	opacity: 0;
}
.menu-toggle.opened .menu-toggle-line {
	background-color: white;
}
.menu-toggle.opened .menu-toggle-line:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.menu-toggle.opened .menu-toggle-line:nth-of-type(2) {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
}

/* logo */
.logo {

}
.logo-img {
	max-height: 120px;
	height: 20vw;
	width: auto;
}
/* nav */
.nav-holder {
	position: fixed;
	z-index: 1;
	right: -580px;
	top: 0;
	width: 50vw;
	max-width: 580px;
	padding: 2.5% 5% 2.5% 2.5%;
	height: 100vh;
	background-color: var(--pink);
	font-size: 1.5em;
    line-height: 1.4em;
    font-family: "Helvetica Now Text Medium";
	box-shadow: #0000004a 0px 0px 0p 0px;
	transition: right 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.nav-holder.opened {
    box-shadow: #0000004a -10px 0px 20px 0px;
	right: 0;
}
.nav {
	display: flex;
	height: 100%;
	align-items: flex-end;
}
.nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav ul li {
	margin: 0 0 0.25em 0;
}
.nav ul li a {
	color: white;
	transition: color 0.25s ease-in-out;
	text-decoration: none;
}
.nav ul li a:hover {
	color: var(--purple);
}
/* footer */
.footer { 
	font-family: "Helvetica Now Text Medium";
	font-weight: normal;
	background-color: var(--pink);
	padding: 3em 5% 3em 5%;
	line-height: 1.25em;
}
.footer strong {
	font-family: "Helvetica Now Text Bold";
	font-weight: normal;
}
.footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer ul a {
	text-decoration: none;
}
.footer ul.social-icons {
	display: flex;
	flex-wrap: nowrap;
	column-gap: 1em;
	align-items: center;
}
.footer ul.social-icons img {
	width: 100%;
	max-width: 38px;
    max-height: 32px;
    vertical-align: middle;
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
}
.footer-inner > div {
	flex: 1;
	margin-bottom: 1em;
}
/* main */
main {

}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 2em auto 2em auto;
}
table th {
	text-align: left;
	font-weight: bold;
	white-space: nowrap;
}
table th,
table td {
	vertical-align: top;
	padding: 0 1em 0.5em 0;
}
table tr th:last-of-type,
table tr td:last-of-type {
	padding-right: 0;
}

.gform_footer,
.gform_page_footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2em;
	margin: 3em 0 3em 0;
}
.gform_footer input,
.gform_footer button,
.gform_page_footer input,
.gform_page_footer button {
	font-size: 1.25em;
    line-height: 1.0em;
	text-align: left;
	padding: 1em 1em 3em 1em;
	text-transform: uppercase;
	border-radius: 0;
	border: none;
	background-color: var(--pink);
	color: white;
	font-family: 'Futura PT Bold';
	font-weight: normal;
}
.gform_footer button.gform_save_link,
.gform_page_footer button.gform_save_link {
	background-color: white;
	color: var(--pink);
	border: 5px solid var(--pink);
	padding: calc(1em - 5px) calc(1em - 5px) calc(3em - 5px) calc(1em - 5px);
}
.gform_footer input i,
.gform_footer button i,
.gform_page_footer input i,
.gform_page_footer button i {
	font-style: normal;
	font-family: 'Futura PT Medium';
	font-weight: normal;
}
.gform_footer input.gform_button,
.gform_page_footer input.gform_button {
	background-color: var(--purple);
}





/*------------------------------------*\
    FORMS
\*------------------------------------*/

/*debug*/
/*
.gform_page {
	display: block !important;
}
*/

#gform_2_validation_container,
#gform_2 legend,
.wppb-form-field.login-remember,
#wppb_form_general_message,
.wppb-send-credentials-checkbox,
.partial_entry_warning,
.gform_fileupload_rules,
.gfield--type-honeypot,
.gform_save_link svg,
.gf_step_page_name,
.gfield_required,
.gfield_visibility_hidden,
.gform_required_legend {
	display: none !important;
}

.gform_validation_errors {
	padding: 0 5% 0 5%;
	text-align: center;
	color: rgb(200, 0, 0);
}
.gform_validation_errors h2 {
	font-family: 'Helvetica Now Text Bold';
	font-size: inherit;
    text-transform: unset;
	color: rgb(200, 0, 0);
	margin: 0 0 0.5em 0;
}

div.validation_error.gform_validation_error {
    text-align: center;
    color: rgb(200, 0, 0);
    display: block;
    margin: 0 auto 1em auto;
}



p.wppb-form-field {
	margin-bottom: unset;
}
.wppb-user-forms ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.wppb-description-delimiter {
	display: block;
	font-size: small;
	margin-top: -1em;
	opacity: 0.6;
}
.wppb-error,
.wppb-form-error {
	display: block;
	color: rgb(200, 0, 0);
	margin: calc(-1em + 8px) 0 1em 0;
}
.wppb-user-forms .login-submit,
.wppb-user-forms .form-submit {
	display: block;
	margin: 2em auto 5em auto;
}
.ui-datepicker {
	background: var(--grey);
}
.ui-datepicker .ui-datepicker-header {
	background: var(--purple);
    border: none;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: none !important;
    color: var(--purple) !important;
    text-align: center;	
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	background: white !important;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	background: var(--pink) !important;
	color: white !important;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover {
	background: var(--purple) !important;
	color: white !important;
}

.gfield--type-section {
	padding: 3em 5% 2em 5%;
	background-color: var(--pink);
}
.gfield--type-section > * {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.gsection_description,
.gsection_title {
	text-transform: uppercase;
	font-family: 'Futura PT Bold';
	font-weight: normal;
	font-size: clamp(40px, 5vw, 50px);
	color: var(--purple);
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.1em;
}
.gsection_description {
	color: white;
}
.gfield_validation_message {
	font-family: 'Helvetica Now Text Bold';
	font-weight: normal;
	color: rgb(200, 0, 0);
}
.gfield_description.gfield_validation_message {
	margin: 0.5em auto 0 auto;
}

.gfield--type-html {
	padding: 5em 0 0 0;
}
.form_saved_message .gfield--type-html {
	padding: 5em 0 5em 0;
}
.gfield--type-html hr {
    border: none;
    background-color: var(--formgrey);
    height: 1px;
    margin: 2em auto 2em auto;
}


.gf_progressbar_wrapper {
	padding: 2em 5% 2em 5%;
	color: white;
	background-color: var(--purple);
}
.gf_progressbar_title {
	max-width: 900px;
	margin: 0 auto 0 auto;
}
.gf_progressbar {
	max-width: 900px;
	margin: 0 auto 0 auto;
	background-color: white;
	height: 13px;
	width: 100%;
	border-radius: 13px;
	overflow: hidden;
}
.gf_progressbar_percentage {
	background-color: var(--pink);
}
.gf_progressbar_percentage span {
	height: 13px;
    display: block;
    color: transparent;
}


.gform_footer,
.gform_page_footer {
	position: relative;
}
.gform_wrapper .gform_ajax_spinner {
	position: absolute;
	top: 0;
	transform: translateY(-100%);
}

.form_saved_message_emailform {
	margin: 2em auto 5em auto;
}
.form_saved_message_emailform .gfield_label {
	margin: 0 0 0.5em 0;
	padding: 0;
	font-family: 'Helvetica Now Text Bold';
	font-weight: normal;
	font-size: unset;
	color: unset;
}
.wppb-user-forms .login-submit input,
.wppb-user-forms .form-submit input,
.wppb-form-field input,
.wppb-form-field select,
.form_saved_message_emailform input {
	width: 100%;
	border-radius: 8px;
	background-color: var(--grey);
	border: 2px solid var(--grey);
    padding: calc(1.25rem - 2px);
	transition: border-color 0.25s ease-in-out;
	margin-bottom: 1em;
	font-size: 1em;
	line-height: 1em;
}
.wppb-user-forms .login-submit input:focus,
.wppb-user-forms .form-submit input:focus,
.wppb-form-field input:focus,
.wppb-form-field select:focus,
.form_saved_message_emailform input:focus {
	border-color: var(--pink);
	outline: none;
}
.wppb-user-forms .login-submit input[type="submit"],
.wppb-user-forms .form-submit input[type="submit"],
.form_saved_message_emailform input[type="submit"] {
	background-color: var(--pink);
	border: 2px solid var(--pink);
	transition: border-color 0.25s ease-in-out;
	color: white;
	font-family: 'Helvetica Now Text Medium';
	font-weight: normal;
    font-size: 1.1em;
    line-height: 1em;
    text-align: left;
	padding: calc(1.6rem - 2px);
}

.wppb-form-field.wppb-heading {
	margin-top: 2em;
	margin-bottom: 1em;
}
.wppb-form-field label .wppb-required {
	position: absolute;
}

fieldset,
legend {
	border:0;
	margin:0;
	padding:0;
}
.gfield_radio {
	display: flex;
	flex-wrap: nowrap;
	column-gap: 1em;
}
.gfield_label {
	font-family: 'Futura PT Bold';
	font-weight: normal;
	font-size: clamp(20px, 2.5vw, 24px);
	color: var(--pink);
	margin: 0 0 0.5em 0;
	padding: 2em 0 0 0;
	display: block;
}
.gfield_radio .gchoice {
	position: relative;
}
.gfield_radio .gchoice input {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}
.gfield_radio .gchoice label {
	padding: 1.5em 3em;
	text-align: center;
	cursor: pointer;
	display: block;
	border-radius: 8px;
	border: 5px solid rgba(48,39,60,0.25);
	box-shadow: 0 0 8px rgba(0,0,0,0);
	transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 12px;
}
.gfield_radio .gchoice input:checked + label {
	border: 5px solid rgba(48,39,60,1);
	box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.gfield.rayg .gfield_radio .gchoice label::before,
.gfield.ayg .gfield_radio .gchoice label::before,
.gfield.yesno .gfield_radio .gchoice label::before {
	content: '';
	width: 55px;
	height: 55px;
	display: block;
	margin: 0 auto 12px auto;
}
.gfield.yesno .gfield_radio .gchoice:first-of-type label::before {
	content: url('img/yes.svg');
}
.gfield.yesno .gfield_radio .gchoice:last-of-type label::before {
	content: url('img/no.svg');
}
.gfield.rayg .gfield_radio .gchoice:nth-of-type(1) label::before {
	content: url('img/red.svg');
}
.gfield.rayg .gfield_radio .gchoice:nth-of-type(2) label::before {
	content: url('img/amber.svg');
}
.gfield.rayg .gfield_radio .gchoice:nth-of-type(3) label::before {
	content: url('img/yellow.svg');
}
.gfield.rayg .gfield_radio .gchoice:nth-of-type(4) label::before {
	content: url('img/green.svg');
}
.gfield.ayg .gfield_radio .gchoice:nth-of-type(1) label::before {
	content: url('img/amber.svg');
}
.gfield.ayg .gfield_radio .gchoice:nth-of-type(2) label::before {
	content: url('img/yellow.svg');
}
.gfield.ayg .gfield_radio .gchoice:nth-of-type(3) label::before {
	content: url('img/green.svg');
}

.gfield_description {
	margin: 0 auto 1em auto;
}

.gfield--type-textarea {
	border-radius: 8px;
	margin-top: calc(1.333em + 2em) !important;
	padding: 2em;
	transition: border 0.25s ease-in-out;
	background-color: var(--lightgrey);
}
.gfield--type-textarea label {
	font-family: 'Helvetica Now Text Regular';
	font-weight: normal;
	color: inherit;
	font-size: 1em;
}
.gfield--type-textarea textarea {
	resize: none;
	background-color: white;
	border-radius: 8px;
	border: 1px solid rgba(48,39,60,0.0);
	width: 100%;
	padding: 0.5em;
	height: calc((1.444em * 6) + (0.5em * 2));
	transition: border 0.25s ease-in-out;
}
.gfield--type-textarea textarea:focus,
.gfield--type-textarea textarea:focus-within {
	border: 1px solid rgba(48,39,60,0.5);
	outline: none;
}


.gfield--type-fileupload {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	column-gap: 2em;
	row-gap: 1em;
	margin-top: calc(1.333em + 2em) !important;
	flex-direction: row-reverse;
	border-radius: 8px;
	border: 5px solid rgba(48,39,60,0.25);
	box-shadow: 0 0 8px rgba(0,0,0,0);
	transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
	padding: 2em;
}
.gfield--type-fileupload:focus,
.gfield--type-fileupload:focus-within {
	border: 5px solid rgba(48,39,60,1);
	box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.gfield--type-fileupload label {
	margin: 0 0 1em auto;
	padding: 0;
}
.gfield--type-fileupload .gfield_description {
	margin: 0 auto 1em 0;
	padding: 0;
}
.gfield--type-fileupload label {
	text-align: right;
	padding: 0.333em 2em 0.333em 2em;
	background-color: var(--pink);
	color: white;
	border-radius: 8px;
}
.gfield--type-fileupload .ginput_container_fileupload,
.gfield--type-fileupload .ginput_preview_list {
	flex-basis: 100%;
	position: relative;
}
.ginput_container_fileupload {
	background-color: var(--formgrey);
	border-radius: 8px;
}

.ginput_preview_list .screen-reader-text,
.ginput_preview_list .gfield_fileupload_percent {
	display: none;
}
.gform-ul-reset,
.gform_button_select_files,
.gfield_fileupload_filename,
.gfield_fileupload_filesize,
.gform_drop_instructions {
	display: block;
	margin: 0;
}
.gfield_fileupload_filename,
.gfield_fileupload_filesize {
	width: calc(100% - 2em - 1em);
}
.gform_drop_area {
	display: flex;
	flex-wrap: wrap;
	padding: 1.333em;
	justify-content: center;
}
.gform_drop_instructions {
    flex-basis: 100%;
    text-align: center;
}
.gform_drop_instructions::before {
	content: url('img/info.svg');
	width: 53px;
	height: 53px;
	display: block;
    margin: 0 auto 0 auto;
}
button.gform_button_select_files {
	background: none;
	border: none;
	padding: 0;
	text-decoration: underline;
	text-transform: lowercase;
}
.ginput_preview {
	border-radius: 8px;
	background-color: var(--formgrey);
	padding: 1.333em;
	font-family: 'Helvetica Now Text Medium';
	font-weight: normal;
	position: relative;
	margin: 0 auto 1em auto;
}
.ginput_preview:last-of-type {
	margin-bottom: 0;
}
.gform_delete_file {
	position: absolute;
	top: 1.333em;
	right: 1.333em;
	border: none;
	background-color: #EA0000;
	height: 2em;
    width: 2em;
    border-radius: 2em;
	padding: 0;
}
.gform_delete_file::before {
	content: '\2715';
	color: white;
	font-size: 1em;
	line-height: 2em;
	font-weight: 100;
	text-align: center;
	display: block;
}
.gform_delete_file .dashicons {
	display: none;
}
.gform-ul-reset {
	list-style: none;
	padding: 0;
	margin: 0;
	position: absolute;
	font-family: 'Helvetica Now Text Medium';
	font-weight: normal;
	color: #EA0000;
}
.gfield_fileupload_progress {
	margin-top: 0.5em;
	display: block;
	opacity: 1;
	transition: opacity 0.25s ease-in-out;
}
.gfield_fileupload_progress.gfield_fileupload_progress_complete {
	opacity: 0.3;
}
.gfield_fileupload_progressbar {
	background-color: white;
	height: 13px;
	width: 100%;
	border-radius: 13px;
	overflow: hidden;
	display: block;
}
.gfield_fileupload_progressbar_progress {
	background-color: var(--pink);
	height: 13px;
	width: 0;
	transition: width 0.25s ease-in-out;
	display: block;
}

.gform_page_disclaimer,
.gform_footer,
.gform_page_footer,
.gfield:not(.gfield--type-section) {
	width: calc(50% - 5%);
	margin: 0 auto 0 5%;
}
.form_saved_message_emailform .gfield {
	width: 100%;
	margin: 0 auto 0 auto;
}
.gfield.documentspage {
	width: 60%;
	margin: 0 auto 0 auto;
}
.gform_page_disclaimer {
	margin-bottom: 5em;
}
.gform_footer,
.gform_page_footer {
	margin-top: 5em;
	margin-bottom: 5em;
}
#gform_2 .gfield {
	width: 100%;
	margin-left: 0;
	margin-right: auto;
	margin-top: 2em;
}
#gform_2 .gform_footer {
	width: 100%;
	margin-left: 0;
	margin-right: auto;
}
.ginput_container_consent {
	display: flex;
	flex-wrap: nowrap;
	column-gap: 1em;
	align-items: center;
}
.ginput_container_consent input[type="checkbox"] {
	appearance: none;
    padding: 1.5em 3em;
    text-align: center;
    cursor: pointer;
    display: block;
    border-radius: 8px;
    border: 5px solid rgba(48, 39, 60, 0.25);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0);
    transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 12px;
}
.ginput_container_consent input[type="checkbox"]:checked {
	border: 5px solid rgba(48, 39, 60, 1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.ginput_container_consent input[type="checkbox"]:before {
	content: url('img/consent-no.svg');
    width: 55px;
    height: 55px;
    display: block;
    margin: 0 auto 0 auto;
}
.ginput_container_consent input[type="checkbox"]:checked:before {
	content: url('img/consent-yes.svg');
}
/* sidebar */
.sidebar {
	will-change: transform, position;
	position: absolute;
	display: block;
	width: 40%;
	right: 0;
	margin: calc(5em - 5em) 5% 0 auto;
	height: 100svh;
	overflow-y: scroll;
	top: 0;
	padding-top: 5em;
	padding-bottom: 5em;
	opacity: 0;
}
.sidebar.unpinned {
	height: 0;
	padding: 0;
}
.sidebar-inner {
	background-color: var(--grey);
	padding: 2em;
	border-radius: 8px;
}
body.page-template-template-home .sidebar-section {
	display: none;
}
.scoring {
	display: flex;
	flex-wrap: nowrap;
	column-gap: 1em;
	list-style: none;
	padding: 0;
	margin: 1em auto 2em auto;
	justify-content: start;
}
.scoring button {
	border: none;
	background-color: transparent;
	text-align: center;
	font-size: 12px;
	line-height: 12px;
	text-transform: uppercase;
	padding: 0;
}
.scoring button img {
	display: block;
	margin: 0 auto 10px auto;
	padding: 5px;
	width: calc(10px + 55px);
	height: 100%;
	border-radius: calc(10px + 55px);
	border: 5px solid rgba(48,39,60,0);
	transition: border 0.25s ease-in-out;
}
.scoring button img:hover {
	border: 5px solid rgba(255,255,255,1);
}
.scoring button.active img {
	border: 5px solid rgba(48,39,60,1);
}
.guidance {

}
.guidance > div {
	display: none;
}
.sidebar-section[data-sidebar="10"] .guidance > div {
	display: block;
}
.guidance p {
	margin: 0;
	padding: 0.5em 0 0.5em 0;
	border-bottom: 1px solid #bab6be;
}

.gfield .revealer {
	display: inline-block;
	position: relative;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 0.8em;
	line-height: 1.0em;
	font-family: 'Futura PT Bold';
}
.gfield .revealer::after {
	content: '\24D8';
	position: absolute;
	left: 100%;
	padding-left: 5px;
	text-transform: lowercase;
}
.gfield .revealed {
	display: none;
	background-color: var(--grey);
    padding: 1em;
    border-radius: 8px;
    margin-top: 10px;
	font-size: smaller;
	line-height: 1.444em;
}
.gfield .revealed ul,
.gfield .revealed ol {
	margin: 0;
}


/*------------------------------------*\
    IMAGES
\*------------------------------------*/

.score {
	width: 55px;
	height: 55px;
	display: inline-block;
	margin: calc(10px + 0.5em) 0 10px 0;
}


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face{
	font-family:"Futura PT Bold";
	src:url("fonts/88a061c2-3303-401d-85e9-619b5ea5f5af.eot?#iefix");
	src:url("fonts/88a061c2-3303-401d-85e9-619b5ea5f5af.eot?#iefix") format("eot"),url("fonts/1a34942e-33ed-43bb-b229-7460d55b49f7.woff2") format("woff2"),url("fonts/baecea54-cfd3-4578-8717-abf89eba62b6.woff") format("woff"),url("fonts/f275eebe-30f5-4068-9294-51dc44c8409e.ttf") format("truetype");
}
@font-face{
	font-family:"Futura PT Medium";
	src:url("fonts/FuturaStd-Medium.eot?#iefix");
	src:url("fonts/FuturaStd-Medium.eot?#iefix") format("eot"),url("fonts/FuturaStd-Medium.woff2") format("woff2"),url("fonts/FuturaStd-Medium.woff") format("woff"),url("fonts/FuturaStd-Medium.ttf") format("truetype");
}
@font-face{
	font-family:"Helvetica Now Text Regular";
	src:url("fonts/34aa1526-948d-4e18-9bf7-fd91b4eae796.eot?#iefix");
	src:url("fonts/34aa1526-948d-4e18-9bf7-fd91b4eae796.eot?#iefix") format("eot"),url("fonts/5eec4451-e90c-42e7-b4d8-9b8654a65568.woff2") format("woff2"),url("fonts/f7cf763b-e79b-4c28-af92-803e0c3f16d4.woff") format("woff"),url("fonts/4f32bc08-77d9-4675-bb6a-93ac6cc69cc7.ttf") format("truetype");
}
@font-face{
	font-family:"Helvetica Now Text Medium";
	src:url("fonts/3785b819-f218-40fd-a3bc-9ec69749b7bf.eot?#iefix");
	src:url("fonts/3785b819-f218-40fd-a3bc-9ec69749b7bf.eot?#iefix") format("eot"),url("fonts/2fd3ef81-07ed-45b4-a344-7a0defbdadcf.woff2") format("woff2"),url("fonts/52492279-0374-4238-ba8b-751b50089cf0.woff") format("woff"),url("fonts/2f2d2a98-c303-4af0-8b3d-9f4a757b1a16.ttf") format("truetype");
}
@font-face{
	font-family:"Helvetica Now Text Bold";
	src:url("fonts/c193c18d-e4dc-4120-8e8a-09aeccba0d45.eot?#iefix");
	src:url("fonts/c193c18d-e4dc-4120-8e8a-09aeccba0d45.eot?#iefix") format("eot"),url("fonts/2a13627f-dba8-48e1-935c-a404f5293139.woff2") format("woff2"),url("fonts/ce7a1fe7-2605-427a-b064-a01ebce69295.woff") format("woff"),url("fonts/30856021-7394-4e14-b917-357ff12e6ebf.ttf") format("truetype");
} 

h1 {
	text-transform: uppercase;
	font-family: 'Futura PT Bold';
	font-weight: normal;
	font-size: clamp(40px, 5vw, 50px);
}
h2 {
	text-transform: uppercase;
	font-family: 'Futura PT Bold';
	font-weight: normal;
	font-size: clamp(25px, 3vw, 30px);
	color: var(--pink);
	margin: 1.5em 0 0.5em 0;
	line-height: 1.1em;
}
h2 i {
	font-style: normal;
	color: var(--purple);
}
.sidebar h2 {
	margin-top: 0;
}
h3 {
	font-family:"Helvetica Now Text Medium";
	font-weight: normal;
	font-size: clamp(20px, 2.5vw, 24px);
	letter-spacing: -0.015em;
	line-height: 1.333em;
	margin: 0 auto 1em auto;
}
p {
	margin: 0 0 1em 0;
}
p strong {
	font-family:"Helvetica Now Text Bold";
	font-weight: normal;
}
p small {
	display: inline-block;
	font-size: 0.75em;
	line-height: 1;
}



/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:820px) {
	.gfield.documentspage {
		width: 90%;
	}
	.gform_page_disclaimer,
	.gform_footer,
	.gform_page_footer,
	.gfield:not(.gfield--type-section) {
		width: 90%;
    	margin: 0 auto 0 auto;
	}

	.gform_footer input,
	.gform_footer button,
	.gform_page_footer input,
	.gform_page_footer button {
		font-size: 1em;
		padding: 2em 1em 2em 1em;
	}

	.sidebar {
		position: relative;
		height: auto;
		opacity: 1;
		width: 90%;
        will-change: unset;
		overflow: unset;
	}
	.sidebar-inner {
		padding: 1em;
	}
	.scoring {
		column-gap: 0;
		margin: 1em auto 1em auto;
	}
	.scoring button img {
		width: 40px;
		height: 40px;
		padding: 0;
	}
	.gform_footer,
	.gform_page_footer {
		grid-gap: 1em;
	}


	.ffc-wrapper {
		display: block !important;
	}
	.footer-inner > div {
		flex-basis: 100%;
	}

}


@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {

}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
