/*
Theme Name: WeeSleep
Theme URI: https://harmonicdesign.ca
Author: Harmonic Design
Author URI: https://harmonicdesign.ca
Description: This theme is for use on wee-sleep.com <strong>only</strong>
*/

@font-face {
	font-family: "printed moments";
	src: url("https://shadow.wee-sleep.com/wp-content/themes/hdt/font/printedmoments.woff2") format("woff2"), url("https://shadow.wee-sleep.com/wp-content/themes/hdt/font/printedmoments.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html,
body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #3d3d3d;
	font-family: sans-serif;
	background: #fefefe;
	font-family: "Montserrat", sans-serif;
	--wp--preset--font-size--large: 26px !important;

}

h1,
h2,
h3,
h4 {
	line-height: 1.4;
	color: #3d3d3d;
}

h1 {
	line-height: 1.1
}

h2 {
	font-size: 2em;
	letter-spacing: 2px;
}

.consultant_title_heading_main {
	letter-spacing: 3px;
}

.consultant_heading_subtitle {
	font-weight: normal;
	font-size: 0.6em;
	/* color: #b3aeaa; */
	color:#767676;
	display: block;
	font-family: "printed moments", sans-serif;
}

.consultant_heading_subtitle_specialty {
	display: block;
    font-size: 0.4em;
    letter-spacing: 0;
}

.hidden {
	display: none !important;
}

.margin_top {
	margin-top: -0.2em;
}

img {
	max-width: 100%;
	height: auto;
}

.wrap {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

header {
	position: relative;
	height: 65vh;
}

.home header {
	height: 110vh;
}

.home main {
	margin-top: -4rem;
}

#navigation_icon {
	position: fixed;
	top: 0.4em;
	right: 0.4em;
	z-index: 999;
	width: 80px;
	height: 80px;
	cursor: pointer;
	display: none;
}
#navigation_icon > label {
	display: grid;
	place-items: center;
	cursor: pointer;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transition: all 0.2s ease-in-out;
}
#navigation_icon label:hover,
#navigation_icon.nav_open label {
	background-color: rgba(255, 255, 255, 0.1);
	opacity: 1;
	transition: all 0.2s ease-in-out;
}
#navigation_icon span {
	height: 4px;
	width: 45px;
	border-radius: 2px;
	background-color: #222;
	position: relative;
	display: block;
	transition: all 0.2s ease-in-out;
}
#navigation_icon span:before {
	top: -14px;
	visibility: visible;
}
#navigation_icon span:after {
	top: 14px;
}
#navigation_icon span:before,
#navigation_icon span:after {
	height: 4px;
	width: 45px;
	border-radius: 2px;
	background-color: #222;
	position: absolute;
	content: "";
	transition: all 0.2s ease-in-out;
}
#navigation_icon:hover span,
#navigation_icon:hover span:before,
#navigation_icon:hover span:after {
	background: #d59a63;
}
#navigation_icon.nav_open:hover span,
#navigation_icon.nav_open span {
	background: transparent;
}
#navigation_icon.nav_open span:before {
	transform: rotate(45deg) translate(11px, 11px);
	opacity: 1;
}
#navigation_icon.nav_open span:after {
	transform: rotate(-45deg) translate(7px, -10px);
}

#navigation_icon span:after {
	top: 14px;
}

nav {
	position: relative;
	padding-top: 2rem;
	z-index: 3;
	transition: box-shadow ease-in-out 300ms;
}

nav.sticky {
	position: fixed;
	width: 100%;
	top: 0;
	background-color: #f0ebe9;
	box-shadow: 0px 0px 12px -7px #3c3c3c;
	padding: 0.4em 0;
}

nav.sticky #logo {
	height: 55px;
	transition: all ease-in-out 600ms;
}

#logo {
	display: block;
	height: 75px;
	transition: all ease-in-out 600ms;
}

nav > .wrap {
	display: grid;
	grid-template-columns: 200px 1fr;
	place-items: center;
	column-gap: 1em;
}

#navigation {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

#navigation > li {
	margin-right: 2em;
}

#navigation > li:last-child {
	margin-right: 0;
	display: flex;
	align-items: center;
}

#navigation > li > a {
	color: #3c3c3c;
	text-decoration: none;
	position: relative;
}

#navigation > li > a::before {
	content: "";
	width: 0;
	height: 8px;
	position: absolute;
	background: linear-gradient(135deg, rgba(255, 138, 0, 0.8), rgb(178 170 166));
	border-radius: 12px;
	margin-top: 20px;
	margin-left: -10%;
	transition: all 350ms ease-in-out;
	z-index: -1;
	opacity: 0.3;
}

#navigation > li > a:hover::before {
	width: 120%;
}

.nav_callout a::before {
	display: none;
}

.nav_callout {
	border: 1px solid #3c3c3c;
	border-radius: 0.2em;
	padding: 0 0.6em;
	position: relative;
}

.nav_callout:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0;
	width: 100%;
	background-color: #3c3c3c;
	z-index: -1;
	transition: all ease-in-out 350ms;
}

.nav_callout:hover:before {
	height: 100%;
}

.nav_callout:hover a {
	animation-name: nav_col;
	animation-duration: 350ms;
	animation-fill-mode: forwards;
}

@keyframes nav_col {
	0% {
		color: #3c3c3c;
		fill: #3c3c3c;
	}
	100% {
		color: #fff;
		fill: #fff;
	}
}

.icon {
	height: 1em;
	display: block;
	fill: #3c3c3c;
}

.icon_inline {
	height: 1em;
	display: inline-block;
	fill: #3c3c3c;
}

#hero {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	display: grid;
	align-items: center;
}

.hero_overlay {
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgb(255, 255, 255);
	/* background: linear-gradient(0deg, rgba(254, 254, 254, 1) 0%, rgba(254, 254, 254, 0.9) 10%, rgba(254, 254, 254, 0.68) 12%, rgba(254, 254, 254, 0.3) 25%, rgba(254, 254, 254, 0) 100%);	*/

	background: linear-gradient(0deg, rgba(254, 254, 254, 1) 0%, rgba(254, 254, 254, 0.7) 10%, rgba(254, 254, 254, 0.38) 20%, rgba(254, 254, 254, 0.3) 35%, rgba(254, 254, 254, 0) 100%);

}

#hero_content {
	position: relative;
	z-index: 1;
}

.home #hero_content {
	max-width: 55%;
}

#hero_content h1 {
	font-weight: normal;
	font-size: 3.6rem;
	letter-spacing: -3px;
	text-align: center;
	font-family: "printed moments", sans-serif;
}

.home #hero_content h1 {
	text-transform: initial;
	text-align: left;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

.heading_subtitle {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 0.4em;
	line-height: 1.2;
    margin-top: 0.8em;
	letter-spacing: 2px;
	color:#767676;
}

.page-id-250 .heading_subtitle {
	color:#444
}

.page-id-21 #content {
	overflow: initial
}

.el-button.el-button--primary{
	border: 3px solid transparent !important;
}

.button-primary,
.el-button.el-button--primary,
.is-style-button-cta .wp-block-button__link {
	color: #fff;
	font-weight: bold;
	background-color: #3d3d3d;
	border: 3px solid #3d3d3d;
	border-radius: 0.2em;
	transition: all ease-in-out 300ms;
	text-transform: uppercase;
	text-decoration:none;
	padding: 0.4em 0.6em;
	letter-spacing: 2px;
	font-size: 1em;
	display: inline-block;
}

.button-primary:hover,
.el-button.el-button--primary:hover,
.is-style-button-cta:hover .wp-block-button__link{
    box-shadow: 0px 6px 15px -3px #bbb;
	transform: translatey(-4px);
}

.button-secondary,
.is-style-button-secondary .wp-block-button__link,
.el-button.el-button--secondary{
	display: inline-block;
	letter-spacing: 2px;
	text-decoration:none;
	color: #fff;
	font-weight: bold;
	background-color: #b5ada7;
	padding: 0.4em 0.6em;
	border-radius: 0.2em;
	/* text-shadow: 0px 0px 6px #5c5b5a; */
	transition: all ease-in-out 300ms;
	border: 2px solid #b5ada7;
	text-transform: uppercase;
	font-size: 1em;
}

.button-secondary:hover,
.is-style-button-secondary:hover .wp-block-button__link,
.el-button.el-button--secondary:hover {	
    box-shadow: 0px 6px 15px -3px #bbb;
	transform: translatey(-4px);
}

.button-dark {
	color: #fff;
	font-weight: bold;
	background-color: #3d3d3d;
	border: 2px solid #5c5c5c;
}

.button-dark:hover {
	border: 2px solid #b5ada7;
}

.button-small {
	font-size: 0.8em;
}

.margin_offset {
	margin-top: -1em !important;
	position: relative;
}

.wp-block-column > h2,
.wp-block-column > h3,
.wp-block-column > p {
	margin-top:0 ;
}

#content .wp-block-columns {
	margin-bottom: 0;
}

.circle-text {
    justify-content: center;
    display: flex;
	border: 3px solid #eee;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    line-height: 76px;
    border-radius: 50%;
}

.wp-block-cover__inner-container {
	font-family: "printed moments", sans-serif;
}

.hd_script_font {
	font-family: "printed moments", sans-serif;
	font-weight: normal;
}

.col {
	display: grid;
	column-gap: 2rem;
}

.col-1-1 {
	grid-template-columns: minmax(1px, 1fr) minmax(1px, 1fr);
}

.col-1-2 {
	grid-template-columns: minmax(1px, 1fr) minmax(1px, 2fr);
}

.col-1-3 {
	grid-template-columns: minmax(1px, 1fr) minmax(1px, 3fr);
}

.col-1-1-1 {
	grid-template-columns: minmax(1px, 1fr) minmax(1px, 1fr) minmax(1px, 1fr);
}

.col-2-1 {
	grid-template-columns: minmax(1px, 2fr) minmax(1px, 1fr);
}

.centered {
	place-items: center;
}

.bottom {
	align-items: end;
}

.home_section {
	padding: 4rem 0;
}

.home_section div h2:first-child {
	margin-top: 0;
}

#content {
	overflow: hidden;
}

#home_steps {
	/* background-image: url(https://wee-sleep.com/storage/2022/04/steps_bg-min.jpg); */
	background-image: url(https://wee-sleep.com/storage/2022/09/Wee-Sleep-6-1.png); 
	text-align: center;
	position: relative;
}

#home_steps > .wrap {
	position: relative;
	z-index: 1;
}

#home_steps h3 {
	font-weight: bolder;
	/* text-shadow: 0px 0px 0px black; */
}

#steps {
	padding: 2rem 0;
	max-width: 1000px;
	margin: 0 auto;
	font-size: 18px;
	position: relative;
}

.step_item {
	padding: 2rem 2rem 0 2rem;
	transition: all ease-in-out 1000ms;
	border-radius: 13px;
}

.step_icon > img {
	max-height: 100px;
	transition: all ease-in-out 1000ms;
}

.step_item:hover {
	box-shadow: 0 17px 34px #bebebe, 0 -17px 34px #ffffff;
	background-color: rgba(255, 255, 255, 0.4);
}

.step_item:hover .step_icon > img {
	transition: all ease-in-out 1000ms;
	transform: scale(1.1);
}

#buttons_cover {
	z-index: 1;
	position: relative;
	margin-bottom: -4.5rem;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.4);
	z-index: 0;
}

#home_testimonial {
	text-align: center;
}

#home_testimonial_hero {
	position: relative;
	margin-bottom: -6rem;
	z-index: 0;
}

#home_testimonial_hero_image {
	position: relative;
	display: block;
	width: 100%;
}

#home_testimonial_hero_badge {
	position: absolute;
	top: 10%;
	left: 10%;
	height: 320px;
	max-height: 80%;
	animation: pulse 3s infinite;
	animation-timing-function: ease-in-out;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

#home_testimonial h2 {
	max-width: 65%;
	margin: 0 auto;
	font-weight: normal;
}

#we-guarantee-it {
	max-width: 360px;
	display: block;
	margin: 1em auto;
}

.testimonial_blockquote {
	background-color: #f0ebe9;
	padding: 2rem;
}

#footer_a {
	text-align: center;
	padding-bottom: 0;
}

#footer_a h2 {
	max-width: 65%;
	margin: 0 auto;
	font-weight: normal;
}

#footer_partners {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1em;
	column-gap: 2rem;	
    filter: grayscale(1);
}

#footer_partners > a > img {
	max-height: 100px;
}

#footer_instagram_wrapper {
	margin-top: 4rem;
}

#footer_instagram_wrapper h2 {
	margin-bottom: 1em;
}

#footer_instagram {
	display: flex;
	height: 240px;
	background-color: #efefef;
}

.sb_instagram_header.sbi_medium.sbi_no_avatar {
	display: none;
}

#footer_b {
	background-color: #f0ebe9;
	position: relative;
}

#footer_b > .wrap {
	position: relative;
	z-index: 1;
}

#footer_b_right > img {
	opacity: 0.6
}

.social_icons {
	display: inline-block;
}

.social_icons > .icon_inline {
	height: 2.5em;
	width: 2.8em;
}

.social_icons:hover > .icon_inline {
	fill: #000;
}

#footer_b_left {
	place-self: center;
	text-align: center;
}

#footer_c {
	background-color: #b4ada7;
	color: #fff;
}

.footer_c_cols {
	display: grid;
	grid-template-columns: 1fr max-content;
}

#footer_c a {
	color: #fff;
	text-decoration: none;
	margin: 0 0.4em;
}

#footer_c a:last-child {
	margin-right: 0;
}

.hd_follow_button {
	border: 1px solid #3c3c3c;
	border-radius: 0.2em;
	padding: 0.2em 0.6em;
	position: relative;
	z-index: 1;
	font-size: 22px;
	margin: 0 1em;
	display: inline-flex;
	text-decoration: none;
	color: #3d3d3d;
	position: relative;
	align-items: center;
}

.hd_follow_button:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0;
	width: 100%;
	background-color: #3c3c3c;
	z-index: -1;
	transition: all ease-in-out 350ms;
}

.hd_follow_button:hover:before {
	height: 100%;
}

.hd_follow_button:hover,
.hd_follow_button:hover > svg {
	animation-name: nav_col;
	animation-duration: 350ms;
	animation-fill-mode: forwards;
}

.hd_follow_button > svg {
	margin-right: 0.2em;
}

#blog_wrapper {
	display: grid;
    grid-template-columns: minmax(10px, 1fr) minmax(10px, 1fr)  minmax(10px, 1fr);
    grid-gap: 1rem;
}

.blog_item_featured_image {
	display: flex;
	height: 215px
}

.blog_item_featured_image > img {
	display: block;
	width: 100%;
	border: 1px solid #eee;	
    object-fit: cover;
}

.blog_item_meta h2 {
	line-height: 1
}

.blog_item_meta h2 a {
	font-size: 1rem;
	color:#3d3d3d;
	line-height: 1;
	text-decoration: none;
}

.blog_item a {
	font-size: 0.8em
}

.pagination .nav-links {
	text-align: right;
	margin-top: 1rem
}

.pagination .nav-links .page-numbers { 
	color:#3d3d3d;	
	text-decoration: none;
	font-size: 1.4rem;	
    margin: 0 0.21em;
}

.pagination .nav-links .page-numbers.current {
	color:#000
}

/* HDSlider */

.hds_slider {
	--slide-transition-speed: 60ms;
	position: relative;
}

.hds_slides_container {
	position: relative;
	height: 100%;
}

.hds_slide {
	z-index: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: fit-content;
	transition: all ease-in-out 100ms;
}

.hds_slide_active {
	z-index: 1;
	opacity: 1;
	transition: all ease-in-out var(--slide-transition-speed);
}

.hds_pagination {
	position: absolute;
	z-index: 2;
	display: flex;
	width: 100%;
	justify-content: center;
}

.hds_pagination_item {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background-color: #f0ebe9;
	margin: 0 0.2em;
	cursor: pointer;
	border: 1px solid transparent;
}

.hds_pagination_item_active {
	background-color: transparent;
	border-color: #3d3d3d;
	cursor: default;
}

.wp-block-quote {
    padding: 1em;
    border-radius: 12px;
    box-shadow: 1px 1px 12px 0 #efefef;
	text-align: left;	
    border-width: 2px;
    border-color: rgb(220, 215, 212);
    border-style: solid;
	
}

.wp-block-quote cite {	
    color: #b5ada7;
	letter-spacing: 3px;
}

.wp-block-group .wp-block-group__inner-container {
	display: flex;
	flex-direction: column
}

.wp-block-group .wp-block-group__inner-container .wp-block-quote{
	max-width: 80%;
}

.wp-block-group .wp-block-group__inner-container .wp-block-quote:nth-child(even) {	
    align-self: end;
	background-color:rgb(246, 244, 242);
	border: 2px solid rgb(220, 215, 212);
}

#content ul li {
	margin-bottom: 0.6em
}

.no-margin {
	margin: 0;
}


.toupe_bg {
	background-image: linear-gradient(90deg, rgb(181, 173, 167) 50%, rgb(255, 255, 255) 50%);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-id-476 #content {
	overflow:initial;
}

#content .wp-block-image {
	margin: 0;
}

.wp-block-image.polaroid figure {
    transform: rotateZ(-6deg) translateY(-5%) translateX(-5%) scale(1);
	box-shadow: 4px 7px 24px -6px #7a7a7a;
    background: #fefefe;
    z-index: 9999;
	transition: all ease-in-out 450ms;
	margin-bottom: -5rem;
	border-radius: 3px;
}

.polaroid figure:hover{
	transform: rotateZ(0deg) translateY(-10%) translateX(9%) scale(0.8);
	box-shadow: 2px 4px 18px -6px #2d2d2d;
}

.size-full img {
    height: auto;
    width: 100%;
}

.hdt_highlight_wrapper {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw - 12px);
	padding: 2.5rem 0;
	position: relative;
}

.hdt_highlight_wrapper.pattern_a{	
	background-image: url(https://wee-sleep.com/storage/2022/04/steps_bg-min.jpg);
}

.hdt_highlight_wrapper.pattern_b{	
	background-image: url(https://wee-sleep.com/storage/2022/08/weesleep-pattern-copy.jpg);
}

.hdt_highlight_wrapper.bg .overlay {
	display: none !important
}

.hdt_background_style_cover {
	background-size: initial;
	background-attachment: initial
}

.hdt_background_style_texture_repeat {
	background-size: cover;
}

.hdt_background_style_texture_contain_left {
	background-repeat: no-repeat;
    background-size: contain;
}

.hdt_background_style_texture_contain_right {
	background-repeat: no-repeat;
    background-size: contain;
    background-position: right -10% center;
}

.page-id-476 .hdt_highlight_wrapper.pattern_a {
	background-position: right bottom;
	background-size: 100%;
	background-repeat: no-repeat;
}

.hdt_highlight_wrapper > .wrap {
	position: relative;
	z-index: 1;
}

.hd_group_padding {
	padding: 2rem;
}

.meta-summary {
	font-style: italic;
	font-weight: 100;
	margin-bottom: 2rem;
	padding: 2em 4em;
	text-transform: uppercase;
	text-align: center;
	transform: translate3d(-10px, -16px, 0px) rotateX(1deg) rotateZ(3deg);
	box-shadow: 24px 24px 28px -10px rgba(34, 33, 81, 0.15);
}

.meta-summary > h3 {
	line-height: 1.3;
	border-bottom: none;
	margin: 0;
	padding: 0;
	text-shadow: 0px 3px 2px #ccc;
}

.hd-accordion-title {
	padding: 12px 22px;
	font-weight: 300;
	display: block;
	background: #f0ebe9;
	color: #4c4c51 !important;
	text-align: left;
	border: none;
	font-size: 1.3em !important;
	border-bottom: 3px solid #eee;
	-webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
	cursor: pointer;
	margin: 0;
}

.hd-accordion-title::before {
	content: "+";
	margin-right: 10px;
	position: relative;
	top: 1px;
}

.hd-accordion-title.hd-accordion-active {
	background: #4c4c51;
	color: #f0ebe9 !important;
}

.hd-accordion-content {
	pointer-events: none;
	opacity: 0;
	position: relative;
	height: 0;
	transition: 0.2s all ease-in-out;
	visibility: hidden;
}

.hd-accordion-title.hd-accordion-active + .hd-accordion-content {
	opacity: 1;
	pointer-events: initial;
	height: initial;
	-webkit-transition: 1s all ease-in-out;
	transition: 1s all ease-in-out;
	visibility: visible;
}

.hd-accordion-title.hd-accordion-active::before {
	content: "-";
	top: -1px;
}

.single-consultant #hero_content h1 {
	font-family: inherit;
}

.single-consultant #content {
	background: linear-gradient(#f0ebe9, #fefefe 100%);
	padding: 4rem 0;
}

.consultant_single_meta {
	justify-self: center;
	text-align: center;
}

.consultant_single_image_wrapper {
	border: 0.3em solid #fbf6f3;
	border-radius: 50%;
	overflow: hidden;
	max-width: 250px;
	box-shadow: 0px 8px 13px -5px #787878;
	margin: 0 auto;
}

.consultant_single_image_wrapper > img {
	display: block;
	width: 100%;
	filter: grayscale(1);
}

.consultant_single_name {
	font-weight: normal;
	margin: 0.4em;
}

.consultant_single_meta_location {
	display: block;
	font-weight: bold;
}

#consultant_single_social {
	display: flex;
	justify-content: center;
	margin: 0.5em 0;
}

.consultant_social_icons {
	margin: 0 0.2em;
}

.consultant_social_icons > .icon_inline {
	height: 1.2em;
	width: 1.2em;
	display: inline-block;
}

.consultant_single_meta_top {
	position: sticky;
	top: 4rem;
}

.consultant_single_meta_bottom {
	align-self: end;
}

.next-availability {
	margin-bottom: 2rem;
	display: block;	
    opacity: 0.7;
}



/* Consultants List */
#consultants_wrapper {
	padding: 4rem 0;
	text-align: center;
}

#consultants_list_languages {
	margin-bottom: 1rem;
}

.consultant_empty {
	display: none;
    padding: 1em;
    background-color: #f0ebe9;
    margin: 1em;	
}

.consultant_empty.active {
	display: block;
}

.language_item {
	color: #fff;
	font-weight: bold;
	border: 2px solid transparent;
	background-color: #b5ada7;
	/* text-shadow: 0px 0px 12px #000; */
	padding: 0.4em 0.6em;
	text-decoration: none;
	border-radius: 0.2em;
	transition: all ease-in-out 300ms;
	cursor: pointer;
	margin: 8px;
	display: inline-block;
}
.language_item_active {
    box-shadow: 0px 6px 15px -3px #bbb;
    transform: translatey(-4px);
}

.consultant_list_grid {
	display: grid;
	grid-template-columns: minmax(1px, 1fr) minmax(1px, 1fr);
	grid-gap: 1rem;
	margin: 2rem 0;
}

.consultant_list_item {
	display: grid;
	grid-template-columns: 200px 1fr;
	grid-gap: 1rem;
	align-items: center;
	padding-bottom: 1em;
	border-bottom: 1px dashed #b5ada7;
}

.consultant_item_meta {
	text-align: left;
}

.consultant_item_name,
.consultant_item_location,
.consultant_item_social_media {
	display: block;
	line-height: 1.4;
}

.consultant_item_name {
	font-weight: bold;
	font-size: 1.2em;
}

.consultant_item_location {
	color: #b5ada7;
	margin-bottom: 0.2em;
}
.consultant_item_social_media {
	display: flex;
	justify-content: left;
	margin: 0.5em 0;
}

/* Programs List */
#consultant_list_grid {
	display: grid;
	grid-template-columns: minmax(20px, 1fr) minmax(20px, 1fr);
	grid-gap: 2rem;
}

.program_item {
	display: grid;
	grid-template-columns: minmax(20px, 1fr) minmax(20px, 1.8fr);
}

.program_item_image {
	display: flex;
	width: 100%;
	position: relative;
}

.program_item_image > img {
	display: block;
	width: 100% !important;
	height: auto !important;
	object-fit: cover;
	margin: 0 auto;
	aspect-ratio: 1 / 1.6;
}

.program_item_content {
	padding: 1em;
	background-color: #f0ebe9;
	text-align: left;
}

.program_short_description {
	font-size: 0.75em;
}

.program_item_content h4,
.program_item_price {
	margin: 0;
	padding: 0;
}

.program_item_content h4 {
	font-weight: bold;
	font-size: 1.2em;
}

.program_item_price {	
	color: #b5ada7
}

.program_item_subtitle {
	font-size: 0.6em;
	color: #b5ada7
}

/* Disclaimer */
#disclaimer_wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999999;
	width: 100vw;
	height: 100%;
	background: rgba(255, 255, 255, 0.96);
	overflow-y: auto;
	overflow-x: hidden;
}

#disclaimer_wrapper.disclaimer_wrapper_active {
	display: block;
	padding: 2rem 1em;
}

#disclaimer_content {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}

.hdc_i_agree_disclaimer {
	text-align: center;
}

/* HDCommerce */
#hdc_wrapper {
	position: relative;
}

.hdcommerce #hdc_after_cart_row {
	font-size: 1em;
    align-items: baseline;
}

#hdc_cart_subtotal_value .hdc_currency_value {
	font-size: 1.2em;
}

.page-id-75 #hdc_checkout_gateway {
	padding-top: 4rem;
}

#hdc_breadcrumbs {
	display: none !important;
}

#hdc_wrapper #hdc_checkout_page {
	padding: 4rem 0;
}

#hdc_add_to_cart_wrapper #consultant {
	width: max-content;
}

.page #hdc_wrapper .hdc_error {
	border-width: 2px;
}

.hdcommerce #hdc_added_to_cart {
	border: none;
}

.hdcommerce .hdc_variation_item {
	color: #fff;
	font-weight: bold;
	background-color: #b5ada7;
	padding: 0.4em 0.6em;
	text-decoration: none;
	border-radius: 0.2em;
	/* text-shadow: 0px 0px 6px #5c5b5a; */
	transition: all ease-in-out 300ms;
	border: 2px solid #b5ada7;
}

.hdcommerce .hdc_variation_item:hover {
	border: 2px dashed #b5ada7;
}

.hdcommerce .hdc_variation_item.active {
	border: 2px solid #000;
	background-color: #454444;
	text-shadow: 0px 0px 12px #000;
}

.hdcommerce #hdc_product_main{
    justify-items: end;
}

.hdcommerce #hdc_product_main_content {
	text-align: left;
	width: 100%;
}

#hdc_order_tables h3 span {
	background-color: #d59a63 !important;
	color:#fff !important;
	border: none !important;
}

.hdc_cart_item_label_variation {
	display: block
}

/* Booking Calendar */
.amelia-app-booking #amelia-booking-wrap #am-step-booking .am-select-date,
.amelia-app-booking #amelia-booking-wrap .am-step-booking-catalog .am-select-date {
	background: #f0ebe9 !important;
	color: #222 !important;
}

.amelia-app-booking #amelia-booking-wrap .el-button--primary.el-button,
#am-modal.am-modal.am-in-body .el-button--primary.el-button {
	background-color: #d59a63 !important;
}

.amelia-app-booking #amelia-booking-wrap #am-step-booking .am-select-date *,
.amelia-app-booking #amelia-booking-wrap .am-step-booking-catalog .am-select-date * {
	color: #3d3d3d !important;
}

.page-id-108 .amelia-app-booking #amelia-booking-wrap .c-header {
	padding-bottom: 2rem;
}

.page-id-108 .amelia-app-booking #amelia-booking-wrap .am-calendar-picker .c-day-background {
	background-color: #b5ada7 !important;
}

.page-id-108 .amelia-app-booking #amelia-booking-wrap .am-step-booking-catalog .am-select-date .am-select-date-title {
	font-size: 1rem !important;
}

.hdc_shop_category_page #hdc_shop_main {
	display: block;
}

#hdc_product_page #hdc_product_main {
	grid-template-columns: minmax(10px, 1fr) minmax(10px, 1.5fr);
}

#hdc_description_wrapper {
	margin-top: 1em;
}

.hdcommerce .hdc_button_primary {
color: #fff;
    font-weight: bold;
    background-color: #3d3d3d;
    border: 3px solid #3d3d3d;
    border-radius: 0.2em;
    transition: all ease-in-out 300ms;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.4em 0.6em;
    letter-spacing: 2px;
    font-size: 1em;
    display: inline-block;
}

.hdcommerce .hdc_button.disabled {
	opacity: 1;
	background-color: #b5ada7;	
    border: 1px solid #b5ada7;
}

.hdcommerce .hdc_button {
	border: 1px solid #444343;
	font-weight: bold;
	text-shadow: none;
}

.hdcommerce .hdc_button_secondary {
	background-color: #444343;
}

.hdcommerce .hdc_button_secondary:hover {
	border: 1px solid #b5ada7;
	background-color: #444343;
}

.hdcommerce #product_short_content {
	margin-top: 0;
}

.hdcommerce #product_short_content > p:first-child {
	margin-top: 0;
}

.hdcommerce .hdc_product_gallery_image {
	border: none;
	border-radius: 4px;
	box-shadow: 0px 1px 13px 3px #efefef;
}

.hdcommerce .hdc_product_gallery_image:hover{
	border:none
}

.hdcommerce #hdc_wrapper .hdc_error {
	border-color: #d59a63 !important
}

.hdc_product-template-default #hdc_add_to_cart_wrapper .hdc_input_label {
	font-size: 16px
}

.single-hdc_order header {
	height: 30vh;
}
.single-hdc_order #hero_content h1 {
	font-family: "Montserrat", sans-serif;
	line-height:1;
	margin-top: 2em;
}

.hdcommerce #hdc_gateway_payment_logo > img {
    filter: grayscale(1);
	max-width: 200px;
}

/* Contact Form 7 (yuck)*/
.wpcf7-form {
	display: block;
	margin: 0 auto;
	max-width: 600px;
}

.wpcf7 label {
	display: block;
	cursor: pointer;
	font-weight: 700;
}

.wpcf7 input,
.wpcf7 textarea {
	display: block;
	padding: 1em;
	width: 100%;
	line-height: 1;
	font-size: 0.8em;
	border-radius: 0;
	border-color: currentColor;
	box-shadow: none;
	border-width: 1px;
	background-color: #fafafa;
	height: initial;
}
.wpcf7 .wpcf7-submit {
	padding: 1em;
    line-height: 1;
    background-color:#555;
    display: block;
    text-align: center;
    color: #fff;
    cursor: pointer;
    margin-top: 2em;
}

#content .hdf-error .hdf-input {
	border-color:#d59a63
}

.single .wpcf7 form.sent .wpcf7-response-output {
	border-color: none !important;
}

@media (max-width: 1200px) {
	.home main {
		margin-top: -1rem;
	}	
	
	#home_testimonial_hero_badge {
		display: none
	}
	
	.wp-block-image.polaroid figure {
		margin-bottom: -2em;
	}
	
	.hdt_highlight_wrapper {		
    	margin-left: calc(50% - 50vw);
	}
	
	.wrap {
		padding: 0 1rem;
	}

	#nav {
		display: none;
	}

	header {
		height: 45vh;
	}

	.home header {
		height: 65vh;
	}

	#hero {
		background-position: center;
	}

	.home #hero_content {
		max-width: 100%;
	}

	.home #hero_content h1,
	#hero_content h1 {
		font-size: 2.2rem;
	}
	.wrap .wp-block-pullquote {
		padding: 0;
	}
	.wrap .wp-block-pullquote p {
		line-height: 1.2;
		font-size: 1.35em;
	}

	.hdt_highlight_wrapper {
		padding: 2rem;
	}

	#home_intro {
		padding-top: 1rem;
	}

	.col,
	.footer_c_cols {
		display: block;
	}

	.testimonial_blockquote {
		font-size: 0.8em;
		padding: 1rem;
		margin: 8px;
	}

	#buttons_cover {
		margin-bottom: 0;
	}

	#buttons_cover .button {
		display: block;
		margin: 0 auto;
		max-width: 250px;
	}

	#consultants_wrapper {
		padding: 4rem 1em;
	}

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

	.hd-accordion-title {
		font-size: 1em !important;
	}

	.consultant_list_item {
		grid-template-columns: 140px 1fr;
	}

	.consultant_single_image_wrapper {
		border: 0.2em solid #fbf6f3;
	}

	.consultant_item_location {
		font-size: 0.8em;
	}

	#home_testimonial h2,
	#footer_a h2 {
		font-size: 1.4em;
		max-width: 90%;
	}

	.hdcommerce #hdc_wrapper {
		padding: 1rem !important;
	}

	.hdcommerce .hdc_cart_row {
		display: table;
	}

	.hdcommerce .hdc_cart_row > * {
		margin: 1em 0;
	}

	#hdc_product_title,
	#product_price {
		display: none;
	}

	.single-hdc_product #hdc_wrapper {
		padding: 0 1em !important;
	}

	#hdc_wrapper #hdc_product_main {
		justify-items: initial;
		grid-gap: 1em;
	}

	.hdcommerce #hdc_shop_customer_settings {
		display: none;
	}

	.hdcommerce #hdc_shop_main_content.hdc_col_2,
	.hdcommerce #hdc_shop_main_content.hdc_col_3,
	.hdcommerce #hdc_shop_main_content.hdc_col_4 {
		grid-template-columns: 1fr;
	}

	.page-id-75 .hdc_row .hdc_input_item {
		margin-bottom: 0.6em;
	}
	
	#navigation_icon {
		display: block;
	}
	
	#nav.nav_open {
		display: block;
    	position: fixed;
    	left: 0;
    	top: 0;
    	height: 100%;
    	width: 100%;
    	background-color: #fff;
	}
	
	#nav.nav_open > .wrap {
		grid-template-columns: 1fr;
		margin-top: 8vh;
	}
	
	#nav.nav_open #navigation {		
    	flex-direction: column;
	}
	
	#nav.nav_open #navigation > li {
		margin: 0.6em 0;
	}
	
	#nav.nav_open #logo_wrapper{margin-bottom:1em;}
	
	.wp-block-group .wp-block-group__inner-container .wp-block-quote {
		margin-inline: 0;
		max-width: 100%
	}
}


@media 
(-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) { 
	font-size: 16px;
}