/*==== RES AVENUE BOOKING COMMON =====*/

.rb-wrapper {
	width: 100%;
	margin: 20px 0;
	font-family: 'Arial', sans-serif;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.rb-main-container {
	width: 100%;
	padding: 0 5px;
	background-color: #fff;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


.rb-container {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.rb-row {
	margin-left: -10px;
	margin-right: -10px;
	display: table;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.rb-row::after {
	display: table;
	content: " ";
	clear: both;
}

.rb-row::before {
	display: table;
	content: " ";
}

.rb-left-parent,
.rb-right-parent {
	display: table-cell;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.rb-col {
	float: left;
	padding-left: 5px;
	padding-right: 5px;
	margin-bottom: 10px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*====INPUT-SELECT STYLING====*/

.rb-col input,
.rb-col select {
	width: 100%;
	background-color: #fff;
	height: 40px;
	border: 1px solid #000;
	color: #000;
	padding: 0 10px;
	outline: 0;
	box-shadow: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.rb-col.submit button {
	background-color: #c9a263;
	border: 1px solid #c9a263;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	cursor: pointer;
	height: 40px;
	width: 100%;
	outline: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.rb-col.submit button:hover,
.rb-col.submit button:focus {
	background-color: #D4AD6F;
	border: 1px solid #D4AD6F;
	color: #fff;
}


.rb-col input.calender {
	background-image: url('../img/calendar.png');
	background-repeat: no-repeat;
	background-position: center right 8px;
	padding-right: 30px;
}

.rb-col select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url('../img/downarrow.png');
	background-repeat: no-repeat;
	background-position: center right 8px;
	padding-right: 30px;
	line-height: 36px;
}

.rb-col select::-ms-expand {
	display: none;
}

.rb-col input:hover,
.rb-col input:focus,
.rb-col input:active,
.rb-col select:hover,
.rb-col select:focus,
.rb-col select:active,
.rb-col input::placeholder {
	color: #000;
}

.rb-col input:-ms-input-placeholder {
	color: #000;
}

.rb-col input::-ms-input-placeholder {
	color: #000;
}

.rb-col.error-required input,
.rb-col.error-required select {
	border: 1px solid red !important;
}


/*====COLOUMS WIDTH ADJUSTMENTS====*/

.rb-col.prop,
.rb-col.datefrm,
.rb-col.dateto {
	max-width: 33.33%;
	width: 100%;
}

.rb-col.room {
	max-width: 100px;
	width: 100%;
}

.rb-col.adult,
.rb-col.child,
.rb-col.cupcode {
	max-width: 90px;
	width: 100%;
}

.rb-col.submit {
	max-width: 120px;
	width: 100%;
}

/*==VERTICAL FORM==*/

.rb-wrapper.vertical .rb-row,
.rb-wrapper.vertical .rb-left-parent,
.rb-wrapper.vertical .rb-right-parent {
	display: block;
}


.rb-wrapper.vertical .rb-col.prop,
.rb-wrapper.vertical .rb-col.datefrm,
.rb-wrapper.vertical .rb-col.dateto,
.rb-wrapper.vertical .rb-col.cupcode,
.rb-wrapper.vertical .rb-col.submit {
	max-width: 100%;
}

.rb-wrapper.vertical .rb-col.room,
.rb-wrapper.vertical .rb-col.adult,
.rb-wrapper.vertical .rb-col.child {
	max-width: 33.33333333333333%;
}

/* =========================================
  START:: Intigration Page with Dayuse Switch
  ===========================================*/
  .resv_main_wraper .dayuseSwitchWrap {
	font-size: 0;
	position: absolute;
	left: 0;
	top: -37px;
  }
  
  .dayuseSwitchWrap .dayuseSwitcher {
	width: 188px;
	height: 32px;
	display: inline-block;
	position: relative;
	margin: 0;
  }
  .dayuseSwitchWrap .dayuseSwitcher .overnightTxt {
	color: #fff;
	padding-left: 13px;
	line-height: 22px;
	font-size: 13px;
	position: absolute;
	left: 12px;
	top: 4px;
	z-index: 10;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
  }
  .dayuseSwitchWrap .dayuseSwitcher .overnightTxt svg {
	width: 10px;
	position: absolute;
	left: 0;
	top: 2px;
  }
  .dayuseSwitchWrap .dayuseSwitcher .dayuseTxt {
	padding-right: 20px;
	line-height: 22px;
	font-size: 13px;
	position: absolute;
	right: 11px;
	top: 4px;
	z-index: 10;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
  }
  .dayuseSwitchWrap .dayuseSwitcher .dayuseTxt svg {
	width: 15px;
	position: absolute;
	right: 0;
	top: 1px;
  }
  
  .dayuseSwitchWrap .dayuseSwitcher input#daySwitch {
	opacity: 0;
	width: 0;
	height: 0;
  }
  .rb-container.dayuse .dayuseSwitchWrap .dayuseSwitcher .dayuseTxt {color: #fff;}
  .rb-container.dayuse .dayuseSwitchWrap .dayuseSwitcher .overnightTxt {color: #000;}
  
  .dayuseSwitchWrap .switchToggle {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: .4s;
	background: #fff;
	border: 1px solid #bebdbd;
	border-radius: 34px;
	cursor: pointer;
  }
  .dayuseSwitchWrap .switchToggle::before {
	content: "";
	height: 22px;
	width: 88px;
	border-radius: 34px;
	background: #272727;
	display: inline-block;
	position: absolute;
	top: 4px;
	left: 4px;
	transition: 0.4s;
	cursor: pointer;
  }
  .dayuseSwitchWrap .dayuseSwitcher input#daySwitch:checked + .switchToggle::before { left: 94px;}
  
  .resv_main_wraper.dayuse .resv_form_wrap #colsCheckOut.resv-col { display: none;}
  
  @media (min-width:992px) {
	.resv_main_wraper.dayuse #colsProp.resv-col {width: 50%;}
	.resv_main_wraper.dayuse .resv_form_wrap #colsCheckIn.resv-col { width: 50%;}
  }
  /* =======================================
  END:: Intigration Page with Dayuse Switch
  ========================================*/

/******************************************/
/***** Mandatory to add below styles ******/
/******************************************/

@media (max-width:1199px) {
	.resv_form_wrap .resv-col {
		padding-left: 15px;
		padding-right: 15px;
	}
	.resv_form_wrap .resv-col .resv_input_outer select,
	.resv_form_wrap .resv-col .resv_input_outer input[type="text"] {
		font-size: 14px;
	}
}

@media (max-width:991px) {
	.resv_form_wrap { padding: 75px 20px 20px;}
	.resv_main_wraper .resv-title {width: 100%;}
	.resv_main_wraper .resv-title h2 {font-size: 24px;}
	.resv_main_wraper .resv-title h2 br {display: none;}
	.resv_main_wraper .resv-title h2 svg {display: none;}
	.resv_form_wrap .resv-col {
		width: 100% !important;
		margin-bottom: 15px;
		padding-left: 0;
		padding-right: 0;
		border-bottom: 1px solid transparent;
    	border-left: 0;
	}
	.resv_form_wrap .resv-col:first-child {border-bottom: 1px solid transparent;}
	.resv_form_wrap .resv_input_outer:after {bottom: auto;}
	
	.resv_form_wrap .resv-col .title_label {font-size: 13px;}
	.resv_form_wrap .resv-col .resv_input_outer select {font-size: 18px;}
	.resv_form_wrap .resv-col .resv_input_outer input[type="text"] {font-size: 18px;}
	
	.resv_form_wrap .resv-btn-col {
		width: 100%;
		position: relative;
		clear: both;
		overflow: hidden;
	}
	.resv_form_wrap .resv-btn-col button {
		font-size: 18px;
		padding: 15px 20px;
		border-radius: 5px;
	}
}

.resv_input_outer svg { position: absolute; top: 9px; right: 0px; font-size: 16px; z-index: 3; }
  
  
