html, body {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #F4F3EF;
}

body {
	color: #333;
	margin: 0;
	box-sizing: border-box;
	font-family: Montserrat;
}

a {
	color: #5FB3D5;
	text-decoration: none;
}
.blue-font{
	color: #5FB3D5;
}
.pink-font{
	color: #ED4368;
}
a:hover{
	text-decoration: underline;
}


label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	box-sizing: border-box;
	border: 1px solid #D0CFCB;
}

input:disabled {
	color: #ccc;
}
input:focus, button:focus{
	outline:none;
}

button{
	border: none;
	border-bottom:1px solid white;
	border-radius:0;
	color: black;
	background-color:white;
	cursor: pointer;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}


.card{
	background-color: white;
	/*border-radius: 12px;*/
	padding: 30px 30px 25px;
	margin-bottom:10px;
}	
.datepicker,.autocomplete{
	width: 100%;
}
.datepicker{
	margin: 0 5px 0 0 !important;
}
@media (max-width: 480px) { 
	.card{padding:20px}
}

.properties.showPrices .grid .day .price{
	display: block;
}
::-webkit-scrollbar {
  width: 14px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
	border-radius: 10px;
	border: 2px solid #f1f1f1;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}