/**
INDEXING
# 1. Status Progress
# 2. My Account
# 3. Calendar (Global)
# 4. Search Result
# 5. Attributes (Sidebar)
**/

/*
# 1. Status Progress
*/
.safar-mphb-step-progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block-end: 30px;
}

.safar-mphb-step-progress::before {
    content: '';
    position: absolute;
    top: 73%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.safar-mphb-progress-line {
    position: absolute;
    top: 73%;
    left: 0;
    height: 3px;
    background: var(--safar-primary-color);
    transform: translateY(-50%);
    z-index: 2;
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.safar-mphb-step {
    position: relative;
    z-index: 3;
    text-align: center;
    flex: 1;
    max-width: 33.33%;
}

.safar-mphb-step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    color: #999;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.safar-mphb-step-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--safar-primary-color) , var(--safar-primary-color));
    transition: left 0.5s ease;
}

.safar-mphb-step-number {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}

.safar-mphb-step-title {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin-block-end: 5px;
    transition: color 0.3s ease;
}

.safar-mphb-step-description {
    font-size: 15px;
    color: #999;
    transition: color 0.3s ease;
    margin-block-end: 10px;
}

.safar-mphb-step.completed .safar-mphb-step-circle {
    background: var(--safar-primary-color);
    border-color: var(--safar-primary-color);
    color: white;
    transform: scale(1.1);
}

.safar-mphb-step.completed .safar-mphb-step-circle::before {
    left: 0;
}

.safar-mphb-step.completed .safar-mphb-step-number {
    color: white;
}

.safar-mphb-step.completed .safar-mphb-step-title {
    color: var(--safar-primary-color);
}

.safar-mphb-step.completed .safar-mphb-step-description {
    color: var(--safar-heading-color);
}

.safar-mphb-step.active .safar-mphb-step-circle {
    background: #fff;
    border-color: var(--safar-primary-color);
    color: var(--safar-primary-color);
    transform: scale(1.15);
    box-shadow: 0 0 0 4px rgba(255, 145, 0, 0.2);
    animation: pulse 2s infinite;
}

.safar-mphb-step.active .safar-mphb-step-title {
    color: var(--safar-primary-color);
    font-weight: 700;
}

.safar-mphb-step.active .safar-mphb-step-description {
    color: #666;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 4px rgba(255, 145, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 145, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 4px rgba(255, 145, 0, 0.2);
    }
}

/*
# 2. My Account
*/
.mphb_sc_account .mphb-account-content {
    background: var(--safar-shade-color);
    width: 60%;
    margin: 0 auto;
    float: none;
    padding: 40px 40px;
}

@media (max-width: 767px) {
    .mphb_sc_account .mphb-account-content {
        width: 80%;
    }
}

@media (max-width: 575px) {
    .mphb_sc_account .mphb-account-content {
        width: 95%;
    }
}

.logged-in .mphb_sc_account {
    display: flex;
    gap: 30px;
}

.logged-in .mphb_sc_account .mphb-account-menu {
    width: 20%;
}

.logged-in .mphb_sc_account .mphb-account-menu ul {
    padding-inline-start: 0;
    margin-block-end: 0;
}

.logged-in .mphb_sc_account .mphb-account-menu a {
    background: var(--safar-primary-color);
    display: inline-block;
    width: 250px;
    padding: 15px 25px;
    color: var(--safar-text-white-color);
    transition: all .3s ease-in-out;
    text-align: center;
}

.logged-in .mphb_sc_account .mphb-account-menu a:hover {
    background: var(--safar-heading-color);
}

.logged-in .mphb_sc_account .mphb-account-content {
    width: 80%;
    padding: 20px;
}

/*
# 3. Calendar (Global)
*/
.datepick {
    border-radius: 0;
    border-color: #EAEAEA;
}

.datepick .datepick-nav {
    background-color: #df895b;
}

.datepick .datepick-nav a {
    color: var(--safar-text-white-color);
    font-weight: 400;
    padding: 10px 16px;
    font-size: 18px;
    letter-spacing: 1px;
}

.datepick .datepick-nav a.datepick-disabled {
    cursor: not-allowed;
}

.datepick .datepick-nav a:hover {
    background-color: #C97A4F;
}

.datepick .datepick-nav a:first-child {
    padding-inline-start: 24px;
}

.datepick .datepick-nav a:first-child:hover {
    border-radius: 16px 0 0 0;
}

.datepick .datepick-nav a:last-child {
    padding-inline-end: 24px;
}

.datepick .datepick-nav a:last-child:hover {
    border-radius: 0 16px 0 0;
}

.mphb_sc_availability_calendar-wrapper .datepick .datepick-nav a:hover {
    border-radius: 0;
}

.datepick .datepick-month {
    border: none;
    padding: 10px 10px;
    padding-block-start: 20px;
}

.datepick .datepick-month.first {
    border-right: 1px solid #dadada;
}

.datepick .datepick-month-header {
    background-color: var(--safar-heading-color);
    padding: 6px 0;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
}

.datepick .datepick-month-header select {
    background-color: var(--safar-heading-color);
    font-weight: 500;
    font-size: 16px;
}

.datepick table {
    margin-block-end: 10px;
}

.datepick table thead {
    border: none;
}

.datepick table thead th {
    background: var(--safar-white-color);
    border-color: var(--safar-text-white-color);
    color: var(--safar-heading-color);
    font-weight: 500;
    font-size: 15px;
}

.datepick table thead th span {
    padding: 8px 0;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
}

.datepick table tbody td {
    border: none;
    background-color: var(--safar-white-color);
    padding: 3px !important;
}


.datepick-popup .datepick table tbody td,
.mphb-calendar .datepick table tbody td {
    border: none;
    background-color: var(--safar-white-color);
    padding: 3px 0;
}

.mphb-calendar .datepick table tbody td a,
.mphb-calendar .datepick table tbody td span {
    padding: 5px;
}

.datepick-popup .datepick table tbody td .mphb-unselectable-date {
    background-color: #fff;
    color: #b0b8be;
    text-decoration: line-through;
}

.datepick-popup .datepick table tbody td a {
    background-color: var(--safar-white-color);
    font-size: 14px;
    border-radius: 4px;
}

.datepick-popup .datepick table tbody td span {
    font-size: 14px;
}

.datepick-popup .datepick table tbody td span.mphb-past-date {
    background: var(--safar-white-color);
    opacity: 1;
    font-size: 14px;
    text-decoration: none;
}

.datepick-popup .datepick table tbody td .datepick-weekend {
    background-color: #F7EFE8;
}

.datepick-popup .datepick table tbody td .datepick-weekend.datepick-other-month {
    background-color: var(--safar-white-color);
}

.datepick-popup .datepick table tbody td .datepick-today {
    color: var(--safar-primary-color);
    background-color: var(--safar-white-color);
}

.datepick-popup .datepick table tbody td .datepick-highlight {
    background-color: var(--safar-primary-color);
    color: var(--safar-text-white-color);
}

.datepick-popup .datepick table tbody td .datepick-selected {
    background-color: var(--safar-primary-color);
    color: var(--safar-text-white-color);
}

.datepick .datepick-ctrl {
    background-color: var(--safar-white-color);
    padding: 10px 10px;
    border-radius: 0 0 16px 16px;
}

.datepick .datepick-ctrl .mphb-calendar__selected-dates {
    font-size: 16px;
}

.datepick .datepick-ctrl a {
    color: var(--safar-primary-color);
    font-weight: 500;
    font-size: 18px;
    margin-block-end: 5px;
}

.datepick .datepick-ctrl a:hover {
    color: var(--safar-heading-color);
    background-color: var(--safar-white-color);
}

.datepick .datepick-month table td .mphb-extra-date {
    background: transparent;
}

.datepick .datepick-month table td .mphb-past-date {
    opacity: .25;
    color: var(--safar-heading-color);
}

.mphb-calendar .datepick {
    width: 100% !important;
}

.mphb-calendar .datepick .datepick-month {
    width: 50%;
}

@media (max-width: 576px) {

    .datepick .datepick-month.first {
        border-right: 0;
    }

    .mphb-datepick-popup {
        width: 100%!important;
    }

    .mphb-datepick-popup .datepick-month {
        width: 100%!important;
    }

    .mphb-calendar .datepick-month-row {
        display: block;
    }

    .mphb-calendar .datepick .datepick-month {
        width: 100%;
    }
}

.mphb-datepick-popup {
    border-radius: 16px;
}

.mphb-datepick-popup .datepick-nav {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.mphb-calendar {
    --mphb-available-date-bg: #df895b;
    --mphb-available-date-color: var(--safar-text-white-color);
    --mphb-not-available-date-bg: #f3b899;
    --mphb-not-available-date-color: var(--safar-text-white-color);
    --mphb-booked-date-bg: #f3b899;
    --mphb-booked-date-color: var(--safar-text-white-color);
    --mphb-out-of-season-date-bg: #c2c2c2;
    --mphb-out-of-season-date-color: var(--safar-text-white-color);
    --mphb-selected-date-bg: var(--safar-heading-color);
    --mphb-selected-date-color: #ffffff;
    --mphb-unselectable-date-color: var(--safar-text-white-color);
}



/*
# 4. Search Result
*/
.mphb_sc_search_results-wrapper .mphb_sc_search_results-info {
	margin-block-end: 42px;
}

.mphb_sc_search_results-wrapper .mphb-recommendation-title {
	font-size: 24px;
	color: var(--safar-heading-color);
}

.mphb_sc_search_results-wrapper .mphb-recommendation-details-list {
	padding-inline-start: 0;
	border-bottom: 1px dashed #D9D9D9;
	margin: 0;
	margin-block-end: 15px;
}

.mphb_sc_search_results-wrapper .mphb-recommendation-details-list li {
	padding-block-end: 22px;
	list-style: none;
}

.mphb_sc_search_results-wrapper .mphb-recommendation-details-list li a {
	color: var(--safar-primary-color);
	font-weight: 500;
}

.mphb_sc_search_results-wrapper .mphb-recommendation-details-list li .mphb-recommendation-item-guests {
	font-size: 18px;
	margin-block-start: 3px;
}

.mphb_sc_search_results-wrapper .mphb-recommedation-item-subtotal .mphb-price {
	font-weight: 500;
}

.mphb_sc_search_results-wrapper .mphb-recommendation-total {
	font-weight: 500;
}

.mphb_sc_search_results-wrapper .mphb-reservation-cart {
	border-bottom: 1px solid #E6E6E6;
	margin-block-end: 25px;
}

.mphb_sc_search_results-wrapper .mphb-reservation-cart .mphb-empty-cart-message {
	margin-block-end: 22px;
}

.mphb_sc_search_results-wrapper .mphb-recommendation {
	margin-block-end: 78px;
}

.mphb_sc_search_results-wrapper .mphb-reservation-details .mphb-cart-total-price {
	font-weight: 500;
	margin-block-start: 5px;
}

.mphb_sc_search_results-wrapper .mphb-rooms-quantity-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mphb_sc_search_results-wrapper .mphb-rooms-quantity-wrapper .nice-select {
	width: 100px;
}

.mphb_sc_search_results-wrapper.safar-mphb-result-widget.featured_image-false .mphb-room-type .safar-mphb-result-content-wrapper {
	width: 100%;
	padding-inline-start: 0;
}

.mphb_sc_search_results-wrapper.safar-mphb-result-widget .mphb-room-type .mphb-loop-room-type-attributes li,
.mphb_sc_search_results-wrapper.safar-mphb-result-widget .mphb-room-type .mphb-single-room-type-attributes li {
	display: block;
}

.mphb_sc_search_results-wrapper.safar-mphb-result-widget.capacity-false .mphb-room-type-adults-capacity,
.mphb_sc_search_results-wrapper.safar-mphb-result-widget.capacity-false .mphb-room-type-total-capacity {
	display: none !important;
}

.mphb_sc_search_results-wrapper.safar-mphb-result-widget.children-false .mphb-room-type-children-capacity {
	display: none !important;
}

.mphb_sc_search_results-wrapper.safar-mphb-result-widget.size-false .mphb-room-type-size {
	display: none !important;
}

.mphb_sc_search_results-wrapper.safar-mphb-result-widget.bed_type-false .mphb-room-type-bed-type {
	display: none !important;
}

.mphb_sc_search_results-wrapper.safar-mphb-result-widget.view-false .mphb-room-type-view {
	display: none !important;
}

.mphb_sc_search_results-wrapper.safar-mphb-result-widget.category-false .mphb-room-type-categories {
	display: none !important;
}

.mphb_sc_search_results-wrapper.safar-mphb-result-widget.amenity-false .mphb-room-type-facilities {
	display: none !important;
}

.mphb_sc_search_results-wrapper.safar-mphb-result-widget.bedrooms-false .mphb-room-type-bedrooms {
	display: none !important;
}

.mphb_sc_search_results-wrapper.safar-mphb-result-widget.bathrooms-false .mphb-room-type-bathrooms {
	display: none !important;
}

.mphb_sc_search_results-wrapper.safar-mphb-result-widget.location-false .mphb-room-type-location {
	display: none !important;
}

.safar-mphb-search-result-item-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

@media (max-width: 991px) {
	.safar-mphb-search-result-item-wrapper {
		display: block;
	}
}

.safar-mphb-search-result-item-wrapper .safar-mphb-result-thumb {
	width: 41%;
	height: 400px;
	flex: 0 0 auto;
	padding-inline-end: 30px;
	position: relative;
}

@media (max-width: 991px) {
	.safar-mphb-search-result-item-wrapper .safar-mphb-result-thumb {
		width: 100%;
		padding-inline-end: 0;
		margin-block-end: 20px;
	}
}

.safar-mphb-search-result-item-wrapper .safar-mphb-result-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.safar-mphb-search-result-item-wrapper .safar-mphb-result-thumb .safar-mphb-result-price {
	position: absolute;
	inset-block-start: 25px;
	inset-inline-start: 25px;
	height: 85px;
	width: 85px;
	background: var(--safar-white-color);
	text-align: center;
	border-radius: 50%;
	padding-block-start: 20px;
}

.safar-mphb-search-result-item-wrapper .safar-mphb-result-thumb .safar-mphb-result-price span:first-child {
	font-size: 16px;
	font-family: var(--safar-body-font);
	color: var(--safar-heading-color);
	display: block;
	line-height: 1;
}

.safar-mphb-search-result-item-wrapper .safar-mphb-result-thumb .safar-mphb-result-price span.price {
	font-size: 24px;
	font-family: var(--safar-heading-font);
	color: var(--safar-heading-color);
}

.safar-mphb-search-result-item-wrapper .safar-mphb-result-content {
	width: 59%;
}

@media (max-width: 991px) {
	.safar-mphb-search-result-item-wrapper .safar-mphb-result-content {
		width: 100%;
	}
}

.safar-mphb-search-result-item-wrapper .mphb-details-title {
	display: none;
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes {
	padding-inline-start: 30px;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 5px;
	margin: 0;
	margin-block-end: 15px;
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes li {
	list-style: none;
	position: relative;
	margin: 0 45px 0 0;
	display: none;
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes li::before {
	position: absolute;
	font-family: "icomoon" !important;
	inset-inline-start: -30px;
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes li a {
	color: var(--safar-primary-color);
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes .mphb-room-type-adults-capacity::before,
.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes .mphb-room-type-total-capacity::before {
	content: "\e9b3";
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes .mphb-room-type-children-capacity::before {
	content: "\e938";
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes .mphb-room-type-facilities::before {
	content: "\e9aa";
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes .mphb-room-type-view::before {
	content: "\e9c3";
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes .mphb-room-type-size::before {
	content: "\e9a0";
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes .mphb-room-type-bed-type::before {
	content: "\e9a1";
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes .mphb-room-type-categories::before {
	content: "\e9b4";
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes .mphb-room-type-bedrooms::before {
	content: "\e910";
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes .mphb-room-type-bathrooms::before {
	content: "\e998";
}

.safar-mphb-search-result-item-wrapper .mphb-single-room-type-attributes .mphb-room-type-location::before {
	content: "\e9ae";
}

.safar-mphb-search-result-item-wrapper .mphb-room-type-custom-attribute::before {
	content: "\e9ad";
}

.safar-mphb-search-result-item-wrapper .mphb-room-type-facilities .mphb-attribute-title:after {
	content: " ...";
	cursor: pointer;
	color: var(--safar-primary-color);
	font-weight: bolder;
}

.safar-mphb-search-result-item-wrapper .mphb-room-type-facilities .mphb-attribute-value {
	display: none;
	position: absolute;
	inset-block-start: 40px;
	inset-inline-end: -10px;
	background: var(--safar-white-color);
	z-index: 3;
	padding: 10px;
	border-radius: 12px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

.safar-mphb-search-result-item-wrapper .mphb-room-type-facilities .mphb-attribute-value:before {
	content: "";
	position: absolute;
	inset-block-start: -12px;
	inset-inline-end: 11px;
	border: 6px solid transparent;
	border-bottom: 8px solid var(--safar-white-color);
	border-top-color: transparent !important;
	border-left-color: transparent !important;
	border-right-color: transparent !important;
}

.safar-mphb-search-result-item-wrapper .mphb-room-type-facilities a {
	color: var(--safar-primary-color);
	text-decoration: underline;
}

.safar-mphb-search-result-item-wrapper .mphb-room-type-facilities a:hover {
	color: var(--safar-primary-color);
	text-decoration: none;
}

.safar-mphb-search-result-item-wrapper .mphb-room-type-facilities:hover .mphb-attribute-value {
	display: block;
	position: absolute;
}

.safar-mphb-search-result-item-wrapper .safar-mphb-result-title {
	margin-block-end: 6px;
}

.safar-mphb-search-result-item-wrapper .mphb-reserve-room-section {
	margin-block-start: 25px;
	margin-block-end: 25px;
	padding-block-end: 20px;
	border-bottom: 1px solid #E6E6E6;
}

@media (max-width: 500px) {
	.safar-mphb-search-result-item-wrapper .mphb-reserve-room-section .mphb-book-button {
		margin-block-start: 20px;
	}

	.safar-mphb-search-result-item-wrapper .mphb-reserve-room-section.mphb-rooms-added .mphb-book-button {
		margin-block-start: 0;
	}
}

.safar-mphb-search-result-item-wrapper .mphb-reserve-room-section select,
.safar-mphb-search-result-item-wrapper .mphb-reserve-room-section .nice-select {
	width: auto;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 19px;
	padding: 10px;
	padding-inline-end: 36px;
	font-size: 16px;
	border: 1px solid var(--safar-border-color);
	border-radius: 4px;
}

.safar-mphb-search-result-item-wrapper .mphb-reserve-room-section .mphb-rooms-quantity-wrapper {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-inline-end: 10px;
}

.safar-mphb-search-result-item-wrapper .mphb-reserve-room-section p {
	margin-block-end: 0;
}

.safar-mphb-search-result-item-wrapper .mphb-reserve-room-section .mphb-rooms-reservation-message-wrapper {
	margin: 20px 0;
}

.safar-mphb-search-result-item-wrapper .mphb-reserve-room-section .mphb-rooms-reservation-message-wrapper .mphb-remove-from-reservation {
	color: var(--safar-primary-color);
	border-bottom: 1px dotted var(--safar-primary-color);
}

.safar-mphb-search-result-item-wrapper .mphb-reserve-room-section .mphb-rooms-reservation-message-wrapper .mphb-remove-from-reservation:hover {
	border-bottom: 1px dashed;
}

.safar-mphb-search-result-item-wrapper .mphb-reserve-room-section.mphb-rooms-added .mphb-book-button {
	cursor: not-allowed;
	opacity: 0.5;
}

.safar-mphb-search-result-item-wrapper.no_attributes .mphb-loop-room-type-attributes {
	display: none;
}

.safar-mphb-search-result-item-wrapper .mphb-loop-room-type-attributes li {
	display: none;
}

.safar-mphb-search-result-item-wrapper.show-capacity .mphb-room-type-adults-capacity,
.safar-mphb-search-result-item-wrapper.show-capacity .mphb-room-type-total-capacity {
	display: block;
}

.safar-mphb-search-result-item-wrapper.show-children .mphb-room-type-children-capacity {
	display: block;
}

.safar-mphb-search-result-item-wrapper.show-size .mphb-room-type-size {
	display: block;
}

.safar-mphb-search-result-item-wrapper.show-bedType .mphb-room-type-bed-type {
	display: block;
}

.safar-mphb-search-result-item-wrapper.show-view .mphb-room-type-view {
	display: block;
}

.safar-mphb-search-result-item-wrapper.show-categories .mphb-room-type-categories {
	display: block;
}

.safar-mphb-search-result-item-wrapper.show-facilities .mphb-room-type-facilities {
	display: block;
}

.safar-mphb-search-result-item-wrapper.show-customAttribute .mphb-room-type-custom-attribute {
	display: block;
}

.safar-mphb-search-result-item-wrapper.show-bedrooms .mphb-room-type-bedrooms {
	display: block;
}

.safar-mphb-search-result-item-wrapper.show-bathrooms .mphb-room-type-bathrooms {
	display: block;
}

.safar-mphb-search-result-item-wrapper.show-location .mphb-room-type-location {
	display: block;
}

.safar-mphb-search-result-item-wrapper.line_1_description .safar-excerpt-content p {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-block-end: 15px;
}

.safar-mphb-search-result-item-wrapper.line_2_description .safar-excerpt-content p {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-block-end: 15px;
}

.safar-mphb-search-result-item-wrapper.line_3_description .safar-excerpt-content p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-block-end: 15px;
}

.safar-mphb-search-result-item-wrapper.line_4_description .safar-excerpt-content p {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-block-end: 15px;
}

.safar-mphb-search-result-item-wrapper.no_description .safar-excerpt-content {
	display: none;
}

.safar-mphb-single-content-area .comments-area .safar-comment-form input[type="text"], 
.safar-mphb-single-content-area .comments-area .safar-comment-form input[type="email"], 
.safar-mphb-single-content-area .comments-area .safar-comment-form input[type="url"], 
.safar-mphb-single-content-area .comments-area .safar-comment-form textarea#comment {
    border-radius: 12px;
}

.safar-mphb-single-content-area .comments-area .form-submit input {
    border-radius: 40px;
}

/*
# 5. Attributes (Sidebar)
*/
#secondary .safar-mphb-single-sidebar-attributes .mphb-details-title {
  display: none;
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes {
  padding-inline-start: 35px;
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes li {
  list-style: none;
  position: relative;
  display: none;
  border: 0 !important;
  padding-block-end: 0;
  margin-block-end: 24px;
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes li::before {
  position: absolute;
  font-family: "icomoon" !important;
  left: -30px;
  color: var(--safar-primary-color);
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes li .mphb-attribute-title {
  color: var(--safar-heading-color);
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes li a {
  color: var(--safar-body-color);
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes li a:hover {
  color: var(--safar-primary-color);
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes .mphb-room-type-adults-capacity::before, #secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes .mphb-room-type-total-capacity::before {
  content: "\e9b3";
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes .mphb-room-type-children-capacity::before {
  content: "\e938";
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes .mphb-room-type-facilities::before {
  content: "\e9aa";
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes .mphb-room-type-view::before {
  content: "\e9c3";
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes .mphb-room-type-size::before {
  content: "\e9a0";
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes .mphb-room-type-bed-type::before {
  content: "\e9a1";
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes .mphb-room-type-categories::before {
  content: "\e9b4";
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes .mphb-room-type-bedrooms::before {
  content: "\e910";
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes .mphb-room-type-bathrooms::before {
  content: "\e998";
}
#secondary .safar-mphb-single-sidebar-attributes .mphb-single-room-type-attributes .mphb-room-type-location::before {
  content: "\e9ae";
}
#secondary .safar-mphb-single-sidebar-attributes.show-capacity .mphb-room-type-adults-capacity, #secondary .safar-mphb-single-sidebar-attributes.show-capacity .mphb-room-type-total-capacity {
  display: block;
}
#secondary .safar-mphb-single-sidebar-attributes.show-children .mphb-room-type-children-capacity {
  display: block;
}
#secondary .safar-mphb-single-sidebar-attributes.show-size .mphb-room-type-size {
  display: block;
}
#secondary .safar-mphb-single-sidebar-attributes.show-bedType .mphb-room-type-bed-type {
  display: block;
}
#secondary .safar-mphb-single-sidebar-attributes.show-view .mphb-room-type-view {
  display: block;
}
#secondary .safar-mphb-single-sidebar-attributes.show-categories .mphb-room-type-categories {
  display: block;
}
#secondary .safar-mphb-single-sidebar-attributes.show-facilities .mphb-room-type-facilities {
  display: block;
}
#secondary .safar-mphb-single-sidebar-attributes.show-customAttribute .mphb-room-type-custom-attribute {
  display: block;
}
#secondary .safar-mphb-single-sidebar-attributes.show-bedrooms .mphb-room-type-bedrooms {
  display: block;
}
#secondary .safar-mphb-single-sidebar-attributes.show-bathrooms .mphb-room-type-bathrooms {
  display: block;
}
#secondary .safar-mphb-single-sidebar-attributes.show-location .mphb-room-type-location {
  display: block;
}
#secondary .safar-mphb-single-sidebar-attributes .attributes-item {
  display: flex;
  gap: 10px;
}
#secondary .safar-mphb-single-sidebar-attributes .attributes-item .atributes-text p {
  margin-block-end: 10px;
}

.mphbr-new-review-box {
    border: 1px solid var(--safar-border-color);
    border-radius: 16px;
}