.listingrooms
{
	padding: 4rem 10px;
}

.roomdiv
{
	margin-top: 1rem;
	display: grid;
	grid-gap: 16px;
	grid-template-columns: repeat(3, 1fr);
	border-radius: 10px 10px 0px 0px;
	


}

.roomitem
{
	
	overflow: hidden;
	box-shadow: 0px 0px  10px lightgrey;
	border-radius: 10px;
	& .roomimage
	{
		border-radius: 10px 10px 0px 0px;
		width: 100%;
		height: 100%;
		transition: transform 0.5s ease-in;

		
	}

	&:hover
	{
		box-shadow: 0px 0px 15px grey;
		& .roomimage
		{
			transform: scale(1.1);
		}
	}
}

.roomimagebanner
{
	height: 500px;
}

.roomimagediv
{
	overflow: hidden;
	height: 250px;
}



.toleft
{
	margin-left: auto;
}

.extrainfo
{
	display: flex;
	gap:10px;
	padding: 16px;
}

.roomfeature
{
	background: var(--color3);
	width: 100%;
	display: inline-flex;
	gap:15px;
	padding: 5px 25px 5px 10px;
	overflow-x: scroll;
	justify-content: flex-start;
	cursor: pointer;
}

.ftitem
{
	padding-left: 5px;
	
}

.bookingdiv
{
	padding: 10px 10px 25px;
	display: grid;
	grid-gap: 10px;
	width: 100%;
	grid-template-columns: repeat(2, 1fr);


	& .dbook
	{
		text-decoration: none;
		background: var(--blue);
		font-size: smaller;
		padding: 8px 16px;
		font-family: jost-bold;
		color:white;
		text-align: center;
		
		border-radius: 5px;

		&:hover
		{
			background:var(--bg1) ;
		}
	}

	& .bbook
	{
		text-decoration: none;
		font-size: smaller;
		background: var(--white);
		padding: 8px 16px;
		font-family: jost-bold;
		color:var(--blue);
		text-align: center;
		outline: 2px solid var(--blue);
		border-radius: 5px;

		&:hover
		{
			
			color:var(--dark2) ;
		}
	}
}

.roomfeatures
{
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(6, 1fr);
	padding: 16px;
}

.rfitem
{
	outline: 1px solid var(--grey);
	color:var(--grey);
	text-align: center;
	padding: 10px;
	border-radius: 10px;
	cursor: pointer;
	font-family: jost-bold;
	&:hover
	{
		background: var(--blue);
		color:white !important;
	}
}

.extrainfodiv
{
	font-family: jost;
	color:var(--dark2);
	& h1,h2,h3,h4,h5,h6,strong
	{
		font-family: jost-bold;
		color:var(--grey);
	}
}

.spaycontainer
{
	border: none;
	background: var(--bg1);
	color:var(--dark2);
	padding: 1rem 1rem;
	min-width: 300px;
	border-radius: 10px;

	& button
	{
		background: var(--blue);
		color:white;
		border:none;
		padding: 10px 16px;
		border-radius: 10px;
		width: 100%;

		&:hover
		{
			background: var(--bg);
		}
	}
}


.career
{
	padding: 4rem 10px;

	& .input
	{
		display: grid;

		grid-gap: 10px;
		grid-template-columns: auto auto;
		margin-top: 16px;

		& input
		{
			border-radius: 5px;
			border:none;
			padding: 8px 10px;
			outline: 1px solid var(--lightgrey);
			&:focus
			{
				outline: 1px solid var(--grey);
			}
		}
	}

	& .input1
	{
		display: grid;

		grid-gap: 10px;
		grid-template-columns: auto;
		margin-top: 16px;

		& input,textarea
		{
			border-radius: 5px;
			border:none;
			padding: 8px 10px;
			outline: 1px solid var(--lightgrey);
			&:focus
			{
				outline: 1px solid var(--grey);
			}
		}
	}

	.jbtn
	{
		background: var(--blue);
		color: white;
		width: 250px;
		padding: 8px 16px;
		border:none;
		border-radius: 5px;
		&:hover
		{
			background: var(--lightblue);
		}
	}
}




@media only screen and (max-width: 750px)
{
	.roomdiv
	{
		grid-template-columns: auto;
	}

	.roomfeatures
	{
		grid-template-columns: repeat(3, 1fr);
	}

	.career
	{
		& .input
		{
			grid-template-columns: auto;
		}
	}
}

@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

[loader]
{
	pointer-events: none;
	background: grey !important;
	&::before
	{
		display: inline-block;
		font-family: "IcoFont";

		content: "\eac2";
		padding-right:5px;
		animation: spinner 1s infinite ease-in-out;
	}
}

@keyframes spinner {
  0% { transform: translate(0,-10px); }
  100% { transform: translate(0,14px);}
}