@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
  height: 100%;
  margin: 0;
}

select{
	appearance: none;
	background: #FFF;
	box-shadow: 5px 5px 25px 0 var(--wp--preset--color--lavender, --wp--preset--color--light-lavender) inset;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 2rem;
	cursor: pointer;
	color: var(--wp--preset--color--purple);
	line-height: 1;
	height: auto;
}
select:focus {
	outline: none;
}
select:focus-visible {
	outline: none;
}
/* Facet */
.filter-list .facetwp-facet{
	margin-bottom: 1rem;
	position: relative;
}
.facetwp-type-dropdown:after {
	content: "\f078";
	font-family: FontAwesome;
	color: var(--wp--preset--color--purple);
	position: absolute;
	right: 0;
	top: 0;
	pointer-events: none;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	height: 100%;
	width: 30px;   
}
.facetwp-facet-load_more{
	margin: auto;
}


.site-header{
	z-index: 99998;
	position: fixed;
	width: 100%;
}
.site-container{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh; /* full viewport height */
	min-height: 100dvh;
}
.admin-bar .site-header{
	margin-top: 32px;
}
.transition-panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: var(--wp--preset--color--magenta);
	z-index: 99999; /* IMPORTANT */
	transform: translateX(-100%);
	transform: translate(0%, 0px);
	pointer-events: none;
}

/* Footer */
.copyright{
	font-size: var(--wp--custom--font-size--copyright);
}

/* Image Block */
.wp-block-image.is-style-masked{
	border-radius: 33% 1% 1% 1%;
	overflow: hidden;
}
.wp-block-image.is-style-masked img{
	aspect-ratio: 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
img{
	-webkit-touch-callout: none !important;
	-webkit-user-select: none !important;
	-webkit-user-drag: none !important;
	-khtml-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
}

/* Group Block */
.wp-block-group.is-style-top_left{
	border-radius: 120px 5px 5px 5px;
}
.wp-block-group.is-style-top_right{
	border-radius: 5px 120px 5px 5px;
}
.wp-block-group.is-style-bottom_right{
	border-radius: 5px 5px 120px 5px;
}
.wp-block-group.is-style-bottom_left{
	border-radius: 5px 5px 5px 120px;
}

/* Pullquote Block */
.wp-block-pullquote blockquote p{
	position: relative;
	padding: 5rem 0;
}
.wp-block-pullquote blockquote p:before{
	content: "\201C";
	font-weight: 700;
	display: block;
	font-size: 10rem;
	color: var(--wp--preset--color--lavender);
	line-height: 0;
	position: absolute;
	width: 100%;
	top: 4rem;
}
.wp-block-pullquote blockquote p:after{
	content: "\201D";
	font-weight: 700;
	display: block;
	font-size: 10rem;
	color: var(--wp--preset--color--lavender);
	line-height: 1.1;
	position: absolute;
	width: 100%;
}

/* Button Block */
/* Base style to add space for icons */
.wp-block-button.button_icon .wp-block-button__link {
	display: inline-flex;
	white-space: nowrap;
	align-items: center;
	gap: 8px;
}

/* Set Icon */
.wp-block-button.button_icon .wp-block-button__link::after {
	font-family: var(--fa-style-family,"Font Awesome 7 Free");
	font-weight: var(--fa-style,900);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display,inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
	content: var(--fa);
}