/****************************************************************/
/* Define root variables */
/****************************************************************/
:root {
  --cbx_theme_color_white: #ffffff;
  --cbx_input_border_radius: 8px;
  --cbx_theme_input_fields_background_color: #ffffff;
  --cbx_theme_input_fields_color: inherit;
  --cbx_theme_input_fields_border_color: #cccccc;
  --cbx_theme_input_fields_disabled_background_color: #F6F6F6;
  --cbx_theme_input_fields_disabled_color: #888888;
  
}
/****************************************************************/
/* Define element display property */
/****************************************************************/
.cbx_hide{
	display:none;
}
.cbx_show-block{
	display: block;
}
/* End element display property */
/****************************************************************/
/* Start CBX Reservation Form */
/****************************************************************/
#cbx_reservation-form{
	width: 100%;
}
#cbx_reservation-form .module_subrow.cbx_reservation-form__set > .module_column{
	margin-bottom: 25px;
}
#cbx_reservation-form .module_subrow.cbx_reservation-form__set .cbx_reservation-form__location_custom-input-wrapper {
	margin-top: 25px;
}
#cbx_reservation-form input[type="text"]:focus, #cbx_reservation-form input[type="email"]:focus, #cbx_reservation-form input[type="phone"]:focus, #cbx_reservation-form input[type="url"]:focus, #cbx_reservation-form input[type="password"]:focus, #cbx_reservation-form input[type="search"]:focus, #cbx_reservation-form input[type="number"]:focus, #cbx_reservation-form input[type="tel"]:focus, #cbx_reservation-form input[type="range"]:focus, #cbx_reservation-form input[type="date"]:focus, #cbx_reservation-form input[type="month"]:focus, #cbx_reservation-form input[type="week"]:focus, #cbx_reservation-form input[type="time"]:focus, #cbx_reservation-form input[type="datetime"]:focus, #cbx_reservation-form input[type="datetime-local"]:focus, #cbx_reservation-form input[type="color"]:focus, #cbx_reservation-form textarea:focus, #cbx_reservation-form select:focus, .selectize-control .input-active{
    outline: 0;
    -webkit-box-shadow: inset 0 0 0 0.2rem var(--theme_accent) !important;
    box-shadow: inset 0 0 0 0.2rem var(--theme_accent) !important;
}
/* Default focus styles */
#cbx_reservation-form .timepicker-overlay:focus {
    outline: 0;
}

/* Custom focus styles when clicked or focused */
#cbx_reservation-form .timepicker-overlay.active {
    -webkit-box-shadow: inset 0 0 0 0.2rem var(--theme_accent) !important;
    box-shadow: inset 0 0 0 0.2rem var(--theme_accent) !important;
}
#cbx_reservation-form label{  
	display: block; 
	height: 30px;	 
	font-size:0.85em;
	text-align: left;
	margin: 2px 10px;
	position: absolute;
	font-weight: 600;
}
#cbx_reservation-form input:read-write, #cbx_reservation-form input:read-only {
	margin: 0;
}
#cbx_reservation-form input:not([type="submit"]):not([type="radio"]), #cbx_reservation-form select, .cbx_reservation-form__location-select.selectize-control.single .selectize-input{
	background-clip: padding-box;
	font-weight: normal;
	padding: 20px 10px; 
	height: auto;
	line-height: 26px;
	outline: none !important;
	font-size: 0.9em;
	float: none !important;
	width: 100%;
	max-width: 100%;
	color: inherit; 
	
	-webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	-o-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
body:not(.no-rounded-input) #cbx_reservation-form input[type="text"], body:not(.no-rounded-input) #cbx_reservation-form input[type="email"], body:not(.no-rounded-input) #cbx_reservation-form input[type="phone"], body:not(.no-rounded-input) #cbx_reservation-form select, body:not(.no-rounded-input) .timepicker-overlay{
	border-radius: var(--cbx_input_border_radius);
}
#cbx_reservation-form input:not([type="submit"]):not([type="radio"]), #cbx_reservation-form select, .cbx_reservation-form__location-select.selectize-control.single .selectize-input{
	margin:0;
}
#cbx_reservation-form #cbx_reservation-form__email-input {
    text-transform: lowercase;
}
/* selectize-dropdown*/
.selectize-control .selectize-input {
	box-shadow: 0 1px 0 rgba(0,0,0,.05),inset 0 1px 0 rgba(255,255,255,.8);
	background-image: none !important;
	border-radius: var(--cbx_input_border_radius);
}
.selectize-control .selectize-dropdown{
	top: 68px !important;
}
.selectize-control .selectize-dropdown .selected {
	background-color: var(--theme_accent) !important;
}
/* Radio buttons */
 #cbx_reservation-form .cbx_reservation-form__reservation-type-radio p {
	margin: 0 0 1.0em;
}
#cbx_reservation-form .cbx_reservation-form__reservation-type-radio label {
	position: initial;
}
#cbx_reservation-form .cbx_reservation-form__reservation-type-radio .cbx_form-group{
	margin-left: 5px;
	margin-bottom: 15px;
}
#cbx_reservation-form .cbx_reservation-form__reservation-type-radio .cbx_form-group, #cbx_reservation-form .cbx_reservation-form__reservation-type-radio .cbx_control-text{
	display: inline-block;
}
#cbx_reservation-form label.cbx_radio-inline {
	display: inline-flex;
}
#cbx_reservation-form input[type="radio"]:checked::before {
	background-color: var(--theme_accent) !important;
}
/* Coupon Link */
#cbx_reservation-form .cbx_reservation-form__coupon_code-link-wrapper{
	margin-bottom: 2%;
}
/* Submit buttons */
#cbx_reservation-form .cbx_reservation-form__submit-button-wrapper {
	text-align: right;
}
#cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button {
	min-width: 230px;
	padding-top: 20px;
	padding-bottom: 20px;	
}
/* .cbx_reservation-form-side #cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button {
	width: 80%; 
} 
#cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button > span {
	display: inline-block;
}*/
#cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button > span.cbx_btn-label {
	text-align: center;
}
#cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button > span.cbx_btn-icon {
	margin-left: .5rem;
}

/* Form error */
#cbx_reservation-form label.error {
	position: unset !important;
	font-style: italic;
	color: #ff0000;
	margin: 5px 0 0 0;
	font-weight: normal;
}
/* End Reservation Form Elements */
/****************************************************************/
/* Start UI Datepicker */
/****************************************************************/
.ui-datepicker-trigger {
	margin: 0 0 0 5px;
	vertical-align: text-top;
}
.ui-datepicker {
	width: 40em !important;
	text-align: center;
	margin-top: 2px;
	padding: 0 !important;
	border-color: #edeff1 !important;
	border-radius: 3px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.04), 0 16px 40px 0 rgba(0,0,0,.08);
	z-index: 9999 !important;
}
.openemr-calendar .ui-datepicker {
	width: 191px;
}
.ui-datepicker table {
	table-layout: fixed;
}
.openemr-calendar .ui-datepicker table {
	width: 191px;
	table-layout: fixed;
}
.ui-datepicker-header {
	background-color: var(--theme_accent) !important;
	background-image: none !important; 
	border-radius: 0; 
}
.openemr-calendar .ui-datepicker-header {
	background-color: #e6f7f9 !important;
	border-width: 1px;
	border-color: #c9f0f5;
	border-style: solid;
}
.ui-datepicker-header.ui-corner-all {
	border: none !important;
    border-bottom-right-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}
.ui-datepicker-title {
	line-height: 35px !important;
	margin: 0 10px !important;
}
.openemr-calendar .ui-datepicker-title {
	line-height: 20px !important;
}
.ui-datepicker-prev span {
	display: none !important;
}
.ui-datepicker-next {
	text-align: center;
}
.ui-datepicker-next span { 
	display: none !important;
}
.ui-datepicker-prev {
	background-color: transparent !important;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAMCAYAAACulacQAAAAUklEQVQYlXWPwQnAMAwDj9IBOlpH8CjdJLNksuujFIJjC/w6WUioFBcqJ7sGEAD5Y/hpqLRghRv4YQlUjqXI3Kql2MixraGbEhVcDXcFUR/1egEHNuTBpFW0NgAAAABJRU5ErkJggg==') !important;
	height: 12px !important;
	width: 7px !important;
	margin: 14px 12px;
	display: inline-block;
	left: 0 !important;
	top: 0 !important;
}
.openemr-calendar .ui-datepicker-prev {
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAOCAYAAAD9lDaoAAAAuUlEQVQokXXRsUtCYRAA8J8pDQ1CVIgIgtBU2NDiZIuDS4uLf6WDS1O0tLREEE8icBNKS3lTs8/B78XHw3dwcHA/juOuqjzucYJVrQQMcYctvo4OgEFIeMK6iPphCjzjEWLUC3vACx7yRo5uMUIFr5gii1EL41AvMIkBVPGH04DrSLEsIvjEOZq4wi9+iijDR0ANXOMbmxjlcIY2LtANO6YxymGCDs5wg/ciYv+KBJeY4+2A+Y9j4Y47RtUkrNXeDxUAAAAASUVORK5CYII=') !important;
	height: 14px !important;
	width: 9px !important;
	margin: 5px !important;
}
.ui-datepicker-next {
	cursor: pointer;
}
.ui-datepicker-prev {
	cursor: pointer;
}
.ui-datepicker-next {
	background-color: transparent !important;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAMCAYAAABfnvydAAAAVUlEQVQYlXWQ0Q3AIAhEL07gKI7kKN2kI3Wk1w9to3KQEELucQEECOizhhTQGHFnwOdgobWx0GkZILfYBhXl0STVbPoBarbkL7ozN/F8VBBXh8uJgF5r2hrI4GHUkAAAAABJRU5ErkJggg==') !important;
	height: 12px !important;
	width: 8px !important;
	margin: 14px 12px;
	display: inline-block;
	right: 0 !important;
	top: 0 !important;
}
.openemr-calendar .ui-datepicker-next {
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAOCAYAAAASVl2WAAAAtElEQVQYlXXQsUpCcRQH4I97EQyHa1pgIEE0hBGYL+BjNLRFjxXh4rM4F21BS4S4FAgqQioOngt/RM/6+zi/w4EanlA4MDkecYsO3vG/D8a4Rx03eMMqBQt8oodTXAdalwBm+IpNDVxG3aYEMMU3ujjDBT5SAH9R2cE58mwPFOgneJSCGp7RjLoXTEtQjbCFOV7xCxkqdp9sYxnhpFyb4QFXdh8c4Cc9Ko++OwzjFwfn5FiwBVeuI/K2UCkSAAAAAElFTkSuQmCC') !important;
	height: 14px !important;
	width: 8px !important;
	margin: 5px;
}
.ui-datepicker-month {
	border-radius: 2px;
	width: 110px !important;
	height: 22px;
	color: var(--cbx_theme_color_white);
	font-size: 1em !important;
	font-weight: bold;
	text-align: left;
	border: none !important;
	margin-right: 17px !important;
}
.openemr-calendar .ui-datepicker-month {
	color: rgba(34, 34, 34, 0.87);
	font-size: 12px !important;
	font-weight: 700;
	text-align: center;
	transform: scaleX(1.0029)
}
.ui-datepicker-year {
	border-radius: 2px;
	width: 61px !important;
	height: 22px;
	border: none !important;
	color: var(--cbx_theme_color_white);
	font-size: 1em !important;
	font-weight: bold;
	text-align: left;
}
.openemr-calendar .ui-datepicker-year {
	color: rgba(34, 34, 34, 0.87);
	font-size: 12px !important;
	font-weight: 700;
	text-align: center;
	transform: scaleX(1.0029)
}
.ui-datepicker-month option,
.ui-datepicker-year option {
	color: #3985a0 !important;
	background-color: var(--cbx_theme_color_white) !important;
	font-family: Open Sans !important;
	font-size: 14px !important;
	font-weight: 600;
}
.ui-datepicker-month option[selected],
.ui-datepicker-year option[selected] {
	background-color: #e5edf0 !important;
}
.ui-datepicker .ui-state-hover {
	border: 0 !important;
}
.ui-datepicker td {
	vertical-align: top;
}
.ui-datepicker .ui-state-default {
	border-radius: 50%;
	background: transparent !important; 
	width: 30px;
	height: 30px;
	padding: 0 !important;
	text-align: center !important;
	color: var(--theme_accent);
	font-size: 1em;
	font-weight: 400 !important;
	margin: 7px 0 0 4px;
	justify-content: center;
	position: relative;
	display: flex;
	align-items: center;
	border: 2px solid transparent !important;
}
.ui-datepicker .ui-state-default.ui-state-highlight{
	background-color: transparent !important;
	border: 2px solid var(--theme_accent) !important;
}
.openemr-calendar .ui-state-default {
	font-size: 10px;
	margin: 0;
}
.ui-datepicker td {
	width: 33px;
}
.openemr-calendar .ui-datepicker td {
	width: 26px;
}
.openemr-calendar .ui-state-default {
	width: 26px;
	height: 20px;
	line-height: 20px;
}
.ui-state-default.ui-state-hover {
	border: 2px solid var(--theme_accent) !important;
	background-color: transparent !important;
	color: var(--theme_accent) !important;
}
.ui-datepicker .ui-state-active, .ui-datepicker .ui-state-default.ui-state-highlight.ui-state-active {
	background-color: var(--theme_accent) !important;
	color: var(--cbx_theme_color_white) !important;
} 
.ui-datepicker-calendar thead tr th {
	color: rgb(148, 148, 148);
	font-size: 1em;
	font-weight: bold;
	padding: 0.45em 0.3em !important;
}
.openemr-calendar .ui-datepicker-calendar thead tr th {
	font-size: 10px;
}
.ui-datepicker-close {
	display: none;
}
.ui-datepicker thead {
	background-color: transparent;
	border-bottom: 0.0625rem solid #eee;
}
.openemr-calendar .ui-datepicker thead {
	background: none;
}
.ui-state-default.ui-datepicker-current {
	float: none !important;
	color: var(--cbx_theme_color_white);
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	border-width: 0 !important;
	border: none;
	vertical-align: top;
	margin: 0 !important;
	background-color: transparent !important;
}
.ui-datepicker-buttonpane.ui-widget-content {
	text-align: center;
	background-color: #3e9aba;
	margin: 0 !important;
	height: 28px;
	padding: 0 !important; 
}
.openemr-calendar .ui-datepicker-year {
	background-color: transparent;
}
.openemr-calendar .ui-datepicker-month {
	background-color: transparent;
}
.openemr-calendar .ui-state-default {
	border: 0 !important;
}
.openemr-calendar .ui-datepicker-month {
	margin-right: 10px !important;
}
/* End Datepiker */
/* Start timepicker */
#cbx_reservation-form .timepicker-wrapper {
    position: inherit;
    display: inline-block;
    width: 100%;
}
#cbx_reservation-form .timepicker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: default;
    background-color: transparent; /* Transparent overlay */
}
/* Ensure the timepicker wrapper matches the input's width */
.ui-timepicker-wrapper {
	max-height: 250px;
    min-width: unset !important; /* Remove any default minimum width */
    width: auto; /* Default behavior */
    box-sizing: border-box; /* Include padding and border in the width */
	background: var(--cbx_theme_input_fields_background_color);
	border: 1px solid var(--cbx_theme_input_fields_border_color);
}
.ui-timepicker-wrapper .ui-timepicker-list li {
	padding-left: 10px;
}
 .ui-timepicker-wrapper .ui-timepicker-list li {
	color: var(--cbx_theme_input_fields_color);
}
.ui-timepicker-wrapper li.ui-timepicker-selected, .ui-timepicker-wrapper .ui-timepicker-list li:hover, .ui-timepicker-wrapper .ui-timepicker-list .ui-timepicker-selected:hover {
	background: var(--theme_accent);
	color: var(--cbx_theme_color_white);
}
.ui-timepicker-wrapper li.ui-timepicker-disabled, .ui-timepicker-wrapper li.ui-timepicker-selected.ui-timepicker-disabled:hover, .ui-timepicker-wrapper li.ui-timepicker-disabled:hover {
	background: var(--cbx_theme_input_fields_disabled_background_color) !important;
	color: var(--cbx_theme_input_fields_disabled_color) !important;
	cursor: not-allowed !important;
}
.ui-timepicker-wrapper li.ui-timepicker-disabled.closed-tagged span{
	padding-left:5px;
}
/* End timepicker */
/* End CBX Reservation Form */
/****************************************************************/
/* Mobile CSS */
/****************************************************************/
@media screen and (min-width: 680px){
	/* Reservation Form */
	/* .cbx_reservation-form__pickup-location select, .cbx_reservation-form__pick-up-date input, #cbx_reservation-form__pick_up_location_custom, .cbx_reservation-form__pick-up-location-select .selectize-input{
		border-top-right-radius: 0 !important;
		border-bottom-right-radius: 0 !important;
	}	 */
	
	
	body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .first select, body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .first input, body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .first .selectize-input{
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}
	
	/* .cbx_reservation-form__return-location select, .cbx_reservation-form__return-time select, #cbx_reservation-form__return-time-input, #cbx_reservation-form__return_location_custom, .cbx_reservation-form__return-location-select .selectize-input, .cbx_reservation-form__return-time .timepicker-overlay{
		border-top-left-radius: 0 !important;
		border-bottom-left-radius: 0 !important;
	} */
	
	body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .last select, body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .last input, body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .last .selectize-input, body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .last .timepicker-overlay{
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}
	
	/* #cbx_reservation-form__pick-up-time-input, #cbx_reservation-form__return-date-input, .cbx_reservation-form__pick-up-time select, .cbx_reservation-form__pick-up-time .timepicker-overlay{
		border-radius: 0 !important;
	}  */
	
	body:not(.no-rounded-input) #cbx_reservation-form #cbx_reservation-form__pick-up-time-input, body:not(.no-rounded-input) #cbx_reservation-form #cbx_reservation-form__return-date-input, body:not(.no-rounded-input) #cbx_reservation-form .cbx_reservation-form__pick-up-time select, body:not(.no-rounded-input) #cbx_reservation-form .cbx_reservation-form__pick-up-time .timepicker-overlay{
		border-radius: 0;
	} 
	
	/* Modify Link */
	#cbx_reservation-form .cbx_reservation-form__view-modify-link {
		text-align: left;
	}
}
@media screen and (max-width: 1280px) {
	/* Reservation Button */
	/* #cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button {
		min-width: 180px;
	} */
	.cbx_reservation-form-side #cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button {
		min-width: 180px;
	}
}
@media screen and (max-width: 992px) {
	/* Reservation Button */
	/*#cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button {
		 width: 65%; 
	}*/
	.cbx_reservation-form-side #cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button {
		min-width: 75px;
	}
}
@media screen and (max-width: 768px) {
	/* Error Messages */
	#cbx_reservation-form label.error{
		height: auto;
	}
	/* #cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button {
		 width: 70%; 
	}*/
}
@media screen and (max-width: 680px){
	/* Reservation Form */
	/* Mobile devices columns */
	#cbx_reservation-form .module_subrow {
		--area:var(--aream2_auto);
	}
	#cbx_reservation-form .cbx_reservation-form__set .module_subrow.cbx_col_count_2, #cbx_reservation-form .cbx_reservation-form__set.cbx_reservation-form__pick-up-return-location  {
		--area:"col1 col2"
	}
	#cbx_reservation-form .module_subrow.cbx_reservation-form__set.cbx_reservation-form__link-button > .module_column, #cbx_reservation-form .module_subrow.cbx_reservation-form__reservation-type > .module_column.last {
		margin-bottom: 0px;
	}
	/* Inputs and selects*/
	body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .last select, body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .last input, body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .last .timepicker-overlay{
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}
	body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .first select, body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .first input, #cbx_reservation-form__return-date-input, #cbx_reservation-form__pick-up-date-input, .cbx_reservation-form__pick-up-location-select{
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	} 
	/* Modify Link and form__submit Button */
	#cbx_reservation-form .cbx_reservation-form__view-modify-link, #cbx_reservation-form .cbx_reservation-form__reservation-type-radio, #cbx_reservation-form .cbx_reservation-form__submit-button-wrapper {
	  text-align: center;
	}
	#cbx_reservation-form .cbx_reservation-form__submit-button-wrapper {
		margin-top: 3%;
	}
	/* Reservation Button 
	#cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button {
		width: 70%;
	}*/
	.cbx_reservation-form-side #cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button {
		min-width: 230px;
	}
	/* Datepicker */
	.ui-datepicker {
		width: 20em !important;
	}
}
@media screen and (max-width: 380px){
	body:not(.no-rounded-input) #cbx_reservation-form .cbx_col_count_2 .cbx_reservation-form__location_custom-input-wrapper input, body:not(.no-rounded-input) .cbx_reservation-form__set.cbx_reservation-form__pick-up-return-location select{
		border-radius: var(--cbx_input_border_radius) !important;	
	}
	/* Reservation Form */
	#cbx_reservation-form .cbx_reservation-form__set.cbx_reservation-form__pick-up-return-location  {
		--area:var(--aream2_auto);
	}
	/* Datepicker */
	.ui-datepicker {
		width: 17em !important;
	}
	/* Reservation Button */
	#cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button, .cbx_reservation-form-side #cbx_reservation-form .cbx_reservation-form__submit-button-wrapper button.cbx_reservation-form__submit-button {
		width: 100%;
	}	 
}
/* End Mobile CSS*/