:root {
	--btn-color1: #4a9e9f;
	--btn-color2: #dd5b22;
}




html {
	font-family: 'M PLUS 1', sans-serif;
}
.contents-wrap .contents {
	position: relative;
	padding: 70px 0px 0px 0px;
}

.header {
	position: fixed;
	top: 0px;
	left: 0;
	width: 100vw;
	height: 70px;
	background-color: white;
	display: grid;
	grid-template-columns: 100px auto 100px;
	box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.1), 0px 0px 0px 1px rgba(10,10,10,0.02);
	z-index: 8888;
}
.header .logo img {
	position: relative;
	top: 18px;
	left: 10px;
	width: 100px;
	object-fit: cover;
}
.header .account img {
	position: relative;
	top: 15px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}
.bg-black {
	background-color: black;
}
.search_box {
	position: relative;
	display: grid;
	grid-template-columns: 20% 20% 20% 20% 20%;
	background-color: rgba(238, 238, 238, 1);
	border-radius: 25px;
	margin: 10px 0px;
}
.search_box .form_box {
	padding: 0px 20px;
	
}
#place,#check_in,#check_out,#guest,#keyword,
#place_modal,#check_in_modal,#check_out_modal,#guest_modal,#keyword_modal,
.search_box .form_box input,
.search_box .form_box select
 {
	background-color: rgba(238, 238, 238, 0);
	height: 30px;
	width: 100%;
	padding: 0px;
	border: none;
}
.search_box button {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #454545;
	color: white;
}
.search_box button img {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 20px;
	height: 20px;
	object-fit: cover;
}
.main {
	position: relative;
	padding: 10vh 10vw 5vh 10vw;
}
.main img {
	width: 100%;
	object-fit: cover;
	border-radius: 25px;
}
.main div.top {
	position: absolute;
	top: 15vh;
	left: 0;
	color: white;
	width: 100%;
}
.main div.bottom {
	position: absolute;
	bottom: 15vh;
	left: 0;
	color: white;
	width: 100%;
}

.t-outline-black {
	text-shadow: 1px 1px 0 rgba(50, 50, 50, .3),1px -1px 0 rgba(50, 50, 50, .3),-1px 1px 0 #000,-1px -1px 0 rgba(50, 50, 50, .3);
}

.hosting {
	height: 70vh;
	background-image: url("../img/bg3.png");
	background-size: cover;
}
.hosting .text {
	padding: 20vh 5vw;
}

@media screen and (max-width: 720px) {
	.contents-wrap .contents {
		
	}
	.search_box {
		display: none;
	}
	.main {
		height: 60vh;
		padding: 60px 20px;
	}
	.main img {
		height: 60vh;
	}
	.main div.top {
		position: absolute;
		top: 10vh;
	}
	.main div.bottom {
		position: absolute;
		bottom: 10vh;
	}
	.hosting .dammy {
		display: none;
	}
	.hosting .text {
		padding: 10vh 5vw;
	}
	
	.header {
		grid-template-columns: 60px auto 60px;
	}
	
	.search_modal_button {
		margin: 10px 0px;
		position: relative;
		background-color: rgba(238, 238, 238, 1);
		border-radius: 25px;
	}
	.search_modal_button button {
		position: absolute;
		top: 5px;
		left: 5px;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background-color: #454545;
		color: white;
	}
	.search_modal_button button img {
		position: absolute;
		top: 10px;
		left: 10px;
		width: 20px;
		height: 20px;
		object-fit: cover;
	}
	.search_modal_button span {
		position: absolute;
		top: 15px;
		left: 60px;
	}
	#place_modal,#check_in_modal,#check_out_modal,#guest_modal,#keyword_modal {
		border-bottom: 1px solid rgba(69, 69, 69, 0.5);
	}
	
	#modal_content button.search_btn {
		width: 70%;
		padding: 10px 20px;
		border-radius: 25px;
	}
}

.float_menu_wrap {
	padding: 40px 0px;
	width: 200px;
	background-color: white;
	position: fixed;
	top: 80px;
	right: 20px;
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
	border-radius: 15px;
}
.float_menu_wrap .float_menu li {
	padding: 0px 50px;
	position: relative;
}
.float_menu_wrap .float_menu li:hover {
	
}
.float_menu_wrap .float_menu .border {
	border-bottom: 1px solid rgba(51, 51, 51, .2);
	margin-bottom: 30px;
}
.float_menu_wrap .float_menu .close_btn {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
@media screen and (max-width: 720px) {
	.float_menu_wrap {
		padding: 30px 0px 10px 0px;
	}
}


.camp {
	padding: 10vh 5vw;
}
.camp .img {
	padding: 3%;
}
.camp .img img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 25px;
	box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.1), 0px 0px 0px 1px rgba(10,10,10,0.02);
}
@media screen and (max-width: 720px) {
	.camp {
		padding: 60px 20px;
	}
	.camp .img {
		padding: 0%;
		margin-bottom: 20px;
	}
	.camp .img img {
		height: 260px;
	}
}


.search_result{
	width: 100vw;
	height: calc(100vh - 70px);
	margin: 0;
	padding: 0;
}

#map {
	height: calc(100vh - 70px);
}
.gmap-info-window {
	position: relative;
	font-weight: 600;
	background-color: #fff;
}
.radius {
	border-radius: 25px;
}
.search_result .property {
	padding: 15px 5%;
	height: 250px;
	border-bottom: 1px solid rgba(0,0,0,.2);
}
.search_result .property.is-current {
	background-color: rgba(165, 165, 165, 0.3);
}
.propertys {
	height: calc(100vh - 70px);
	overflow-y: auto;
}

.property.detail {
	padding: 3% 0%;
}
.property .img {
	padding-right: 20px;
}
.property img.img01 {
	width: 100%;
	height: 230px;
	object-fit: cover;
	border-radius: 15px;
}
.property .keyword {
	padding: 5px 10px;
	margin-top: 5px;
	margin-right: 5px;
	background-color: var(--btn-color1);
	color: white;
	border-radius: 15px;
	display: inline-block;
}
.property .star img {
	width: 25px;
	object-fit: cover;
	cursor: pointer;
}
.property .heart {
	position: relative;
	top: -5px;
	
}
.property .heart:before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url("../img/heart.png");
	background-size: cover;
	position: relative;
	top: 5px;
	margin-right: 5px;
}

#crown_modal img {
	width: 25px;
	object-fit: cover;
	position: relative;
	top: 5px;
}

.property .room_btn {
	background-color: var(--btn-color2);
	font-size: 15px;
}
#toggle_map {
	display: none;
}
@media screen and (max-width: 720px) {
	.search_result .property {
		height: 500px;
		position: relative;
	}
	.property .img {
		padding-right: 0px;
	}
	.property img.img01 {
		height: 200px;
		margin-bottom: 20px;
	}
	#ajax_propertys_result {
		
	}
	#map_wrap {
		position:fixed;
		z-index: 999;
		bottom: -100vh;
		left:0;
		width: 100%;
		height: 100vh;
		background:white;
		transition: all 0.6s;
		padding-top: 40px;
		border-top-left-radius: 25px;
		border-top-right-radius: 25px;
		box-shadow: 0px -10px 19px -6px rgba(0,0,0,0.6);
	}
	#map_wrap.active {
		bottom: -30vh;
	}
	#map_wrap #map_wrap_action {
		position: absolute;
		top: 10px;
		left: 0;
		width:100%;
	}
	#map_wrap #map_wrap_action p::before {
		position: absolute;
		top: 5px;
		left: calc(50vw - 4em);
		content: "";
		width: 12px;
		height: 12px;
		border-style: solid;
		border-color: #454545;
		border-width: 3px 0 0 3px;
		transform: rotate(45deg);
	}
	#map_wrap.active #map_wrap_action p::before {
		top: -2px;
		transform: rotate(225deg);
	}

	
}

#account_modal {
	
}
.account .menu {
	padding: 15%;
}

.account img {
	width: 100%;
	object-fit: cover; 
}
@media screen and (max-width: 720px) {
	.account .imgs {
	}
	.account img {
		width: 100%;
	}
}



/*room*/
.images {
	width: 100%;
}
.images .image {
	padding: 5px 5px 0px 0px;
}
.img01 {
	width: 100%;
	height: calc(40vh + 5px);
	object-fit: cover;
}
.img02 {
	width: 100%;
	height: 20vh;
	object-fit: cover;
}
.radius1 {
	border-top-left-radius: 5%;
	border-bottom-left-radius: 5%;
}
.radius2 {
	border-top-right-radius: 5%;
}
.radius3 {
	border-bottom-right-radius: 5%;
}
div.hr {
	height: 1px;
	border-bottom: 1px solid rgba(118, 118, 118, .5);
}
.reserve_panel_wrap {
	padding: 0em 0em 1em 1em;
}
.reserve_panel {
	padding: 2em;
	border-radius: 15px;
	box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.1), 0px 0px 0px 1px rgba(10,10,10,0.02);
	background-color: #FFEED5;
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
}
.mk_account,
.reserve_modal_show_btn,
.reserve_btn,
.message_modal_show,
.message_send,
.reserve_cancel_btn {
	background-color: var(--btn-color1);
	color: white;
	border-radius: 15px;
	width: 100%;
	padding: 15px 20px;
}
.message_send,
.message_modal_show {
	background-color: var(--btn-color2);
}


@media screen and (max-width: 720px) {
	
	.images {
		display: none;
	}
	.reserve_panel_wrap {
		padding: 0em 0em 0em 0em;
	}
	.sp-header {
		position: relative;
	}
	.sp-header .slider .img01 {
		height: 30vh;
	}
	.sp-header .slick-num {
		position: absolute;
		right: 10px;
		bottom: 10px;
		background-color: rgba(69, 69, 69, .5);
		color: white;
		padding: 5px 10px;
		border-radius: 5px;
	}
	#back-btn {
		position: absolute;
		left: 20px;
		top: 20px;
		background-color: white;
		border-radius: 50%;
		height: 40px;
		width: 40px;
		padding: 0px 0px;
	}
	.sp-footer {
		background-color: white;
		
		width: calc(100vw - 40px);
		position: fixed;
		left: 20px;
		bottom: 0px;
	}
}




	
	
	
	.messages {
		
	}
	.messages .message_lists {
		height: calc(100vh - 70px);
		overflow-y: scroll;
	}
	.messages .message_list {
		height: 80px;
		border-bottom: 1px solid rgba(0,0,0,.1);
		padding: 10px 0px;
		overflow-wrap: break-word;
		position: relative;
	}
	.message_text img,
	.message_list img {
		width: 70px;
		height: 70px;
		object-fit: cover;
		border-radius: 50%;
	}
	.message_list p.date {
		position: absolute;
		bottom: 10px;
		right: 10px;
	}
	
	.message {
		border-left: 1px solid rgba(0,0,0,.1);
		height: calc(100vh - 80px);
		position: relative;
	}
	.message_text {
		padding: 10px 0px;
		overflow-wrap: break-word;
		position: relative;
	}
	.message_list.active {
		background-color: rgba(200, 200, 200, 0.1);
	}
	.message_text p.date ,
	.message_list p.date {
		position: absolute;
		top: 25px;
		right: 10px;
	}
	.message .message_ajax_result {
		overflow-y: scroll; 
		height: calc(100vh - 180px - 60px);
/* 		background-color: rgba(0, 0, 255, 0.5); */
	}
	.send_message_box {
		position: absolute;
		bottom: 0px;
		left: 0;
		width: 100%;
		height: 60px;
		text-align: center;
	}
	.send_message_box textarea {
		border: 1px solid #626262;
		width: calc(100% - 120px);
		height: 30px;
		padding: 10px 30px;
		border-radius: 25px;
	}
	.send_message_box img {
		width: 45px;
		height: 45px;
		position: absolute;
		top: 3px;
		right: 35px;
		cursor: pointer;
	}
	.messages .message_header p {
		padding-top: 50px;
	}
	@media screen and (max-width: 720px) {
		
		.messages .message_lists {
		}
		.message {
			height: calc(100vh - 70px);
			border-left: 1px solid rgba(0,0,0,0);
			padding: 0px 20px;
		}
		.message .message_ajax_result {
			height: calc(100vh - 120px - 60px);
		}
		.send_message_box textarea {
			width: calc(100% - 60px);
		}
		.send_message_box img {
			right: 5px;
		}
		.pl-40 {
			padding-left: 0px;
		}
		.messages .message_header {
			position: relative;
			height: 50px;
		}
		.messages .message_header p {
			padding-top: 10px;
		}
		.back_btn {
			position: absolute;
			top: 10px;
			left: 0;
		}
	}
	
	
	.footer {
		padding: 40px 80px;
	}
	@media screen and (max-width: 720px) {
		.footer {
			padding: 40px 20px;
		}
	}