@charset "UTF-8";
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }


 /* WP fixes */

 .admin-bar .pswp {
	z-index: 999999; /* fix for WP */
}

button.pswp__button {
	box-shadow: none !important;
	background-image: url(//lamaison-calliandra.com/wp-content/plugins/wp-hotelier/assets/css/frontend/photoswipe/default-skin/default-skin.png) !important;
}

button.pswp__button,
button.pswp__button:hover,
button.pswp__button--arrow--left::before,
button.pswp__button--arrow--right::before {
	background-color: transparent !important;
}

button.pswp__button--arrow--left,
button.pswp__button--arrow--right,
button.pswp__button--arrow--left:hover,
button.pswp__button--arrow--right:hover {
	background-image: none !important;
}

button.pswp__button--close:hover {
	background-position: 0 -44px;
}

button.pswp__button--zoom:hover {
	background-position: -88px 0;
}
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
	width: 44px;
	height: 44px;
	position: relative;
	background: none;
	cursor: pointer;
	overflow: visible;
	-webkit-appearance: none;
	display: block;
	border: 0;
	padding: 0;
	margin: 0;
	float: right;
	opacity: 0.75;
	-webkit-transition: opacity 0.2s;
					transition: opacity 0.2s;
	-webkit-box-shadow: none;
					box-shadow: none; }
	.pswp__button:focus,
	.pswp__button:hover {
		opacity: 1; }
	.pswp__button:active {
		outline: none;
		opacity: 0.9; }
	.pswp__button::-moz-focus-inner {
		padding: 0;
		border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
	opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
	background: url(//lamaison-calliandra.com/wp-content/plugins/wp-hotelier/assets/css/frontend/photoswipe/default-skin/default-skin.png) 0 0 no-repeat;
	background-size: 264px 88px;
	width: 44px;
	height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
	/* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
	.pswp--svg .pswp__button,
	.pswp--svg .pswp__button--arrow--left:before,
	.pswp--svg .pswp__button--arrow--right:before {
		background-image: url(//lamaison-calliandra.com/wp-content/plugins/wp-hotelier/assets/css/frontend/photoswipe/default-skin/default-skin.svg); }
	.pswp--svg .pswp__button--arrow--left,
	.pswp--svg .pswp__button--arrow--right {
		background: none; } }

.pswp__button--close {
	background-position: 0 -44px; }

.pswp__button--share {
	background-position: -44px -44px; }

.pswp__button--fs {
	display: none; }

.pswp--supports-fs .pswp__button--fs {
	display: block; }

.pswp--fs .pswp__button--fs {
	background-position: -44px 0; }

.pswp__button--zoom {
	display: none;
	background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
	display: block; }

.pswp--zoomed-in .pswp__button--zoom {
	background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
	visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
	background: none;
	top: 50%;
	margin-top: -50px;
	width: 70px;
	height: 100px;
	position: absolute; }

.pswp__button--arrow--left {
	left: 0; }

.pswp__button--arrow--right {
	right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
	content: '';
	top: 35px;
	background-color: rgba(0, 0, 0, 0.3);
	height: 30px;
	width: 32px;
	position: absolute; }

.pswp__button--arrow--left:before {
	left: 6px;
	background-position: -138px -44px; }

.pswp__button--arrow--right:before {
	right: 6px;
	background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
			user-select: none; }

.pswp__share-modal {
	display: block;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 10px;
	position: absolute;
	z-index: 1600;
	opacity: 0;
	-webkit-transition: opacity 0.25s ease-out;
					transition: opacity 0.25s ease-out;
	-webkit-backface-visibility: hidden;
	will-change: opacity; }

.pswp__share-modal--hidden {
	display: none; }

.pswp__share-tooltip {
	z-index: 1620;
	position: absolute;
	background: #FFF;
	top: 56px;
	border-radius: 2px;
	display: block;
	width: auto;
	right: 44px;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
					box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
	-webkit-transform: translateY(6px);
			-ms-transform: translateY(6px);
					transform: translateY(6px);
	-webkit-transition: -webkit-transform 0.25s;
					transition: transform 0.25s;
	-webkit-backface-visibility: hidden;
	will-change: transform; }
	.pswp__share-tooltip a {
		display: block;
		padding: 8px 12px;
		color: #000;
		text-decoration: none;
		font-size: 14px;
		line-height: 18px; }
		.pswp__share-tooltip a:hover {
			text-decoration: none;
			color: #000; }
		.pswp__share-tooltip a:first-child {
			/* round corners on the first/last list item */
			border-radius: 2px 2px 0 0; }
		.pswp__share-tooltip a:last-child {
			border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
	opacity: 1; }
	.pswp__share-modal--fade-in .pswp__share-tooltip {
		-webkit-transform: translateY(0);
				-ms-transform: translateY(0);
						transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
	padding: 16px 12px; }

a.pswp__share--facebook:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: -12px;
	right: 15px;
	border: 6px solid transparent;
	border-bottom-color: #FFF;
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	pointer-events: none; }

a.pswp__share--facebook:hover {
	background: #3E5C9A;
	color: #FFF; }
	a.pswp__share--facebook:hover:before {
		border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
	background: #55ACEE;
	color: #FFF; }

a.pswp__share--pinterest:hover {
	background: #CCC;
	color: #CE272D; }

a.pswp__share--download:hover {
	background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
	position: absolute;
	left: 0;
	top: 0;
	height: 44px;
	font-size: 13px;
	line-height: 44px;
	color: #FFF;
	opacity: 0.75;
	padding: 0 10px; }

/*

	4. Caption

 */
.pswp__caption {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	min-height: 44px; }
	.pswp__caption small {
		font-size: 11px;
		color: #BBB; }

.pswp__caption__center {
	text-align: left;
	max-width: 420px;
	margin: 0 auto;
	font-size: 13px;
	padding: 10px;
	line-height: 20px;
	color: #CCC; }

.pswp__caption--empty {
	display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
	visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
	width: 44px;
	height: 44px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -22px;
	opacity: 0;
	-webkit-transition: opacity 0.25s ease-out;
					transition: opacity 0.25s ease-out;
	will-change: opacity;
	direction: ltr; }

.pswp__preloader__icn {
	width: 20px;
	height: 20px;
	margin: 12px; }

.pswp__preloader--active {
	opacity: 1; }
	.pswp__preloader--active .pswp__preloader__icn {
		/* We use .gif in browsers that don't support CSS animation */
		background: url(//lamaison-calliandra.com/wp-content/plugins/wp-hotelier/assets/css/frontend/photoswipe/default-skin/preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
	opacity: 1; }
	.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
		-webkit-animation: clockwise 500ms linear infinite;
						animation: clockwise 500ms linear infinite; }
	.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
		-webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
						animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
	background: none;
	opacity: 0.75;
	width: 14px;
	height: 14px;
	position: absolute;
	left: 15px;
	top: 15px;
	margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
	/*
			The idea of animating inner circle is based on Polymer ("material") loading indicator
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
	position: relative;
	width: 7px;
	height: 14px;
	overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
	-webkit-box-sizing: border-box;
					box-sizing: border-box;
	width: 14px;
	height: 14px;
	border: 2px solid #FFF;
	border-radius: 50%;
	border-left-color: transparent;
	border-bottom-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	background: none;
	margin: 0; }

@media screen and (max-width: 1024px) {
	.pswp__preloader {
		position: relative;
		left: auto;
		top: auto;
		margin: 0;
		float: right; } }

@-webkit-keyframes clockwise {
	0% {
		-webkit-transform: rotate(0deg);
						transform: rotate(0deg); }
	100% {
		-webkit-transform: rotate(360deg);
						transform: rotate(360deg); } }

@keyframes clockwise {
	0% {
		-webkit-transform: rotate(0deg);
						transform: rotate(0deg); }
	100% {
		-webkit-transform: rotate(360deg);
						transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
	0% {
		-webkit-transform: rotate(0);
						transform: rotate(0); }
	50% {
		-webkit-transform: rotate(-140deg);
						transform: rotate(-140deg); }
	100% {
		-webkit-transform: rotate(0);
						transform: rotate(0); } }

@keyframes donut-rotate {
	0% {
		-webkit-transform: rotate(0);
						transform: rotate(0); }
	50% {
		-webkit-transform: rotate(-140deg);
						transform: rotate(-140deg); }
	100% {
		-webkit-transform: rotate(0);
						transform: rotate(0); } }

/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
	-webkit-font-smoothing: auto;
	visibility: visible;
	opacity: 1;
	z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	height: 44px;
	width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
	-webkit-backface-visibility: hidden;
	will-change: opacity;
	-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
					transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
	visibility: visible; }

.pswp__top-bar,
.pswp__caption {
	background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
	background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
	opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
	opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
	/* Force paint & create composition layer for controls. */
	opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
	display: none; }

.pswp__element--disabled {
	display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
	background: none; }


/**
 * The main Hotelier CSS
 */
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
*/
/*
ELEMENTS
	Notices ............ Hotelier notices.
	Datepicker ......... Datepicker styles.
	Tables ............. Booking tables styles.
	Loops .............. Room shortcodes styles.
	Pagination ......... Hotelier pagination styles.
	Deposit ............ Room deposit label.
	Min/Max info ....... Room min/max stay info.
	Adults/Children .... Adults/Children info.

PAGES
	Room ............... Single room page.
	Listing ............ Listing page.
	Booking ............ Booking page.

WIDGETS
	Search ............. Search widget styles.
	Rooms Filter ....... Rooms Filter widget styles.
	Rooms .............. Rooms widget styles.
	Booking ............ Booking widget styles.
*/
/*--------------------------------------------------------------
>>> NOTICES
----------------------------------------------------------------
*/
.hotelier-notice {
  background-color: #222;
  color: #fff;
  margin: 0 0 48px;
  padding: 24px;
}

.hotelier-notice--error {
  list-style: none;
  margin-left: 0;
}

/*--------------------------------------------------------------
>>> DATEPICKER
----------------------------------------------------------------
*/
.js .datepicker-input--checkin,
.js .datepicker-input--checkout {
  display: none;
}

.datepicker-form {
  margin-bottom: 48px;
}

.datepicker {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  background-color: #fff;
  box-shadow: 8px 8px 40px 5px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  width: 260px;
  z-index: 1;
}

.datepicker__inner {
  overflow: hidden;
  padding: 24px;
}

.datepicker__month {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 2.18182;
  border-collapse: collapse;
  text-align: center;
  width: 100%;
}

.datepicker__month--month2 {
  display: none;
}

.datepicker__month-day {
  transition-duration: 0.2s;
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.datepicker__month-day--invalid {
  color: #eee;
}

.datepicker__month-day--disabled {
  color: #eee;
  position: relative;
}

.datepicker__month-day--disabled:after {
  color: red;
  content: '\00d7';
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.datepicker__month-day--selected {
  background-color: rgba(34, 34, 34, 0.3);
  color: #fff;
}

.datepicker__month-day--hovering {
  background-color: rgba(34, 34, 34, 0.3);
  color: #fff;
}

.datepicker__month-day--today {
  background-color: #222;
  color: #fff;
}

.datepicker__month-day--first-day-selected,
.datepicker__month-day--last-day-selected {
  background-color: rgba(34, 34, 34, 0.5);
  color: #fff;
}

.datepicker__month-day--last-day-selected.datepicker__month-day--checkout-enabled:after {
  content: none;
}

.datepicker__month-day--valid {
  cursor: pointer;
}

.datepicker__month-day--lastMonth,
.datepicker__month-day--nextMonth {
  visibility: hidden;
}

.datepicker__month-button {
  cursor: pointer;
}

.datepicker__info--feedback {
  display: none;
}

.datepicker__info--error,
.datepicker__info--help {
  display: block;
}

.datepicker__info--error {
  color: red;
}

.datepicker__close-button {
  cursor: pointer;
}

.datepicker__tooltip {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 2.18182;
  background-color: #222;
  border-radius: 2px;
  color: #fff;
  margin-top: -5px;
  padding: 6px 12px;
  position: absolute;
}

.datepicker__tooltip:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #222;
  bottom: -4px;
  content: '';
  left: 50%;
  margin-left: -4px;
  position: absolute;
}

.datepicker__topbar {
  margin-bottom: 48px;
  position: relative;
}

.button--datepicker {
  margin-top: 24px;
}

/*--------------------------------------------------------------
>>> TABLES
----------------------------------------------------------------
*/
.reservation-table__room-rate {
  display: block;
}

.view-price-breakdown {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 2.18182;
  display: block;
}

.price-breakdown-wrapper,
.reservation-table__row--price-breakdown {
  border: 0;
  padding: 0;
}

.table--price-breakdown {
  border-collapse: separate;
  margin-bottom: 0;
  padding: 24px;
}

.credit-cards__list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}

.credit-cards__icon {
  display: inline-block;
  height: 48px;
  margin-bottom: 4px;
  position: relative;
  text-indent: -99999px;
  width: 76px;
}

.credit-cards__icon:before {
  background-color: #fff;
  background-position: 0 0;
  background-repeat: no-repeat;
  border: 1px solid #eee;
  content: '';
  display: inline-block;
  height: 48px;
  left: 0;
  position: absolute;
  top: 0;
  width: 76px;
}

.credit-cards__icon--mastercard:before {
  background-image: url(//lamaison-calliandra.com/wp-content/plugins/wp-hotelier/assets/images/cards/mastercard.svg);
}

.credit-cards__icon--amex:before {
  background-image: url(//lamaison-calliandra.com/wp-content/plugins/wp-hotelier/assets/images/cards/amex.svg);
}

.credit-cards__icon--cirrus:before {
  background-image: url(//lamaison-calliandra.com/wp-content/plugins/wp-hotelier/assets/images/cards/cirrus.svg);
}

.credit-cards__icon--discover:before {
  background-image: url(//lamaison-calliandra.com/wp-content/plugins/wp-hotelier/assets/images/cards/discover.svg);
}

.credit-cards__icon--maestro:before {
  background-image: url(//lamaison-calliandra.com/wp-content/plugins/wp-hotelier/assets/images/cards/maestro.svg);
}

.credit-cards__icon--visa:before {
  background-image: url(//lamaison-calliandra.com/wp-content/plugins/wp-hotelier/assets/images/cards/visa.svg);
}

.credit-cards__icon--visa_e:before {
  background-image: url(//lamaison-calliandra.com/wp-content/plugins/wp-hotelier/assets/images/cards/visa_e.svg);
}

.reservation-table__room-non-cancellable {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  color: red;
  display: block;
  font-style: italic;
  font-weight: bold;
}

/*--------------------------------------------------------------
>>> LOOPS
----------------------------------------------------------------
*/
.room-loop__list {
  list-style: none;
  margin-left: 0;
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
  margin-bottom: 24px;
  padding: 0;
}

.room-loop__item {
  margin: 0;
  padding: 0;
}

.room__name--loop {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 12px 0;
}

.room__description--loop {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

.room__thumbnail--loop {
  display: block;
}

.room__thumbnail--loop img {
  display: block;
  height: auto;
  margin: 0 0 24px;
  width: 100%;
}

.room__price--loop {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  display: block;
  font-weight: normal;
  margin-bottom: 12px;
}

.room__price--loop .amount {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
}

.room__price del .amount {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  opacity: .5;
}

.room__price ins {
  background-color: transparent;
}

.button--view-room-details {
  display: inline-block;
  margin-bottom: 24px;
}

/*--------------------------------------------------------------
>>> PAGINATION
----------------------------------------------------------------
*/
.pagination__list {
  list-style: none;
  margin-left: 0;
}

.pagination__item {
  display: inline-block;
}

/*--------------------------------------------------------------
>>> DEPOSIT
----------------------------------------------------------------
*/
.room__deposit,
.rate__deposit {
  padding: 6px 24px;
  margin-top: 24px;
  display: inline-block;
  background-color: #eee;
}

.rate__deposit--single {
  margin-top: 0;
}

/*--------------------------------------------------------------
>>> MIN MAX INFO
----------------------------------------------------------------
*/
.room__min-max-stay {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  display: block;
  font-style: italic;
  margin-top: 24px;
}

.room__min-max-stay--single {
  margin-bottom: 24px;
  margin-top: 0;
}

.room__min-max-stay--rate-single {
  margin-bottom: 24px;
}

.room__min-max-stay--rate-listing {
  margin-bottom: 24px;
}

/*--------------------------------------------------------------
>>> ADULTS/CHILDREN INFO
----------------------------------------------------------------
*/
.reservation-table__room-guests {
  display: block;
  margin-top: 6px;
}

.reservation-table__room-guests-label {
  font-weight: bold;
}

.reservation-table__room-guests--booking label,
.reservation-table__room-guests--booking .form-row {
  display: inline;
  margin-right: 6px;
}

.reservation-table__room-guests--booking .reservation-table__room-guests-label {
  display: block;
}

/*--------------------------------------------------------------
>>> PAGE: SINGLE ROOM
----------------------------------------------------------------
*/
.room__thumbnail--single {
  margin-bottom: 48px;
}

.room__thumbnail--single img {
  width: 100%;
}

.room__gallery--single {
  text-align: right;
}

.room__gallery-link--single {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

.room__price--single .amount {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333;
  font-weight: bold;
}

.room__deposit--single {
  margin-bottom: 24px;
}

.room__meta-list {
  list-style: none;
  margin-left: 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

.room__facilities-content--single {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

.room__conditions-list {
  list-style: none;
  margin-left: 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

.room__description--single {
  margin-bottom: 48px;
  margin-top: 48px;
}

.room-available-rates__link {
  display: inline-block;
  margin-top: 24px;
}

.room__rates-list {
  list-style: none;
  margin-left: 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

.room__rate--single {
  border: 1px solid #222;
  margin-bottom: 24px;
  padding: 24px 24px 12px;
}

.rate__name {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.rate__price {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.rate__price .amount {
  font-weight: bold;
}

.button--check-availability {
  display: inline-block;
  margin-top: 12px;
}

.rate__conditions-title {
  font-weight: bold;
}

.rate__conditions-list {
  list-style: none;
  margin-left: 0;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
}

.related-rooms {
  margin-top: 48px;
}

.room__non-cancellable-info,
.rate__non-cancellable-info {
  color: red;
  font-style: italic;
  font-weight: bold;
}

.room__non-cancellable-info--single p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
>>> PAGE: LISTING
----------------------------------------------------------------
*/
.selected-nights {
  font-style: italic;
  font-weight: bold;
}

.listing__list {
  list-style: none;
  margin-left: 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

.listing__room {
  border: 1px solid #222;
  margin-bottom: 24px;
  padding: 24px;
}

.listing__room--queried {
  border: 5px solid #9dc94a;
  margin-bottom: 96px;
}

.room__gallery-link {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
}

.room__max-guests-recommendation {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  display: inline-block;
  font-style: italic;
  margin-top: 24px;
}

.room__only-x-left {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  background-color: #222;
  color: #fff;
  display: inline-block;
  padding: 6px 12px;
}

.room__price--listing,
.rate__price--listing {
  display: block;
}

.room__price--listing .amount,
.rate__price--listing .amount {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
}

.room__price--listing del .amount,
.rate__price--listing del .amount {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  opacity: 0.5;
}

.room__price--listing ins,
.rate__price--listing ins {
  background-color: transparent;
}

.room__price-description,
.rate__price-description {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 2.4;
  font-style: italic;
}

.room__deposit--listing,
.rate__deposit--listing {
  margin-bottom: 24px;
  margin-top: 0;
}

.room__actions,
.rate__actions {
  border-top: 1px solid #eee;
  margin-top: 24px;
  padding-top: 24px;
}

.listing__room--rates-expanded.listing__room--variable .room__content--listing {
  padding-right: 0;
  width: 100%;
}

.button--add-to-cart,
.button--toggle-rates {
  display: inline-block;
  margin-top: 12px;
}

.add-to-cart-selected {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  display: block;
}

.room__rate--listing {
  border-top: 1px solid #eee;
  margin-top: 24px;
  overflow: hidden;
  padding-top: 24px;
}

.rate__room--listing {
  margin-bottom: 0;
}

.rate__name--listing {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 24px;
}

.room__fees {
  margin-bottom: 24px;
}

.room__rate .room__fees {
  margin-bottom: 0;
}

.room-fee + .room-fee {
  margin-top: 6px;
}

.room-fee__title {
  display: block;
}

.room-fee__label {
  display: block;
}

.room-fee__label input {
  margin-right: 6px;
}

.room__extras {
  margin-top: 24px;
}

.room-extra {
  margin-top: 6px;
}

.room-extra__price {
  display: block;
}

.room-extra__price .amount {
  font-weight: bold;
}

.room-extra__info {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  font-style: italic;
}

/*--------------------------------------------------------------
>>> PAGE: BOOKING
----------------------------------------------------------------
*/
.booking__section,
.reservation-received__section {
  margin-bottom: 48px;
}

.form-row__description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  font-style: italic;
  display: block;
  margin-top: 12px;
}

.payment-methods {
  list-style: none;
  margin-left: 0;
}

.payment-method {
  overflow: hidden;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.payment-method img {
  float: right;
}

.payment-method__label {
  cursor: pointer;
  display: inline;
}

.payment-method__description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  font-style: italic;
  display: block;
}

.payment-method--single input[type="radio"] {
  display: none;
}

.form-row--booking-terms {
  margin-top: 24px;
}

.label--booking-terms {
  display: inline;
}

.reservation-response {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.reservation-details__list {
  list-style: none;
  margin-left: 0;
}

.reservation-non-cancellable-disclaimer__text {
  font-style: italic;
}

.reservation-table__extra-guests-fee {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  display: block;
}

.reservation-table__coupon-code {
  display: block;
}

.reservation-table__room-extra .extra__description {
  display: block;
}

/*--------------------------------------------------------------
>>> WIDGET: SEARCH
----------------------------------------------------------------
*/
.button--room-search {
  margin-top: 12px;
}

/*--------------------------------------------------------------
>>> WIDGET: ROOMS FILTER
----------------------------------------------------------------
*/
.widget-rooms-filter__group-label {
  font-weight: bold;
  margin-bottom: 24px;
  display: block;
}

.widget-rooms-filter__group-list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 24px;
}

.widget-rooms-filter__group-item--chosen {
  padding-left: 1.5em;
  position: relative;
}

.widget-rooms-filter__group-item--chosen:before {
  font-size: 16px;
  font-size: 1rem;
  line-height: 16px;
  background-color: #000;
  border-radius: 100%;
  border: 1px solid #000;
  color: #fff;
  content: '×';
  height: 16px;
  left: 0;
  position: absolute;
  text-align: center;
  width: 16px;
}

/*--------------------------------------------------------------
>>> WIDGET: ROOMS
----------------------------------------------------------------
*/
.widget-rooms__list {
  list-style: none;
  margin-left: 0;
}

.widget-rooms__item {
  margin-bottom: 24px;
  min-height: 75px;
  position: relative;
}

.widget-rooms__name {
  display: block;
  margin-left: 99px;
}

.widget-rooms__price {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  display: block;
  margin-left: 99px;
}

.widget-rooms__price .amount {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

.widget-rooms__thumbnail {
  position: absolute;
  width: 75px;
}

/*--------------------------------------------------------------
>>> WIDGET: BOOKING
----------------------------------------------------------------
*/
.widget-booking__change-cart {
  text-align: right;
}

.widget-booking__date-block {
  border: 1px solid #222;
  margin-bottom: 12px;
  padding: 24px;
  text-align: center;
}

.widget-booking__date-label {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.widget-booking__date {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
}

.widget-booking__month-year {
  display: block;
}

.widget-booking__day {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  display: block;
  padding: 6px;
}

.widget-booking__room-rate {
  display: block;
}

.widget-booking__cart-total {
  margin-top: 24px;
  display: block;
}

.widget-booking__cart-total .amount {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  float: right;
}

.widget-booking__rooms-list {
  list-style: none;
  margin-left: 0;
  margin-top: 24px;
}

@media (min-width: 320px) {
  .datepicker {
    width: 300px;
  }
}

@media (min-width: 480px) {
  .datepicker {
    width: 460px;
  }
  .datepicker__months {
    overflow: hidden;
    position: relative;
  }
  .datepicker__months:before {
    background: #eee;
    bottom: 0;
    content: '';
    display: block;
    left: 50%;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .datepicker__month {
    width: 200px;
  }
  .datepicker__month--month1 {
    float: left;
  }
  .datepicker__month--month2 {
    display: table;
    float: right;
  }
  .datepicker__month-button--disabled {
    visibility: hidden;
  }
  .room-loop__item {
    float: left;
    margin-right: 4%;
    position: relative;
    width: 48%;
  }
  .room-loop__item--columns-1 {
    float: none;
    margin-right: 0;
    width: 100%;
  }
  .room-loop__item--even {
    clear: none;
    margin-right: 0;
  }
  .room__min-max-stay--rate-listing {
    margin-bottom: 0;
    margin-top: 0;
  }
  .room__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    position: relative;
  }
  .room__actions,
  .rate__actions {
    border-left: 1px solid #eee;
    border-top: none;
    margin-top: 0;
    padding-left: 12px;
    padding-top: 0;
    text-align: right;
    width: 35%;
  }
  .room__content--listing,
  .rate__content--listing {
    padding-right: 12px;
    width: 65%;
  }
  .room__rate {
    display: flex;
    flex-wrap: wrap;
  }
  .rate__description-wrapper {
    padding-right: 12px;
    width: 65%;
  }
}

@media (min-width: 768px) {
  .datepicker {
    width: 560px;
  }
  .datepicker__month {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.71429;
    width: 240px;
  }
  .datepicker__close-button {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .room-loop__item--first {
    clear: both !important;
  }
  .room-loop__item--last {
    margin-right: 0 !important;
  }
  .room-loop__item--columns-3 {
    clear: none;
    margin-right: 3.5%;
    width: 31%;
  }
  .room-loop__item--columns-4 {
    clear: none;
    margin-right: 3%;
    width: 22.75%;
  }
  .room-loop__item--columns-5 {
    clear: none;
    margin-right: 2.5%;
    width: 18%;
  }
  .room-loop__item--columns-6 {
    clear: none;
    margin-right: 2%;
    width: 15%;
  }
}