/************************************************
	Desktop Grid
************************************************/

.row {
	width: 100%;
	margin: 0 auto;
}
.row .row {
	min-width: 0;
}
.flex-row {
	display: flex;
	align-items: stretch;
	align-content: center;
	justify-content: space-between;
	flex: 1 1 0;
}
.column, .columns {
	float: left;
	min-height: 1px;
	position: relative;
}
[class*="column"] + [class*="column"]:last-child {
	float: right;
}

.half, .third, .one-third, .fourth,
.one-fourth, .fifth, .one-fifth,
.two-thirds, .three-fourths {
	float: left;
}
.half.last, .third.last, .one-third.last, .fourth.last,
.one-fourth.last, .fifth.last, .one-fifth.last,
.two-thirds.last, .three-fourths.last {
	float: right;
}

.single					{ width: 100%; }
.half						{ width: 49.9%; }
.third,
.one-third			{ width: 33.3%; }
.fourth,
.one-fourth			{ width: 25%; }
.fifth,
.one-fifth			{ width: 20%; }
.two-thirds			{ width: 66.6%; }
.three-fourths	{ width: 75%; }

.row .one 		{ width: 6.25%; }
.row .two 		{ width: 12.5%; }
.row .three 	{ width: 18.75%; }
.row .four 		{ width: 25%; }
.row .five 		{ width: 31.25%; }
.row .six 		{ width: 37.5%; }
.row .seven 	{ width: 43.75%; }
.row .eight 	{ width: 50%; }
.row .nine 		{ width: 56.25%; }
.row .ten 		{ width: 62.5%; }
.row .eleven 	{ width: 68.75%; }
.row .twelve 	{ width: 75%; }
.row .thirteen 	{ width: 81.25%; }
.row .fourteen 	{ width: 87.5%; }
.row .fifteen 	{ width: 93.75%; }
.row .sixteen 	{ width: 100%; }

.row .centered { float: none; margin: 0 auto; }

/************************************************
	Tablet Styles
************************************************/

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

	/* Typography Tablet */

	body {
		font-size: 0.9rem;
		line-height: 1.6;
	}

	/* Theme Tablet */

	#page {
	}
	.site-logo {
		padding-left: 1rem;
	}
	.home .site-logo {
		padding-left: none;
	}
	.custom-logo-link .custom-logo {
		max-height: 60px;
	}
	#navigation-right,
	#navigation-left {
		display: none !important;
	}
	#nav-bar {
		display: flex;
		justify-content: space-between;
		position: relative;
	}
	.home #nav-bar {
		justify-content: center;
	}
	.admin-bar #nav-bar {
		top: 0;
	}
	#side-menu {
		display: block;
	}
	.admin-bar #side-menu {
		margin-top: 32px;
	}
	#menu-toggle {
		display: inline-block;
		cursor: pointer;
		background-color: rgb(212, 175, 55);
		position: relative;
		margin: 0 18px 0 0;
		padding: 16px;
		border-top: none;
		border-bottom: none;
		border-right: none;
		box-shadow: none;
		z-index: 9;
	}
	#menu-toggle svg {
		fill: #000
	}
	#menu-toggle:hover svg {
		fill: #fff
	}
	#menu-toggle svg.icon-menu-close {
		margin-right: 242px;
	}
	.sidr {
		display: block;
		background: #000;
		position: fixed;
		top: 0;
		height: 100%;
		z-index: 999999;
		width: 260px;
		overflow-x: hidden;
		overflow-y: auto;
		border-left: 1px solid rgb(212, 175, 55);
	}
	.sidr-inner,
	.sidr-class-secondary-menu {
		display: flex;
		flex-direction: column-reverse;
		box-sizing: border-box;
	}
	.sidr.right {
		left: auto;
		right: -260px;
	}
	.sidr.left {
		left: -260px;
		right: auto;
	}
	.sidr p {
		margin: 6px 0px;
		padding: 0px;
	}
	.sidr ul {
		margin: 0px;
		padding: 0px;
	}
	.sidr ul.sidr-class-menu {
		margin: 0px;
	}
	.sidr ul.sidr-class-sub-menu {
		border-top: 1px solid rgb(212, 175, 55);
	}
	.sidr li {
		position: relative;
		list-style: none;
		margin: 0px;
		padding: 0px;
		border-top: 1px solid rgb(212, 175, 55);
		border-bottom: 1px solid rgb(212, 175, 55);
	}
	.sidr li a:hover {
		background-color: rgb(212, 175, 55);
	}
	.sidr li:first-child {
		margin-top: 0px;
	}
	.sidr li:last-child {
	}
	.sidr li a {
		display: block;
		font-size: 0.8rem;
		font-weight: 400;
		line-height: 1.1;
		letter-spacing: 1px;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		padding: 18px;
	}
	.sidr li a,
	.sidr li a:link,
	.sidr li a:visited {
		color: rgb(212, 175, 55);
	}
	.sidr li a:hover,
	.sidr li a:active,
	.sidr li a:focus {
		color: #fff;
	}
	.sidr li li a::after {
		content: '';
		position: absolute;
		top: 0; left: 0;
		width: 100%; height: 100%;
		background: rgb(212, 175, 55);
	}
	.sidr-class-header-search {
		display: none;
	}
	.widget {
		margin-bottom: 36px;
	}
	.footer-information .content {
		text-align: center;
	}
	.footer-information .align-left {
		float: none;
		display: block;
		text-align: center;
	}
	.footer-information .align-right {
		float: none;
		display: block;
		text-align: center;
		margin-top: 12px;
	}

	/* Banner Image */

	.wp-block-cover::after {
		width: calc(100% - 46px);
		margin: 18px 18px 18px 28px;
	}

	.faq-header {
		padding-top:28px;
	}

	.faq-section .organic-column br {
		display:none;
	}

	.faq-section .one-half {
		float: none;
		width: 100%;
		margin-right: 0px;
	}

	.faq-section .organic-column {
		padding:0!important;
	}

	.faq-section {
		padding: 0px 18px;
	}

	.artisan-sidebar-inactive.artisan-singular .wp-block-media-text.alignfull {
		width: calc(100vw - 64px);
		margin-left: 32px;
		margin-right: 32px;
	}

	.artisan-sidebar-inactive.artisan-singular .alignfull.google-map{
		width: calc(100% + 0px);
		margin-left: 12px;
	}

	.wp-block-media-text.alignfull.is-stacked-on-mobile {
		margin: auto!important;
	}

	.wp-block-media-text.is-stacked-on-mobile {
		display: flex;
		flex-wrap: wrap;
	}

	.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content, 
	.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
		width: 100%;
	}
	.wp-block-media-text .wp-block-media-text__content {
		left: 0px;
		right: 0px;
		margin: 0px;
	}

	.footer-widgets {
		padding-left:18px;
		padding-right:18px;
	}

	.artisan-sidebar-inactive.artisan-singular .alignfull.google-map{
		width: calc(100% + 0px);
		margin-left: 12px;
	}

	.artisan-sidebar-inactive.artisan-singular .wp-block-media-text.alignfull {
		width: 	calc(100vw - 50px);
		left: auto;
	}

	.contact-details {
		margin: 0 0 18px!important;
	}

	.contact-form-wrapper {
		margin: 18px 0 0!important;
	}

	.contact-form-wrapper form {
		width: 96%;
		margin-left: 2%;
		margin-bottom: 0;
	}
	
	.woocommerce .cart-subtotal,
	.woocommerce th.product-name,
	.woocommerce th.product-total {
		display: none!important;
	}

	.shop_table.woocommerce-checkout-review-order-table {
		padding: 0!important;
	}
}

/************************************************
	Phone Styles
************************************************/

@media screen and (max-width: 812px) {
	.wp-block-media-text.is-stacked-on-mobile {
		display: flex;
		flex-wrap: wrap;
	}
	.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content,
	.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
		width: 100%;
	}
	.wp-block-media-text .wp-block-media-text__content,
	.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
		left: 0px; right: 0px;
		margin: 0px;
	}
	.wp-block-media-text.alignfull.is-stacked-on-mobile {
		margin:auto!important;
	}
	.contact-form-wrapper {
		margin: 18px 0 0!important;
	}
	.contact-details{
		margin: 0 0 18px!important;
	}

	/* Banner Image */

	.wp-block-cover::after {
		width: calc(100% - 46px);
		margin: 18px 18px 18px 28px;
	}

	.faq-header {
		padding-top:28px;
	}

	.faq-section .organic-column br {
		display:none;
	}

	.artisan-sidebar-inactive.artisan-singular .wp-block-media-text.alignfull {
		width: 	calc(100vw - 50px);
		left: auto;
	}

	.faq-section .one-half {
		float: none;
		width: 100%;
		margin-right: 0px;
	}

	.faq-section .organic-column {
		padding:0!important;
	}

	.faq-section {
		padding: 0px 18px;
	}

	.artisan-sidebar-inactive.artisan-singular .alignfull.google-map{
		width: calc(100% + 0px);
		margin-left: 12px;
	}

	.contact-form-wrapper form {
		width: 96%;
		margin-left: 2%;
		margin-bottom: 0;
	}

	.artisan-sidebar-inactive.artisan-singular .alignfull .alignfull {
		max-width: inherit;
	}

	 .wp-block-cover.alignfull.book-now-cover-banner .wp-block-cover__inner-container {
    	padding:0;
	}

	.wp-block-cover.alignfull.book-now-cover-banner .mphb_sc_search-wrapper {
		padding: 1rem 1.5rem;
	}

	.wp-block-cover.alignfull.book-now-cover-banner .mphb_sc_search-form {

		flex-direction: column;
		align-items: center;
		margin: 0;
	}

	.wp-block-cover.book-now-cover-banner h2::after {
		background: none;
	}

	.wp-block-cover.book-now-cover-banner::before {
		z-index: 0;
	}

	.wp-block-cover.book-now-cover-banner .mphb_sc_search-wrapper .mphb_sc_search-form>* {
		width: 100%;
	}

	.wp-block-cover.book-now-cover-banner .mphb_sc_search-wrapper select,
	.wp-block-cover.book-now-cover-banner .mphb_sc_search-wrapper .mphb_sc_search-form input[type='text'],
	.wp-block-cover.book-now-cover-banner .mphb_sc_search-wrapper .mphb_sc_search-form input[type='submit']  {
		width: 100%;
	}

	.wp-block-cover.book-now-cover-banner .mphb_sc_search-wrapper .mphb_sc_search-form input[type='submit']  {
		background-color: #ffd700;
	}

	.facilities-wrapper article {
		width: 100%;
	}

	.wp-block-gallery[class*="column"]:before,
	.wp-block-gallery[class*="column"]:after {
    	display: none;
	}

	.artisan-sidebar-inactive.artisan-singular .gallery-wrapper.alignfull {
		margin-left: 18px;
	}

	.mphb_sc_search_results-wrapper {
		background-color: inherit;
		margin: 2rem 0 3rem;
		padding:0;
		border: none;
	}
	.mphb_sc_search_results-wrapper .mphb_sc_search_results-info {
		color: #fff;
		padding:0;
	}
	.mphb_sc_search_results-wrapper .mphb_sc_search_results-info p {
		margin-bottom: 0;
	}
	.mphb_sc_search_results-wrapper .mphb-loop-room-thumbnail {
		margin-top:0;
	}
	ul.mphb-single-room-type-attributes li.mphb-room-type-facilities span.mphb-attribute-value span a, ul.mphb-loop-room-type-attributes li.mphb-room-type-facilities span.mphb-attribute-value span a {
		pointer-events: none!important;
		cursor: default!important;
		text-decoration: none!important;
		color: #000!important;
	}
	
	#mphb-customer-details.mphb-checkout-section .mphb-customer-name, 
	#mphb-customer-details.mphb-checkout-section .mphb-customer-last-name, 
	#mphb-customer-details.mphb-checkout-section .mphb-customer-email, 
	#mphb-customer-details.mphb-checkout-section .mphb-customer-phone,
	#mphb-customer-details.mphb-checkout-section .mphb-customer-address1,
	#mphb-customer-details.mphb-checkout-section .mphb-customer-city,
	#mphb-customer-details.mphb-checkout-section .mphb-customer-state,
	#mphb-customer-details.mphb-checkout-section .mphb-customer-zip {
		width: 100%;
	}

	#mphb-customer-details.mphb-checkout-section .mphb-customer-name, 
	#mphb-customer-details.mphb-checkout-section .mphb-customer-email,
	#mphb-customer-details.mphb-checkout-section .mphb-customer-address1,
	#mphb-customer-details.mphb-checkout-section .mphb-customer-state {
		padding-right:0;
	}

	#mphb-customer-details.mphb-checkout-section .mphb-customer-last-name, 
	#mphb-customer-details.mphb-checkout-section .mphb-customer-phone,
	#mphb-customer-details.mphb-checkout-section .mphb-customer-city,
	#mphb-customer-details.mphb-checkout-section .mphb-customer-zip {
		padding-left:0;
	}

	#mphb-customer-details.mphb-checkout-section>* {
     	float: none;
	}

	.woocommerce .cart-subtotal,
	.woocommerce th.product-name,
	.woocommerce th.product-total {
		display: none!important;
	}

	.shop_table.woocommerce-checkout-review-order-table {
		padding: 0!important;
	}

	#home_nav #home_nav_main .nav_menu_item > a .background_image {
		background: rgba(212, 175, 55, 0.2)!important;
	}

	.accommodation-toggles {
		margin-bottom: 48px;
	}
	.accommodation-meta {
		flex-direction: column;
		align-items: flex-start !important;
		-webkit-box-align: flex-start !important;
     	-webkit-align-items: flex-start !important; 
    	-ms-flex-align: flex-start !important;
	}
}

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

	ul.mphb-single-room-type-attributes li.mphb-room-type-facilities span.mphb-attribute-value span a, ul.mphb-loop-room-type-attributes li.mphb-room-type-facilities span.mphb-attribute-value span a {
		pointer-events: none!important;
		cursor: default!important;
		text-decoration: none!important;
		color: #000!important;
	}

	.wp-block-gallery[class*="column"]:before,
	.wp-block-gallery[class*="column"]:after {
    	display: none;
	}

	.wp-block-cover.alignfull.book-now-cover-banner .wp-block-cover__inner-container {
    	padding:0;
	}

	.footer {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.footer-widgets {
		text-align: center;
	}

	.footer-widgets h3::after {
		width:100%;
	}

	/* Typography Phone */

	h1 {
		font-size: 1.2rem;
	}
	body, p {
		font-size: 1.1rem;
		line-height: 1.6;
	}
	blockquote p {
		font-size: 1.2rem;
		line-height: 1.5;
	}

	/* Theme Phone */

	#wpadminbar {
		position: fixed;
	}
	.admin-bar #side-menu {
		margin-top: 46px;
	}
	#masthead .site-description {
		font-size: 2rem;
	}
	.content {
		padding: 0px 18px;
	}
	.content.shop {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.blog-holder,
	.archive-holder {
		margin: 24px 0px;
	}
	.blog-holder .entry-content,
	.archive-holder .entry-content {
		padding: 18px 24px;
	}
	.post-meta p, .post-meta a {
		font-size: 0.8rem;
	}
	.post-author .author-avatar {
		display: none;
	}
	.sidebar {
		padding: 24px 0px;
	}
	.widget {
		margin-bottom: 24px;
	}
	.sidebar .widget:last-child,
	.footer-widgets .widget:last-child {
		margin-bottom: 12px;
	}
	.footer-widgets {
		display: block;
		width: 100%;
		margin: 0px;
		padding: 18px 0px 12px;
	}
	.footer-widgets .footer-widget {
		padding: 0px;
	}
	.footer-widgets .widget {
		width: 100% !important;
		margin-bottom: 36px;
	}

	.faq-section .organic-column {
		padding:0!important;
	}

	.faq-header {
		padding-top:28px;
	}

	.faq-section .organic-column br {
		display:none;
	}

	/* Images */

	.banner-img {
		border: none;
	}

	/* Blocks */

	.wp-block-cover p, .wp-block-cover p.wp-block-cover-text {
		font-size: 110%;
	}
	.wp-block-cover.alignfull .wp-block-cover__inner-container,
	.wp-block-cover.alignwide .wp-block-cover__inner-container {
		padding: 48px;
	}

	/* Banners */

	.artisan-sidebar-inactive.artisan-singular .alignfull.google-map{
		width: calc(100% + 72px);
		margin-left: 10px;
		left: auto;
	}

	.artisan-sidebar-inactive.artisan-singular .alignfull,
	.artisan-sidebar-inactive.artisan-singular .alignwide {
		width: calc(100% + 36px);
		max-width: calc(100% + 36px);
		margin-left: -18px;
		left: auto;
	}

	.wp-block-cover::after {
		width: calc(100% - 36px);
		margin: 18px 18px 18px 18px;
	}
	
	.artisan-sidebar-inactive.artisan-singular .wp-block-media-text.alignfull {
		width: calc(100vw - 50px);
	}

	
	/* Forms */

	.contact-form-wrapper form {
		width: 96%;
		margin-left: 2%;
		margin-bottom: 0;
	}

	form input[type='url'],
	form input[type='tel'],
	form input[type='email'],
	form input[type='text'],
	form input[type='password'],
	form input[type='number'] {
		width: 100%;
	}

	/* Tables */

	table td, table.wp-block-table td,
	table th, table.wp-block-table th {
		padding: 12px 0px;
	}
	table thead + tbody tr td,
	table.wp-block-table thead + tbody tr td {
		border-top: 1px solid #dddddd;
		border-top: 1px solid rgba(0, 0, 0, 0.12);
	}

	/* Grid */

	body {
		-webkit-text-size-adjust: none;
		-ms-text-size-adjust: none;
		width: 100%;
		min-width: 0;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}
	.row {
		width: 100%;
		min-width: 0;
		margin-left: 0;
		margin-right: 0;
		overflow: visible !important;
	}
	.flex-row {
		display: block;
	}
	.half, .third, .one-third, .fourth,
	.one-fourth, .fifth, .one-fifth,
	.two-thirds, .three-fourths {
		float: none;
		width: 100%;
	}
	.row .row .column,
	.row .row .columns {
		padding: 0;
	}
	.column, .columns {
		width: auto !important;
		float: none;
		margin-left: 0;
		margin-right: 0;
	}
	.column:last-child, .columns:last-child {
		margin-right: 0;
		float: none;
	}
	[class*="column"] + [class*="column"]:last-child {
		float: none;
	}
	[class*="column"]:before, [class*="column"]:after {
		content:'';
		display:table;
	}
	[class*="column"]:after {
		clear: both;
	}
}
