/*
Theme Name: House Grader
Theme URI: 
Description: House Grader Theme
Version: 1.0
Author: 
Author URI: 
Tags: 
*/

/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
li{list-style:none}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
-webkit-appearance: none;
border-radius: 0;
}

:root {
	--black:#231f20;
    --grey: #4c4d4f;
    --midgrey:#e7e7e8;
    --lightgrey:#939598;
    --white: #ffffff;
    --gold: linear-gradient(300deg, rgba(250,233,79,1) 0%, rgba(128,90,41,1) 100%);
    --goldlight: linear-gradient(300deg, rgba(250,233,79,0.5) 0%, rgba(128,90,41,0.5) 100%);	
    --bronze: linear-gradient(2300deg, rgba(122,82,38,1) 0%, rgba(209,165,95,1) 100%);
    --cream:#e9e1d7;
    --green:#40ae49;
    --yellow:#fcb348;
    --red: #d2232a;
    --brown:#8b6844;
    --hero: linear-gradient(90deg, rgba(210,188,161,1) 0%, rgba(238,225,162,1) 50%, rgba(234,213,176,1) 100%); 
    --goldtext: #c89b54;
}

/* 
==========================================================================
GLOBAL & WP SPECIFIC STYLES
==========================================================================
*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-text-size-adjust: none; 	
}

input, textarea, select {
    -webkit-border-radius:0; 
    border-radius:0;
}

img,
audio,
video,
canvas {
	max-width: 100%;
}

html {
	min-height: 100%;
	margin-bottom: 1px;
	overflow: -moz-scrollbars-vertical!important; 
}

::selection {
	background: var(--brown);
	color:var(--white);
}

::-moz-selection {
	background: var(--brown);
	color:var(--white);
}

::-webkit-selection {
	background: var(--brown);
	color:var(--white);
}

.cf:before,.cf:after {content: " "; /* 1 */    display: table; /* 2 */}
.cf:after {clear: both;}
.cf {clear: both;}

strong, b {
	font-weight:bold;
}

em, i {
	font-style:italic;
}

img.alignright {
	float:right;
	margin:0 0 2em 1em;
}

img.alignleft {
	float:left;
	margin:0 2em 1em 0;
}

img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignright {
	float:right;
	margin:0 0 2em 1em;
}

.alignleft {
	float:left;
	margin:0 0 2em 1em;
}

img.wp-smiley {
	float: none;
	margin: 0 0 0 5px;
	vertical-align:middle;
}

p {
	margin: 0 0 20px 0;
}

a {
	color: var(--black);
	text-decoration: none;
}

a:hover {
	color: var(--yellow);
	text-decoration: none;
}


/* 
==========================================================================
H & LINKS
==========================================================================
*/

h1 {
	font: 30px 'ainslie-sans', Helvetica , Arial, sans-serif;	
	margin:0 0 20px 0;
	padding:0;
}

h2 {
	font: 26px 'ainslie-sans', Helvetica , Arial, sans-serif;	
	margin:0 0 20px 0;
	padding:0;
}

h3 {
	font: 22px 'ainslie-sans', Helvetica , Arial, sans-serif;
	margin:0 0 20px 0;
	padding:0;
}

h4 {
	font: 20px 'ainslie-sans', Helvetica , Arial, sans-serif;
	margin:0 0 20px 0;
	padding:0;
}

h5 {
	font: 18px 'ainslie-sans', Helvetica , Arial, sans-serif;
	margin:0 0 20px 0;
	padding:0;
}


/* 
==========================================================================
GENERAL
==========================================================================
*/

body {
	background: var(--white);
	color: var(--black);
	font: 16px/1.8 'ainslie-sans', Helvetica, Arial, sans-serif;
	margin:0;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

.container {
	width:100%;
	margin: 15px auto 80px auto;
	max-width: 600px;
}

.inner {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0;
}

/* 
==========================================================================
HEADER
==========================================================================
*/

header {
	width:100%;
	margin: 0 auto;
	max-width: 600px;
}

header .inner {
	padding: 0 10px;
}

.logo {
  width: 300px;
  height: auto;
  margin: 25px 0 0 0;
	float: left;
  transition: all 0.3s ease-in;
}


.logor {
  width: 100px;
  height: auto;
  margin: 25px 0 0 0;
	float: right;
  transition: all 0.3s ease-in;
}

.nav-top {
  background: var(--lightgrey);
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  max-width: 300px;
  float: right;
  margin: 0 0 15px 0;
}

.nav-top a {
	color: var(--white);
	font-weight: 700;
	font-size: 14px;
}

.nav-top a::after {
content:" | ";
	padding: 0 5px;
}

.nav-top a:last-of-type:after {
content:"";
}


.nav-top a:hover {
	color: var(--black);
}

nav {
	display: block;
	margin: 10px 0 0 0;
}

.nav-icons {
  display: inline-block;
  margin: 30px 0 0;
font-size: 30px;
}
.nav-icons a {
  display: inline-block;
  margin: 0 5px;
font-size: 30px;
}

#user-registration.vertical, #user-registration.horizontal {
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none !important;
}

#user-registration.vertical {
  padding: 0!important;
  border-radius: 0!important;
}

#user-registration {
  margin: 0!important;
}

#user-registration.vertical .user-registration-MyAccount-navigation {
  border-radius: 0!important;
  background: #e7e7e8!important;
  padding: 20px 0!important;
}




.hero {
	background: var(--hero);
	padding: 50px;
	margin: 0 auto;
	height: 600px;
}

.hero-text {
  position: absolute;
  top: 20px;
  left: 20px;
}

.hero-text h1 {
	color: var(--white);
	font-size: 40px;
	font-weight: 900;
	margin: 0;
}

.hero-image {
  position: absolute;
  max-width: 700px;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.search-button {
  font-size: 22px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
}

.shield {
  position: absolute;
  right: -10px;
  top: 280px;
  height: 350px;
  width: 350px;
}

.shield-text {
  position: absolute;
  top: 120px;
  font-size: 40px;
  font-weight: 700;
  width: 300px;
  line-height: 40px;
  right: -25px;
}

.shield {
	color: var(--white);
	transition: all 0.3s ease-in-out;    
}

.shield:hover {
	opacity: 0.9;
	color: var(--white);
	transition: all 0.3s ease-in-out;    
}

.three-grid {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    justify-items: stretch;
    align-items: inital;
    margin: 100px auto;
}

.three-image {
  position: relative;
	transition: all 0.3s ease-in-out;    
}

.three-image:hover {
	opacity: 0.75;
	color: var(--white);
	transition: all 0.3s ease-in-out;    
}


.three-text {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 50%;
  text-align: center;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.three-text h3 {
  font: 30px 'ainslie-sans', Helvetica , Arial, sans-serif;
  color: var(--white);
  font-weight: 700;
}

.news-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 75px;
    justify-items: stretch;
    align-items: inital;
    margin: 50px auto;
}

.news-item {
	color: var(--goldtext);
}

.news-item h3 {
	font-weight: 700;
	color: var(--black);
}

.news-item img {
	display: block;
	width: 100%;
	height: auto;
	margin: 10px auto 20px auto;
	border-radius: 10px;
}

.grey-button {
	padding: 10px 30px;
	color: var(--white);
	background: var(--grey);
	font-weight: 700;
	border-radius: 5px;
	display: inline-block;
	margin: 10px 0 0 0;
}

.grey-button:hover {
	color: var(--white);
	background: var(--gold);
}

.line-title {
	position: relative;
		padding: 20px 0;
}

.line-title h1 {
  margin: 0 20px;
  font-weight: 700;
  font-size: 20px;
  text-align: left;
}

.line-title::before {
  content: "";
  width: 100%;
  height: 4px;
  background: var(--gold);
  position: absolute;
  top: 0;
}

.line-title::after {
  content: "";
  width: 100%;
  height: 4px;
  background: var(--gold);
  position: absolute;
  bottom: 0;
}

.social-block {
	margin: 50px auto;
}

.social-block-items {
	text-align: center;
	padding: 20px 0;
}

.social-block-items a {
	font-size: 40px;
	color: var(--goldtext);
	margin: 0 10px;
}

.social-block-items a:hover {
	font-size: 40px;
	color: var(--grey);
	margin: 0 10px;
}

.four-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    justify-items: stretch;
    align-items: inital;
    margin: 50px auto;
}

.four-item {
	text-transform: uppercase;
}

.centered {
	text-align: center;
	color: var(--goldtext);
	font-size: 30px;
	font-weight: 700;
	margin: 50px auto;
}

.two-col-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    justify-items: stretch;
    align-items: inital;
    margin: 50px auto;
}

.sing-news-image {
	margin: 30px auto;
}

.sing-news-image img {
	margin: 0 auto;
	width: 100%;
	height: auto;
}

.log-title {
	text-align: center;
	color: var(--goldtext);
	font-size: 40px;
	font-weight: 700;
	margin: 25px auto;
}

.log-title-small {
	text-align: center;
	color: var(--goldtext);
	font-size: 30px;
	font-weight: 700;
	margin: 20px auto;
}

.log-logo {
	margin: 0 auto;
	text-align: center;
}

.login-block {
	margin: 0 auto 100px auto;
}

.login-block h3 {
    margin: 0 auto;
    text-align: center;
    margin: 20px 0;
    font-weight: 700;
}

/* 
==========================================================================
SOCIALS
==========================================================================
*/

.fixed-social {
  position: fixed;
  left: 0;
  top: 300px;
  z-index: 999;
}

.fixed-social a {
  	background: var(--black);
  	padding: 10px 20px;
  	margin: 0 0 5px 0;
  	border-top-right-radius: 5px;
  	border-bottom-right-radius: 5px;  	
	font-size: 20px;
	display: block;
	color: var(--white);
	transition: all 0.3s ease-in-out;    
}

.fixed-social a:hover {
	color: var(--brown);
	transition: all 0.3s ease-in-out;    
}

.side-social {
	margin: 20px;
}

.side-social h5 {
	color: var(--white);
	font-size: 22px;
	margin: 10px 0 10px 20px;
}

.side-social a {
	display:inline-block;
	margin:0;
	font-size: 26px;
	margin: 5px 20px 0 5px;
	padding: 0;
	transition: all 0.3s ease-in;		
}

.side-social a:hover {
	opacity: 0.5;
	background: none!important;
	transition: all 0.3s ease-in-out;		
}

/* 
==========================================================================
Knowledge
==========================================================================
*/

.know-hero {
  background: var(--hero);
  padding: 50px;
  margin: 0 auto;
}

.know-hero .inner {

	margin: 0 auto;
	text-align:center;
}

.know-hero h1 {
	font-weight: 700;
}

.know-hero .sf-input-select,
.know-hero .sf-input-text {
  color: var(--black);
  font: 16px/1.8 'ainslie-sans', Helvetica, Arial, sans-serif;
  border: 2px solid var(--black);
  background: none;
  width: 100%;
  padding: 10px;
  border-radius: 10px !important;
	margin: 10px auto;
}


.know-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-items: stretch;
    align-items: inital;
	margin: 30px auto;
}

.know-item {
  position: relative;
  border: 1px solid var(--lightgrey);
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
	transition: all 0.3s ease-in-out;    
}

.know-item:hover {
	opacity:0.7;
	transition: all 0.3s ease-in-out;    
}


.know-item img {
display: block;
	max-width: 100px;
	margin: 0 auto 10px auto;
}

.know-item h3 {
	color: var(--black);
	margin:0 0 5px 0;
}

.know-item h5 {
  color: var(--goldtext);
  margin: 0;
  font-size: 15px;
}

.know-line h5 {
  font: 16px 'ainslie-sans', Helvetica , Arial, sans-serif;
  margin: 10px 0 0 20px;
  color: var(--goldtext);
  border: 2px solid var(--goldtext);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
}

.knowledge-block {
	margin: 50px auto;

}

.know-tax {
  font: 14px 'ainslie-sans', Helvetica , Arial, sans-serif;
    font-weight: normal;
  font-weight: 600;
  margin: 10px 0 0 20px;
  color: var(--goldtext);
  border: 2px solid var(--goldtext);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
  position: absolute;
  top: 5px;
  right: 15px;
}

/* 
==========================================================================
FOOTER
==========================================================================
*/

footer {
	clear:both;
	background: var(--bronze);
	padding: 50px 0;
	font-size: 16px;
	text-transform: uppercase;
}

.footer-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    justify-items: stretch;
    align-items: inital;
    margin: 0 auto;
}

.footer-grid h5 {
	font-weight: 700;
	color: var(--white);
	border-bottom: 1px solid var(--white);
	padding: 0 0 5px 0;
	font-size: 16px;
	margin: 0 0 10px 0;
}

footer a {
	color: var(--white);
	font-size: 15px;
}

.foot-social {
	margin: 30px 0;
}

.foot-social a {
	font-size: 35px;
	color: var(--white);
	margin: 0 10px;
}

.foot-social a:hover {
	font-size: 35px;
	color: var(--grey);
	margin: 0 10px;
}

.colo-left {
	float: left;
	color: var(--white);	
}

.colo-right {
	float: right;
	color: var(--white);	
}


/* 
==========================================================================
MOBILE NAV
==========================================================================
*/

.nav-wrapper {
  background: var(--black);
  height: 100%;
  padding: 80px 0px 0px 0px;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: visibility 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, visibility 0.5s;
  transition: transform 0.5s, visibility 0.5s, -webkit-transform 0.5s;
  visibility: hidden;
  width: 400px;
  overflow-x: hidden;
  z-index: 999999999999999;
}

.simplebar-placeholder {
    height: auto !important;
}

.side-item {
	position: relative;
}

.nav-wrapper a {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  border: 0;
  transition: all 0.3s ease-in;
  text-transform: uppercase;
}

.nav-wrapper a:hover {
	color: var(--white);
	background: var(--brown);
	border: 0;
	transition: all 0.3s ease-in-out;	
}

.nav-button {
	display: inline-block;
	color: var(--lime);	
	font-size: 30px;
	margin: 0 0 0 20px;
	transition: all 0.3s ease-in-out;	
	z-index: 999;
  vertical-align: middle;
}

.nav-button:hover {
	opacity: 1;
	color: var(--brown);	
	transition: all 0.3s ease-in-out;	
}

.nav-wrapper .nav-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
	transition: all 0.3s ease-in;
}

.nav-wrapper .parent ul {
	display: none;
}

.nav-wrapper .nav-buttons:hover {
	opacity: 0.6;
	transition: all 0.3s ease-in-out;
}

.nav-visible .nav-wrapper {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}

.nav-wrapper .nav {
  position: relative;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
    padding: 20% 25% 0 25%;
}

.nav-visible .nav {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}


.nav-wrapper .nav a:focus, .nav-wrapper .nav a:hover {
  text-decoration: none;
	transition: all 0.3s ease-in-out;	
    color: var(--white);
}

.button-lines {
	font: 16px Helvetica, Epilogue, sans-serif;	
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
  padding: 1rem 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.menutag {
	margin: 5px 0 0 15px;
    vertical-align: middle;
    display: inline-block;
    font-size: 16px;
    text-transform: none;
    color: var(--white);
}

.nav-visible .lines, .nav-visible .lines:after, .nav-visible .lines:before {
  background:var(--white);
}

.nav-visible .menutag {
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
}

.nav-visible .lines::after, .nav-visible .lines::before {
    height: 0.2rem;
    width: 2rem;
}

.close {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;  
    margin: 10px 0 0 0;
 		line-height: 12px;   
}

.close img {
	width: 25px;
}

.closer {
    display: inline-block;
    vertical-align: middle;	
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;  
    cursor: pointer;
	transition: all 0.3s ease-in-out;	
    position: absolute;
    right: 50px;
    top: 50px;
}

.closer:hover {
	opacity: 0.5;
	transition: all 0.3s ease-in-out;		
}

.side-item {
    position: relative;
    margin: 45px 0 0 0;
}

.nav-wrapper .parent ul {
    padding: 0;
    margin: 0;
}

.nav-wrapper .parent {
	position: relative;
	cursor: pointer;
}

.nav-wrapper a:hover,
.nav-wrapper .parent a:hover {
	color: var(--lime)!important;
}

.nav-wrapper .parent::after {
  position: absolute;
  right: 10px;
  top: 13px;
  color: var(--white);
  cursor: pointer;
  content: "\2b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 125px;
  text-align: right;
  font-size: 15px !important;
}

.nav-wrapper a {
	padding: 10px 20px;
}

.nav-wrapper .minus:after {
	content: "\f068";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;	
  font-size: 12px!important;
  top:13px;
}

.nav-wrapper ul {
	margin: 0;
} 

.nav-wrapper li {
	list-style: none;
	padding: 0;
}
.nav-wrapper .parent ul a {
	color: var(--white);
	padding: 10px;
	background: var(--brown);
}

.nav-wrapper .parent ul a:hover {
	color: var(--white);
	padding: 10px;
}

.side-social {
	margin: 20px;
}

.side-social h5 {
	color: var(--white);
	font-size: 22px;
	margin: 10px 0 10px 20px;
}

.side-social a {
	display:inline-block;
	margin:0;
	font-size: 26px;
	margin: 5px 20px 0 5px;
	padding: 0;
	transition: all 0.3s ease-in;		
}

.side-social a:hover {
	opacity: 0.5;
	background: none!important;
	transition: all 0.3s ease-in-out;		
}

.nav-wrapper .parent li {
	position: relative;
}

.nav-wrapper .parent li a:hover {
	padding: 10px 20px 10px 50px;
}

.nav-wrapper .parent li::before {
  position: absolute;
  left: 30px;
  top: 15px;
  color: var(--white);
  content: "\f068";
  font-size: 10px!important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.nav-wrapper .parent ul {
  margin: 0;
  position: relative;
  background: none;
}
.nav-wrapper .parent ul a {
	padding: 10px 20px 10px 50px;
}





/* 
==========================================================================
MEDIA QUERIES
==========================================================================
*/

@media screen and (max-width: 1200px) {
.hero-text {
  position: relative;
  top: 0;
  left: 0;
  margin: 0 0 30px 0;
}

.hero-text h1 {
  display: inline-block;
}

.hero-image {
  position: absolute;
  max-width: 600px;
  top: 65px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.three-grid {
  grid-column-gap: 30px;
}

}


@media screen and (max-width: 1100px) {
.know-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
	
}



@media screen and (max-width: 900px) {
.news-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    justify-items: stretch;
    align-items: inital;
    margin: 50px auto;
}

.four-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.colo-left,
.colo-right {
  float: none;
  color: var(--white);
}

}



@media screen and (max-width: 768px) {

.fixed-social {
	display: none;
}

.hero-text {
	 text-align: center;
}

.hero-text h1 {
  font-size: 34px;
}

.hero {
	padding: 50px 0px;
}

.three-text h3 {
	font-size: 22px;
}
	
.know-grid {
  grid-template-columns: 1fr 1fr;
}	

}


@media screen and (max-width: 615px) {

.two-col-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-items: stretch;
    align-items: inital;
    margin: 50px auto;
}

.three-grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.three-image {
  position: relative;
  transition: all 0.3s ease-in-out;
  max-width: 300px;
  margin: 0 auto;
}



.nav {
	display: none!important;
}

.nav-icons {
    float: right;
    margin: 10px 20px 0 0;
}	
	
	
.nav-top {
  background: var(--lightgrey);
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  max-width: 300px;
  float: none;
  margin: 10px 0 0 0;
  display: none;
}

.shield {
  position: relative;
  right: auto;
  top: 170px;
  height: 350px;
  width: 350px;
  left: 20px;
  margin: 0 auto;
  display: block;
}

}


@media screen and (max-width: 480px) {

.news-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

	.logo {
		width: 200px;
	}	
	
	.logor {
		width: 75px;
		margin: 20px 0 0 0;
	}	
	
	
.nav-section {
  float: right;

}

.nav-top {
	display: none;
}

.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}

.know-grid {
  grid-template-columns: 1fr;
}		
	
}


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

 .container {
	min-width:240px;
	width:100%;
 }
 
}


.single-prop {
    width: 100%;
    display: grid;
    grid-template-columns: 10% 90%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-items: stretch;
    align-items: inital;
    margin: 10px;
	border-top: 2px solid var(--grey);
	padding: 20px 0;
}

.prop-img {
	max-width: 150px;
	margin:0;
	padding:0;

}

.prop-img img {
	width:100%;
	height:auto;
	display:block;
	margin:0;
	padding:0;
	border: 2px solid var(--grey);	
}

.prop-info h2 {
	margin: 0;
	font-size:20px;
	font-weight:700;
}

.prop-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--goldtext);
}

.prop-info h5 {
  margin: 5px 0 10px 0;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 15px;
}

.icon-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-items: stretch;
    align-items: inital;
    margin: 10px;
}

.hg-role {
  text-align: center;
  font-weight: 700;
  margin: 0;
}

.dash-intro {
  margin: 20px 0 40px 0;
  text-align: left;
  background: var(--goldtext);
  padding: 20px;
  color: white;
  font-size: 16px;
}

.dash-intro h4 {
  font: 18px 'ainslie-sans', Helvetica , Arial, sans-serif;
	font-weight: 700;
  margin: 0;
  padding: 0;
}


.grid-item {
	border: 5px solid var(--midgrey);
	padding: 20px;
	text-align:left;
	position:relative;
}

.grid-item .rating-block {
  display: block;
  width: 50px;
	margin:0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.grid-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.grid-item i {
  color: var(--yellow);
  font-size: 25px!important;
  margin: 10px!important;
  display: inline-block;
  vertical-align: middle;
}



@media screen and (max-width: 680px) {
.icon-grid {
    display: block;
    margin: 10px 0;
}	
	
.grid-item {
	border:0!important;
  border-top: 5px solid var(--midgrey)!important;

  display: block;

}	
	
}

.single-prop:hover,
.grid-item:hover {
	color: var(--black);
}

.grid-item i {
  color: var(--yellow);
  font-size: 50px;
  margin: 20px 0;
}

.grid-item h3 {
  font-size: 16px;
	font-weight:700;
  margin: 0;
}

.grid-item h5 {
  font-size: 16px;
	font-weight:700;
  margin: 10px 0;
}

.ur-frontend-form button, 
.ur-frontend-form button[type=submit], 
.ur-frontend-form input[type=submit],
.ur-frontend-form input[type="submit"],
.user-registration-form-row .ur-frontend-form.login .ur-reset-password-btn.user-registration-Button.button,
.ur-frontend-form .ur-button-container .ur-submit-button,
.go,
.acf-button,
.acf-form-submit input[type="submit"],
.add-button {
	display:inline-block;
	background: var(--yellow) !important;
	padding: 10px 30px;
	font-weight:700!important;
	color: var(--black) !important;
	margin: 20px 0;
	border: 0!important;
	font: 16px 'ainslie-sans', Helvetica, Arial, sans-serif;
		cursor:pointer!important;
}

.ur-frontend-form button:hover, 
.ur-frontend-form button[type=submit]:hover, 
.ur-frontend-form input[type=submit]:hover,
.ur-frontend-form input[type="submit"]:hover,
.ur-frontend-form input[type="submit"]:hover,
.ur-frontend-form .ur-button-container .ur-submit-button:hover,
.go:hover,
.acf-button:hover, 
.acf-form-submit input[type="submit"]:hover,
.add-button:hover {
	background: var(--black) !important;
	padding: 10px 30px;
	font-weight:700!important;
	color: var(--yellow) !important;
	font: 16px 'ainslie-sans', Helvetica, Arial, sans-serif;
	cursor:pointer!important;	
}

.ur-lost-password-title {
	color: var(--goldtext) !important;
}
.user-registration-LostPassword.lost_password {
	float: right;
    width: auto;
    display: inline-block;
    margin: 10px 0;
    font-size: 14px;
}
.user-registration-form__label.user-registration-form__label-for-checkbox.inline {
    float: left;
    width: auto;
    display: inline-block;
}

.updated,
.acf-field.acf-field-text:first-of-type {
  display: none !important;
}

.acf-fields > .acf-field {
  border: 0!important;
}


.knowledge-block {
  margin: 20px auto;
	min-width:400px;
}

.fancybox-container {
  z-index: 999!important;
}


.acf-fields > .acf-field {
  padding: 0!important;
}

.acf-tab-wrap.-left .acf-tab-group {
  width: 140px!important;
}

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
  max-width: 800px!important;
  width: 100% !important;
}

.fancybox-image {
max-width: 600px;
  width: auto!important;
  height: 100%!important;

}


.prop-info {
  position: relative;
}

.more-arrow {
  position: absolute;
  right: 60px;
  font-size: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
}

.rating-block {
  display: block;
  margin: 25px auto;
  text-align: center;
  width: 50px;
}

.rating-block img {
  max-width: 30px;
  margin: 10px 5px;
}

.rating-blocks {
  display: block;
  margin: 0;
}

.rating-blocks img {
  max-width: 30px;
  margin: 10px 5px;
}

.acf-field .acf-label label {
  display: block;
  font-weight: 700!important;
  margin: 10px 0!important;
  padding: 0;
	outline:none!important;
}

.acf-radio-list li {
  display: inline-block!important;
  margin: 0 5px !important;
  padding: 0;
  float: none;
  font-size: 0 !important;
	cursor:pointer!important;
	outline:none!important;
}

.acf-radio-list {
  position: relative!important;
  display: inline-block!important;
  left: 0 !important;
  top: 0 !important;
  margin: 10px 0!important;
  background-color: none!important;
  width: auto!important;
  height: 60px;
  border-radius: 100px;
}


.acf-radio-list {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  margin-left: -60px;
  margin-top: -160px;
  background-color: #e0e0e0;
  width: 175px;
  height: 60px;
  border-radius: 100px;
	outline:none!important;
}

.acf-radio-list li input[type="radio"] {
  appearance: none;
  user-select: none;
  outline: none;
  width: 30px;
  height: 30px;
  margin-top: 15px;
  margin-left: 18px;
  border-radius: 100%;
	cursor:pointer!important;	
	outline:none!important;
}
.acf-radio-list li input[type="radio"] {
  background-color: #00b050;
  box-shadow: 0em 0px 0px 5px #00b050;
}
.acf-radio-list li input[type="radio"]:hover {
  background-color: #009c47;
  box-shadow: 0em 0px 0px 5px #009c47;
}
.acf-radio-list li input[type="radio"]:checked {
  background-color: #00b050;
  box-shadow: 0em 0px 0px 5px #231f20;
}
.acf-radio-list li:nth-of-type(2) input[type="radio"] {
  background-color: #ffc000;
  box-shadow: 0em 0px 0px 5px #ffc000;
}
.acf-radio-list li:nth-of-type(2) input[type="radio"]:hover {
  background-color: #f1b500;
  box-shadow: 0em 0px 0px 5px #f1b500;
}
.acf-radio-list li:nth-of-type(2) input[type="radio"]:checked {
  background-color: #ffc000;
  box-shadow: 0em 0px 0px 5px #231f20;
}
.acf-radio-list li:nth-of-type(3) input[type="radio"] {
  background-color: #ff0000;
  box-shadow: 0em 0px 0px 5px #ff0000;
}
.acf-radio-list li:nth-of-type(3) input[type="radio"]:hover {
  background-color: #e60000;
  box-shadow: 0em 0px 0px 5px #e60000;
}
.acf-radio-list li:nth-of-type(3) input[type="radio"]:checked {
  background-color: #ff0000;
  box-shadow: 0em 0px 0px 5px #231f20;
}

.acf-radio-list li:nth-of-type(4) input[type="radio"] {
  background-color: #fff;
  box-shadow: 0em 0px 0px 5px #e6e6e6;
}
.acf-radio-list li:nth-of-type(4) input[type="radio"]:hover {
  background-color: #e6e6e6;
  box-shadow: 0em 0px 0px 5px #e6e6e6;
}
.acf-radio-list li:nth-of-type(4) input[type="radio"]:checked {
  background-color: #fff;
  box-shadow: 0em 0px 0px 5px #231f20;
}




.green-light {
	  background-color: #00b050;
	height:40px;
	width:40px;
	border-radius: 50%;
}

.yellow-light {
	  background-color: #ffc000;
	height:40px;
	width:40px;
	border-radius: 50%;
}

.red-light {
	  background-color:  #ff0000;
	height:40px;
	width:40px;
	border-radius: 50%;
}

.acf-field-image {
	padding:0 0 30px 0!important;
	position: relative!important;
}

.acf-image-uploader {
	padding:0 0 30px 0!important;
	position: relative!important;
}


.acf-field-image:after,
.acf-field-radio::after {
  height: 2px;
  content: "";
  width: 100%;
  background: var(--black);
  position: absolute;
  bottom: 0;
}

.info-box {
  background:var(--goldlight);
  color: var(--black);
  font-size: 15px;
	margin:-2px 0 5px 0!important;
}

.info-box::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--black);
  display: block;
  bottom: -20px;
  position: relative;
  margin: 0 0 30px 0;
}

.info-box .acf-label {
  padding: 10px 0 0 20px;
}

.info-box .acf-input {
  vertical-align: top;
  padding: 0 0 10px 20px;
}

.ur-frontend-form .ur-form-row .ur-form-grid input[type="email"],
.ur-frontend-form .ur-form-row .ur-form-grid input[type="password"],
.ur-frontend-form .ur-form-row .ur-form-grid input[type="text"],
.inp,
.acf-field textarea,
.acf-field input[type="text"] {
  width: 100%;
  padding: 10px!important;
  margin: 0;
  box-sizing: border-box;
  color: var(--black)!important;
  font: 16px 'ainslie-sans', Helvetica, Arial, sans-serif!important;
  border: 2px solid var(--yellow)!important;
}


.na {
	  background-color:  #fff;
display: inline-block;
  vertical-align: middle;
  height: 25px;
  width: 25px;
	border-radius: 50%;
	border: 5px solid var(--midgrey);
}



.hidme {
  display: none;
}

.generate {
  position: absolute;
	font: 16px 'ainslie-sans', Helvetica, Arial, sans-serif;
top: 12px;
  right: 10px;
  background: var(--yellow);
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 15px!important;
  color: white;
	border: 0;
	cursor: pointer;
}

.generate:hover {
  background: var(--goldtext);
  color: var(--white);
	cursor: pointer;
}


.generates {
	display: inline-block;
	margin: 20px 0 0 0;
  background: var(--yellow);
  padding: 10px 20px;
		font: 16px 'ainslie-sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
  border-radius: 15px;
  border-radius: 15px!important;
  color: white;
	border: 0;
	cursor: pointer;
}

.generates:hover {

  background: var(--goldtext);
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 15px;
  color: var(--white);
}

.single-prop p {
	margin:0;
}

.single-prop .rating-blocks {
  display: block;
  margin: 5px 0 0 0;
}

.single-prop .your-rate {
  display: inline-block;
  margin: 0 5px 0 0;
  vertical-align: middle;
}

.single-prop .red-light,
.single-prop .yellow-light,
.single-prop .green-light {
  display: inline-block;
  vertical-align: middle;
  height: 25px;
  width: 25px;
}


.fancybox-close-small::after {
  content: "×";
  position: absolute;
  top: 15px!important;
  right: 15px!important;
  width: 30px;
  height: 30px;
  font: 50px/30px Arial,Helvetica Neue,Helvetica,sans-serif!important;
  color: var(--black)!important;

}

.newprop label {
  font-weight: 700;
  margin: 10px 0;
  display: block;
}

.baths ul,
.dine ul,
.beds ul,
.props ul {
  list-style-type: none;
}



.baths li,
.dine li,
.beds li,
.props li {
  display: inline-block;
}



.baths input[type="radio"][id^="bath"],
.dine input[type="radio"][id^="dine"],
.beds input[type="radio"][id^="bed"],
.props input[type="radio"][id^="cb"] {
  display: none;
}


.baths label,
.dine label,
.beds label,
.props label {
  border: 1px solid #fff;
  padding: 10px;
  display: block;
  position: relative;
  margin: 10px;
  cursor: pointer;
	font-weight:400!important;
}


.baths label:before,
.dine label:before,
.beds label:before,
.props label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 2px solid var(--midgrey);
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

.baths label img,
.dine label img,
.beds label img,
.props label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}


.baths :checked + label,
.dine :checked + label,
.beds :checked + label,
.props :checked + label {
  border-color: #ddd;
}


.baths :checked + label:before,
.dine :checked + label:before,
.beds :checked + label:before,
.props :checked + label:before {
  content: "✓";
  background-color: grey;
  transform: scale(1);
}


.baths :checked + label img,
.dine :checked + label img,
.beds :checked + label img,
.props :checked + label img {
  transform: scale(0.9);
  box-shadow: 0 0 5px #333;
  z-index: -1;
}


.baths span,
.dine span,
.beds span,
.props span {
  display: block;
  text-align: center;
}

.newprop img {
	max-width: 100px;
}

.report-block {
	margin: 20px;
  border-top: 2px solid var(--midgrey);
  padding: 15px 0 0 0;	
}

.report-item {
	position:relative;
  margin: 15px 0;
  border-top: 2px solid var(--midgrey);
  padding: 5px 0 0 0;
}

.report-item.noresult {
  margin: 0;
  padding: 0;
  border: 0;
}

.rate-info .fa-solid.fa-circle-info {
  color: var(--red);
  display: inline-block;
  vertical-align: middle;
}

.rate-info p {
margin:0;
  display: inline-block;
  vertical-align: middle;	
}


.report-block .rating-block {
  display: block;
  margin: 10px auto 5px auto;
  text-align: left;
  width: auto;
}


.report-block .red-light,
.report-block .yellow-light,
.report-block .green-light {
  height: 25px;
  width: 25px;
  display: inline-block;
  vertical-align: middle;	
}

.report-block h5 {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 10px;
  font-weight: 600;
  font-size: 16px;
}

.report-block h2 {
  display: block;
  margin: 0;
  font-weight: 600;
}

.report-grid {
  width: 100%;

}

.rate-info {
  padding: 2px 0 0 4px;
  font-size: 15px;
}


.report-item h4 {
  font: 18px 'ainslie-sans', Helvetica , Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 900;
  color: var(--goldtext);
}

.report-block h4 {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
  font-weight: 600;
  font-size: 18px;
}


/* 
==========================================================================
ACCORDIAN
==========================================================================
*/

.accordian-section .fa, 
.accordian-section .fab, 
.accordian-section .fal, 
.accordian-section .far, 
.accordian-section .fas {
    line-height: 2!important;
}

.accordian-section {
	margin: 15px auto;
}

.accordian-section .report-item {
  margin: 0;
}


.accordian-container {
  width: 100%;
}

.accordian {
	position: relative;
  cursor: pointer;
  	color: var(--goldtext);
  border-top: 2px solid var(--midgrey);
  border-bottom: 2px solid var(--midgrey);
  padding: 15px 0;
  margin:-2px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in;  
}

.accordian:hover {
	opacity: 0.6;
  transition: all 0.3s ease-in-out;  
}

.accordian:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900; 
	content: "\f078";
	position: absolute;
	right: 10px;
	color: var(--goldtext);
	top: 18px;
}

.content {
  padding: 5px 0 20px 0;
}

.less::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900; 
	color: var(--goldtext);	
	content: "\f077";	
}

.accordian:last-of-type {
  border-bottom: 0;
}

.list-view {
	display:none;
}

.acc-view {
	display:none;
}

.active-acc,
.active-list {
	display:block;
}

.view-icons {
  position: absolute;
  right: 10px;
  top: 20px;
  font-size: 20px;
}

.view-list, .view-acc {
	display:inline-block;
	margin: 0 10px;
	cursor:pointer;
}

.view-icons .active {
	color:var(--goldtext);
}

.view-gall {
  cursor: pointer;
  margin: 10px 0 0 0;
  font-weight: 600;
  position: absolute;
  right: 30px;
  font-size: 30px;
  color: var(--goldtext);
  top: 50%;
  transform: translateY(-50%);
}

.unote {
  color: var(--goldtext);
  font-weight: 500;
  font-size: 15px;
  line-height: 18px !important;
}



.short-report-item {
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: center;
  padding: 20px 20px;
  border-top: 2px solid var(--goldtext);
	position: relative;
}

.hg-report {
  position: relative;
  background: var(--cream);
  border: 0;
  padding: 20px 20px 40px 20px;
}

.hg-report p {
	margin:0;
}
.sr-right {

  right: 10px;
  position: absolute;
}

.short-report-item h5 {
  font: 20px 'ainslie-sans', Helvetica , Arial, sans-serif;
    font-weight: normal;
  margin: 10px 0;
  padding: 0;
  font-weight: 700;
}

.short-report-item i {
  color: var(--yellow);
  font-size: 25px;
  vertical-align: middle;
  display: inline-block;
  margin: 0 10px 0 0;
}

.short-shield {
  background: url('https://app.housegrader.co.uk/wp-content/themes/house-grader-theme/images/bronze.svg');
    background-repeat: repeat;
    background-size: auto;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100px;
  width: 100px;
position: relative;
}

.hg-shield {
  background: url('https://app.housegrader.co.uk/wp-content/themes/house-grader-theme/images/gold.svg');
    background-repeat: repeat;
    background-size: auto;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100px;
  width: 100px;
position: relative;	
}

.short-shield span {
  color: white;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  padding: 0;
  position: absolute;
  left: -10px;
  right: 0;
  top: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
}

.short-report {
  max-width: 600px;
  margin: 0 auto;
}

.example-img label {
  display: none !important;
}

.acf-field-enhanced-message,
.example-img .ari-fancybox {
  position: relative;
  font-size: 14px!important;
  z-index: 9999;
  font-weight: 700!important;
	color: var(--yellow)!important;
}

.acf-field-enhanced-message i,
.example-img i {
  margin: 0 5px 0 0!important;
}

.acf-field-enhanced-message .ari-fancybox {
  margin: 10px 0 !important;
  display: block;
  color: var(--yellow);
}

.acf-field-enhanced-message .ari-fancybox:hover {
  color: var(--black);
}


.acf-field-enhanced-message label {
  display: none !important;
}




.messages,
.message {
	display: none;
}

.success {
	display: block;
  background: var(--goldtext);
  color: white;
  padding: 10px 10px 10px 10px;
  font-weight: 700!important;

		width:100%!important;
	  text-align: center;
}

.pdf-button {
    background: var(--gold);
    color: white;
    margin: 5px 0;
    padding: 10px 10px 10px 10px;
    font-weight: 700 !important;
    display: block !important;
    text-align: center;
    line-height: 30px;
    font: 16px / 1.8 'ainslie-sans', Helvetica, Arial, sans-serif;
    margin: 0px 4px 20px 4px;
    border-radius: 15px !important;
    border: 0;
    cursor: pointer;
    width: 98%;
}

.back-button {
    /* background: white;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 6px;
    display: inline-block;
    width: auto; */
	display: inline-block;
    width: auto;
    color: var(--yellow);
    background: white;
    border: 2px solid;
    padding: 1px 13px;
    margin: 3px 7px;
    font-weight: 700;
    border-radius: 15px !important;
    /* color: white; */
    position: relative;
    top: -10px;
}


@media screen and (max-width: 400px) {
	.view-pdf-button {
		display: none !important;
		visibility: hidden;
	}
}

.pdf-button:hover {
  background: var(--goldtext);
  color: white;

}

.quick-rate span {
  color: var(--yellow);
  display: inline-block;
  vertical-align: middle;
}

.quick-title {
  color: var(--black) !important;
  font-size: 13px;
  display: inline-block;
  vertical-align: middle;
}

.acf-button-group label.selected {
  border-color: var(--goldtext)!important;
  background: var(--goldtext)!important;
  color: #fff;
	cursor:pointer!important;
  z-index: 2;
}





.role-pick ul {
  list-style-type: none;
  text-align: center;
}

.role-pick li {
  display: inline-block;
}

.role-pick input[type="radio"][id^="pb"] {
  display: none;
}

.role-pick label {
  border: 1px solid #fff;
  padding: 10px;
  display: block;
  position: relative;
  margin: 10px;
  cursor: pointer;
}

.role-pick label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

.role-pick label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
  border: 2px solid var(--yellow);
}

.role-pick :checked + label {
  border-color: #ddd;
}

.role-pick :checked + label:before {
  content: "✓";
  background-color: grey;
  transform: scale(1);
}

.role-pick :checked + label img {
  transform: scale(0.9);
  box-shadow: 0 0 5px #333;
  z-index: -1;
}
    .sbox{

        padding: 20px;
        display: none;
        margin-top: 20px;
    }

.login-block h5 {
	text-align:center
}

.quick-rate .fa-star {
	display:none;
}

.quick-rate .checked {
	display:inline-block;
}

.save_quick .acf-label {
  display: none;
}

.save_quick .acf-button-group {
margin: 10px 0 20px 0;
}

.saved_quick::after {
  background: black;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  margin: 0px 0;
}

.save_quick::after {
	display:none;
}


.saved_quick .acf-button {
  margin: -15px 0 20px 0 !important;
}



.save_quick .acf-radio-list li input[type="radio"] { 
  aspect-ratio: 1;
  background: #F8CA00;
	width:50px;height:50px;
  clip-path: polygon(50% 0,
    calc(50%*(1 + sin(.4turn))) calc(50%*(1 - cos(.4turn))),
    calc(50%*(1 - sin(.2turn))) calc(50%*(1 - cos(.2turn))),
    calc(50%*(1 + sin(.2turn))) calc(50%*(1 - cos(.2turn))),
    calc(50%*(1 - sin(.4turn))) calc(50%*(1 - cos(.4turn))) 
   ); 
  /* or more simple
  clip-path: polygon(50% 0,79% 90%,2% 35%,98% 35%,21% 90%); 
   */
}

.save_quick .acf-radio-list li input[type="radio"] {
  background-color: #e5e5e5;
  box-shadow: 0em 0px 0px 5px #00b050;
	margin: 0 -1px;
}
.save_quick .acf-radio-list li input[type="radio"]:hover {
  background-color: var(--yellow);
  box-shadow: 0em 0px 0px 5px #009c47;
}
.save_quick .acf-radio-list li input[type="radio"]:checked {
  background-color: var(--yellow);
  box-shadow: 0em 0px 0px 5px #231f20;
}

.save_quick .acf-radio-list li:nth-of-type(2) input[type="radio"] {
  background-color: #e5e5e5;
  box-shadow: 0em 0px 0px 5px #ffc000;
}
.save_quick .acf-radio-list li:nth-of-type(2) input[type="radio"]:hover {
  background-color: var(--yellow);
  box-shadow: 0em 0px 0px 5px #f1b500;
}
.save_quick .acf-radio-list li:nth-of-type(2) input[type="radio"]:checked {
  background-color: var(--yellow);
  box-shadow: 0em 0px 0px 5px #231f20;
}
.save_quick .acf-radio-list li:nth-of-type(3) input[type="radio"] {
  background-color: #e5e5e5;
  box-shadow: 0em 0px 0px 5px #ff0000;
}
.save_quick .acf-radio-list li:nth-of-type(3) input[type="radio"]:hover {
  background-color: var(--yellow);
  box-shadow: 0em 0px 0px 5px #e60000;
}
.save_quick .acf-radio-list li:nth-of-type(3) input[type="radio"]:checked {
  background-color: var(--yellow);
  box-shadow: 0em 0px 0px 5px #231f20;
}

.save_quick .acf-radio-list li:nth-of-type(4) input[type="radio"] {
  background-color: #e5e5e5;
  box-shadow: 0em 0px 0px 5px #e6e6e6;
}
.save_quick .acf-radio-list li:nth-of-type(4) input[type="radio"]:hover {
  background-color:var(--yellow);
  box-shadow: 0em 0px 0px 5px #e6e6e6;
}
.save_quick .acf-radio-list li:nth-of-type(4) input[type="radio"]:checked {
  background-color: var(--yellow);
  box-shadow: 0em 0px 0px 5px #231f20;
}

.save_quick .acf-radio-list li:nth-of-type(5) input[type="radio"] {
  background-color: #e5e5e5;
  box-shadow: 0em 0px 0px 5px #e6e6e6;
}
.save_quick .acf-radio-list li:nth-of-type(5) input[type="radio"]:hover {
  background-color: var(--yellow);
  box-shadow: 0em 0px 0px 5px #e6e6e6;
}
.save_quick .acf-radio-list li:nth-of-type(5) input[type="radio"]:checked {
  background-color: var(--yellow);
  box-shadow: 0em 0px 0px 5px #231f20;
}


.save_quick .acf-radio-list li:has(~ .active) input[type="radio"] {
  background-color: var(--yellow);
  box-shadow: 0em 0px 0px 5px #009c47;
}

.delme {
  position: absolute;
  top: 5px;
  right: 160px;
  font-size: 30px;
  color: var(--red);
}


.foot-icons {
  background: var(--gold);
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.foot-icons a {
	color: white;
	font-size: 30px;
	margin: 0 30px;
}

#user-registration.horizontal .user-registration-MyAccount-navigation-link.is-active a {
  border-bottom-color: var(--goldtext) !important;
  color: #fff;
  background: var(--goldtext) !important;
}

#user-registration.vertical .user-registration-MyAccount-content__body p a, #user-registration.horizontal .user-registration-MyAccount-content__body p a {
  font-weight: 500;
  color: var(--goldtext) !important;
}

.user-registration-MyAccount-navigation-link.user-registration-MyAccount-navigation-link--user-delete a {
	background: rgba(255,0,0,15%);
}
.user-registration-message {
    text-align: center;
    background: var(--hero);
    padding: 7px;
    color: black;
    font-weight: bold;
    border-radius: 5px;
}

.rate-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-items: stretch;
  align-items: initial;
}

.fancybox-slide {
	transition-property: none !important;
}

/* Add this CSS */
.fancybox-container {
    touch-action: pan-y !important;
}
.fancybox-slide {
    touch-action: none !important;
}
.fancybox-hide, .acf-form {
    touch-action: auto !important;
}


.fancybox-hide {
	display: none;
}
.fancybox__slide.has-html {
	padding: 40px 0;
}