/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 05 2025 | 09:30:33 */
/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 04 2025 | 10:46:53 */
p.mphb_sc_search_results-info,
h2.mphb-recommendation-title,
form#mphb-recommendation,
form#mphb-reservation-cart,
p.mphb-required-fields-tip,
abbr {
  display: none;
}

.mphb-ajax-results.is-loading {
  opacity: 0.8;
}
.mphb-ajax-loading {
  padding: 12px 0;
  font-style: italic;
}
.mphb-ajax-error {
  color: #c00;
  padding: 12px 0;
}

h3.dc-date-title {
  font-family: IvyOra Display;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 40px;
  color: #39798f;
}
.mphb-inline-search .mphb-search-row {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  flex-wrap: wrap; /* responsive for mobile */
}

.mphb-inline-search .mphb-field {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  flex: 1;
}

.mphb-inline-search label {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: "IvyOra Display";
}

.mphb-inline-search input,
.mphb-inline-search select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 0px;
  font-size: 14px;
  width: 100%;
}

.mphb-inline-search .mphb-submit {
  flex: 0 0 auto;
}

.mphb-inline-search .mphb-search-btn {
  padding: 10px 20px;
  border: none;
  background: #39798f; /* custom button color */
  border-radius: 0px !important;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.mphb-inline-search .mphb-search-btn:hover {
  background: #c92c3b;
}
.mphb-room-type {
  display: flex;
  row-gap: 10px;
  column-gap: 30px;
}
.datepick-selected,
.datepick-highlight {
  background: #000 !important;
  font-size: 14px;
  padding: 3px !important;
  border-radius: 40px 0px 0px 40px;
}
.datepick-popup
  .mphb-datepicker-peru.mphb-datepick-popup
  .datepick-month
  td
  .mphb-selectable-date {
  padding: 3px !important;
  background-color: #fff !important;
  color: #000000 !important;
}
.datepick-popup
  .mphb-datepicker-peru.mphb-datepick-popup
  .datepick-month
  td
  .datepick-selected {
  padding: 3px !important;
  background-color: #000 !important;
  color: #fff !important;
}
.mphb-calendar .mphb-datepicker-peru .datepick-month th,
.mphb-calendar .mphb-datepicker-peru .datepick-month th a,
.datepick-popup .mphb-datepicker-peru .datepick-month th,
.datepick-popup .mphb-datepicker-peru .datepick-month th a {
  background-color: #fff;
  color: #000000;
  font-size: 13px;
}
select.datepick-month-year {
  color: #787878 !important;
  text-transform: uppercase !important;
}
.datepick-month-header {
  color: #787878 !important;
  text-transform: uppercase;
}
.datepick-selected {
  background: #000 !important;
  font-size: 14px;
  padding: 3px !important;
  border-radius: 40px 0px 0px 40px;
}

select.datepick-month-year {
  color: #787878 !important;
  text-transform: uppercase;
}

.datepick.datepick-multi.mphb-datepick-popup.mphb-check-out-datepick.mphb-datepicker-peru {
  padding: 10px;
}

.datepick-nav {
  display: none;
}

.datepick-month.first {
  margin-right: 10px;
  width: 47% !important;
}

.datepick-month.last {
  border: none !important;
}

.datepick-month.first {
  border: none !important;
}

.datepick-ctrl {
  border: none !important;
}
a.datepick-cmd.datepick-cmd-clear,
.datepick-cmd.datepick-cmd-close {
  color: #000 !important;
  font-size: 14px;
  font-weight: 700;
}
/* Rooms List Csss */

.room-card {
  background: white;
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  min-height: 500px;
}

.room-image-section {
  flex: 1;
  position: relative;
  
	width: 50%;
}

.room-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.room-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.room-slide.active {
  opacity: 1;
}

.room-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 10;
}
.slider-nav:hover {
  background: none !important;
}
.slider-prev {
  left: 15px;
}

.slider-next {
  right: 15px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.room-details {
  flex: 0.9;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-header h2 {
  font-family: IvyOra Display;
  font-weight: 400;
  font-style: Regular;
  font-size: 40px;
  letter-spacing: 0%;
}

.room-specs {
  font-family: Crimson Text;
  font-weight: 400;
  font-size: 24px;
  line-height: 29.2px;
  color: #39798f;
}

.room-description {
  margin-top: 15px;
  font-family: Crimson Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 29.2px;
  color: #323333;
}

.room-pricing {
  margin-bottom: 30px;
  margin-top: 30px;
}

.price-label {
  font-family: IvyOra Display;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
}

.price .mphb-price {
    font-family: IvyOra Display;
    font-weight: 400;
    margin-top: 10px;
    font-size: 40px !important;
    line-height: 100%;
    vertical-align: middle;
}

.currency {
  font-size: 0.7em;
}

.period {
  font-size: 0.5em;
  color: #666;
}

.know-more-btn {
  background: #5a8a9b;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  align-self: flex-start;
  position: relative;
  top: 20px;
}

.know-more-btn:hover {
  color: #fff;
}
.datepick.datepick-multi.mphb-datepick-popup.mphb-check-in-datepick.mphb-datepicker-peru,
.datepick.datepick-multi.mphb-datepick-popup.mphb-check-out-datepick.mphb-datepicker-peru {
  width: 600px !important;
}
/* search and singel page css */
.single-room-content {
    width: 100%;
    margin: 0 auto;
    padding: 42px 4.5% 0 4.5%;
}
.room-card.room-search-card {
    margin-top: 30px;
}
.room-breadcrumb {
    margin-bottom: 42px;
    font-family: Crimson Text;
    font-weight: 400;
    font-size: 24px;
    line-height: 29.2px;
}
.room-search-form svg {
    position: absolute;
}

.page-id-3805 h3.dc-date-title {
    margin-left: 50px;
    line-height: 26px !important;
}
img.single-room-gallary {
    width: 100%;
    height: 500px;
	object-fit: cover;
}
div#swiper-wrapper-f10e6e741c498cb210 {
    margin-top: 25px;
}
img.single-room-gallary-navigation {
    width: 100%;
    height: 143px;
    object-fit: cover;
}
.room-thumb-slider {
    margin-top: 21px;
}
.swiper-button-next:after, .swiper-button-prev:after{
	color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.room-inclusions-wrap {
    display: flex;
    gap: 0px;
    margin-top: 30px;
    font-family: "Crimson Text", serif;
	flex-direction: column;
}

.room-inclusions-block {
    flex: 1;
}
li.included {
    color: #39798F;
}
li.not-included {
    color: #323333;
}
.room-inclusions-block h3 {
    
    margin-bottom: 15px;
    padding-bottom: 5px;
	font-family: IvyOra Display;
	font-weight: 400;
	font-style: Regular;
	font-size: 20px;
}

.room-inclusions-list {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
    font-family: Crimson Text;
    font-weight: 400;
    font-size: 24px;
   	line-height: 29.2px;
    flex-direction: column;
    margin-left: 0px !important;
    padding-left: 0px !important;
}

.room-inclusions-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3px;
    font-size: 24px;
    line-height: 1.5;
}

.room-inclusions-list li .icon {
    margin-right: 10px;
    font-size: 20px;
    line-height: 1.2;
    position: relative;
    top: 7px;
}

.room-inclusions-list li.included .icon {
    color: #2ca89c; /* green check */
}

.room-inclusions-list li.not-included .icon {
    color: #d9534f; /* red cross */
}
button.button.mphb-button.mphb-book-button {
    background: #39798F !important;
    border: none !important;
    color: #fff;
    font-family: Crimson Text;
    font-weight: 400;
    font-size: 24px;
    line-height: 29.2px;
    width:100% !important;
    border-radius:0px !important;
    padding: 16px 0 16px 0
}
button.button.mphb-button.mphb-confirm-reservation {
    background: #39798F !important;
    border: none !important;
    color: #fff;
    font-family: Crimson Text;
    font-weight: 400;
    font-size: 24px;
    line-height: 29.2px;
    width: 100% !important;
    border-radius: 0px !important;
    padding: 16px 0 16px 0;
    margin-top: 20px;
}
a.mphb-remove-from-reservation
{
    color: #39798f;
    font-family: Crimson Text;
    font-size: 18px;
    font-weight: 600;
}
/* search and single page css end */
/* Booking Confirmation page css start */
form.mphb_sc_checkout-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

section#mphb-booking-details {
    width: 49%;
    order: 1;
    background: #fff;
    box-shadow: 0 13px 43px 0 rgba(37, 46, 89, .1);
    padding: 3.125rem 2.5rem;
}

section#mphb-price-details {
    width: 100%;
    height: fit-content;
    float: left;
    order: 3;
    background: #fff;
    box-shadow: 0 13px 43px 0 rgba(37, 46, 89, .1);
    padding: 3.125rem 2.5rem;
}

section#mphb-customer-details {
    width: 49%;
    float: left;
    height: fit-content;
    order: 2;
    margin-top: 0;
    margin-left: 20px;
    background: #fff;
    box-shadow: 0 13px 43px 0 rgba(37, 46, 89, .1);
    padding: 3.125rem 2.5rem;
}

p.mphb-total-price {
    width: 100%;
    order: 6;
    text-align: center;
    background: #fff;
    box-shadow: 0 13px 43px 0 rgba(37, 46, 89, .1);
    padding: 1.125rem 1.5rem;
    margin-top: 20px;
}
section#mphb-billing-details {
    width: 100%;
    order: 6;
    background: #fff;
    box-shadow: 0 13px 43px 0 rgba(37, 46, 89, .1);
    padding: 3.125rem 2.5rem;
}
.mphb-errors-wrapper.mphb-hide ,p.mphb-errors-wrapper{
	order: 7;
}
p.mphb_sc_checkout-submit-wrapper {
    width: 100%;
    order: 7;
    text-align: center;
}
input.button {
    background: #39798F !important;
    border: none !important;
    color: #fff;
    font-family: Crimson Text;
    font-weight: 400;
    font-size: 24px;
    line-height: 29.2px;
    width: 100% !important;
    border-radius: 0px !important;
    padding: 16px 0 16px 0;
}

p.mphb-errors-wrapper {
    width: 100%;
    text-align: center;
    background: #fff;
    box-shadow: 0 13px 43px 0 rgba(37, 46, 89, .1);
    padding: 1.125rem 1.5rem;
    color: red;
    font-size: 18px;
    font-weight: 600;
}

section.mphb-checkout-terms-wrapper.mphb-checkout-section {
    order: 6;
    text-align: center;
}
.mphb-login-form-wrap {
    background: #fff;
    box-shadow: 0 13px 43px 0 rgba(37, 46, 89, .1);
    padding: 3.125rem 2.5rem;
}

.mphb-login-form-wrap p {
    font-family:Crimson Text;
    font-size: 28px;
}

.mphb-login-form-wrap a {
    background: #4a778c;
    color: #ffffff !important;
    padding: 15px;
}

h3.mphb-booking-details-title {
    font-family: "IvyOra Display", Sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: #4a778c;
    margin-bottom: 30px;
}

h3.mphb-customer-details-title {
    font-family: "IvyOra Display", Sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: #4a778c;
    margin-bottom: 30px;
}

h4.mphb-room-rate-chooser-title {
    font-family: "IvyOra Display", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #4a778c;
    margin-bottom: 30px;
}

h4.mphb-services-details-title {
    font-family: "IvyOra Display", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #4a778c;
    margin-bottom: 30px;
}

h4.mphb-price-breakdown-title {
    font-family: "IvyOra Display", Sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: #4a778c;
    margin-bottom: 30px;
}
.mphb_sc_checkout-wrapper  tr:first-child td {
    background: none !important;
}
.mphb-checkout-section table tbody>tr:nth-child(odd)>td{
	background-color: #ffff !important;
}
.mphb-checkout-section table tbody>tr:nth-child(odd)>th {
    background-color: #4a778c !important;
	color: #fff;
	    font-family: Crimson Text;
    font-size: 18px;
}
a.mphb-price-breakdown-accommodation.mphb-price-breakdown-expand {
    font-family: Crimson Text;
    font-size: 18px;
    color: #4a778c;
}

span.mphb-price {
    font-family: Crimson Text;
    font-size: 18px;
    color: #333;
}
.mphb-checkout-section td {
    font-family: Crimson Text;
    font-size: 16px;
}
th.mphb-table-price-column span {
    color: #fff !important;
}
tr.mphb-price-breakdown-total th {
    background: #4a778c;
    color: #fff;
    font-family: Crimson Text;
    font-size: 18px;
}
.mphb-price-breakdown td {
	border: 1px solid #00000080;
}
.mphb-price-breakdown th {
	border: 1px solid #fff;
	background: #4a778c;
    color: #fff;
}
.mphb-price-breakdown tbody tr:hover>th {
    background-color: hsl(199.09deg 30.84% 41.96%);
}
.mphb-price-breakdown-rate {
    margin-top: 10px;
}

h3.mphb-gateway-chooser-title {
    font-family: "IvyOra Display", Sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: #4a778c;
    margin-bottom: 30px;
}

p.mphb-check-in-date {
    font-family: Crimson Text;
    font-size: 18px;
}

p.mphb-check-out-date {
    font-family: Crimson Text;
    font-size: 18px;
}
h3.mphb-room-number {
    font-family: "IvyOra Display", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #4a778c;
}
.mphb-room-type-title a {
    color: #4a778c;
    font-size: 20px;
    font-weight: 600;
}
p.mphb-room-type-title {
    font-family: Crimson Text;
    font-size: 18px;
}
.mphb-reserve-rooms-details {
    border-top: 2px solid #e5e5e5;
    padding-top: 20px;
}
select.mphb_sc_checkout-guests-chooser {
    height: 52px;
    padding-right: 2em;
}
.mphb_sc_checkout-form input[type=text],
.mphb-account-details input[type=text],
.mphb_sc_checkout-form input[type=email],
.mphb-account-details input[type=email],
.mphb_sc_checkout-form input[type=url],
.mphb-account-details input[type=url],
.mphb_sc_checkout-form input[type=password],
.mphb-account-details input[type=password],
.mphb_sc_checkout-form input[type=search],
.mphb-account-details input[type=search],
.mphb_sc_checkout-form input[type=number],
.mphb-account-details input[type=number],
.mphb_sc_checkout-form input[type=tel],
.mphb-account-details input[type=tel],
.mphb_sc_checkout-form input[type=range],
.mphb-account-details input[type=range],
.mphb_sc_checkout-form input[type=date],
.mphb-account-details input[type=date],
.mphb_sc_checkout-form input[type=month],
.mphb-account-details input[type=month],
.mphb_sc_checkout-form input[type=week],
.mphb-account-details input[type=week],
.mphb_sc_checkout-form input[type=time],
.mphb-account-details input[type=time],
.mphb_sc_checkout-form input[type=datetime],
.mphb-account-details input[type=datetime],
.mphb_sc_checkout-form input[type=datetime-local],
.mphb-account-details input[type=datetime-local],
.mphb_sc_checkout-form input[type=color],
.mphb-account-details input[type=color],
.mphb_sc_checkout-form textarea,
.mphb-account-details textarea,
.mphb_sc_checkout-form select,
.mphb-account-details select  {
    color: #666;
    border: 1px solid #e4e4e4;
    border-radius: 0;
    background: #fff;
    width: 100%;
    padding: .688em 1em;
}
.mphb_sc_checkout-form label , .mphb-account-details-form label{
    font-family: Crimson Text;
    font-size: 18px;
    margin-bottom: 10px;
}
input.mphb_sc_checkout-service-quantity.mphb_checkout-service-quantity {
    width: 20%;
}
.cart_item:first-child td , .cart-subtotal:first-child td , .woocommerce-table__line-item.order_item:first-child td , .woocommerce-table tr:first-child td ,.mphb-account-bookings tr:first-child td {
    background: none !important;
}
.elementor-widget-woocommerce-checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered{
	line-height: 34px !important;
}
.mphb-login-form a {
    margin-top: 20px !important;
    position: relative;
    top: 12px;
}
nav.mphb-account-menu {
    background: #4a778c;
}

.mphb-account-menu ul {
    list-style: none !important;
    padding: 0px;
}

.mphb-account-menu li a {
    color: #fff !important;
    font-family: Crimson Text;
    font-weight: 400;
    font-size: 24px;
    line-height: 29.2px;
}

.mphb-account-menu li {
    padding: 8px 0px 8px 20px;
    border-bottom: 10px solid #fff;
}
.mphb-account-bookings th {
    background: #4a778c;
    color: #fff;
    border: 1px solid #fff !important;
    font-family: Crimson Text;
    font-weight: 600;
    font-size: 18px;
    line-height: 29.2px;
}
.mphb-account-bookings td {
    font-family: Crimson Text;
    font-weight: 400;
    font-size: 16px;
    line-height: 29.2px;
    text-align: center;
    vertical-align: middle;
}
.booking-actions a {
    background: #4a778c;
    color: #fff !important;
    padding: 15px 36px;
    font-family: Crimson Text;
    font-weight: 400;
    font-size: 18px;
    line-height: 29.2px;
}

td.booking-actions {
    padding: 0px !important;
}
.mphb-account-content {
    background: #fff;
    box-shadow: 0 13px 43px 0 rgba(37, 46, 89, .1);
    padding: 3.125rem 2.5rem;
}

.mphb-account-content p {
    font-family: Crimson Text;
    font-weight: 400;
    font-size: 24px;
    line-height: 29.2px;
}

.mphb-account-content p a {
    color: #4a778c !important;
    font-weight: 700;
}
.mphb-booking-details-section.booking,
.mphb-booking-details-section.payment,
.mphb-booking-details-section.invoice {
    background: #fff;
    box-shadow: 0 13px 43px 0 rgba(37, 46, 89, .1);
    padding: 3.125rem 2.5rem;
}
ul.mphb-booking-details .value {
    font-family: Crimson Text;
    font-size: 18px;
}

.mphb-booking-details .label {
    font-family: Crimson Text !important;
    font-size: 20px !important;
}
a.invoice-link {
    font-family: Crimson Text;
    font-size: 22px;
    color: #fff;
    background: #4a778c;
    padding: 10px 20px;
}
.accommodations span {
    font-family: Crimson Text;
    font-size: 22px;
}

.accommodations span a {
    color: #4a778c;
}
/* Booking confirmtion page css end */
/* Mobile Responsiveness */
@media (max-width: 768px) {
	section#mphb-booking-details {
		width: 100%;
	}
	section#mphb-customer-details{
		width: 100%;
		    margin-top: 20px;
    margin-left: 0px;
	}
	.mphb-inline-search .mphb-field{
		min-width: 100px;
	}
	.room-image-section{
		width: 100%;
	}
  .room-card {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .room-image-section {
    min-height: 250px;
  }

  .room-details {
    padding: 30px 25px;
  }

  .room-header h2 {
    font-size: 1.8em;
  }

  .price {
    font-size: 2em;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px 10px;
  }

  .room-details {
    padding: 25px 20px;
  }

  .room-header h2 {
    font-size: 1.6em;
  }

  .room-description {
    font-size: 1em;
  }

  .price {
    font-size: 1.8em;
  }
}