/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Fonts
# Root
# Global
    ## Tools
# Typography
# actusblank
# Menu
# Footer
# Layout
--------------------------------------------------------------*/
 


/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

/*
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700,900&display=swap&subset=greek');
@import url('https://fonts.googleapis.com/css?family=Sofia+Sans+Condensed:300,400,500,700,900,1000&display=swap&subset=greek');
*/
@import url('https://fonts.googleapis.com/css?family=Manrope:300,400,700,900&display=swap&subset=greek');
@import url('https://fonts.googleapis.com/css?family=Geologica:300,400,700,900&display=swap&subset=greek');
 

@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400..900&family=EB+Garamond:wght@400..800&family=GFS+Didot&family=STIX+Two+Text:wght@400..700&family=Tinos:wght@400;700&display=swap');


/* Root */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
:root {

    --fontA: 'Manrope', sans-serif;
    --fontB: 'Geologica', sans-serif;
	
	--colorA: #7e4939;
	--colorB: #505f58;
	--colorC: #b38972;
	--colorD: #21221c;


    --txA: 0 0 1px hsla(176, 99%, 33%, 0.4);
    --txB: 0 0 1px hsla(217, 51%, 20%, 0.4);
    --txC: 0 0 1px hsla(215, 26%, 37%, 0.4);
    --txD: 0 0 1px hsla(0, 0%, 90%, 0.4);

    --txA3: 0 0 1px hsla(210, 74%, 48%, 0.4);

    --txWH: 0 0 1px hsla(0, 0%, 100%, 0.4);
    --txBL: 0 0 1px hsla(0, 0%, 0%, 0.4);



}


 
/* Typography - Colors */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
html {
	box-sizing: border-box;
	font-family: sans-serif; 
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body { margin: 0; font-family: var(--fontA); }
body, body * { box-sizing: border-box; }
html, body { overflow-x: hidden; }
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--colorA);
}
::-webkit-scrollbar-thumb {
    background: var(--colorB);
    border: 2px solid var(--colorA);
}
body::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}


a,p,li,h1,h2,h3,h4,h5,h6 { font-family: var(--fontA); }
.uline::after { border-bottom: 8px solid var(--colorA); }
a { color: var(--colorA); text-decoration: none; }
a h1, a h2, a h3, a h4, a h5, a h6, a li,
a p { color: black; }

p, a, li { font-size: 18px; line-height: 1.5; }

.A-round,
.A-button-round { background: var(--colorA); }

.backA { background: var(--colorA); }
.backB { background: var(--colorB); }
.backC { background: var(--colorC); }
.backD { background: var(--colorD); }
.backE { background: #021d26; }
.backF { background: #cecece; }

.A-flex { display: flex; }
.A-flex-wrap { display: flex; flex-flow: row wrap; }

.abs {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}




body #content,
body footer { display: block; }
figure { margin: 0; }


img { position: relative; }
img:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: white;
}
.A-content img { max-width: 100%; height: auto; }
[data-show="1"] { cursor: zoom-in; }



/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ HEADER */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
header {
	position: relative;
    text-align: center;
	padding: 0px 64px 0 64px;
	z-index: 99;
}
header .A-flex {
	flex-flow: column;
	align-items: center;
}
header .A-logo {
	display: inline-block;
    width: auto;
	margin: 0px 0 32px;
	line-height: 0;
	transition: 1s all;
}
header .A-logo img {
    width: 100%;
    height: auto;
	max-width: 400px;
    object-fit: contain;
}
header .A-logo.closed { transform: scale(0); }
header .A-logo figcaption {
    font: 700 16px var(--fontB);
    color: var(--colorA);
    opacity: 0.35;
}


/* Navigation */
header nav .menu-toggle {
	display: none;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	cursor: pointer;
}
header nav .menu-toggle svg {
	height: 32px;
    fill: var(--colorA);
    stroke: var(--colorA);
    stroke-width: 12px;
}
header nav {
    position: relative;
	display: block;
    width: auto;
	margin: 0 0 8px;
    text-align: center;
	transition: 1s all;
    z-index: 9;
}
header nav.closed { left: -300px; }
header nav ul {
	width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
	text-align: center;
}
header nav ul li {
    display: block;
    position: relative;
    width: auto;
    padding: 0px;
    margin: 12px 0px;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
header nav ul li a {
    position: relative;
    font: 700 20px var(--fontA);
	text-decoration: none;
	color: black;
    color: var(--colorA);
    z-index: 99;
}
header nav ul li:hover > a,
header nav ul li.current_page_item > a {
    color: var(--colorB);
    opacity: 1;
}
header nav ul.sub-menu { 
	display: none;
	position: absolute;
	min-width: 120px;
	padding: 4px 0;
	text-align: left;
}
header nav ul.sub-menu li {
	margin: 0;
	padding: 4px 0 4px 16px;
}
header nav ul li:hover ul.sub-menu { display: block; }


.A-header-info a {
	display: block;
	margin: 12px 0;
	font: 700 20px var(--fontA);
}
.A-header-info svg {
	height: 20px;
	margin-right: 8px;
	fill: var(--colorA);
	opacity: 0.5;
}
header .orn-01 {
	width: 140px;
	width: 80px;
	height: auto;
}

header .languages {
	display: flex;
    place-content: center;
	list-style: none;
	margin: 24px auto 0;
	padding: 0;
}
header .languages img {
	height: 24px;
	width: auto;
	margin: 0 8px;
	cursor: pointer;
}

.A-header-info-2 { margin: 32px 0 0; }
.A-header-info-2 a { margin: 0 8px; }
.A-header-info-2 img {
	width: auto;
	height: 50px;
}


nav.A-breadcrumb {}

nav.A-breadcrumb ul { display: flex; list-style: none; }
nav.A-breadcrumb ul li { margin-right: 8px; }
nav.A-breadcrumb ul li a { text-decoration: none; font-weight: 700; color: var(--colorB); }
nav.A-breadcrumb ul li a:hover { text-decoration: underline; }


/* SEARCH */
.A-search {
	display: flex;
	position: absolute;
    top: 32px;
    right: 5%;
}
.A-search:hover {opacity: 1;}
.A-search form { display: flex; }
.A-search label span { display: none; }
.A-search input[type="search"] {
    width: 100%;
    min-width: 260px;
    padding: 6px 32px 6px 8px;
    font: 400 14px var(--fontA);
    background: hsla(0, 0%, 0%, 0.1);
    border: 0;
    outline: 0;
    border-radius: 100px;
}
.A-search .search-submit {
    top: 2px;
    margin-left: -34px;
    font-size: 14px;
    opacity: 0.7;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.A-search .search-submit:hover { opacity: 1; }
.A-search .search-submit img {
    width: auto;
    height: 20px;
    padding: 2px 0;
	object-fit: contain;
}
.A-search svg {
    position: relative;
    top: 2px;
	height: 16px;
	pointer-events: none;
}


.search-result-list {
	padding: 0;
	list-style: none;
}
.search-result-list li { margin-bottom: 16px; }
.search-result-list li > a {
	display: flex;
    align-items: center;
}
.search-result-list li .img-placeholder,
.search-result-list li img {
	flex: 0 0 auto;
	width: 100px;
	height: 100px;
	object-fit: cover;
	margin-right: 16px;
	background: #DDD;
}
.search-result-list li h3 { margin: 0 0 12px; }
.search-result-list li p { margin: 0; }


.A-404,
.A-SEARCH-RESULTS { padding: 32px 10%; }
.A-SEARCH-RESULTS ul {
	padding: 0;
	list-style: none;
}
.A-SEARCH-RESULTS .pagination { margin-top: 64px; }
.A-SEARCH-RESULTS .pagination > .screen-reader-text {
	display: none;
}
.A-SEARCH-RESULTS .nav-links {
	display: flex;
	align-items: center;
	place-content: center;
}
.A-SEARCH-RESULTS .nav-links span,
.A-SEARCH-RESULTS .nav-links a {
	margin: 0 4px;
	font-size: 18px;
	line-height: 1;
}
.A-SEARCH-RESULTS .page-numbers {
	margin: 4px;
	padding: 6px 12px;
	background: var(--colorA);
	color: white;
}
.A-SEARCH-RESULTS .prev,
.A-SEARCH-RESULTS .next {
	background: transparent;
	color: var(--colorA);
}
.A-SEARCH-RESULTS .page-numbers:hover {
	background: var(--colorB);
	color: white;
}



#act_map {
	display: none;
	width: 60%;
	height: 300px;
}
.gm-style-mtc { display: none; }




.A-video-frame {
	position: relative;
    width: 100%;
	padding: 0;
	line-height: 0;
}
.A-video-frame .wp-block-embed__wrapper {
	position: relative;
	width: calc(100% / 1.0);
	padding-top: calc(56.25% / 1.0);
	margin: 0 auto;
}
.A-video-frame .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.A-shadow-R { position: relative; }
.A-shadow-R:before {
	content: "";
	position: absolute;
	left: 100%;
	top: 0;
	height: 100%;
	width: 128px;
	background: url(img/shadow-R.jpg) no-repeat;
	background-size: contain;
}


.Aitem .more,
.A-more {
	display: inline-block;
	position: relative;
	margin-top: 24px;
	padding: 7px 16px 5px;
	font: 700 14px var(--fontA);
	line-height: 1;
	background: var(--colorA);
	color: white;
	border-radius: 40px;
	cursor: pointer;
}
.A-more a { color: white; }
.Aitem .more:hover,
.A-more:hover { background: black; }





/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ MAIN */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
body { padding-top: 64px; }
.A-content { position: relative; }


header {
	width: 30%;
	float: left;
}
main#content {
	flex: 1 1 auto;
	width: 100%;
}


.A-dec-01 {
	width: 100%;
	height: 100px;
	background-image: url(img/dec-06-b.jpg);
	background-repeat: repeat-x;
}
.A-home-dec-01 {
	padding: 64px 30% 4px;
	filter: brightness(40.5) saturate(0.0) contrast(10.5);
}
.A-home-photo {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 700px;
	margin: 0;
    overflow: hidden;
}
.A-home-photo:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: hsla(0, 0%, 0%, 0.4);
}
.A-home-photo img {
	height: 100%;
	object-fit: cover;
	object-position: top;
}









/* MARK: SLIDER            
   ----------------------- */
.A-home-slider {
	position: relative;
	width: 70%;
	height: 700px;
	background: var(--colorC);
	overflow: hidden;
}
.A-home-slider .slide,
.A-home-slider .slides,
.A-home-slider img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.A-home-slider .moto {
	display: flex;
	flex-flow: row wrap;
	align-content: flex-end;
	position: absolute;
	right: 0%;
	top: 0;
	width: 750px;
	height: 100%;
	padding: 0 7vw 64px 0;
	background: var(--gradA1);
	text-align: right;
}
.A-home-slider .moto h2:first-child { text-transform: uppercase; }
.A-home-slider .moto h2 {
	width: 100%;
	margin: 0;
	font: 700 38px var(--fontB);
	line-height: 1;
	color: white;
	text-shadow: var(--txWH);
}
.A-home-slider .moto h2 span {
	margin-top: 4px;
	font-size: 31px;
	color: var(--colorB);
	text-shadow: var(--txA);
	float: right;
}
.A-home-slider .slides .AB-slide { overflow: hidden; }

.A-area-slider {
	width: 100%;
	height: 600px;
}





/* MARK: HOME            
   ----------------------- */
.home-A { width: 100%; padding: 0; }
.home-A { background: var(--colorC); }
.home-A .Col1 {
    display: flex;
    align-items: center;
    place-content: center;
	flex: 0 0 auto;
	width: 30%;
	height: 140px;
	padding: 0 2%;
	background: var(--colorA);
}
.home-A .Col1 h2 {
	margin: 0;
	font: 900 28px var(--fontB);
	text-align: center;
	color: white;
}
.home-A .Col2 {
    display: flex;
    align-items: center;
    place-content: center;
}
.home-A .Col2 form { display: flex; align-items: flex-end; }
.home-A .Col2 form select,
.home-A .Col2 form input[type="text"] { background-color: white; }
.home-A .Col2 form > * { margin: 0 16px; }


.home-map > .Col1,
.home-F > .Col1,
.home-E > .Col1,
.home-D > .Col1,
.home-C > .Col1,
.home-B .Col1 {
    display: flex;
	flex-flow: column;
    align-items: center;
    place-content: center;
	flex: 0 0 auto;
	width: 30%;
	padding: 0 0;
}
.home-F > .Col2,
.home-E > .Col2,
.home-D > .Col2,
.home-C > .Col2,
.home-B .Col2 {
    display: flex;
	flex-flow: column;
    align-items: center;
    place-content: center;
	padding: 0 15%;
	text-align: center;
}
.home-B .Col2 { padding-top: 32px; }
.home-B .decor { height: 100%; }
.home-B .decor img { height: 100%; object-fit: cover; }

.home-C .Col1 .decor {
    transform: rotateX(180deg);
    line-height: 0;
}
.home-C .Col1 .olive { margin: 96px 0; }
.home-C .Col1 .olive img {
	width: 104px;
	height: auto;
	mix-blend-mode: multiply;
}
.home-C > .Col1 { background: var(--colorC); place-content: unset; }
.home-C > .Col2 { padding: 0 5% 64px; place-content: unset; }
.home-C .photos {
	align-items: flex-start;
    width: 100%;
	margin: 96px 0 64px;
	text-align: center;
}
.home-C .photos .Acolumn {
	flex: 0 0 auto;
	width: 33.333%;
	padding: 0 8px;
}
.home-C .photos h3 { color: var(--colorB); }
.home-C .photos p { font-size: 16px; }
.home-C .photos img {
	height: 300px;
	width: 100%;
	object-fit: cover;
}
.home-C .icons .Apic {
	width: 10vw;
	height: 10vw;
    margin: 0 auto;
	border-radius: 300px;
	border: 2px solid var(--colorB);
}
.home-C .icons svg {
    width: 100%;
    height: 100%;
    padding: 2.5vw;
	fill: var(--colorB);
}
.home-C .icons svg path { fill: var(--colorB); }

.amenity-line {
	align-items: center;
	width: 514px;
	margin: 0 auto;
	padding: 32px 32px;
	text-align: left;
	border-top: 1px dotted var(--colorA);
}
.amenity-line .Col1 {
	flex: 0 0 auto;
	width: 80px;
}
.amenity-line .Col2 { flex: 1; }
.amenity-line .Apic svg {
	width: 48px;
	height: 48px;
	fill: var(--colorB);
}
.Xamenity-line .Apic svg path { fill: var(--colorB); }


.home-D > .Col1 h2 {
	margin: 0;
	font: 900 40px var(--fontB);
	color: white;
}
.home-D > .Col1 { background: var(--colorB); }
.home-D > .Col2 { padding: 0; background: var(--colorC); }


.home-E > .Col2 h2 { font: 900 40px var(--fontB); }
.home-E > .Col1 { background: var(--colorC); }
.home-E > .Col2 { padding: 48px 15% 64px; }
.home-E .Apic { height: 100%; }
.home-E .Apic img { height: 100%; object-fit: cover; }

.home-F > .Col2 {
	padding: 48px 10% 64px;
	background: var(--colorC);
}
.home-F .Apic { height: 100%; }
.home-F .Apic img { height: 100%; object-fit: cover; }
.home-F > .Col2 h2 { font: 900 40px var(--fontB); }
.home-F .wp-block-button {
	margin-top: 24px !important;
}



.home-map > .Col1 { height: 500px; background: var(--colorC); }
.home-map h2 {
	margin: 0 0 32px;
	font: 900 32px var(--fontB);
	color: var(--colorB);
}
.home-map iframe {
	width: 100%;
	height: 500px;
}
.wp-block-buttons { display: block; }
.wp-block-button { margin: 24px 0; }
.wp-block-button:hover a { background: var(--colorB); }
.wp-block-button a {
    display: block;
    text-align: center;
	min-width: 180px;
}





.mphb-required-fields-tip { display: none; }


/* MARK: ROOM            
   ----------------------- */
.room-A { padding: 0; }
.room-A .mphb-reserve-btn { margin-top: 32px; }
.room-A .mphb-reserve-btn:hover { background: black; }
.room-A label { color: white; }
.room-A h1,
.room-A h2 {
	margin: 0 0 32px;
	font: 900 32px var(--fontB);
	color: var(--colorB);
}
.room-A .Col1 {
	flex: 0 0 auto;
	width: 30%;
	padding: 20px 5% 40px;
	background: var(--colorB);
}
.room-A .Col2 {
	padding: 48px 10% 48px 5%;
}
.room-A .Col1 h2 {
	margin: 40px 0;
	color: white;
	text-align: center;
}
.room-A form input[type="submit"]:hover { background: black; }
.room-A .mphb-rooms-quantity-multiple { display: none; }
.room-A .mphb-period-price { color: white; }

.room-B .Col1 {
	flex: 0 0 auto;
	width: 30%;
	padding: 20px 5% 40px;
	padding: 0;
	text-align: center;
}
.room-B .Col1 h2 {
	margin: 0;
	font: 900 32px var(--fontB);
	color: var(--colorB);
}
.room-B .Col1 .Apic { height: 100%; line-height: 0; }
.room-B .Col1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.room-B .Col2 {
	align-content: center;
	padding: 48px 5%;
	background: var(--colorC);
}



.amenities-list {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	margin: 0;
	padding: 0;
	list-style: none;
}
.amenities-list li {
	flex: 0 0 auto;
	width: 50%;
	margin: 20px 0;
	padding: 0 40px 0 8px;
    font-family: var(--fontB);
	border-left: 4px solid var(--colorB);
}



.room-C .Col1 {
	flex: 0 0 auto;
	width: 30%;
	padding: 0;
	text-align: center;
	background: var(--colorC);
}
.room-C .Acarousel[data-navi="sides"] { padding: 0; }
.room-C .Acarousel .Aitems { flex-flow: row wrap; }
.room-C .Acarousel .Acolumn { padding: 0; }
.room-C .Acarousel picture { line-height: 0; }
.room-C .Acarousel img {
    height: 16vw;
    object-fit: cover;
	line-height: 0;
}
.room-C .Col1 .olive { height: 100%; padding: 5vw 0; }
.room-C .Col1 .olive img {
	width: auto;
	height: auto;
    min-height: 100%;
	mix-blend-mode: multiply;
}
.room-C .Col2 { background: var(--colorB); }



.A-area-carousel.Acarousel[data-navi="sides"] { padding: 0; }
.A-area-carousel .Aitems { flex-flow: row wrap; }
.A-area-carousel .Acolumn { padding: 4px; }
.A-area-carousel picture { line-height: 0; }
.A-area-carousel img {
    height: 16vw;
    object-fit: cover;
	line-height: 0;
}


.A-photo-grid.Acarousel[data-navi="sides"] { padding: 0; }
.A-photo-grid .Aitems { flex-flow: row wrap; }
.A-photo-grid .Acolumn { padding: 4px; }
.A-photo-grid picture { line-height: 0; }
.A-photo-grid img {
    height: 16vw;
    object-fit: cover;
	line-height: 0;
}





.A-place  {
	margin: 96px 0;
}
.A-place .Col1 {
    display: flex;
	flex-flow: column;
	flex: 0 0 auto;
	width: 30%;
	padding: 0 0;
}
.A-place .Col2 {
	padding-left: 48px;
}
.A-place h2 {
	margin: 0 0 24px;
	font: 900 32px var(--fontB);
	color: var(--colorB);
}



.page-template-page-B h4 {
	font: 900 24px var(--fontA);
	color: var(--colorA);
}



/* MARK: BOOKING            
   ----------------------- */
/* Επιβεβαίωση Κράτησης */
.page-template-page-B .A-page-title {
	margin: 0 0 64px;
	font: 900 40px var(--fontB);
	color: var(--colorB);
}
.page-template-page-B .A-page-content {
	width: 70%;
	float: right;
	padding: 0 64px;
	border-left: 16px solid var(--colorB);
}




.page-id-216 .mphb-price-breakdown-subtotal,
.page-id-216 .mphb-price-breakdown-accommodation-total,
.page-id-216 .mphb-price-breakdown-rate,
.page-id-216 .mphb-login-form-wrap,
.page-id-61 .mphb-price-breakdown-subtotal,
.page-id-61 .mphb-price-breakdown-accommodation-total,
.page-id-61 .mphb-price-breakdown-rate,
.page-id-61 .mphb-login-form-wrap { display: none; }

.page-id-216 .mphb-guest-name-wrapper,
.page-id-61 .mphb-guest-name-wrapper {
	display: inline-block;
	width: calc(69% - 24px);
	margin-left: 24px;
}
.page-id-216 .mphb-adults-chooser,
.page-id-61 .mphb-adults-chooser {
	display: inline-block;
	width: 30%;
}

.page-id-216 .mphb-customer-details-title,
.page-id-216 .mphb-price-breakdown-title,
.page-id-216 .mphb-room-number,
.page-id-61 .mphb-customer-details-title,
.page-id-61 .mphb-price-breakdown-title,
.page-id-61 .mphb-room-number {
	margin: 32px 0 16px;
	font: 900 26px var(--fontA);
	color: var(--colorA);
}
.page-id-216 .mphb-price-breakdown tfoot tr th,
.page-id-216 .mphb-price-breakdown tfoot tr th,
.page-id-216 .mphb-price-breakdown tr th:nth-child(2),
.page-id-216 .mphb-price-breakdown tr td:nth-child(2),
.page-id-61 .mphb-price-breakdown tfoot tr th,
.page-id-61 .mphb-price-breakdown tfoot tr th,
.page-id-61 .mphb-price-breakdown tr th:nth-child(2),
.page-id-61 .mphb-price-breakdown tr td:nth-child(2) { text-align: right; }
.page-id-216 .mphb-price-breakdown-expand,
.page-id-61 .mphb-price-breakdown-expand { margin-right: 12px; }
.page-id-216 .mphb-price-breakdown-dates th,
.page-id-61 .mphb-price-breakdown-dates th {
	padding-top: 16px;
	text-align: left;
}
.page-id-216 .mphb-price-breakdown tfoot tr th:nth-child(1),
.page-id-216 .mphb-price-breakdown-date td:nth-child(1),
.page-id-61 .mphb-price-breakdown tfoot tr th:nth-child(1),
.page-id-61 .mphb-price-breakdown-date td:nth-child(1) { padding-right: 12px; }

.page-id-216 .mphb-reservation-submitted-title,
.page-id-216 .mphb-booking-details-title.
.page-id-61 .mphb-reservation-submitted-title,
.page-id-61 .mphb-booking-details-title {
	margin: 0 0 32px;
	font: 900 32px var(--fontA);
	color: var(--colorA);
}



.page-id-216 .mphb_sc_checkout-submit-wrapper input,
.page-id-61 .mphb_sc_checkout-submit-wrapper input {
	margin: 48px 0 96px;
	padding: 16px;
	font: 900 26px var(--fontB);
}
.page-id-216 .mphb-customer-country,
.page-id-216 .mphb-customer-email,
.page-id-216 .mphb-customer-name,
.page-id-61 .mphb-customer-country,
.page-id-61 .mphb-customer-email,
.page-id-61 .mphb-customer-name {
	display: inline-block;
	width: calc(50% - 24px);
	margin-right: 24px;
}
.page-id-216 .mphb-customer-phone,
.page-id-216 .mphb-customer-last-name,
.page-id-61 .mphb-customer-phone,
.page-id-61 .mphb-customer-last-name {
	display: inline-block;
	width: 49%;
}



.mphb_sc_search_results-wrapper .mphb-reservation-cart { margin-bottom: 0; }
.mphb-loop-room-thumbnail { margin: 0; line-height: 0; }
.mphb-loop-room-thumbnail a { line-height: 0; }
.mphb-loop-room-thumbnail img {
	width: 30vw;
	height: auto;
	object-fit: contain;
}

.mphb_sc_search_results-wrapper h2.mphb-room-type-title a { color: white; }
.mphb_sc_search_results-wrapper h2.mphb-room-type-title {
	width: 30vw;
	margin: 0;
	padding: 8px 24px 12px;
	background: var(--colorB);
}
.mphb-view-details-button-wrapper { display: none; }

.mphb-book-button {
    margin: 48px 0 96px;
    padding: 16px 64px;
    font: 900 26px var(--fontB);
	background: var(--colorA);
    color: white;
    cursor: pointer;
	border-radius: 18px;
	border: 0;
	outline: 0;
}
.mphb-book-button:hover {
    background: var(--colorB);
}
select.mphb-rooms-quantity {
	padding: 4px 8px;
	font-size: 18px;
}




.datepick-multi {
	position: relative;
	width: 500px !important;
}
.datepick-nav {
    display: flex;
    width: 100%;
    place-content: space-between;
}
.datepick-nav a.datepick-cmd {
	width: auto;
    padding: 6px;
    font-size: 16px;
	float: none;
}
.datepick-month { width: 50%; }
.datepick-month-header { padding: 4px 0; }
.datepick-month-header,
.datepick-month-header select,
.datepick-month-header input { background-color: var(--colorA); }
.datepick-month th,
.datepick-month th a { background-color: var(--colorB); }
.datepick-month td { height: 32.5px; }
.datepick-ctrl { background-color: black; }
.datepick-month td span { height: 100%; }
.mphb-datepick-popup .datepick-month td .mphb-earlier-min-date,
.mphb-datepick-popup .datepick-month td .mphb-later-max-date { padding: 6px 0; }





.trp-language-switcher-container.trp-floater-ls-names.trp-bottom-right.trp-color-light {
    min-width: 120px;
}



header .trp-language-switcher {
    display: flex;
    width: 160px;
}
header .trp-language-switcher .trp-ls-shortcode-language,
header .trp-language-switcher > div {
	display: inline-block !important;
    width: 80px !important;
    height: 42px !important;
	padding: 4px 8px;
	border: 0 !important;
	background-image: none;
	visibility: visible !important;
	overflow: unset !important;
}
header .trp-language-switcher > div > a > img { transform: scale(1.5); }
header .trp-ls-shortcode-language .trp-ls-shortcode-disabled-language {
	display: none !important;
}
header .trp-language-switcher:focus .trp-ls-shortcode-language,
header .trp-language-switcher:hover .trp-ls-shortcode-language {
	position: relative;
}





.A-author-info {  }
.A-author-info .author_link { display: block; margin-top: 16px; }
#author-description > p { margin: 0; }
#author-description h2 { margin: 0; }
#author-description .bio {}
.A-archive .A-page-title.author { margin-bottom: 48px; }


/* 	--------------
	ARCHIVE
 	-------------- */
.A-archive { position: relative; padding: 48px 10vw;  }
.A-archive .A-page-title { margin: 0; }
.A-archive .A-subcategories {
	margin-top: 16px;
}
.A-archive .A-subcategories > a {
	margin-right: 16px;
}
.A-archive .A-list {
	display: flex;
	flex-flow: row wrap;
	margin-top: 48px;
}
.A-archive .A-list > a {
	width: 33.333%;
	margin-bottom: 48px;
	padding-right: 32px;
}
.A-pagination { margin-top: 64px; }
.A-pagination ul {
	display: flex;
    place-content: center;
	padding: 0;
	list-style: none;
}
.A-pagination ul li { margin: 0 8px; }
.A-pagination ul li a { color: black; }

.A-archive .A-list > a img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}


.clearfix::after {
	content: "";
	display: block;
	clear: both;
}



/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ FOOTER */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
body footer {
	display: flex;
	flex-flow: column;
	width: 100%;
	margin-top: 48px;
}
.A-footer {
	display: block;
	width: 100%;
    padding: 48px 64px 32px;
    background: hsl(0, 0%, 94%);
	text-align: center;
}
.A-footer-col {
    width: 100%;
    padding: 16px;
    float: left;
}
.A-footer-col .A-logo {
	width: 100%;
	text-align: center;
	mix-blend-mode: multiply;
}
.A-footer-col .A-logo img {
    width: 100%;
	max-width: 300px;
	max-height: 120px;
    height: auto;
    padding: 0 32px;
	object-fit: contain;
    object-position: left;
}
.A-footer-col h3 {
	margin: 0;
	font: 700 18px var(--fontA);
	color: var(--colorB);
}
.A-footer-col label,
.A-footer-col p,
.A-footer-col li,
.A-footer-col a {
    display: block;
	margin: 2px 0;
	font: 400 16px var(--fontA);
	color: black;
}
.A-footer-col label { display: inline-block; margin-right: 8px; }
.A-footer-col a:hover { color: var(--colorB);  font-weight: 700; }
.A-footer-col ul { padding: 0; margin: 0; list-style: none; }
.A-contact-row {
	display: flex;
	margin: 16px 0;
}
.A-contact-row svg {
	height: 24px;
	margin-right: 8px;
	fill: white;
	stroke: white;
}


footer a { text-decoration: none; }
footer .A-social {
	display: flex;
    padding: 0;
	margin-top: 24px;
	place-content: center;
	text-align: center;
}
footer .A-social a {
	margin: 0 8px;
	cursor: pointer;
}
footer .A-social svg { 
	height: 24px;
	fill: var(--colorA);
	transition: 0.3s all;
}
footer .A-social a:hover svg { fill: var(--colorB); transform: scale(1.2); }



.A-footer-created {
	position: relative;
    width: 100%;
    text-align: center;
    padding: 8px;
    background: var(--colorC);
    background: hsl(0, 0%, 88%);
	z-index: 9;
}
.A-footer-created a {
	font-size: 14px;
    font-weight: 700;
    color: var(--colorA);
}
.A-footer-created a:hover { color: var(--colorB); }
.A-footer-created img {
    height: 40px;
    margin: 16px 0 8px 0;
}






/* PARALLAX */
.actus-parallax { overflow: hidden; }

.velaki {
    display: none;
    background: var(--colorA);
    position: fixed;
    bottom: 16px;
	left: calc(100% - 64px);
    padding: 8px 12px 12px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    transform: rotate(-90deg) scale(1);
    cursor: pointer;
    z-index: 9999;
    border-radius: 7px;
    box-shadow: -4px 4px 8px hsla(0, 0%, 0%, 0.3);
    transition: 0.3s;
}




form .form-field { margin-bottom: 16px; }
form .form-submit { position: relative; text-align: center; }
form label { padding-left: 12px; color: var(--colorA); }
form select,
form input,
form textarea {
	width: 100%;
	padding: 8px 16px;
	font: 400 18px var(--fontA);
	background-color: var(--colorC);
	border-radius: 24px;
	border: 0;
	outline: 0;
}
form textarea { font-size: 18px; }
form .wpcf7-acceptance:hover label { color: var(--colorB); }
form .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
form .wpcf7-acceptance label { display: flex; }
form input[type="checkbox"] {
	position: relative;
	flex: 0 0 auto;
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
	padding: 0;
	margin-right: 8px;
	background: transparent;
    border: 6px solid var(--colorB);
	border-radius: 0;
	cursor: pointer;
}
form input[type="checkbox"]::before {
    content: "";
	position: absolute;
    width: 16px;
    height: 16px;
    margin: 2px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 20px 20px var(--colorB);
}
form input[type="checkbox"]:checked::before { transform: scale(1); }
form input[type="submit"] { text-align: center; }
form .form-submit:after {
	content: " ";
	position: absolute;
	top: 40px;
	left: 20%;
	width: 80%;
	height: 48px;
	background: url(img/shadow-2.jpg) no-repeat;
	background-size: 100% 100%;
}
form input[type="submit"] {
	position: relative;
	background: var(--colorA);
	color: white;
	cursor: pointer;
}
form input[type="submit"]:hover { background: var(--colorB); }
form input[type="submit"][disabled] {
	background: var(--colorC);
	cursor: not-allowed;
}


.A-contact form { max-width: 640px; }




/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ RESPONSIVE */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1600px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */




}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1280px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

	header { padding: 0px 40px; }

	.A-area-slider { height: 500px; }
	


}






/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
	

	.room-C > .Col1,
	.room-B > .Col1,
	.room-A > .Col1,
	.home-map > .Col1,
	.home-F > .Col1,
	.home-E > .Col1,
	.home-D > .Col1,
	.home-C > .Col1,
	.home-B > .Col1,
	.home-A > .Col1,
	header { width: 40%; }

	.page-template-page-B .A-page-content { width: 60%; }
	.A-home-slider {
		width: 60%;
		height: 640px;
	}


	.A-place { flex-flow: column; }
	.A-place .Acolumn { width: 100%; padding: 0 0 24px; }
	.A-area-slider {
		width: 100%;
		height: 360px;
	}
	.room-C .Acarousel img { height: 24vw; }	
	
	
}





/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 800px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

	body { padding-top: 48px; }
	header .A-flex { place-items: center; }
	header nav { margin: 0 0 16px; }
	header nav .menu-toggle { display: inline-block; }
	header nav ul { display: none; margin-bottom: 48px; }
	header nav ul li {
		display: block;
		margin: 6px 0px 12px 0;
	}
	header .A-logo img { max-width: 300px; }


	
	.room-A > .Col2,
	.home-F > .Col2,
	.home-E > .Col2,
	.home-C > .Col2,
	.home-B .Col2 { padding: 48px 15%; }
	
	.room-C > .Col1,
	.room-B > .Col1,
	.room-A > .Col1,
	.A-home-slider,
	.home-map > .Col1,
	.home-F > .Col1,
	.home-E > .Col1,
	.home-D > .Col1,
	.home-C > .Col1,
	.home-B > .Col1,
	.home-A > .Col1,
	header {
		width: 100%;
		float: unset;
	}
	.home-D { margin-bottom: 48px; }
	.home-D > .Col1 { padding: 32px; }
	.room-C .Col1,
	.home-C .Col1 .olive,
	.A-header-info,
	header .orn-01 { display: none; }
	header .languages { margin-top: 16px; }
	.A-home-slider { height: 450px; }


	.room-C,
	.room-B,
	.room-A,
	.home-F,
	.home-E,
	.home-D,
	.home-C { flex-flow: column; }
	.home-B,
	.home-map,
	.home-A { flex-flow: column-reverse; }
	.home-A .Col1 { padding: 0 5%; }
	.home-A .Col2 { padding: 24px 5% 32px; }
	.home-A .Col2 form > * { margin: 0 8px; }
	.home-C > .Col2 .crete,
	.home-C .Col1 .decor,
	.home-B .decor { width: 100%; }
	.home-B .decor img { width: 100%; height: 300px; }
	.home-C > .Col1 { background: transparent; }
	.home-C > .Col2 { padding: 48px 5%; }
	.home-C > .Col2 .crete { padding: 0 10%; }
	.home-C .photos img { height: 240px; }
	.home-map > .Col1 { height: auto; padding: 48px 0; background: transparent; }
	.home-map iframe { height: 400px; margin-top: 40px; }

	.home-E > .Col1 { background: transparent; }
	.home-F > .Col1 picture,
	.home-E > .Col1 picture { width: 94%; }
	.home-F > .Col2,
	.home-E > .Col2 { padding-top: 0; background: transparent; }

	#trp-floater-ls.trp-bottom-right { right: 14%; display: none; }


	.room-A .Col1 h2 { margin: 20px 0; }
	.room-A .mphb-reserve-btn-wrapper { margin: 0; padding: 0 20%; }
	.room-A .mphb-check-out-date-wrapper,
	.room-A .mphb-check-in-date-wrapper {
		display: inline-block;
		width: calc(50% - 10px);
		margin: 0 4px;
	}
	.room-B .Col1 { padding: 0 20% 32px; }
	.room-C .Acarousel img { height: 40vw; }	

	.page-template-page-B .A-page-content {
		width: 100%;
		border: 0;
		border-top: 16px solid var(--colorB);
		padding: 48px 10%;
		margin-top: 24px;
	}


	.page-id-216 .mphb-customer-phone,
	.page-id-216 .mphb-customer-last-name,
	.page-id-61 .mphb-customer-phone,
	.page-id-61 .mphb-customer-last-name,
	.page-id-216 .mphb-customer-country,
	.page-id-216 .mphb-customer-email,
	.page-id-216 .mphb-customer-name,
	.page-id-61 .mphb-customer-country,
	.page-id-61 .mphb-customer-email,
	.page-id-61 .mphb-customer-name,
	.page-id-216 .mphb-guest-name-wrapper,
	.page-id-61 .mphb-guest-name-wrapper,
	.page-id-216 .mphb-adults-chooser,
	.page-id-61 .mphb-adults-chooser {
		width: 100%;
		margin: 0;
	}


	.A-place .Acolumn img {
		max-height: 380px;
		object-fit: cover;
	}

	.A-photo-grid { margin: 0 calc(-10vw - 4px); }
	.A-photo-grid img { height: 36vw; }

}





/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 640px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

	p, a, li {
		font-size: 16px;
	}
	
	.search-result-list li { margin-bottom: 32px; }
	.search-result-list li .img-placeholder,
	.search-result-list li img { display: none; }


	.A-footer { padding: 48px 32px 32px; }
	.home-C .photos {
		flex-flow: column;
		padding: 0 10%;
		margin-bottom: 16px;
	}
	.home-C .photos .Acolumn {
		width: 100%;
		margin-bottom: 48px;
	}
	.amenity-line {
		width: 100%;
		padding: 24px;
	}

	.datepick-popup { left: 0 !important; }
	.datepick-multi { width: 100vw !important; }
	X.datepick-month-row {
		display: flex;
		flex-flow: column;
	}
	.amenities-list { flex-flow: column; }
	.amenities-list li { width: 100%; margin: 12px 0; }



	.A-photo-grid img { height: 74vw; }
	.A-area-carousel img { height: 50vw; }

	.home-C .photos,
	.home-C .photos .Acolumn { padding: 0; }
	.home-F > .Col2,
	.home-E > .Col2 { padding: 0 10% 48px; }

	.room-C .Acarousel img { height: 70vw; margin-bottom: 4px; }
	
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 480px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

	body { padding-top: 32px; }
	header nav { margin: 0 0 12px; }
	header .A-logo img { max-width: 70vw; }
	header .languages { margin-top: 8px; }
	.A-home-slider { height: 300px; }
	.home-A .Col2 form { flex-flow: row wrap; }
	.home-A .Col2 form > * {
		width: calc(50% - 16px);
    }
		
	.A-header-info-2 { margin: 16px 0 0; }
	.A-header-info-2 img { height: 40px; }

	.room-C .Acarousel img { height: 75vw; }

}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 320px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


}












.fontA { font-family: var(--fontA) !important; }
.fontB { font-family: var(--fontB) !important; }
