@font-face {
    font-family: 'RecklessNeue';
    src: url('../fonts/RecklessNeue-Regular.woff2') format('woff2'),
        url('../fonts/RecklessNeue-Regular.woff') format('woff'),
        url('../fonts/RecklessNeue-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html *:before,
html *:after {
    box-sizing: border-box;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

*:before,
*:after {
    z-index: -1;
}

#MyEmailAddress {
	display: none;
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	background-color: #9d46e5;
	right: 0;
	bottom: 0;
	display: block;
	z-index: 99999;
	transition: 0.5s all linear;
}
 
#preloader:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
	top: 50%;
    height: 100px;
	width: 100px;
    animation: rotation 1s linear infinite;
    border: 2px solid #ffffff;
    border-top: 1px solid transparent;
    border-radius: 100%;
    margin-left: -50px;
	margin-top: -50px;
}

#preloader > .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 50px;
    width: 50px;
    margin-top: -28px;
    margin-left: -25px;
    animation: wink 1.5s ease-in-out infinite alternate;
}

@keyframes rotation {
	from{transform:rotate(0deg);}
	to{transform:rotate(359deg);}
}

@keyframes wink {
    from{opacity:0;}
    to{opacity:1;}
}


body.locked {
	overflow: hidden;
}

.signup_lock {
	position: fixed;
	z-index: 99;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.80);
}

.signup_lock .col-12 {
	background-color: #ffffff;
}

.signup_lock .registerHolder {
	background-color: #8739f6;
}

.signup_lock .registerHolder h3 {
    color: #ffffff;
	font-size: 22px;
	margin: 0 0 11px 0;
}

.signup_lock .registerHolder p {
	color: #ffffff;
	font-size: 14px;
}

body#login .signup_lock {
	display: none !important;
}
body#join .signup_lock {
	display: none !important;
}


.autocomplete {
	position: relative;
	display: inline-block;
}

.autocomplete-items {
	position: absolute;
	border: 1px solid #d4d4d4;
	border-bottom: none;
	border-top: none;
	z-index: 99;
	top: 100%;
	left: 0;
	right: 0;
	color: #000;
	text-align: left;
}

.autocomplete-items div,
.autocomplete-suggestion {
	padding: 10px;
	cursor: pointer;
	background-color: #fff;
	border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
	background-color: #e9e9e9;
}

.autocomplete-active {
	background-color: DodgerBlue !important;
	color: #ffffff;
}

body {
	font-family: 'Poppins', sans-serif;
    color: black;
    overflow-x: hidden;
    font-size: 15px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.push-toright {
	overflow: hidden;
}



h1 > span,
.h1 > span {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	margin: 0;
}



h2 > span,
.h2 > span {
	font-family: 'Poppins', sans-serif;	
	font-size: 16px;
	margin: 0;
}

h3, .h3 {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 400;
    font-size: 17px;
    margin: 0;
}

h4, .h4 {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 500;
    font-size: 18px;
    margin: 0;
}

h5, .h5 {
    color: #f9ac90;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

a {
	color: inherit;
	transition: all .5s;
}

a:hover {
	color: #9d46e5;
}

a.link_underline {
	color: black;
	cursor: pointer;
	font-size: inherit;
	margin: 15px 0 0;
	text-decoration: none;
	line-height: 18px;
	border-bottom: 1px solid black;
	width: max-content;
	transition: all .5s;
}

ul {
	list-style: none;
	padding: 0;
}

img {
	max-width: 100%;
	height: auto;
}

ul.default {
    margin-bottom: 25px;
	padding-left: 25px;
}

ul.default li {
    list-style: disc;
}

ul.default li > ul.default {
    list-style: circle;
    margin-bottom: 0;
}

table {
	margin-bottom: 25px;
	border-bottom: 1px solid #efefef;
}

table tr td {
	border-right: 1px solid #efefef;
	padding: 5px 10px;
}

table tr td:first-child {
	font-weight: 600;
}

table tr td:last-child {
	border-right: 0;
}

table tr th {
	background-color: #efefef;
	font-weight: 600;
	padding: 5px 10px;
}

table tr th:last-child {
	border-right: 0;
}

.bg-none,
.bg_none {
	background-image: none !important;
}

.bg-ocean,
.bg_ocean {
    background-image: url('../img/water-bg.jpg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-ocean2,
.bg_ocean2 {
    background-image: url('../img/ocean2_bg.png');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-cloud,
.bg_cloud {
    background-image: url('../img/cloud_bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-cruise,
.bg_cruise {
    background-image: url('../img/bg_cruise.jpg');
    background-size: 105% auto;
    background-position: right center;
}

.bg-palm,
.bg_palm {
	background-image: url('../img/bg_palm.png');
	background-position: top right;
	background-size: 300px auto;
	background-repeat: no-repeat;
}

.bg-gradient,
.bg_gradient {
	background-image: url('../img/bg_gradient.png');
}

.bg-laptop,
.bg_laptop {
    background-image: url('../img/mac.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 45%;
}

.bg-lightgrey,
.bg_lightgrey {
	background-color: #ececec;
}

.mb-6 {
    margin-bottom: 5vw !important;
}

.holder {
	position: relative;
}

.purple {
    color: #8739f6;
}

.grey {
    color: #999999;
}

.white {
	color: #ffffff;
}

.charcoal {
    color: #1a1919;
}

.font-weight-medium {
	font-weight: 500;
}

.font-weight-semi-bold {
	font-weight: 600;
}

.border-10 {
	border-width: 10px !important;
}

.border-purple {
	border-color: #9d46e5 !important;
}

.list-group {
	border-radius: 0;
}

.line-through {
	text-decoration: line-through;
}

.owl-carousel.off {
    display: block;
}

.owl-carousel.row.off {
    display: flex;
}

.form-control:focus {
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.38); 
	box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.38);
}

@-webkit-keyframes criss-cross-left{0%{left:-20px}50%{left:50%;width:20px;height:20px}100%{left:50%;width:375px;height:375px}}
@keyframes criss-cross-left{0%{left:-20px}50%{left:50%;width:20px;height:20px}100%{left:50%;width:375px;height:375px}}
@-webkit-keyframes criss-cross-right{0%{right:-20px}50%{right:50%;width:20px;height:20px}100%{right:50%;width:375px;height:375px}}
@keyframes criss-cross-right{0%{right:-20px}50%{right:50%;width:20px;height:20px}100%{right:50%;width:375px;height:375px}}

.btn {
	border: 2px solid #8739f6;
	border-radius: 1000px;
	z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 10px 20px;
    justify-content: center;
    max-width: 200px;
}

.btn:before {
	position: absolute;
    top: 50%;
    content: '';
    width: 20px;
    height: 20px;
    background-color: #8739f6;
    border-radius: 50%;
    left: -20px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.btn:after {
	position: absolute;
    top: 50%;
    content: '';
    width: 20px;
    height: 20px;
    background-color: #8739f6;
    border-radius: 50%;
    right: -20px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    box-sizing: border-box;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.btn:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.btn:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.purple_btn {
    background: #8739f6;
    background: linear-gradient(90deg, #8739f6 75%, #a849fc 95%);
    color: white;
}

.purple_btn:before,
.purple_btn:after {
	background-color: white;
}

.purple_btn:hover {
    color: #8739f6;
}

.transp_btn {
    color: #8739f6;
}

.transp_btn:hover {
    color: #ffffff;
}

.transp_btn:before,
.transp_btn:after {
	background-color: #8739f6;	
}

.black_btn {
	background-color: #000000;
	color: #ffffff;
	border-radius: 10px;
	border-color: #000;
}

.black_btn:hover {
    color: #000000;
}

.black_btn:before,
.black_btn:after {
	background-color: #ffffff;	
}

.small_btn:not(.square_btn) {
    font-size: 25px;
    font-weight: 500;
    padding: 3px 20px;
}

.square_btn.small_btn {
    padding: 5px 12px;
    max-width: 120px;
    font-size: 14px;
    font-weight: 500;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 0;
    padding-right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

section#hero:not(.full_page_slider) {
    padding-top: 165px;
}

section.small_padding,
section.small_pad {
    padding-top: 40px;
	padding-bottom: 40px;
}

.vertical-align {
	align-items: center;
}

body.header-abs #hero:first-of-type {
    padding: 190px 0 110px;
}

footer {
	background-color: #000000;
	padding-top: 100px;
	padding-bottom: 100px;
	padding-left: 10px;
	padding-right: 10px;
	color: #ffffff;
}

footer .logoHolder #logo {
	filter: none;
}

footer .logoHolder span {
	color: #ffffff;
}

footer ul {
	padding: 0;
}

footer ul li {
    line-height: 1.2;
    margin: 25px 0;
}

footer a {
	text-decoration: none;
}

footer .app img {
   
}

.social-icons li {
    margin-bottom: 0;
    margin-top: 0;
}

.social-icons li:not(:last-child) {
	margin-right: 10px;
}

.social-icons a {
    border-radius: 100%;
    background-color: #fff;
    color: #000;
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    font-size: 20px;
}

.social-icons a:hover {
    background-color: #9d46e5;
    color: #ffffff;
}

.social-icons.invert a {
    background-color: #9d46e5;
    color: #ffffff;
}

.social-icons.invert a:hover {
    background-color: #000000;
}

.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../img/preloader.svg') center no-repeat #fff;
}

.login-with {
	width: 100%;
}

.login-with span {
    cursor: pointer;
}

.login-with > a {
    width: 100% !important;
	max-width: 100% !important;
	margin: 8px 0 !important;
	border: 1px solid #efefef !important;
	border-radius: 5px;
	display: block !important;
	text-decoration: none;
	position: relative;
}

.abcRioButton {
    width: 100% !important;
	box-shadow: none !important;
	height: auto !important;
}

.nsl-button-facebook,
.abcRioButtonContentWrapper {
	display: block !important;
	height: auto !important;
	position: relative;
}

.nsl-button-svg-container, .abcRioButtonIcon, .icon-container {
    position: absolute;
    left: 15px;
    top: 10px;
    width: 30px !important;
    padding: 0 !important;
}

.nsl-button-svg-container svg, .abcRioButtonIcon svg,
.icon-container img {
   width: 24px;
   height: 24px;
}

.abcRioButtonIcon > div {
	display: block !important;
}

.nsl-button-label-container.facebookText, .abcRioButtonContents, .text-container {
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
    padding: 18px 0 !important;
    font-size: 14px !important;
	font-family: 'Poppins', Arial, sans-serif !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
	line-height: 14px !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: center;
	color: #333;
}

.blue-facebook .nsl-button-facebook {
	background-color: #1878f3;
	border-radius: 7px;
}

.blue-facebook .nsl-button-svg-container {
    left: 5px;
    top: 5px;
}

.blue-facebook .nsl-button-label-container.facebookText {
    padding: 14px 5px 14px 30px !important;
    font-size: 12px !important;
    color: #fff;
}

.border_line {
	text-align: center;
	position: relative;
	margin: 30px 0 30px 0;
}

.border_line:before {
	content: '';
	background-color: #8739f6;
	height: 1px;
	display: inline-block;
	width: 20px;
	position: relative;
	top: -4px;
	margin: 0 5px 0 0;
}

.border_line:after {
	content: '';
	background-color: #8739f6;
	height: 1px;
	display: inline-block;
	width: 20px;
	position: relative;
	top: -4px;
	margin: 0 0 0 5px;
}

.border_line p {
	display: inline-block;
	color: #8739f6;
}

.login-form {
    padding: 0 20px;
    border-radius: 5px;
}

form.has-icon {
	position: relative;
}

form.has-icon::before {
    content: '';
    background-image: url('../img/icon-search.png');
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    background-size: 100% auto;
    height: 46px;
    z-index: 1;
}

input.see-through {
    opacity: 0.8;
	padding: 10px 10px 10px 60px;
	border-radius: 10px;
	margin-bottom: 0;
	height: 100%;
}

ul.split.list-group li {
    margin: 0 15px;
}

.ribbon {
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    text-transform: uppercase;
    padding: 0 40px;
}

.ribbon.white {
	background-color: #ffffff;
	color: #000000;
}

.ribbon.black {
	background-color: #000000;
	color: #ffffff;
}

.stars i.fa-star {
	color: #f9ac90;
    margin: 0 2px;
}

.stars i.fa-star.off {
	color: #b3b3b3;
}

.owl-item {
	padding: 5px;
}

.property_card {
	background-color: #ffffff;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
}

.property_card > h5 {
	height: 20px;
}

.property_card .holder {
	height: 200px;
	overflow: hidden;
}

.property_card h3 {
    display: flex;
    height: 45px;
    align-items: center;
}

.property_card p {
    margin: 0;
    line-height: 1.4;
    font-size: 14px;
}

.property_card p.desc {
    line-height: 25px;
    height: 55px;
    overflow: hidden;
    transition: 0.5s;
}

.property_card p.desc.active {
	height: auto;
}

.show_hide {
	font-size: 13px !important;
}

.property_card p.grey:not(.people) {
	height: 19px;
}

.property_card p.price {
    font-size: 35px;
    line-height: 1;
    margin-right: 8px;
}

.property_card p.people {
	line-height: 1.2;
	font-size: 12px;
}

.property_card .stars {
    margin-bottom: 5px;
}

.property_card .stars img {
	height: auto;
}

.feature_location {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.feature_location .container {
	background-color: rgba(255, 255, 255, 0.8); 
}

.offer_card {
	background-color: #ffffff;
}

.offer_card > a {
    height: 200px;
    display: block;
    margin-bottom: 20px;
}

.offer_card > a img {
    object-fit: cover;
    object-position: 0 100%;
    height: 100%;
}

.offer_card h4 {
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
}

header {
    padding-top: 15px;
    padding-bottom: 15px;
}

.header-abs header,
.header_absolute header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

header.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #fff;
	z-index: 3;
	-webkit-box-shadow: 0px 0px 4px 3px rgba(0,0,0,0.1); 
	box-shadow: 0px 0px 4px 3px rgba(0,0,0,0.1);
}

header .top {
    background-color: #8739f6;
    z-index: 5;
    position: relative;
    padding: 3px 0 6px 0;
}

header .top a {
    color: #ffffff;
    display: inline-block;
    text-decoration: none !important;
    font-size: 13px;
}

header .top a i {
	margin-right: 10px;
}

header .bottom {
	padding-top: 15px;
	padding-bottom: 15px;
	position: relative;
}

.logoHolder {
	width: 25%;
}

.logoHolder a {
    border: 0;
    text-decoration: none;
    max-width: 170px;
    display: block;
}

/*
header.fixed .logoHolder a {
	max-width: 200px;
}
*/

.logoHolder span {
    color: #000;
    font-size: 10px;
    font-weight: 400;
    display: block;
    letter-spacing: 0.2px;
    text-align: right;
    margin-top: -12px;
}

.logoHolder span img {
    margin-right: 5px;
    position: relative;
    top: 0px;
    width: 11px;
    height: auto;
}

.logoHolder #logo {
    transition: 0.5s;
    width: 170px;
}
/*
header.fixed .logoHolder #logo {
    width: 150px;
}
*/

.hamburgerHolder {
	display: none;	
}

.mainMenuHolder {
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 0 0 35px;
    float: right;
}

ul.main_menu {
	width: 100%;
}

ul.main_menu li {
	margin-right: 45px;
}

ul.main_menu li:last-child {
	margin-right: 0;
}

ul.main_menu li a:not(.btn) {
    text-decoration: none;
}

ul.main_menu li a.btn {
    height: 35px;
}

ul.main_menu li:first-child a {
	padding-left: 0;
}

.phoneCss {
    font-size: 16px !important;
    color: #8739f6;
    padding-right: 5px;
    position: relative;
    top: -1px;
}

.phone {
	font-size: 20px;
}

.phone a {
	color: #8739f6;
}

body#home #hero {
	background-image: url('../img/banner_home.jpg');
}

.header_absolute #hero {
    padding-top: 220px;
    padding-bottom: 170px;
}

.slide_keys li a {
    text-decoration: none;
    padding: 20px 10px;
    position: relative;
    overflow: hidden;
    display: block;
    color: #000000 !important;
    cursor: default;
}

.slide_keys li a:after {
	transition: all .5s;
}

/*
.slide_keys li.active a::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0d8';
    color: #9d46e5;
    position: absolute;
    bottom: 0;
    left: 50%;
    font-size: 20px;
    margin-left: -6.2px;
    margin-bottom: -8px;
    line-height: 1;
}
*/

.slide_keys li a span.iconHolder {
    height: 40px;
    width: 40px;
    margin: 0 auto 5px;
}

.slide_keys li a span.iconHolder img {
    width: auto;
    height: auto;
    max-width: 30px;
    max-height: 35px;
}

.slide_keys li a span.textHolder {
    max-width: 78px;
    display: block;
    text-align: center;
    line-height: 1.4;
}

.need_payment {
    width: 100%;
    padding-top: 20px;
    margin-left: 0px;
    margin-right: 0;
}

.StripeElement {
    width: 100%;
    height: auto;
	padding: 15px 12px;
    border-radius: 4px;
    border: 1px solid #efefef;
    box-shadow: 0px 0px 5px 3px #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
    margin: 10px 0 0 0;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    border-color: #fa755a;  
}

.error {
    width: 100%;
    padding-top: 10px;
    text-align:center;
    color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

.owl-dots {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
    margin-top: 30px;
}

.owl-carousel button.owl-dot {
    background: #b4b4b4;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px 0 0;
}

.owl-carousel button.active {
    background: #f9ac90;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-nav {
    width: 53.5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    top: -55%;
    z-index: 3;
}

.owl-carousel .owl-nav.disabled {
    display:none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background-color: #8739f6;
	color: white;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	margin: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url('../img/arrow.png');
	background-position: center;
	background-repeat: no-repeat;
}

.owl-carousel .owl-nav button.owl-next {
    transform: rotate(180deg);
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}

.owl-carousel button.owl-dot:active,
.owl-carousel button.owl-dot:focus,
.owl-carousel .owl-nav button.owl-next:focus,
.owl-carousel .owl-nav button.owl-prev:focus,
.owl-carousel .owl-nav button.owl-next:active,
.owl-carousel .owl-nav button.owl-prev:active {
    outline: none;
}

.full_page_slider,
.full_page_slider .owl-carousel,
.full_page_slider .owl-carousel .owl-stage-outer,
.full_page_slider .owl-carousel.owl-drag .owl-item,
.full_page_slider .owl-carousel .owl-stage {
    height: 500px;
}

.full_page_slider .owl-item {
	padding: 0;
}

.full_page_slider {
    width: 100vw;
    margin-top: 0;
    padding: 0;
    position: relative;
}

.full_page_slider .detail {
    position: absolute;
    bottom: 15px;
    right: 25px;
}

.full_page_slider .owl-carousel {
    overflow: hidden;
}

.full_page_slider .owl-carousel .item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    color: #b3b3b3;
    font-size: 18px;
    position: relative;
    filter: brightness(0.3);
}

.full_page_slider .name {
    width: 123px;
    position: relative;
    z-index: 1;
}

.full_page_slider .img,
.full_page_slider img {
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    height: auto;
}

.full_page_slider p {
    padding: 0 0 8px;
    border-bottom: 1px solid #b3b3b3;
    position: relative;
    z-index: 1;
    cursor: pointer;
    margin: 0;
    color: #fff;
    line-height: 24px;
}

.full_page_slider a {
	color: #ffffff;
	font-size: 14px;
}

.full_page_slider .owl-carousel .center .item {
    filter: brightness(1);
}

.full_page_slider .owl-carousel .owl-nav button.owl-prev {
	visibility: hidden;
}

.full_page_slider .owl-carousel .owl-dots {
    position: absolute;
    right: 0;
    bottom: 25px;
    z-index: 99;
    margin-right: 25%;
    width: auto;
    padding-right: 25px;
}

.full_page_slider .name {
    width: 123px;
    position: relative;
    z-index: 1;
}

.full_page_slider .info_box {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 1;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.50);
    width: 306px;
    padding: 15px 15px;
    border-radius: 5px;
    height: 115px;
}

.full_page_slider .location {
    position: relative;
    padding: 0 0 0 25px;
}

.full_page_slider .location img {
    width: 20px !important;
    display: inline;
    margin: 0 5px 0 0;
    height: auto !important;
}

.full_page_slider .price_box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative  !important;
    margin-left: 25px;
}

.full_page_slider .price_box p.price {
    margin: 0;
    line-height: 1;
    font-size: 2.4em;
    border: 0;
    color: #fff;
}

.full_page_slider .price_box span {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    float: right;
    padding: 1px 0 0 10px;
    line-height: 19px;
}

.full_page_slider .button_box {
    position: absolute;
	bottom: 38px;
	right: 38px;
	z-index: 1;
}

#home .bg_palm .btn {
	max-width: 290px;	
}

.info_section .left .name_apart {
    font-weight: 500;
}

.info_section .stars {
    margin: 5px 0 35px;
}

.info_section .information p {
	margin: 0;
}

.info_section .information .left {
    color: #8739f6;
    position: relative;
    padding: 0px 0 0 40px;
    text-align: left;
}

.info_section .information .right {
    color: #8739f6;
    text-align: left;
    padding: 0px 10px 0;
}

.info_section .information img.flame {
    width: 27px;
    height: auto;
    position: absolute;
    left: 0;
    top: 7px;
}

.info_section .information b {
	clear: both;
	display: block;
}

.info_section .information .purple p {
	color: #8739f6;
}

.info_section .add_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-top: 1px solid #beb6b6;
    border-bottom: 1px solid #beb6b6;
    margin: 43px 0 0;
    padding: 45px 0;
    color: #b3b3b3;
    font-size: 18px;
}

.info_section .add_section div {
    width: 71%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.info_section .grey {
    color: #b3b3b3;
    font-size: 18px;
    transition: all .5s;
}

.expertInfo {
    max-width: 320px;
    margin: auto;
    text-align: center;
}

.expertInfo .expert {
    border-radius: 50%;
    border: 1px solid #cccdcf;
    width: 60px;
    height: 60px;
    background-color: #eaeaec;
    margin: 0 auto 10px;
}

.expertInfo p {
	color: #b3b3b3;	
	margin: 0 0 15px;
	font-size: 14px;
}

p.contact {
    color: #8739f6;
    font-weight: 600;
    font-size: 20px;
}

p.contact a {
	text-decoration: none;
	color: inherit;
	border: 0;
	transition: .5s;
	color: #8739f6;
    cursor: pointer;
}

p.contact a:hover {
    text-decoration: none;
    color: #8739f6;
    border-bottom: 1px solid #8739f6;
}

.info_section .right.contacts h3 {
	font-weight: 500;
}

.info_section .right.contacts a {
    color: #8739f6;
    border-bottom: 0;
    font-weight: 600;
}

form.search-form label {
	display: block;
	color: #000;
}

form.search-form label img {
    margin: 0 10px 0 0;
    width: 15px;
}

.search_res {
    width: 100%;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
    background-color: white;
    margin: 0 0 45px;
    display: flex;
	flex-direction: row;
	position: relative;
	padding: 15px 0;
}

.search_res .visible {
	position: relative;
}

.search_res .visible .flame_img {
    position: absolute;
    left: -15px;
    top: -30px;
}

.search_res img.flame {
	position: absolute;
	left: -10px;
	top: -25px;
	z-index: 1;
	width: 45px;
}

.search_res .left .carousel {
    height: 313px;
    overflow: hidden;
    width: 100%;
}

.search_res .left .carousel-inner {
    height: 100%;
}

.search_res .left .carousel-item {
    height: 100%;
}

.search_res .left .img {
    object-fit: cover;
	object-position: 0 100%;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	overflow: hidden;
	background-size: cover;
}

.search_res .left .img a {
	height: 100%;
}

.search_res .left .img img {
    width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 0;
	top: 0;
	left: 0;
	width: auto;	
	object-position: center;  
}

.search_res .left .img div.deal-tags {
    position: absolute;
	z-index: 2;
	right: 0;
	top: 0;
}

.search_res .left .white_text {
    background-color: white;
    font-size: 24px;
    width: 170px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 2px 0;
    letter-spacing: -1px;
    position:absolute;
    right:0px;
    margin: 0;
}

.search_res .left .black_text {
    background-color: black;
    font-size: 24px;
    width: 260px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    color: white;
    padding: 2px 0;
    letter-spacing: -1px;
    margin: 0;
}

.search_res .left .black_text span {
    font-size: 18px;
    color: #b3b3b3;
    margin: 0 0 0 15px;
}

.search_res .left .btn_box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 45px 0 0 0;
}

.search_res .left .btn_box .black_btn,
.search_res .left .btn_box .white_btn,
.search_res .left .btn_box .purp_btn {
    width: 167px;
    height: 49px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 400;
    cursor: pointer;
    transition: all .5s;
    line-height: 1.2;
    border: 2px solid black;
}

.search_res .left .btn_box .blk_btn {
    background-color: transparent;
	color: #000;
	margin: 0 30px 0 0;
	border-radius: 1000px;
	width: 167px;
	height: 49px;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	cursor: pointer;
	transition: all .5s;
	line-height: 1.2;
	border: 2px solid black;
}

.search_res .left .btn_box .blk_btn::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    content: '\f107';
    z-index: 1;
    margin-left: 7px;
}

.search_res .left .btn_box .blk_btn:hover {
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
}

.search_res .left .btn_box .purp_btn {
    background-color: transparent;
	color: #8739f6;
	margin: 0 30px 0 0;
	border-radius: 1000px;
	border-color: #8739f6;
}

.search_res .left .btn_box .purp_btn:after {
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
	content: '\f107';
	z-index: 1;
	margin-left: 7px;
}

.search_res .left .btn_box .purp_btn.active {
	background-color: #8739f6;
	color: #ffffff;
}

.search_res .left .btn_box .blk_btn.active {
	background-color: #000000;
	color: #ffffff;
}

.search_res .left .btn_box .blk_btn.active:after {
	content: '\f106';
}

.search_res .left .btn_box .purp_btn.active:after {
	content: '\f106';
}

.search_res .left .btn_box .purp_btn:hover {
    background-color: #8739f6;
    color: #ffffff;
    text-decoration: none;
}

.search_res .left .btn_box .white_btn {
    background-color: white;
    color: black;
}

.search_res .left .btn_box .white_btn:hover {
    background-color: black;
    color: white;
    text-decoration: none;
}

.search_res .left .btn_box .white_btn img {
    margin: 0 0 0 10px;
    width: 12px;
    transition: all .5s;
}

.search_res .left .btn_box .white_btn:hover img {
    filter: invert(1);
}

.search_res .right h5 {
    font-size: 20px;
    color: #f9ac90;
    margin: 0;
    font-weight: 400;
}

.search_res .right h1,
.search_res .right h3 {
    font-weight: 400;
    font-size: 30px;
    margin: 0;
    overflow: visible;
}

.search_res .right .box .purple {
    font-size: 18px;
    color: #8739f6;
    font-weight: 600;
    letter-spacing: -1px;
    margin: 0;
}

.search_res .right .box .purple span {
    font-size: 18px;
    color: #8739f6;
    font-weight: 400;
}

.search_res .right .stars {
	margin-bottom: 25px;	
}

.search_res .right .stars img {
	display: inline;
}

.search_res .right .title {
    color: black;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 2px solid #bdb4b4;
    padding: 7px 0;
    width: 100%;
    margin: 15px 0 0px 0;
}

.quick_info {
    width: 100%;
    margin: 0;
}

.quick_info .icon-list {
    margin: 10px 0 10px 0;
    width: 100%;
    overflow: hidden;
}

.quick_info .icon-list li {
    position: relative;
    font-weight: 600;
    width: 50%;
    float: left;
    padding: 0 10px 0 30px;
    margin: 7px 0 7px 0;
    font-size: 12px;
}

.quick_info .icon-list li:nth-child(odd) {
	clear: both;	
}

.quick_info .icon-list li span.icon {
    width: 20px;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}

.quick_info .icon-list li span.icon img {
    position: relative;
    width: 90%;
    height: 20px;
}

.quick_info .icon-list li span.text {
	position: relative;
	font-family: 'Poppins', sans-serif;
}

.tabsgroup.inclusions {
	padding: 0;
	border-radius: 0;
	border: 0;
	width: 100%;
	margin: 15px 0 0 0;
}

.tabsgroup.inclusions > ul {
    padding: 0;
    border-bottom: 2px solid #bdb4b4;
    background-image: none !important;
    background-color: transparent !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-top: 0 !important;
    border-radius: 0;
    margin: 0;
}

.tabsgroup.inclusions > ul > li {
    background-color: transparent !important;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    border-radius: 0;
    margin-right: 0;
    border: 0;
    background-image: none;
}

.tabsgroup.inclusions > ul > li.hide-on-large {
	display: none;
}

.tabsgroup.inclusions > ul > li > a {
	color: black;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 0 !important;
    margin: 0;
}

.tabsgroup.inclusions .ui-tabs-panel {
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.search_res .right .btn_box .black_btn {
    background-color: black;
    color: white;
    margin: 13px 0 0 20px;
    float: right;
    text-decoration: none !important;
	border: 0 !important;
}

.search_res .right .btn_box .black_btn, .search_res .right .btn_box .white_btn {
    width: 180px;
    height: 40px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 400;
    cursor: pointer;
    transition: all .5s;
    line-height: 1.2;
    border: 2px solid black;
    font-weight: 600;
}

.search_res .price_box .upgrade {
	position: relative;
}

.search_res .price_box .upgrade::after {
    content: '';
    background-color: #bdb4b4;
    width: 2px;
    height: auto;
    position: absolute;
    right: 0;
    top: 13px;
    z-index: 1;
    bottom: 0px;
}

.search_res .price_box .book {
	position: relative;
}

.search_res .price_box .people {
    padding: 8px 0 0 0;
    line-height: 1.2;
}

.search_res .price_box p {
    color: black;
    font-size: 36px;
    margin: 0 13px 0 0;
    float: left;
}

.search_res .price_box span {
    color: #b3b3b3;
    font-size: 14px;
    text-align: left;
    line-height: 18px;
    float: left;
    margin: 15px 0 0 0;
}

.search_res .price_box .purple_btn {
    width: 100%;
	height: 60px;
	font-size: 17px;
	font-weight: 400;
	margin: 7px 0 0 0;
	color: #fff;
}

.search_res .price_box .purple_btn:hover {
	color: #8739f6;	
}

.search_res .price_box .purple_btn.border {
	border: 2px solid #8739f6 !important;
	background: none;
	color: #8739f6;
}

.search_res .slidedown-holder {
	display: none;
	width: 100%;
}

.slidedown {
    padding: 35px 0 20px 0;
    border-top: 1px solid #efefef;
    margin: 50px 0 0 0;
}

.slidedown .heading h1,
.slidedown .heading h2,
.slidedown .heading h3,
.slidedown .heading h4,
.slidedown .heading h5,
.slidedown .heading h6 {
	margin: 25px 0 0 0;
	color: #000000;
	font-size: 17px;
	font-weight: 600;
}

.slidedown .heading a {
	color: inherit;
	text-decoration: none;
} 

.slidedown .content p {
	margin: 0 0 1.5rem 0;
	font-size: 13px;
	font-weight: 400;
}

.slidedown .content ol,
.slidedown .content ul {
	padding: 0 0 0 25px;	
}

.slidedown .content li {
	margin: 0 0 5px 0;
	font-size: 13px;
	font-weight: 400;
}

.slidedown .call {
	padding: 45px 0 0 0;
}

.slidedown .call p {
    color: #8739f6;
    text-align: center;
    font-size: 20px;
}

.search_res.inside .right h3 {
    margin: 0 0 15px 0;
}

.property-details .title {
    padding: 9px 0;
    border-bottom: 2px solid #bdb4b4;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    width: 100%;
    margin: 0 0 20px;
}

.property-details .accordion .title {
	background-color: transparent !important;
	border-radius: 0 !important;
	color: #000 !important;
}

.property-details .accordion .title.collapsed:after {
	transform: rotate(0deg);
}


.property-details .card {
    border: none;
}

.property-details .accordion .card-body,
.property-details .card-body {
    border-radius: 0;
	border: 0;
	padding: 0;
}

.posts {
	
}

.post {
	margin: 25px 0;
}

.post:first-child {
	margin-top: 0;
}

.post:last-child {
	margin-bottom: 0;
}

.post .imageHolder {
	max-width: 132px;
}

.post .contentHolder {
	
}

.post .contentHolder h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.post .contentHolder p {
	font-size: 12px;
	margin-bottom: 0;
}

.post .contentHolder a {
	font-size: 12px;
}


label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0;
    color: #8739f6;
}

label img {
    margin: 0 10px 0 0;
    max-width: 17px;
}

input::placeholder {
    color: black;
}

.input_box:focus,
.input_box:active {
    outline: none;
}

.form_wrapper {
    padding: 55px 6vw;
}

input {
	width: 100%;
    height: auto;
    border-radius: 0;
    text-align: left;
    padding: 12px 0;
    color: black;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border-bottom: 1px solid #beb6b6;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

textarea {
	width: 100%;
    height: auto;
    border: none;
    border-radius: 0;
    text-align: left;
    padding: 12px 0;
    color: black;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid #beb6b6;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

select {
    width: 100%;
    height: auto;
    padding: 12px 40px 13px 0;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    border-radius: 0;
    border: 2px solid #beb6b6;
    color: black;
    margin: 0 0 20px 0;
    background-image: url('../img/arrow_down.png');
    background-position: right 15px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-size: 12px;
    border-bottom: 1px solid #beb6b6;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.select {
    width: 100%;
    height: auto;
    padding: 12px 0;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    border-radius: 0;
    border: 2px solid #beb6b6;
    color: black;
    background-image: url('../img/arrow_down.png');
    background-position: right 15px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-size: 12px;
    border-bottom: 1px solid #beb6b6;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.select input {
	margin: 0;
	padding: 0 !important;
	background-color: transparent !important;
}

.select p {
    margin: 0 !important;
    padding: 0 !important;
}

form.search {
    max-width: 980px;
    margin: auto;
}

form.search label {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

form.search input {
    background-color: #ffffff;
    border: 0;
    border-radius: 7px;
    padding: 12px 15px;
}

form.search select {
	background-color: #ffffff;
	border: 0;
	border-radius: 7px;
	padding: 12px 15px;
}

form.search .select {
	background-color: #ffffff;
	border: 0;
	border-radius: 7px;
	padding: 12px 15px;
}

form.search.purple input {
    background-color: #dedff2;
}

form.search.purple select {
	background-color: #dedff2;
}

form.search.purple .select {
	background-color: #dedff2;
}

form.default input {
	background-color: white !important;
	border-radius: 7px;
	border: 2px solid #beb6b6;
	padding: 12px 15px !important;
	height: auto !important;
}

form.default select {
	background-color: white;
	border-radius: 7px;
	border: 2px solid #beb6b6;
	padding: 12px 15px !important;
}

form.default .select {
	background-color: white;
	border-radius: 7px;
	border: 2px solid #beb6b6;
	padding: 12px 15px !important;
}

form.search.lines label {
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
}

form.search.lines label img {
    filter: invert(1);
    margin: 2px 0 0 15px;
}

form.search.lines input {
    height: 78px;
    background-color: transparent;
    border-bottom: 1px solid white;
    border-top: 1px solid white;
    border-right: 1px solid white;
    border-left: none;
    padding: 0 15px;
    color: #000000;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    border-radius: 0;
}

form.search.lines ::-webkit-input-placeholder,
form.search.lines ::-moz-placeholder,
form.search.lines :-ms-input-placeholder,
form.search.lines :-moz-placeholder { 
	color: #ffffff;
}

form.search.lines select {
    height: 78px;
    background-color: transparent;
    border-bottom: 1px solid white;
    border-top: 1px solid white;
    border-right: 1px solid white;
    border-left: none;
    padding: 0 15px;
    color: #000000;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    border-radius: 0;
}

form.search.lines select.border-r-0 {
	border-right: 0;
}

.checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.custom-checkbox {
    display: flex;
}

.custom-checkbox p {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 0 10px;
}

.custom-checkbox > input {
    position: absolute;
	z-index: 3;
	opacity: 0;
	cursor: pointer;
	width: auto;
	margin: 0;
}

.custom-checkbox > span {
    display: inline-flex;
    align-items: center;
    user-select: none;
    color: black;
    font-size: 18px;
    cursor: pointer;
    margin: 6px 0 0;
    width: auto;
    height: auto;
    position: relative;
    border: none;
}

.custom-checkbox > span::before {
    margin: 7px 20px 12px 2px;
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    flex-grow: 0;
    border-radius: 50%;
    z-index: 0;
    background-color: white;
}

.custom-checkbox > span::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    flex-grow: 0;
    border-radius: 50%;
    z-index: 0;
    position: absolute;
    top: 6px;
    left: -1px;
    border: 1px solid #8739f6;
}

.custom-checkbox > input:checked + span {
    color: #8739f6;
    font-weight: 600;
}

.custom-checkbox > input:checked + span::before {
    border-color: #883ff4;
    background-color: #883ff4;
}

.dropdown-toggle::after {
    display: none;
}

form .guest {
    width: 640px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 16px;
    color: black;
    font-weight: 600;
    letter-spacing: -1px;
    padding: 33px 27px 33px 40px;
    top: 1.3vw !important;
    border: none;
    margin: 0;
    z-index: 9;
}

form .guest .inputs {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 40px 0;
}

form .guest .count {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 72%;
    margin: 0 0 10px 0;
}

form .guest .text {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

form .guest span:active,
form .guest span:focus {
    background-color: transparent;
}

form .guest .number {
    display: flex;
}

form .guest .minus,
form .guest .plus,
form .guest .plus_child {
    vertical-align: middle;
    text-align: center;
    color: #8739f6;
    font-size: 20px;
    cursor: pointer;
}

form .guest .minus {
	-webkit-border-top-left-radius: 1000px;
	-webkit-border-bottom-left-radius: 1000px;
	-moz-border-radius-topleft: 1000px;
	-moz-border-radius-bottomleft: 1000px;
	border-top-left-radius: 1000px;
	border-bottom-left-radius: 1000px;
	border-left: 1px solid #efefef;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
	padding: 4px 4px 0 15px;
}

form .guest .plus {
	-webkit-border-top-right-radius: 1000px;
	-webkit-border-bottom-right-radius: 1000px;
	-moz-border-radius-topright: 1000px;
	-moz-border-radius-bottomright: 1000px;
	border-top-right-radius: 1000px;
	border-bottom-right-radius: 1000px;
	border-right: 1px solid #efefef;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
	padding: 4px 15px 0 4px;
}

form .guest .plus_child {
	-webkit-border-top-right-radius: 1000px;
	-webkit-border-bottom-right-radius: 1000px;
	-moz-border-radius-topright: 1000px;
	-moz-border-radius-bottomright: 1000px;
	border-top-right-radius: 1000px;
	border-bottom-right-radius: 1000px;
	border-right: 1px solid #efefef;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
	padding: 4px 15px 0 4px;
}

form .guest input {
    text-align: center;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    width: 45px;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    background-color: #fff !important;
    border-left: 0;
	border-right: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
    height: 45px;
    border-radius: 0;
}

form .guest .count:nth-of-type(3) {
    width: 100%;
    margin: 5px 0 10px;
    justify-content: flex-start;
}

form .guest .age {
    width: 205px;
    height: 47px;
    border: 1px solid #ededec;
    border-radius: 6px;
    padding: 0 10px;
    background-color: white;
    background-image: url('../img/arrow_down.png');
    background-position: 93% center;
    background-repeat: no-repeat;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 14px;
    letter-spacing: -1px;
    cursor: pointer;
    margin: 0 0 0 38px;
}

form .guest .add {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #b3b3b3;
    font-weight: 400;
    letter-spacing: 0;
}

form .guest .add p {
    cursor: pointer;
}

form .guest .black_btn {
    background-color: black;
    border-radius: 10px;
    color: white;
    width: 172px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    font-weight: 300;
}

form .guest .black_btn:hover {
    background: #8739f6;
    background: linear-gradient(90deg, #8739f6 25%, #a849fc 55%);
}

.lockBox,
.lockBoxMain {
	display: none !important;
    flex-direction: column;
	background-color: rgba(0,0,0,0.8);
	z-index: 3;
	text-align: center;
	position: absolute;
	left: 10px;
	right: 10px;
	top: 10px;
	bottom: 10px;
	width: auto !important;
	align-items: center !important;
	justify-content: center !important;
}

.specialModal .lockBox,
.specialModal .lockBoxMain {
    margin: 10% 35%;
	z-index: 3;
	text-align: center;
	position: absolute;
	width: 30%;
	height: 60%;
	display: block !important;
	background-color: transparent;
	display: flex !important;
}

.slider_tree .item:hover .lockBox {
	display: flex !important;
}

.search_res .lockBox,
.search_res .lockBoxMain {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.lockBox img,
.lockBoxMain img {
    width: 170px;
    margin-bottom: 20px;
}

.lockBox .purple_btn,
.lockBoxMain .purple_btn {
    color: white;
}

.lockBox .purple_btn:hover,
.lockBoxMain .purple_btn:hover  {
    color: #8739f6
}

.recommended .left h1 {
    font-family: RecklessNeue;
    letter-spacing: 1px;
}

.recommended .left p {
    margin: 20px 0 0;
    width: 90%;
    letter-spacing: 1px;
    font-size: 16px;
}

.recommended .text {
    font-size: 16px;
    margin-top: 65px;
}

.recommended .item {
    background-color: white;
    padding: 15px 21px 22px;
    letter-spacing: -1px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
}

.recommended .item .img_block {
    width: 100%;
    max-height: 300px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    margin: 10px 0 10px 0;
}

.recommended .item .img_block a {
    width: 100%;
    height: 100%;
}

.recommended .item .img_block img {
    width: 100%;
    height: auto;
}

.recommended .item .img_block p {
    width: 170px;
    text-align: center;
    background: white;
    color: black;
    font-size: 24px;
    font-weight: 300;
    position: absolute;
    right: 0;
    top: 0;
    padding: 2px 0;
    margin: 0;
}

.recommended .item .img_block .black {
    background-color: black;
    color: white;
}

.recommended .item h2 {
    color: black;
    font-size: 38px;
    font-weight: 300;
    margin: 10px 0;
    line-height: inherit;
    overflow: hidden;
}

.recommended .item div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.recommended .price_mem {
    color: #8739f6;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    margin: 0;
}

.recommended .price_mem span {
    text-decoration: line-through;
    font-weight: 300;
}

.recommended .item .stars {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 130px;
}

.recommended .item .price_box {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
}

.recommended .price_box p {
    margin: 9px 0 5px 0;
}

.recommended .price_box p.price {
    margin: 0 13px 0 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 400;
    color: #000000
}

.recommended .item .price_box div {
    align-items: center;
    justify-content: flex-end;
}

.recommended .price_box div p {
    color: #b3b3b3;
    font-weight: 300;
    float: left;
    margin: 0px 0 0 0;
    font-size: 14px;
    line-height: 18px;
    text-align: left;
}

.recommended .price_box h1 span {
    font-size: 24px;
    color: #b3b3b3;
    font-weight: 300;
}

.recommended .details {
    background-color: black;
    border-radius: 10px;
    color: white;
    width: 170px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    margin: 0 0 9px;
    font-weight: 300;
    transition: all .5s;
    transition: border 0s;
    border: 2px solid black;
    font-weight: 500;
}

.recommended .details:hover {
    background: white;
    color: black;
}

.recommended .item .details:hover {
    background: #8739f6;
    background: linear-gradient(90deg, #8739f6 25%, #a849fc 55%);
    border: 2px solid transparent;
    color: white;
}

.share.bottom {
	display: none;
}

.share {
	margin-top: 100px;
}

.share h3 {
    color: #8739f6;
    font-weight: 500;
    font-size: 25px;
    margin: 0 0 10px 0;
}

.share p {
	color: #000000;
	display: inline;
}

.share .fb_iframe_widget {
    margin: 4px 0px 0px 10px;
    position: relative;
    top: 2px;
}

.congratulations {
    background-image: url('../img/cloud_bg.webp');
    background-position: left center;
    background-repeat: no-repeat;
    padding: 35px 175px 5px 35px;
    color: #fff;
}

.congratulations h2 {
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 0px 0px;
}

.congratulations p.subline {
    font-weight: 600;
    font-size: 22px;
    margin: 0 0 30px 0;
}

.congratulations p {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 1.8em 0;
    line-height: 1.6;
    color: #fff;
}

.congratulations p.coupon-text {
    margin: 0 0 7px 0;
}

.congratulations .coupon-code {
    background-color: #ffffff;
    font-weight: 700;
    color: #000000;
    border: 1px solid #8739f6;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    text-align: center;
    display: block;
    max-width: 270px;
    padding: 5px 15px;
    font-size: 20px;
    margin: 0px 0px 6px -10px;
    min-height: 37px;
}

.congratulations .coupon-code p {
	margin: 0;
}

.congratulations .button {
    margin: 15px 10px 30px 10px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}

.congratulations p.small {
    color: #ffffff;
    margin: 0;
    font-weight: 400;
    font-size: 12px;
}

.feature-boy {
    position: absolute;
    right: -50px;
    bottom: 0px;
    width: 380px;
}

.feature-boy.lonely {
    bottom: -166px;
}

.feature-boy img {
	width: 375px;
	height: auto;
}

a.underline_me {
    color: black;
    cursor: pointer;
    font-size: inherit;
    margin: 15px 0 0;
    text-decoration: none;
    line-height: 18px;
    border-bottom: 1px solid black;
    width: max-content;
    transition: all .5s;
}

a.underline_me:hover {
    color: #8739f6;
    border-color: #8739f6;
}

a.color_me {
	color: #8739f6;
}

.img_box img {
    margin: 0 20px 0 0;
    width: 80%;
}

.accordion {
    width: 100%;
}

.accordion .card {
    width: 100%;
    border: none;
    margin: 0 0 20px;
    background-color: transparent;
}

.accordion .card-header {
    width: 100%;
    border-radius: 15px 15px 0 0 !important;
    border: none;
    padding: 18px 50px 18px 20px !important;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1;
    cursor: pointer;
    transition: all .5s;
    background-color: #883bf4;
    color: white;
    position: relative;
}

.accordion .card-header.collapsed:after {
	content: '\f107';
}

.accordion .card-header:after {
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
	content: '\f106';
	position: absolute;
	right: 20px;
	top: 17px;
	z-index: 2;
}

.accordion .collapsed {
    background-color: #f5f5f5;
    color: black;
    border-radius: 15px !important;
    transition: all .5s;
}

.accordion .collapsed:hover {
    background-color: #883bf4;
    color: white;
}

.accordion .card-body {
    border-radius: 0 0 15px 15px !important;
    border-bottom: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    margin-top: 1px;
    background-color: #fff;
}

.accordion .card-body p:last-child {
	margin-bottom: 0;
}

.accordion img {
    max-width: 45vw;
    width: 100%;
}

.section-form-wrap {
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
    width: 100%;
    margin: auto;
}

.section-form-wrap.login {
	max-width: 500px;
}

.section-form-header {
    background: linear-gradient(87deg, rgb(135, 57, 246) 0%, rgb(132, 56, 250) 35%, rgb(171, 74, 252) 100%);
    display: block;
    padding: 20px 25px 20px 25px;
    color: white;
    font-size: 18px;
    position: relative;
    text-align: center;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0;
}

.form-holder {
    max-width: 525px;
    margin: auto;
    padding: 65px 30px 65px 30px;
}

.signup {
    text-align: center;
    padding: 20px 0 0 0;
    font-family: 'Poppins', Arial, sans-serif !important;
	font-weight: 500 !important;
	font-size: 14px !important;
}

.signup p {
	color: #333;
}

.signup p a {
	color: #8739f6;
}

input.invalid {
    border-bottom: 1px solid red;
}

input.invalid::placeholder {
    color: red;
}

input::placeholder {
    color: black;
	opacity: 1;
}

input:focus,
input:active {
    outline: none;
    border-bottom: 1px solid #b6acac;
}

ul#remember {
	overflow: hidden;
	margin: 20px 0 0 0;
}

ul#remember li {
    float: left;
    width: 50%;
    font-size: 13px;
    position: relative;
}

ul#remember li:first-child input[type="checkbox"] {
    margin: 0 5px 0px 0 !important;
    width: auto;
    display: inline;
}

ul#remember li:first-child label {
    display: inline;
    color: #000;
    font-size: 12px;
    font-weight: 400;
}

ul#remember li:last-child {
    text-align: right;
}

ul#remember li:last-child a {
    padding: 0px 0 0 0;
    margin: 0 0 0 0;
    display: block;
}

ul#remember li:last-child a:hover {
	color: #8739f6;
}

ul.social-network {
	list-style: none;
	display: inline;
	margin-left:0 !important;
	padding: 0;
}

ul.social-network li {
	margin: 0 5px;
	display: inline;
}

.social-network a.icoFacebook:hover {
	background-color: #3B5998;
}

.social-network a.icoInstagram:hover {
	background-color: #ce007f;
}

.social-network a.icoFacebook:hover i,
.social-network a.icoInstagram:hover i {
	color: #fff;
}

a.socialIcon:hover,
.socialHoverClass {
	color: #44BCDD;
}

.social-circle li a {
	display:inline-block;
	position:relative;
	margin:0 auto 0 auto;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border-radius:50%;
	text-align:center;
	width: 50px;
	height: 50px;
	font-size:20px;
	background-color: #D3D3D3;
}

.social-circle li i {
	margin:0;
	line-height:50px;
	text-align: center;
}

.social-circle li a:hover i,
.triggeredHover {
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-ms--transform: rotate(360deg);
	transform: rotate(360deg);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
}

.social-circle i {
	color: #fff;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-o-transition: all 0.8s;
	-ms-transition: all 0.8s;
	transition: all 0.8s;
}

form#formRefineResults h3 {
    font-weight: 600;
    position: relative;
    border: 0;
    border-radius: 10px;
    padding: 0;
    font-size: 16px;
    margin: 0 0 40px 0;
}

#refineFilterShowHide {
    font-size: 20px;
    position: absolute;
    right: 15px;
    top: 8px;
    color: #883ff4;
}

.filters_box {
    display: block !important;
    padding-top: 25px;
}

.result_box .sort {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result_box .sort select {
    width: 180px;
	height: 47px;
	border: 2px solid #8739f6;
	color: #8739f6;
	border-radius: 50px;
	padding: 0 15px;
	background-image: url('../img/arrow_down_purple.png');
	background-position: right 15px center;
	background-size: 10px 6px;
	margin: 0;
}

.result_box .sort select:active,
.result_box .sort select:focus {
    outline: none;
}

.result_box .title_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #b3b3b3;
    padding: 0 3px;
    margin: 42px 0 0;
}

.result_box .title_box p {
    color: #8739f6;
    font-weight: 500;
    margin: 0;
}

.result_box .title_box label {
    margin: 0;
}

.result_box input[type=range]::-webkit-slider-thumb {
    pointer-events: all;
    width: 13px;
    height: 13px;
    border-radius: 0;
    border: 0 none;
    background-color: red;
    -webkit-appearance: none;
}

.result_box input[type=range]::-moz-range-thumb {
    pointer-events: all;
    width: 13px;
    height: 13px;
    border-radius: 0;
    border: 0 none;
    background-color: red;
    -moz-appearance: none;
}

.result_box .middle {
    position: relative;
    width: 100%;
    margin: 0 0 20px;
}

.result_box .slider,
.result_box .slider4,
.result_box .slider3 {
    position: relative;
    z-index: 1;
    height: 13px;
    border-radius: 20px;
}

.result_box .slider > .track,
.result_box .slider4 > .track,
.result_box .slider3 > .track {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 20px;
    background-color: #ebebeb;
}

.result_box .slider > .range,
.result_box .slider4 > .range,
.result_box .slider3 > .range {
    position: absolute;
    z-index: 2;
    left: 25%;
    right: 25%;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: #883ff4;
}

.result_box .slider > .thumb,
.result_box .slider4 > .thumb,
.result_box .slider3 > .thumb {
    position: absolute;
    z-index: 3;
    width: 15px;
    height: 15px;
    background-color: #ebebeb;
    border-radius: 50%;
    box-shadow: 0 0 03px rgba(0, 0, 0, .6);
    transition: box-shadow .3s ease-in-out;
}

.result_box .slider > .thumb.left,
.result_box .slider4 > .thumb.left,
.result_box .slider3 > .thumb.left {
    left: 25%;
    transform: translate(-5px, -1px);
}

.result_box .slider > .thumb.right,
.result_box .slider4 > .thumb.right,
.result_box .slider3 > .thumb.right {
    right: 25%;
    transform: translate(5px, -1px);
}

.result_box input[type=range] {
    position: absolute;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    z-index: 2;
    height: 14px;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

.result_box .img_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 35px 0 19px;
    padding: 3px;
    font-size: 18px;
    color: #b3b3b3;
}

.result_box .img_box label {
    margin: 0;
}

.result_box .img_box .img {
    background-image: url('../img/star.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 19px;
    height: 19px;
    filter: grayscale(1);
}

.result_box .radio_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 10px;
}

.result_box .btn_box {
    margin-top: 60px;
    display: flex;
    -ms-flex-pack: distribute !important;
	justify-content: space-around !important;
}

.search_res .img_block .visible {
    width: 100%;
    height: 100%;
    position: relative;
}

.search_res .img_block .visible .flame_img {
    position: absolute;
	margin: 0;
	top: -28px;
	left: -23px;
	width: 35px;
	height: auto;
}

.search_res .img_block .visible a {
	height: 100%;
}

.search_res .img_block .visible img {
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
    width: auto;
    object-fit: cover;
    object-position: center;
}

.search_res .unvisible {
    width: 100%;
    bottom: -15px;
    background-color: rgba(136, 63, 244, 0.78);
    position: absolute;
    top: -15px;
    left: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
}

.search_res .img_block:hover .unvisible {
    visibility: visible;
    opacity: 1;
}

.search_res .unvisible .title {
    color: white;
	font-size: 12px;
	font-weight: 600;
	border-bottom: 2px solid white;
	padding: 0 0 7px;
	width: 100%;
	margin: 0; 
}

.search_res .unvisible .quick_info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    color: white;
    margin-top: 15px;
}

.search_res .unvisible .quick_info > div {
	width: 100%;
}

.search_res .unvisible .quick_info .info {
    color: white;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}

.search_res .unvisible .quick_info img {
    margin: 0 10px 0 0;
    filter: invert(1);
    width: 15px;
}

.owl-item .slide .img {
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
}

sup{
  font-size: 80%;
  vertical-align: top;
  position: relative;
  top: 1px;
}

.wrapper{
  display: table;
  width: 100%;
  height: 100%;
  margin: 20px 0 20px;
}

.wrapper-guest{
    display: table;
    width: 100%;
    height: 100%;
}

.wrapper-pricerange {
    display: table;
    width: 100%;
    height: 100%;
    margin: 35px 0 19px;
}

.slider-wrapper {
	width: 100%;
	display: inline-block;
	position: relative;
	font-family: arial;
}

.slider-wrapper-guest{
    width: 325px; 
    display: inline-block;
    position: relative;
    font-family: arial;
}

.slider-wrapper-pricerange {
    width: 100%;
    display: inline-block;
    position: relative;
    font-family: arial;
}

.ui-slider {
  background: #efefef;
  border: 1px solid #d2d2d2;
  height: 20px;
  position: relative;
  border-radius: 100px;
}

.loadMoreBtn{
    padding-bottom: 30px;
}

.ui-slider-range {
	background: #883ff4 !important;
	height: 20px;
	position: absolute;
	border-top: 1px solid #5d99c8;
	border-bottom: 1px solid #5d99c8;
	transform: translateY(-1px);
}

.ui-slider-range:after{
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.ui-slider-handle {
	background: #555 !important;
	position: absolute !important;
	width: 30px !important;
	height: 30px !important;
	top: 50% !important;
	display: block;
	transform: translate(-50%, -50%) !important;
	border-radius: 100px !important;
	z-index: 2;
	background: linear-gradient(#555, #454545) !important;
	cursor: move !important;
	cursor: grab !important;
	cursor: -moz-grab !important;
	cursor: -webkit-grab !important;
	box-shadow: inset -2px -2px 6px 2px rgba(0,0,0, 0.1) !important;
	transition: width 0.1s !important;   
}

.ui-slider-handle:focus{
    outline: none;
}

.ui-slider-handle:active{
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

.range-wrapper{
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
}

.range {
	background: #fff;
	white-space: nowrap;
	border: 1px solid #d2d2d2;
	border-radius: 2px;
	font-size: 13px;
	letter-spacing: 0.02em;
	color: #555;
	width: 150px;
	z-index: 10;
	position: relative;
}

.range:after{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 67px solid transparent;
    border-right: 67px solid transparent;
    border-top: 6px solid #d2d2d2;
}

.range-value{
	width: 74px;
	padding: 8px 0;
	text-align: center;
	display: inline-block;
	transition: background 0.1s;
}

.range-divider {
	width: 1px;
	display: inline-block;
}

.range-divider:after{
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #d2d2d2;
    content: '';
  }

.range-alert{
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: #fff;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
	border: 1px solid #d2d2d2;
	color: #0E0E0E;
	line-height: 15px;
	transition: right 0.2s;
}

.range-alert.active{
    right: -15px;
}

.marker {
	position: absolute;
	top: 100%;
	padding-top: 16px;
	font-size: 13px;
	color: #555;
	letter-spacing: 0.05em;
	transform: translateX(-50%);
}

.marker:after {
    content: '';
    width: 1px;
    height: 8px;
    background: #d2d2d2;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.marker-0:after {
    display: none;
}

.marker-25 {
	left: 25%;
}

.marker-50 {
	left: 50%;
}

.marker-75 {
	left: 75%;
}

.marker-100 {
	right: 0;
	transform: translateX(50%);
}

.marker-100:after {
    display: none;
}

.gear-wrapper{
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	backface-visibility: hidden;
	width: 150px;
	height: 20px;
	overflow: hidden;
	display: none;
}

.gear-large{
	width: 40px;
	height: 40px;
	background: #d2d2d2;
	border-radius: 100px;
	position: absolute;
	top: 18px;
	left: 18px;
	transform-origin: 50% 50%;
	transition: top 0.15s;
}

.gear-large:after{
	position: absolute;
	content: '';
	width: 28px;
	height: 28px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #e8e8e8;
	border-radius: 100px;
}

.gear-large{
	background: #d2d2d2;
	left: auto;
	right: 18px;
}

.gear-large .gear-tooth{
    background: #d2d2d2;
}

.gear-large.active{
    top: 4px;
}

.gear-tooth{
  width: 22%;
  height: 114%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
  background: #d2d2d2;
  border-radius: 2px;
}
.gear-tooth:nth-child(2){
	transform: rotate(90deg) translate(-50%, -50%);
}

.gear-tooth:nth-child(3){
	transform: rotate(45deg) translate(-50%, -50%);
}

.gear-tooth:nth-child(4){
	transform: rotate(-45deg) translate(-50%, -50%);
}

.description {
    font-size: 13px;
}

.places-cards .item {
    background-color: white;
	padding: 15px;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
}

.places-cards .item h5 {
    font-size: 16px;
    height: 25px;
}

.places-cards .item .img_block {
    height: 165px;
    position: relative;
    overflow: hidden;
}

.places-cards .item .img_block a {
	height: 100%;
	display: block;	
}

.places-cards .item .img_block img {
    width: 100%;
	height: 100%;
	display: block;
	margin: auto;
	object-fit: cover;
	object-position: 50% 50%;
}

.places-cards .item .img_block .black {
    background-color: #000000;
    color: white;
    width: 165px;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    position: absolute;
    right: 0;
    top: 0;
    padding: 2px 0;
    margin: 0;
}

.places-cards .item h3 {
    font-size: 18px;
    font-weight: 400;
    margin: 10px 0;
    letter-spacing: 0;
}

.places-cards .item .details {
    background-color: black;
    border-radius: 10px;
    color: white;
    width: 85px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
    margin: 0 0 9px;
    font-weight: 500;
}

.places-cards .item .details:hover {
    background: #8739f6;
    background: linear-gradient(90deg, #8739f6 25%, #a849fc 55%);
    border: 2px solid transparent;
    color: white;
}

.things-cards .img_box img {
    width: 100%;
	margin: 0;
}

.table_section h3 {
    color: #8739f6;
    font-size: 30px;
    margin: 0 0 12px;
}

.table_section h6 {
    font-weight: 500;
	font-size: 14px;
	color: #000;
}

.table_section .intros .clm {
    font-size: 12px;
    line-height: 1.8;
    height: 150px;
    color: #999999;
    text-align: center;
}

.table_section .container {
    position: relative;
}

.table_section .clm {
	border-right: 1px solid #e6e3e3;
}

.table_section .container > .row1 .clm {
    border-bottom: 0;
    text-align: center;
    padding: 20px 15px;
}

.all_func .clm {
    padding: 10px 20px;
    font-size: 14px;
    height: 45px;
    line-height: 1.2;
}

.all_func .col-12:not(.row4) .clm:nth-child(odd) {
	background-color: #efefef;
}

.all_func .col-12:not(.row4) .clm:nth-child(even) {
	background-color: #ffffff;
}

.table_section .btn_box {
    width: 100%;
	height: 110px;
	transition: background-color .5s;
	padding: 0 25px;
	border-right: 1px solid #efefef;
}

.table_section .btn_box .btn {
	margin: 0;
}

.all_func .item_row:not(.row4) .clm .fa-check {
    color: #8739f6;
}

.all_func .item_row:not(.row4) .clm .fa-times {
    color: #ccc;
}

.table_list {
    display: none;
}

.button.black.solid {
	background-color: #000000;
	color: #ffffff;
	padding: 12px 25px;
	display: block;
	margin: 0;
	border-radius: 5px;
	text-decoration: none;
}

.button.black.solid:hover {
	background-color: #ffffff;
	border: 1px solid #000000;
	color: #000000;
}

.button.black.border {
	border: 1px solid #000000;
	color: #000000;	
	padding: 12px 25px;
	display: block;
	border-radius: 5px;
	text-decoration: none;
}

.button.black.border:hover {
	background-color: #000000;
	color: #ffffff;
}

.property-details .right_box .title {
    margin: 45px 0 35px;
}

.property-details .right_box .title:first-of-type {
    margin: 0px 0 35px;
}

.property-details .img_box {
    display: flex;
    flex-wrap: wrap;
}

.property-details .img_box .img {
    width: 33.3333%;
    padding: 3px;
}

.property-details .img_box .img img {
	margin: 0;
	width: 100%;
}

.property-details .left_box {
	padding-right: 50px;
}

.property-details .view {
    font-size: 12px;
    color: #b3b3b3;
    transition: all .5s;
    margin: 20px 0 0 3px;
    cursor: pointer;
    display: block;
}

.property-details .view:hover {
    text-decoration: none;
    color: #8739f6;
}

.property-details .map {
    width: 100%;
    margin: 0 0 5px;
}

.property-details .map iframe {
	width: 100%;
	height: 300px;
}

.property-details .map img {
    width: 100%;
}

.property-details .adress {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 0;
}

.cta {
    color: black;
    padding: 42px 0;
    background-image: url('../img/section5_bg.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.booking .container_box .left_box {
    padding: 40px 6.6vw;
    background-color: #ececec;
}

.booking .container_box .left_box h3 {
    font-size: 30px;
    margin: 50px 0 30px 0;
}

.booking .container_box .left_box .user_info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 50px 0;
}

.booking .container_box .left_box .user_img {
    width: 38px;
    border-radius: 50%;
}

.booking .container_box .left_box .user_info p {
    font-size: 18px;
    color: #b3b3b3;
    margin: 0 6px 0 15px;
}

.booking .container_box .left_box .user_info .user_name {
    color: #8739f6;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.booking .container_box .left_box .user_info .tooltip_box {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #8739f6;
    color: white;
    font-size: 10px;
    border: none;
    outline: none;
    margin: 0 0 0 10px;
}

.express-checkout {
    border: 2px solid #efefef;
    padding: 20px 10px 3px 10px;
    position: relative;
    border-radius: 8px;
    width: 100%;
    z-index: 2;
	margin-bottom: 25px;
}

.express-checkout p.label {
    text-align: center;
    background-color: #fff;
    width: 180px;
    font-size: 14px;
    position: absolute;
    left: 50%;
    top: -11px;
    margin-left: -90px;
}

.express-checkout ul {
	overflow: hidden;
	width: 100%;
}

.express-checkout ul li {
    width: 49%;
	float: left;
	padding: 0;
	border-radius: 5px;
	height: 34px;
	margin: 0.5%;
}

.express-checkout ul li.apple-pay {
	background-color: #000000;
}

.express-checkout ul li.google-pay {
	background-color: #000000;
}

.express-checkout ul li.paypal {
	background-color: #ffc439;
	display: flex;
	justify-content: center;
	align-items: center;
}

.express-checkout ul li.paypal #paypal-button-container {
	height: 24px;
}

.paypal-button-row {
    min-height: 35px !important;
}

.express-checkout ul li a {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    padding: 4px 10px;
    height: 35px !important;
    max-height: 35px !important;
    min-height: 35px !important;
}

.express-checkout ul li.apple-pay img {
    width: auto !important;
    height: 20px;
    margin-top: 7px;
    width: 40px;
    width: 100%;
}
.express-checkout ul li.google-pay img {
    width: auto !important;
    height: 16px;
    margin-top: 8px;
    width: 40px;
    width: 100%;
}

form.booking {
    background-color: #ffffff;
    padding: 50px 6vw;
}

form.booking input {
	border: 2px solid #beb6b6;
	background-color: white;
	border-radius: 7px;
	padding: 12px 15px;
}

form.booking select {
	border: 2px solid #beb6b6;
	background-color: white;
	border-radius: 7px;
	padding: 12px 15px;
}

form.booking .upgrade {
    border-top: 7px solid #8739f6;
	border-left: 1px solid #efefef;
	border-right: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
	border-radius: 5px;
	padding: 20px 10px 10px 10px;
	margin: 35px 0;
}

form.booking .upgrade h4 {
    font-size: 20px;
}

form.booking .upgrade p.standout {
    font-size: 22px;
    color: #8739f6;
    margin-bottom: 5px;
    font-weight: 300;
}

form.booking .upgrade p.standout b {
	font-weight: 600;
}

form.booking .upgrade p {
    margin: 0 0 25px 0;
	font-size: 14px;
	font-weight: 300;
}

form.booking .paymentsHolder {
    margin: 25px 0 0 0;
    width: 100%;
}

form.booking .payment {
	margin-top: 10px;
}

form.booking .payment.active .paymentHeading {
	border: 2px solid #8739f6;   
}

form.booking .payment.active .paymentHeading label {
	color: #8739f6;
}

form.booking .paymentHeading {
    border: 2px solid #efefef;
	background-color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	overflow: hidden;
	min-height: 60px;
}

form.booking .paymentHeading label {
    font-size: 14px;
	margin: 0;
	color: #000;
}

form.booking .paymentHeading.credit label {
 	margin-top: 6px;   
}

form.booking .paymentHeading.hummpay label {
 	margin-top: 6px;   
}

form.booking .paymentHeading img.cardImg {
    max-width: 180px;
    float: right;
}

form.booking .paymentHeading img.hummImg {
	float: right;
	max-width: 100px; 
	margin-top: 6px;
}

form.booking .paymentPanel {
    padding: 35px 19px;
}
        
form.booking .paymentPanel .btn.purple_btn {
    width: 100%;
    margin-top: 15px;
    display: block;
    max-width: 100%;
}

form.booking .border_line {
	max-width: 100%;
}

form.booking .total_box {
	margin-top:0;
	color: #8739f6;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

form.booking .amountStyle {
	font-size: 13px;
}

form.booking .paySmall {
	color: #000;
	font-weight: 400;
	font-size: 16px;
	padding-right: 10px;
}

form.booking .paySmall:hover {
	color: #8739f6;
}

form.booking .payAll {
	color: #8739f6 !important;
	font-weight: 400;
	font-size: 16px;
	padding-left: 10px;
}

form.booking .right_amount {
	font-size: 30px;
	color: #000000;
	width:160px;
	font-weight: 300;
}

form.booking .right_amountdue {
	font-size: 16px;
	color: #000000;
	width: 160px;
	font-weight: 400;
}

form.booking .payments {
	width: 100%;
}

form.booking #card-element {
	width: 100%;
	height: auto;
	padding: 14px 15px;
	background-color: white;
	border-radius: 7px;
	border: 2px solid #beb6b6;
	color: black;
}

label.inline {
	display: inline;
}

input[type="checkbox"],
input[type="radio"] {
	width: 20px !important;
	height: auto !important;
	display: inline;
}

.hummImg {
	max-width: 130px;
}

.afterpay-img {
	max-width: 150px;
}

.yondagift-img {
	max-width: 140px;
}

.hide.payments {
    padding-top: 25px;
	padding-bottom: 30px;
    border-bottom: 2px solid #beb6b6;
    margin-bottom: 0;
}

.hide .btn {
	margin: 0;
}

.hide#credit {
    padding-top: 25px;
    padding-bottom: 5px;
    border-bottom: 2px solid #beb6b6;
    margin-bottom: 0;
}

.hide#credit .btn {
    margin: 25px 0 0 0;
}

body#booking-page .needHelp {
	color: #000000;
	font-size:20px;
}

body#booking-page .phoneClass {
	font-size:20px;
}

body#booking-page .info.coupon label {
	display: inline-block;
	font-size: 14px;
	margin: 8px 10px 0px 0;
	min-width: 130px;
}

body#booking-page .info.coupon input {
    border-radius: 6px;
    border: 1px solid #beb6b6;
    padding: 10px 15px;
    margin: 0;
}

body#booking-page .info.edit-booking a {
    clear: both;
    color: #8739f6;
    max-width: 150px;
    padding: 8px 10px;
}

body#booking-page .info.edit-booking a:hover {
	color: #ffffff;
}

body#booking-page a#checkPromo.btn {
    margin-left: 12px;
    max-width: 80px;
    height: 50px;
    color: #fff;
}

body#booking-page a#checkPromo.btn:hover {
	background-color: #fff;
	color: #8739f6;
}

body#booking-page .container_box .right_box {
    padding: 95px 6.6vw;
}

body#booking-page .container_box .right_box .info_box {
    max-width: 400px;
	width: 100%;
}

body#booking-page .container_box .right_box .img_box {
    width: 100%;
    height: 310px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    margin: 0 0 45px;
}

body#booking-page .container_box .right_box .img_box .imgHotel {
    width: 100%;
    max-height: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

body#booking-page .container_box .right_box .stars {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    padding: 15px;
}

body#booking-page .container_box .right_box .stars img {
    width: 15px;
    margin: 0 4px 0 0;
}

body#booking-page .container_box .right_box .info {
    width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 0 10px;
}

body#booking-page .container_box .right_box .info .tittle {
    font-weight: 600;
    margin: 0;
}

body#booking-page .container_box .right_box .info .info_text {
    text-align: right;
	margin: 0;
}

body#booking-page .container_box .right_box .info .purple_tittle {
    color: #8739f6;
}

body#booking-page .container_box .right_box .border_line {
    margin: 25px 0 25px;
    max-width: 100%;
}

body#booking-page .border_line:before {
    width: 100%;
}

body#booking-page .border_line:after {
	display: none;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: 0;
    opacity: 0.01;
}

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
    position: relative;
    padding-left: 30px;
    font-size: 1.05em;
    line-height: 1.7;
    cursor: pointer;
}

[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    z-index: 1;
    width: 15px;
    height: 15px;
    border: 1px solid #aaa;
    background: #FFF;
    border-radius: 6px;
    -webkit-transition: all .275s;
        transition: all .275s;
}

[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
    content: '';
    background-image: url('../img/Icons/yonda_icon_tick.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 15px auto;
    position: absolute;
    top: 5px;
    left: 3px;
    width: 15px;
    height: 15px;
    z-index: 2;
    font-size: 1.375em;
    color: #CB22ED;
    line-height: 0;
    -webkit-transition: all .2s;
        transition: all .2s;
}

[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
}

[type="checkbox"]:checked + label:after {
    opacity: 1;
}

[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #e9e9e9;
}

[type="checkbox"]:disabled:checked + label:after {
    color: #777;
}

[type="checkbox"]:disabled + label {
    color: #aaa;
}

[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 6px rgba(203, 34, 237, .2);
}


#destinations h3 {
	margin-bottom: 25px;
	font-size: 20px;	
}

#destinations p::blank {
	display: none;
}

.destinations .img_box img {
    margin: 0 0 10px 0;
    width: 100%;
}

.destinations h3 a {
	color: #000000;
}

.destinations a.btn:not(#loadMore) {
    width: 100%;
    float: right;
}

body#giftcard-page .box {
    position: relative;
    padding-left: 40px;
    margin: 0 0 50px 0;
}

body#giftcard-page span.number {
    font-size: 40px;
	color: #ccc;
	font-weight: 700;
	position: absolute;
	left: 0;
	top: -20px;
}

.loggedin_search {
    position: absolute;
    left: 11%;
    top: 40px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.80);
    bottom: 40px;
    width: 480px;
    padding: 25px 30px;
    border-radius: 5px;
}

.loggedin_search h6 {
    margin: 0 0 15px 0;
    text-align: center;
    font-weight: 500;
}

.loggedin_search h2 {
    font-weight: 600;
    max-width: 380px;
    margin: 0 0 25px 0;
    font-size: 26px;
}

.loggedin_search input {
	width: 80%;
}

.loggedin_search .btn {
	width: 18%;
}

.loggedin_search .border_line {
	margin: 25px auto;
	text-align: center;
}

.loggedin_search .border_line .line.left {
    background-color: #bbb;
    display: inline-block;
    height: 1px;
    width: 35%;
    margin-bottom: 4px;
}

.loggedin_search .border_line .text {
    width: 30%;
    display: inline-block;
}

.loggedin_search .border_line .line.right {
	background-color: #bbb;
    display: inline-block;
    height: 1px;
    width: 35%;
    margin-bottom: 4px;
}

.location-filter-buttons {
    margin: 0;
    width: 100%;
    text-align: center;
}

.location-filter-buttons li {
    display: inline-block;
    margin: 4px 1px;
    min-width: 120px;
}   

.location-filter-buttons li a {
    font-weight: 500;
    height: 40px;
    font-size: 12px;
    padding: 10px 10px;
    margin: 0;
    width: auto !important;
}

.filter {
    display: flex;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
    padding: 20px 30px;
    align-items: center;
}

.filter p {
    margin: 0;
    min-width: 95px;
}

.filter select {
    width: 100%;
    height: auto;
    padding: 12px 40px 12px 15px;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    border-radius: 0;
    border: 1px solid #efefef;
    color: black;
    margin: 0;
    background-image: url('../img/arrow_down.png');
    background-position: right 15px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-size: 12px;
    border-radius: 5px;
    margin: 0 10px;
}

.benefits {
	border-bottom: 1px solid #efefef;
}

.benefits h3 {
	font-size: 20px;
}

.benefits p {
	font-size: 14px;
}

.property-style .search_res .left {
    overflow: hidden;
}

.bg-cruise.overlay {
	position: relative;
}

.bg-cruise.overlay .container {
	z-index: 2;
	position: relative;
}

form#search_cruise {
	position: relative;
}

form#search_cruise .field_holder {
	position: unset;	
}

form#search_cruise label {
    margin: 0 0 5px 0;
    color: #fff;
}

form#search_cruise a.trigger {
    width: 100%;
    position: relative;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 10px 15px;
    text-align: left;
    display: block;
    color: #fff;
    text-decoration: none;
    height: auto;
    line-height: 1.6;
}

form#search_cruise a.trigger:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f107';
	font-size: 14px;
	transition: 0.4s;
	position: absolute;
	right: 15px;
	top: 50%;
	z-index: 1;
	color: #fff;
	line-height: 1;
	margin-top: -7px;
}

form#search_cruise a:hover:after {
	-webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

form#search_cruise a.trigger.active:after {
	-webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

form#search_cruise .field_holder > ul {
    margin: 0;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 15px;
    top: 100px;
    right: 15px;
    z-index: 2;
    padding: 50px 15px 50px 15px;
    transition: 0.4s;
    border-radius: 5px;
    -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
}

form#search_cruise .field_holder > ul.active {
	visibility: visible;
    opacity: 1;
    top: 78px;
}

form#search_cruise .field_holder > ul li {
    position: relative;
	padding: 0 5px;
}

form#search_cruise .field_holder > ul li label {
    margin: 0;
    color: #000000;
    border-radius: 6px;
    overflow: hidden;
}

form#search_cruise .field_holder > ul li label:hover {
	background-color: #efefef;	
}

label.special_checkbox {
	position: relative;
}

label.special_checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0 !important;
    width: 0 !important;
    margin: 0;
}

label.special_checkbox .checkmark {
    position: absolute;
    top: 50%;
    left: 15px;
    height: 16px;
    width: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: -8px;
    cursor: pointer;
}

label.special_checkbox .checkmark::after {
    left: 5px;
    top: 3px;
    width: 5px;
    height: 8px;
    border: solid #8739f6;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1;
    content: "";
	position: absolute;
	display: none;
}

label.special_checkbox .text {
    border: 0;
    padding: 12px 15px 12px 45px;
    cursor: pointer;
    font-size: 13px;
    width: 100%;
    font-weight: 500;
    line-height: 1.2;
}

label.special_checkbox input:checked ~ .checkmark {
	background-color: #fff;
	border-color: #fff;
}

label.special_checkbox input:checked ~ .text {
	background-color: #8739f6;
	color: #fff;
}

label.special_checkbox input:checked ~ .checkmark:after {
	display: block;
}

form#search_cruise .years {
	text-align: center;
}

form#search_cruise .years > li {
	font-size: 20px;
}

form#search_cruise .years > li > ul {
    max-width: 180px;
    margin: 15px auto 0;
}

form#search_cruise .years > li > ul li {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
}

.filter_bar {
    border-bottom: 1px solid #efefef;
    margin-bottom: 60px;
    padding-bottom: 30px;
}

a.show_filter {
	text-decoration: none;
}

a.show_filter:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f105';
	margin-left: 10px;
}

p.num_results {
	margin: 0;
}

p.num_results span {
	color: #8739f6;
}

.filter_bar .sort-by label {
	font-weight: 400;
	font-size: 14px;
	margin-right: 10px;
}

.filter_bar select {
    width: 180px;
    height: 47px;
    border: 2px solid #8739f6;
    color: #8739f6;
    border-radius: 50px;
    padding: 0 15px;
    background-image: url('../img/arrow_down_purple.png');
    background-position: right 15px center;
    background-size: 10px 6px;
    margin: 0;
}

.container.with_filter {
	position: relative;
}

.filters {
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
}

.filters.active {
	visibility: visible;
	opacity: 1;
	z-index: 1;
}

.filters label.heading {
    position: relative;
	border-bottom: 1px solid #efefef;
	padding: 10px 0;
	margin: 0;
	cursor: pointer;
}

.filters span.expand {
    position: absolute;
    right: 0;
    top: 50%;
    height: 10px;
    line-height: 1;
    margin-top: -7px;
}

.filters span.expand:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f107';
}

.filters label.special_checkbox .checkmark {
	left: 0;
}

.filters label.special_checkbox .text {
    padding: 7px 15px 7px 30px;
    color: #000000;
}

.filters label.special_checkbox input:checked ~ .text {
    background-color: transparent;
    color: #8739f6;
}

.filters label.special_checkbox input:checked ~ .checkmark {
    background-color: transparent;
    border-color: unset;
}

.sort ul {
	margin: 0;
	overflow: hidden;
	transition: 1s;
	height: 0;
}

.sort.active ul  {
	height: auto;
}

.listings {
	transition: 0.5s;
}

.listings.active {
	margin-left: 25%;
}

.search_res.cruise .left {
	position: relative;
}

.search_res.cruise .left .cruise_logo {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 100%;
    z-index: 2;
    text-align: right;
}

.search_res.cruise .left .cruise_logo img {
	max-width: 160px;
	background-color: #fff;
	padding: 4px;
}

.search_res.cruise .right .box .purple span {
	font-size: 15px;
}

.search_res.cruise .price_box p {
	float: none;
}

.search_res.cruise .price_box span {
    float: none;
}

.search_res.cruise .prices {
    background-color: #8739f6;
    color: #ffffff;
    margin-top: -15px;
    margin-bottom: -15px;
    text-align: center;
}



.location_card {
	
}

.location_card .holder {
	
}

.location_card .holder a {
	
}

.location_card .holder .overlay {
	background-color: rgba(135, 57, 246, 0.8); 
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: block;
	z-index: 1;
	color: #fff;
	opacity: 0;
	transition: 0.5s;
}

.location_card:hover .holder .overlay {
	opacity: 1;
}

.location_card .holder .overlay p {
    margin: 0;
    text-align: center;
    position: relative;
    padding-top: 20px;
}

.location_card .holder .overlay i {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -7px;
}

.location_card h3 {
	font-size: 20px;
}

.location_card h3 a {
	display: block;	
	text-decoration: none;
}

.location_card:hover h3 a {
	color: #8739f6;
}


#spotlights .imageHolder {
    height: 200px;
    overflow: hidden;
}

#spotlights .imageHolder img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: 0 100%;
}

#spotlights h4 {
	font-size: 16px;
}


#listings1 .owl-item:hover .lockBoxMain {
	display: flex !important;
}

#listings1 .lockBoxMain {
	left: 5px;
	right: 5px;
	top: 5px;
	bottom: 5px;	
}

body#destinations p:empty {
	display: none;
}

body.single .imageHolder {
    height: 255px;
}

body.single .imageHolder img {
	object-fit: cover;
	object-position: 0 100%;
	width: 100%;
	height: 100%;
}

body.single h3 {
	margin-bottom: 22px;
	font-size: 18px;
	font-weight: 500;
}

body.single p {
	color: #666;
}

.author {
	border-left: 1px solid #efefef;
	border-right: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
	border-top: 4px solid #8739f6;
	margin: 15px;
	padding: 20px 20px;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.author .expert {
	border-radius: 50%;
	border: 0;
	width: 60px;
	height: 60px;
	background-color: #eaeaec;
	margin: 0 auto;
}

.author .content p {
	margin-bottom: 1px;
}

.author .content p:last-child {
	margin-bottom: 0;
}

#locations .owl-nav {
	width: 0;
	position: unset;
	z-index: 0;
}

#locations .owl-nav button.owl-prev {
    margin-left: -21px;
    position: absolute;
    top: 120px;
    z-index: 1;
    left: 0;
}

#locations .owl-nav button.owl-next {
	margin-right: -21px;
	position: absolute;
    top: 120px;
    z-index: 1;
    right: 0;
}

.alert-danger {
    color: #fff;
    background-color: #dd5e5e;
    border-color: #dd5e5e;
}

.alert-danger h4,
.alert-danger .h4 {
    color: #fff;
}  

.alert-danger .close {
	color: #fff;
	opacity: 1;
}


/* Modal */
.modal {
	overflow-y: scroll;
}

.modal-dialog {
    max-width: 800px;
}

.modal.small .modal-dialog {
	max-width: 600px;
}

.modal-content {
    border-radius: 0;
	border: none;
	margin: 0;
}

.modal-header {
	width: 100%;
	background: rgb(223, 218, 232);
	background: linear-gradient(90deg, rgba(223, 218, 232, 1) 20%, rgba(253, 220, 208, 1) 67%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 18px 18px 24px;
	color: black;
	border: none;
	line-height: 1.2;
	border-radius: 0;
}

.modal-header .modal-title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.modal-header .close {
    color: #000;
    opacity: 1;
    font-weight: 400;
    cursor: pointer;
    margin: 0;
    padding: 15px 15px;
    position: absolute;
    right: 0;
    top: 0;
}

.modal-header.purple {
    background-color: #8739f6;
    background-image: none;
}

.modal-header.purple .modal-title {
    color: #fff;
}

.modal-header.purple .close {
	color: #ffffff;
}

.modal_box .modal-body {
    padding: 40px 8vw;
}

.modal.small .modal_box .modal-body {
    padding: 40px 4vw;
}

.modal_box .modal-body img {
    margin-bottom: 20px;
}

.modal_box .modal-body h6 span {
	color: #8739f6;
}

.modal_box .modal-body h2 {
    font-size: 25px;
	line-height: 1.4;
}

.modal_box .modal-body h2 p {
	font-size: 14px;
}

.modal_box .modal-body .popup-icons {
	margin-top: 40px;
}

.modal_box .modal-body .popup-icons p {
    margin: 0;
    color: #8739f6;
    font-weight: 600;
    font-size: 13px;
}

.modal_box .modal-body .btn_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 2.5vw 0 2.5vw;
    transition: all .5s;
}

.modal-footer {
    color: black;
    font-size: 18px;
    font-weight: 400;
    height: 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    border-radius: 0;
    background-image: url(/img/section5_bg.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.modal-footer .next {
    color: white;
    border-radius: 50%;
    background-color: #8739f6;
    width: 35px;
    height: 35px;
    border: none;
    outline: none;
    background-image: url(/img/arrow.png);
    background-position: center;
    background-size: 20%;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

.modal .close_modal {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 auto;
    position: absolute;
    bottom: -26px;
    left: 0;
    width: 100%;
}

.modal .close_modal p {
	margin: 0;
	color: #ffffff;
}

.modal .close_modal img {
    margin: 0 5px 0 0;
    width: 4px;
    cursor: pointer;
}

/* Competition Modal */
#competitionModal .modal-dialog {
	max-width: 1140px;
}

#competitionModal .modal-dialog .modal-header {
	background-image: url('/img/cloub_bg.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	position: relative;
	padding: 30px 6vw;
}

#competitionModal .modal-dialog .modal-header:before {
	content: '';
	background: linear-gradient(90deg, rgba(191, 150, 250, 1) 20%, rgba(135, 57, 246, 1) 67%);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0.4;
}

#competitionModal .modal-dialog .modal-header h5 {
	color: #ffffff;
	position: relative;
	z-index: 3;
}

#competitionModal .modal-dialog .modal-header .close {
    color: #fff;
    padding: 30px 30px;
    z-index: 3;
}

#competitionModal .modal-dialog .modal_box .modal-body {
    padding: 4vw 6vw;
}

#competitionModal .modal-dialog .modal_box .modal-body h2 {
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
}

#competitionModal .modal-dialog .modal_box .modal-body .img_box img {
    width: 85px;
    opacity: 0.3;
}

#competitionModal .modal-dialog .modal_box .modal-body .img_box img.icon3 {
    width: 65px;
}

#competitionModal .modal-dialog .modal_box .modal-body form.default {
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #efefef;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 20px 35px 20px;
}

#competitionModal .modal-dialog .modal_box .modal-body form.default label {
	color: #000000;
	font-weight: 400;
}

#competitionModal .modal-dialog .modal_box .modal-body form.default input {
	margin: 0;
	background-color: #f4f4f4 !important;
	border: 0 !important;
	height: auto !important;
	padding: 10px 15px !important;
}

#competitionModal .modal-dialog .modal_box .modal-body form.default textarea {
	margin: 0;
	background-color: #f4f4f4 !important;
	border: 0 !important;
	height: auto !important;
	padding: 10px 15px !important;
}

#competitionModal .modal-dialog .modal_box .modal-body .testimonial p {
	line-height: 1.2;
}

#competitionModal a.terms {
	font-size: 12px;
}


/* Destination */
.full_page_banner {
	height: 500px;
	padding: 0;
}


/* Single Blog */
#blog-page.single .back_holder {
    border-bottom: 1px solid #efefef;
    padding-bottom: 10px;
}

#blog-page.single .back_holder a:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f104';
	margin: 0 15px 0 0;
	font-size: 14px;
	transition: 0.4s;
	display: inline-block;	
}

#blog-page.single h1 {
    max-width: 480px;
    text-align: left;
    margin: 50px auto 55px auto !important;
    font-size: 30px;
}

#blog-page.single .image {
    position: relative;
    overflow: hidden;
    margin: 70px -100px;
}

#blog-page.single .image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#blog-page.single .image .caption {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.50);
	color: #fff;
	left: 0;
	bottom: 0;
	border-radius: 0;
	padding: 10px 15px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
	width: 100%;
}

#blog-page.single .author {
	border: 0;
    border-top: 1px solid #efefef;
    padding: 25px 0 10px 0;
    margin-top: 40px;
}

#blog-page.single .author img {
	background-color: #efefef;
	border-radius: 100%;
	overflow: hidden;
}

#blog-page.single .author p {
	margin: 0;
}



/* Quick Enquiry - Accommodation Page */
.help_property {
	position: fixed;
	right: 0;
	top: 205px;
	width: 290px;
	z-index: 99;
	background-color: #fff;
	transition: 0.5s;
	transform: translate3d(100%,0px,0px);
}

.help_property.active {
    z-index: 9999;
    transform: translate3d(0px,0px,0px);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
}

a.quick_enquiry_trigger {
    background-color: #8739f6;
    color: #fff;
    padding: 0;
    position: absolute;
    left: 0;
    top: 47px;
    margin-left: -70px;
    font-size: 20px;
    text-decoration: none;
    height: 75px;
    width: 70px;
    line-height: 50px;
}

a.quick_enquiry_trigger i {
    position: absolute;
    top: 16px;
}

.help_property a.quick_enquiry_trigger .fa-times {
	display: none;
	left: 28px;
}

.help_property a.quick_enquiry_trigger .fa-envelope {
	display: block;
	left: 25px;
}

.help_property.active a.quick_enquiry_trigger .fa-times {
	display: block;
}

.help_property.active a.quick_enquiry_trigger .fa-envelope {
	display: none;
}

a.quick_enquiry_trigger .text {
    position: absolute;
	font-size: 11px;
	line-height: 1.4;
	text-align: center;
	bottom: 17px;
	left: 0;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.2px;
	color: #fff;
	opacity: 1;
	text-shadow: none;
	float: none;
	width: 100%;
}

.help_property a.quick_enquiry_trigger .text.close {
	display: none;
}

.help_property a.quick_enquiry_trigger .text.quick {
	display: block;
}

.help_property.active a.quick_enquiry_trigger .text.close {
	display: block;
}

.help_property.active a.quick_enquiry_trigger .text.quick {
	display: none;
}

.quick_enquiry {
	padding: 20px 30px 30px 30px;
}

#enquiryInfo {
	font-size: 14px;
	margin-bottom: 15px;
	width: 100%;
}

#enquiryInfo .alert {
    color: #ffffff;
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1.4;
}

#enquiryInfo .alert.error {
	background-color: #d97979;
}

#enquiryInfo .alert.success {
	background-color: #499b49;
}



@media screen and (max-width: 1600px) {

	.full_page_banner {
		height: 450px;
	}
	
}

@media screen and (max-width: 600px) {

	.full_page_banner {
		height: 270px;
	}
	
}

.full_page_banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body#destinations .lightpick {
	width: 1100px;
	margin: 0;
	left: calc(50% - 550px) !important;
}

@media screen and (max-width: 1024px) {
	body#destinations .lightpick {
		width: 100%;
		left: 0 !important;	
	}
}

body#destinations  .lightpick__month-title-bar {
	box-shadow: none !important;	
}

body#destinations .lightpick .lightpick__toolbar {
    width: auto;
    left: 25px;
    right: 25px;
}

body#destinations .lightpick .lightpick__month {
    padding: 0 100px;
}

@media screen and (max-width: 768px) {

	body#destinations .lightpick {
	    width: auto;
	    left: 30px !important;
	    right: 30px !important;
	}

	body#destinations .lightpick .lightpick__toolbar {
	    left: 0 !important;
	    right: 0 !important;
	}
	
	body#destinations .lightpick .lightpick__months {
		display: block;
	}

	body#destinations .lightpick .lightpick__month {
	    padding: 0;
	    border: 0 !important;
	}

}

body#destinations .lightpick .lightpick__month:not(:last-child) {
	border-right: 1px solid #efefef;
}

body#destinations .lightpick .lightpick__day.is-start-date.is-in-range,
body#destinations .lightpick .lightpick__day.is-end-date.is-in-range {
    position: relative;
    background-image: none;
	background-color: #8739f6;
	padding-top: 10px;
}

body#destinations .lightpick .lightpick__day.is-start-date.is-in-range:before,
body#destinations .lightpick .lightpick__day.is-end-date.is-in-range:before {
	position: absolute;
	left: 0;
	top: 8px;
	color: #fff;
	z-index: 2;
	font-size: 8px !important;
	width: 100%;
	text-align: center;
	letter-spacing: -0.2px;
}

body#destinations .lightpick .lightpick__day.is-start-date.is-in-range:before {
	content: 'Check In';
}

body#destinations .lightpick .lightpick__day.is-end-date.is-in-range:before {
	content: 'Check Out';
}

body#destinations .lightpick .foot {
    background-color: #f9f9f9;
    margin: 35px -30px -30px -30px;
    padding: 15px 25px;
    border-top: 1px solid #efefef;
}

.choose_dates_later {
	margin-right: 20px;
}

.apply_dates {
	max-width: 100px;
}

.region_search {
	background-color: #efefef;
}

.region_search .row > .col-12 {
	border-left: 1px solid #ccc;
	min-height: 77px;
}

@media screen and (max-width: 768px) {

	.region_search .row > .col-12 {
	    border-bottom: 1px solid #ccc;
	    border-left: 0;
	    border-right: 0;
	}
	
	.region_search .row > .col-12:last-child {
	    border: 0 !important;
	}
	
	body#destinations form .guest {
		width: 100%;
		padding: 25px 20px 30px 20px;
	}
	
}


.region_search .row > .col-12:last-child {
	border-right: 1px solid #ccc;
}

.region_search .col-12 > input {
    margin: 0;
    border: 0;
    border-radius: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
    font-size: 15px;
    padding: 10px 10px 10px 62px;
}

.search_text_holder {
	position: relative;
}

.region_search form {
	margin: auto;
	max-width: 1100px;
}

.region_search a {
    border: 0;
    width: 100%;
    text-align: left;
    padding: 20px 0 44px 47px;
    display: block;
    height: 100%;
}

.region_search a i {
    color: #8739f6;
    position: absolute;
    left: 23px;
    top: 22px;
    z-index: 2;
    font-size: 25px;
}

.region_search a .title {
    font-weight: 600;
    display: block;
    color: #000;
    font-size: 13px;
	line-height: 1;
}

.region_search a .text {
	font-weight: 400;
	display: block;
	color: #000;
	font-size: 12px;
	line-height: 1;
}

.search_text_holder i {
    color: #8739f6;
    position: absolute;
    left: 23px;
    top: 29px;
	z-index: 6;
}

.region_search .col-12.search_text_holder input {
    padding: 10px 10px 10px 55px;
    font-size: 16px;
}

.region_search .col-12 > .guests {
	margin: 0;
	border: 0;
	border-radius: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: transparent;
	font-size: 12px;
	padding: 22px 10px 10px 62px;
}

.region_search .col-12 > .guests #res {
    margin: 0;
    border: 0;
    border-radius: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
    font-size: 15px;
    padding: 10px 10px 10px 62px;
}


body#destinations #loader {
    display: block;
}



.property_card {
    width: 100%;
    background-color: white;
    /*display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;*/
    letter-spacing: -1px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
    padding-top: 15px;
	padding-bottom: 15px;
}

.property_card h5 {
    font-size: 18px;
    margin: 0 0 5px 0;
    min-height: 20px;
}

.property_card .img_block {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.property_card .img_block a {
    width: 100%;
    height: 220px;
    display: block;
}

.property_card .img_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property_card .img_block p {
    width: 135px;
    text-align: center;
    background: white;
    color: black;
    font-size: 12px;
    font-weight: 300;
    position: absolute;
    right: 0;
    top: 0;
    padding: 2px 0;
}

.property_card .img_block .black {
    background-color: black;
    color: white;
}

.property_card h2,
.property_card h3 {
    color: black;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 20px;
	font-family: 'Poppins', sans-serif;
	margin: 15px 0 10px 0;
	height: auto;
}

.property_card h2 a,
.property_card h3 a {
	color: inherit;
}

.property_card div.room_info {
	flex-direction: column;
	align-items: flex-start;
}

.property_card .price_mem {
    color: #8739f6;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
	margin: 0;
}

.property_card .price_mem span {
    text-decoration: line-through;
    font-weight: 300;
}

.property_card .stars {
    justify-content: space-between;
    align-items: center;
    width: 90px;
    position: relative;
}

.property_card .stars img {
	width: 15px;
	height: auto;
}

.property_card .box {
	margin-top: 15px;
	margin-bottom: 15px;
}

.property_card .box p {
	
}

.property_card p {
	margin-bottom: 0;
}

.property_card .price_box {
    margin-top: 10px;
}

.property_card .type_of_room {
    font-size: 14px;
    color: #b3b3b3;
    font-weight: 300;
    margin: 0;
}

.property_card .price_box span.price {
	font-size: 30px;
	line-height: 1;
	color: #000;
	font-weight: 400;
	margin-right: 7px;
}

.property_card .price_box span {
    font-size: 14px;
	line-height: 16px;
	color: #b3b3b3;
	font-weight: 300;
}

.property_card .btn {
	background-color: black;
    border-radius: 10px;
	color: white;
	width: 120px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-size: 13px;
	cursor: pointer;
	margin: 0;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.01px;
	border: 0;
	padding: 10px 10px;
}

@media screen and (max-width: 768px) {

	.property_card .btn {
	    margin-top: 15px;
	}
	
}



.property_card .hidden_box {
    width: 100%;
    background-color: #8739f6;
    padding: 15px 21px;
    text-align: left;
    font-size: 14px;
    color: white;
    line-height: 1;
    font-weight: 200;
    opacity: 0;
    transition: opacity .5s;
    letter-spacing: 2px;
}

.property_card:hover .hidden_box {
    opacity: 1;
}

.property_card:hover .details {
    background: #8739f6;
    background: linear-gradient(90deg, #8739f6 25%, #a849fc 55%);
}




@media all and (max-width:1280px) {

	.full_page_slider,
	.full_page_slider .owl-carousel,
	.full_page_slider .owl-carousel .owl-stage-outer,
	.full_page_slider .owl-carousel.owl-drag .owl-item,
	.full_page_slider .owl-carousel .owl-stage {
	    height: 420px;
	}
	
	.loggedin_search {
	    top: 20px;
	    bottom: 20px;
	}
	
	.loggedin_search .border_line {
	    margin: 20px auto;
	}
	
	.location-filter-buttons {
	    margin: 0 -20px;
	    width: calc(100% + 40px);
	}
	
	.location-filter-buttons li {
	    margin: 2px 1px;
	    min-width: 108px;
	}

}


@media all and (max-width:1024px) {
	
	body.locked {
	    overflow: hidden;
    }
    
    header .bottom {
	    padding-top: 11px;
	    padding-bottom: 10px;
	}
	
	header .container {
		max-width: 100%;
	}
	
	.hamburgerHolder {
	    position: absolute;
	    right: 0;
	    top: 0;
	    height: 59px;
	    display: block;
	    width: 59px;
	    z-index: 2;
	}
		
	.c-hamburger {
	    position: absolute;
	    left: 50%;
	    top: 50%;
	    overflow: hidden;
	    padding: 0;
	    width: 25px;
	    height: 23px;
	    font-size: 0;
	    text-indent: -9999px;
	    appearance: none;
	    box-shadow: none;
	    border-radius: none;
	    border: none;
	    cursor: pointer;
	    background: 0 0 !important;
	    outline: none !important;
	    margin-left: -12px;
	    margin-top: -12px;
	}
	
	.c-hamburger--htx span {transition: background 0s .3s;}
	.c-hamburger span {display: block;position: absolute;top: 10px;left: 0;right: 0;height: 2px;background: #9d3cfb;border-radius: 0;}
	.c-hamburger span::before {top: -7px;}
	.c-hamburger--htx span::before {transition-property: top,transform;}
	.c-hamburger--htx span::before, .c-hamburger--htx span::after {transition-duration: .3s,.3s;transition-delay: .3s,0s;}
	.c-hamburger span::before, .c-hamburger span::after {position: absolute;display: block;left: 0;width: 100%;height: 2px;background-color: #9d3cfb;border-radius: 0;content: "";}
	.c-hamburger span::after {bottom: -7px;}
	.c-hamburger--htx span::after {transition-property: bottom,transform;}
	.c-hamburger--htx.is-active span {background: 0 0;}
	.push-toright .c-hamburger--htx.is-active span::before, .push-toright .c-hamburger--htx.is-active span::after {background-color: #ffffff;z-index: 1;}
	.c-hamburger--htx.is-active span::before {top: -1px;}
	.c-hamburger--htx.is-active span::before, .c-hamburger--htx.is-active span::after {transition-delay: 0s,.3s;}
	.c-hamburger--htx.is-active span::before {top: 0;transform: rotate(45deg);}
	.c-hamburger--htx.is-active span::after {bottom: 1px;}
	.c-hamburger--htx.is-active span::after {bottom: 0;transform: rotate(-45deg);}

	.mainMenuHolder {
	    position: fixed;
	    z-index: 999;
	    width: 100%;
	    background: #fff;
	    top: 95px;
	    left: 0;
	    height: calc(100% - 94px);
	    padding: 0;
	    transform: translate3d(-100%,0px,0px);
	    overflow: auto;
	    transition: 0.5s;
	    display: block;
	    border-top: 1px solid #efefef;
	}
	
	body.push-toright header {
		background-color: #ffffff;
	}
	
	body.push-toright header .logoHolder #logo {
	    width: 150px;
	}
	
	body.push-toright header .logoHolder span {
	    margin-top: -7px;
	}
	
	body.push-toright .hamburgerHolder {
		background-color: #9d3cfb;
	}
	
	.push-toright .mainMenuHolder {
	    z-index: 9999;
	    transform: translate3d(0px,0px,0px);
	    width: 100%;
	}
	
	header.fixed .logoHolder {
		
	}
	
	body.push-toright .logoHolder {
	    max-width: 150px;
	}
	
	.logoHolder {
	    max-width: 198px;
	    width: 70%;
	}

	.logoHolder #logo {
	    max-width: 200px;
	    width: auto;
	}
	
	.logoHolder span {
	    margin-top: -5px;
	}
	
	.logo {
	    width: 150px !important;
	}
	
	ul.main_menu {
		display: block;	
	}
	
	ul.main_menu li {
	    text-align: left;
	    margin: 0;
	    border-bottom: 1px solid #efefef;
	}
	
	ul.main_menu li.phone {
	    border: 0;
	    text-align: center;
	    margin-top: 20px;
	    font-weight: 500;
	}
	
	ul.main_menu li.login {
	    position: fixed;
	    left: 0;
	    bottom: 0;
	    background-color: #8739f6;
	    width: 100%;
	    color: #fff;
	    height: auto;
	}
	
	ul.main_menu li.login a {
		height: auto;
	    padding: 14px 10px;
	    line-height: 16px;
	    color: #fff;
	    text-align: center;
	    width: 100%;
	    display: block;
	    max-width: 100%;
	    border: 0;
	}
	
	ul.main_menu li.login a:before,
	ul.main_menu li.login a:after {
		display: none;
	}
	
	ul.main_menu li.join {
		position: fixed;
	    right: 0;
	    bottom: 0;
	    background-color: #8739f6;
	    width: 50%;
	    color: #fff;
	    height: auto;
	}
	
	ul.main_menu li.join a {
	    height: auto;
	    padding: 14px 10px;
	    line-height: 16px;
	    color: #fff;
	    text-align: center;
	    width: 100%;
	    display: block;
	    max-width: 100%;
	    border: 0;
	}
	
	ul.main_menu li.join a:before,
	ul.main_menu li.join a:after {
		display: none;
	}
	
	ul.main_menu li a:not(.btn) {
	    display: block;
	    padding: 15px 30px;
	}

}


@media all and (max-width:768px) {
	
	#listings.owl-carousel {
	    width: calc(100% + 20px);
	    margin-left: -10px;
	    margin-right: -10px;
	}
	
	header .top {
	    padding: 5px 0 3px 0;
	}
	
	header .top p {
		max-width: 250px;
		margin: auto;	
	}

	header .top a {
	    font-size: 11px;
	    line-height: 13px;
	}
	
	.hamburgerHolder {
	    height: 58px;
		width: 58px;
	}

	.owl-carousel .row {
	    --bs-gutter-x: 0;
	}

	.mb-6 {
	    margin-bottom: 60px !important;
	}

	section {
	    padding: 60px 15px 60px;
	}

    .bg-ocean,
    .bg-ocean2 {
        background-image: url('../img/section1_bg_mob.png');
    }
    
    .bg-palm {
	    background-image: none;
	}

	.btn_box {
	    justify-content: center;
	}
	
    h1 {
    	font-size: 25px;
	}
    
    h2 {
    	font-size: 22px;
    }
    
    h3 {
	    font-size: 16px;
	}
    
    h6 {
    	font-size: 14px;
    }
    
    footer {
	    font-size: 14px;
	    padding: 50px 20px 50px;
	}
    
    #home-page .section1 .btn_box .btn {
    	font-size: 13px;
	} 
	
	.slide_keys {
		display: none;
	}
	
	
	.property_card .holder {
	    height: 160px;
	}
	
	.property_card h3 {
	    height: auto;
	}
	
	.property_card p.price {
	    font-size: 25px;
	    margin-right: 5px;
	}

    .recommended .left p {
	    margin: 20px 0 35px;
	    width: 100%;
	    font-size: 14px;
	}
	
	.recommended .item .img_block p {
	    font-size: 16px;
	}
	
	.recommended .item .stars {
	    position: relative;
	    top: -9px;
	}
	
	.recommended .price_box p.price {
	    font-size: 30px;
	}
	
	.recommended .price_box div p {
	    font-size: 13px;
	    line-height: 14px;
	}
	
	.recommended .details {
	    width: 100px;
	    height: 35px;
	    font-size: 13px;
	    margin: 0 0 -5px 0;
	}
	
	.recommended .slide .item {
		box-shadow: none;
	}	
		
	form#formRefineResults h3 {
	    border: 1px solid #efefef;
	    padding: 12px 20px;
	}
	
	#refineFilter {
		display: none !important;
	}
	
	#refineFilter.filters_box {
		display: block !important;
	}
	
	.search_res {
	    margin: 0 0 15px;
	}
	
	.search_res .left .img {
    	height: 200px; 
    }
	
	.search_res img.flame {
	    left: -8px;
	    top: -5px;
	    width: 30px;
	}
	
	.search_res .left .carousel {
	    height: 200px;
	}
	
	.search_res .left .img img {
	    height: auto;
	}
    
    .search_res .left .black_text {
	    font-size: 14px;
	    width: 180px;
	}

    .search_res .left .black_text span {
	    font-size: 14px;
	    margin: 0 0 0 10px;
	}
	
	.search_res .left .white_text {
	    font-size: 14px;
	    width: 135px;
	}
	
	.search_res .left .btn_box {
	    margin: 20px 0 30px 0;
	}
	
	.search_res .left .btn_box .blk_btn {
	    margin: 0 10px 0 0;
	    height: 45px;
	    font-size: 14px;
	}
	
	.search_res .left .btn_box .purp_btn {
	    margin: 0;
	    height: 45px;
	    font-size: 14px;
	}
	
	.search_res .right h5 {
	    font-size: 18px;
	    margin: 15px 0 0 0;
	}
	
	.search_res .right h3 {
	    font-size: 20px;
	}
	
	.quick_info .icon-list li {
	    width: 100%;
	    margin: 4px 0 4px 0;
	}
    
    .search_res .right .box .purple {
	    font-size: 14px;
	}
	
	.search_res .right .box .purple span {
	    font-size: 14px;
	}

	.search_res.inside .price_box p {
	    font-size: 30px;
	    text-align: center;
	    width: 100%;
	    margin: 0;
	}
	
	.search_res.inside .price_box span {
	    margin: 0 0 15px 0;
	    width: 100%;
	    text-align: center;
	}
	
	.search_res .price_box .purple_btn {
	    font-size: 14px;
	    line-height: 1.4;
	}
	
	.search_res .right .btn_box .black_btn, .search_res .right .btn_box .white_btn {
	    width: 120px;
	    height: 35px;
	    font-size: 14px;
	}
	
	.search_res .right .btn_box .black_btn {
	    margin: 16px 0 0 0;
	}
	
	.search_res .lockBox {
	    display: flex !important;
	}
	
	.result_box .result_slider {
	    margin-top: 50px;
	}
	
	.result_box .result_slider .left {
		max-height: 245px;
	}
	
	.result_box .result_slider .search_res .price_box {
		margin-top: 15px;
	}
	
	.result_box .result_slider .search_res .price_box p {
	    line-height: 36px;
	}
	
	.result_box .result_slider .search_res .price_box span {
		margin: 0;
	}

	.result_box .img_block .visible {
	    height: 200px;
	    overflow: hidden;
	}
	
	.result_box .img_block .visible a {
	    float: left;
	}
	
	.result_box .img_block .visible img {
	    width: 100%;
	    height: auto;
	}
	
	.info_section .right .expertInfo {
	    max-width: 100%;
	    border: 1px solid #efefef;
	    border-radius: 10px;
	    padding: 40px 30px 15px 30px;
	    background-color: #fff;
	}
	
	.property-details .left_box {
    	padding-right: 15px;
	}
	
	form.search .guest {
	    width: 100%;
	    max-width: 300px;
	    padding: 20px 20px 20px 20px;
	}
	
	form.search .guest .inputs {
	    margin: 30px 0;
	}
	
	form.search .guest .count {
	    width: 100%;
	}
	
	form.search.lines input {
	    border-left: 1px solid white;
	    height: 65px;
	    margin-top: 8px;
	}
	
	form.search.lines select {
		border-left: 1px solid white;
	    border-right: 1px solid white !important;
	    height: 65px;
	    margin-top: 8px;
	}
	
	.accordion .card-header {
	    padding: 15px 50px 15px 20px !important;
	    font-size: 14px;
	    line-height: 22px;
	    font-weight: 400;
	}
	
	.table_section_desktop {
		display: none;
	}
	
	.phone-feature img.feature {
	    width: 180px;
	    margin: 40px auto 30px auto !important;
	    display: block;
	}

    .carousel {
	    width: 100%;
	}
	
	.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
	    width: 30px;
	    height: 30px;
	    background-size: 8px auto;
	}

    .owl-nav {
	    width: 95%;
	}

    .owl-carousel .owl-dots {
	    width: 100%;
	    justify-content: center;
	    bottom: 75px;
	    display: flex;
	}
    
    .owl-carousel button.owl-dot {
	    margin: 0 2px;
	    width: 5px;
	    height: 5px;
	}
	
	.info_section .information .left {
	    padding: 0px 0 0 15px;
	}
	
	.info_section .information .purple p {
	    font-size: 12px;
	}

	.info_section .information img.flame {
	    width: 12px;
	    top: 4px;
	    left: -3px;
	}
    
    .tabsgroup.inclusions {
	    display: block;
    }
    
    form.booking {
	    margin-left: -20px;
	    margin-right: -20px;
	}
	
	.booking .container_box .left_box h3 {
	    font-size: 22px;
	}
	
	.full_page_slider,
	.full_page_slider .owl-carousel,
	.full_page_slider .owl-carousel .owl-stage-outer,
	.full_page_slider .owl-carousel.owl-drag .owl-item,
	.full_page_slider .owl-carousel .owl-stage {
		height: 300px;
	}

	.full_page_slider.with_info,
	.full_page_slider.with_info .owl-carousel,
	.full_page_slider.with_info .owl-carousel .owl-stage-outer,
	.full_page_slider.with_info .owl-carousel.owl-drag .owl-item,
	.full_page_slider.with_info .owl-carousel .owl-stage {
		height: 500px;
	}

	.full_page_slider .info_box,
	.full_page_slider .button_box {
        display: none;
    }
    
    .full_page_slider.with_info .owl-carousel .owl-nav {
        display: none !important;
    }
    
    .loggedin_search {
        left: 5%;
        width: 90%;
        padding: 30px 20px;
        top: 20px;
        bottom: 20px;
    }
    
    .loggedin_search h6 {
        margin: 0 0 18px 0;
        font-size: 13px;
    }
    
    .loggedin_search h2 {
        font-size: 18px;
    }
    
    .location-filter-buttons {
	    margin: 0;
	    width: 100%;
	}
    
    .location-filter-buttons li {
	    margin: 3px 0;
	    min-width: 60px;
	}
    
    .location-filter-buttons li a {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .loggedin_search input {
	    width: 70%;
	}
    
    .loggedin_search .btn {
	    width: 27%;
	}	 
	   
    .loggedin_search .border_line {
	    margin: 25px auto;
	}
	
	.loggedin_search .border_line .line.left,
	.loggedin_search .border_line .line.right {
		width: 30%;
	}
	
	.loggedin_search .border_line .text {
	    width: 40%;
	    font-size: 13px;
	}
    
    .filter {
        display: block;
        margin: 0 20px 10px 20px;
        padding: 25px 25px;
    }
    .filter p {
        margin: 0 0 10px 0;
    }
    .filter select {
        margin: 0 0 10px 0;
        width: 100%;
        border: 1px solid #efefef;
    }

	.section-form-wrap.contact {
		box-shadow: none;
	}
	
	.section-form-wrap.contact .form_wrapper {
	    padding: 0;
	}
	
	.section-form-wrap.contact .form_wrapper input,
	.section-form-wrap.contact .form_wrapper textarea {
	    border: 1px solid #beb6b6;
	    border-radius: 10px;
	}
	
	footer .logoHolder {
		max-width: 231px;
		width: 100%;
	}
	
	footer ul li:first-child {
		margin-top: 0;
	}
	
	footer .app {
		text-align: center;
		margin: 45px 0;
	}
	
	footer .app img {
	    max-width: 100px;
	}
	
	footer img.ataslogo,
	footer img.stripe {
		display: block;
		margin: auto;
	}
	
	footer img.ataslogo {
		margin-bottom: 25px;
	}
	
	#subscriptions .slide_item .table_list .row p {
	    width: 100%;
	}
	
	#subscriptions .all_func .item_row .clm:nth-child(odd) {
		background-color: #efefef;
	}
	
	#subscriptions .all_func .row .clm {
	    height: 30px;
	    padding: 0 5px !important;
	}
	
	#subscriptions .choose-subscription .right {
	    position: relative;
	    margin-top: 50px;
	    width: 100%;
	    padding: 30px 0 15px 0;
	}
	
	#subscriptions .choose-subscription .right:before {
		content: '';
		background-color: #8739f6;
		position: absolute;
		top: 0;
		bottom: 0;
		left: -15px;
		right: -15px;
		z-index: 1;
	}
	
	#subscriptions .sliderMem .owl-carousel {
	    margin-top: 0;
	}
	
	#subscriptions .owl-carousel.owl-drag .owl-item {
	    padding: 5px;
	}
	
	#subscriptions .sliderMem .item {
	    margin: 0 0 15px 0;
	    border-radius: 10px;
	}
	
	#subscriptions .sliderMem .item div {
	    padding: 20px 15px;
	    width: 100% !important;
	    min-height: 190px;
	}
	
	#subscriptions .slide_item {
	    background-color: #fff;
	    border-radius: 15px;
	    padding: 25px 15px;
	}
	
	#subscriptions .slide_item.Premium .item {
		background-image: url('../img/yonda-premium.jpg') !important;
	}
	
	#subscriptions .sliderMem .item h1 {
	    font-size: 18px;
	    width: 100%;
	}
	
	#subscriptions .sliderMem .price {
	    font-size: 14px;
	    margin: 5px 0 10px;
	}
	
	#subscriptions .slide_item .btn {
	    height: 45px;
	    margin: 10px auto;
	}

	#subscriptions .sliderMem p {
	    width: 100%;
	    font-size: 10px;
	    line-height: 1.8;
	}
	#subscriptions .sliderMem .owl-nav {
	    width: 90px;
	    margin: 0 0 0 5px;
	}	
	#subscriptions .owl-carousel .owl-nav button.owl-next,
	#subscriptions .owl-carousel .owl-nav button.owl-prev {
		margin: 0;
	}
	#subscriptions .sliderMem .owl-carousel .owl-dots {
	    margin: 0;
	    width: 182px;
	}	
	
	#subscriptions .all_func .clm {
	    padding: 5px 15px;
	    font-size: 12px;
	    height: 40px;
	    line-height: 1.2;
	}
	
	.post .imageHolder {
	    max-width: 70px;
	    margin-top: 2px;
	}
	
	#locations .owl-nav button.owl-prev {
	    margin-left: -10px;
	    top: 32%;
	}
	
	#locations .owl-nav button.owl-next {
		margin-right: -10px;
	    top: 32%;
	}

	.slider_tree #sliderBook.owl-carousel,
	.slider_tree #sliderBookInsider.owl-carousel {
		margin-left: -20px;
		width: calc(100% + 40px);
	}
	
	.destinations h3 {
	    font-size: 20px;
	    text-align: center;
	    margin-bottom: 13px;
	}
	
	.destinations a.btn:not(#loadMore) {
	    float: none;
	    margin: auto;
	}
	
	#competitionModal .modal-dialog {
	    margin-top: 25px;
	    margin-bottom: 25px;
	}
	
	#competitionModal .modal-dialog .modal-header {
	    padding: 7px 60px 10px 20px;
	}
	
	#competitionModal .modal-dialog .modal-header .close {
	    padding: 20px 20px;
	}
	
	#competitionModal .modal-dialog .modal_box .modal-body h2 {
	    font-size: 20px;
	}
	
	#competitionModal .modal-dialog .modal_box .modal-body {
	    padding: 6vw 6vw;
	}
				
	#competitionModal .modal-dialog .modal_box .modal-body p {
		font-size: 14px;
	}
	
	#blog-page.single .image {
	    margin: 45px 0;
	}
	
	#blog-page.single h1 {
	    margin: 20px auto 45px auto !important;
	    font-size: 25px;
	}
	

	/* Quick Enquiry - Accommodation Page */
	.help_property {
	    width: 260px;
	}
	
	a.quick_enquiry_trigger {
		height: 50px;
		width: 50px;
		margin-left: -50px;
	}
	
	a.quick_enquiry_trigger i {
    	top: 10px;
    	font-size: 16px;
	}

	.help_property a.quick_enquiry_trigger .fa-envelope {
	    left: 17px;
	}
	
	.help_property a.quick_enquiry_trigger .fa-times {
	    left: 20px;
	}
	
	a.quick_enquiry_trigger .text {
	    font-size: 8px;
	    bottom: 8px;
	}
	
	.help_property .btn {
		width: 100%;
	}
	
	.on_page_enquiry {
	    overflow: scroll;
	}
	
	.on_page_enquiry .container {
	    padding: 80px 30px;
	}	

}

@media screen and (max-width: 575px) {
	
	.mainMenuHolder {
	    top: 98px;
	}
		
	form.has-icon::before {
	    width: 40px;
	    height: 40px;
	}
	
	input.see-through {
	    padding: 7px 5px 8px 48px;
	}
	
}