@charset "UTF-8";

@-ms-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}

*:focus {
	outline: none;
}


main {
	font-size: 16px;
}

.stuff {
	padding-top: 60px;
}

/* basic css */


label,
p .labelp123 {
	padding-left: 50px;
	padding: 10px;
}

#check-awesome {
	position: relative;
}

/* checkbox css */
label {
	cursor: pointer;
}

label span {
	display: block;
	position: absolute;
	left: 0;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

label .circle {
	background: #FFF;
	left: -30px;
	top: -30px;
	height: 80px;
	width: 80px;
	z-index: -1;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

label .box {
	border: 2px solid #000;
	height: 20px;
	width: 20px;
	z-index: 888;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

label .check {
	top: -7px;
	left: 6px;
	width: 12px;
	height: 24px;
	border: 2px solid #0f9d58;
	border-top: none;
	border-left: none;
	opacity: 0;
	z-index: 888;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

/* handling click events */

/* when checkbox is checked */
label .circle {
	-webkit-animation: growCircle 0.3s ease;
	-moz-animation: growCircle 0.3s ease;
	animation: growCircle 0.3s ease;
}

input[type=checkbox]:checked~label .box {
	opacity: 0;
	-webkit-transform: scale(0) rotate(-180deg);
	-moz-transform: scale(0) rotate(-180deg);
	transform: scale(0) rotate(-180deg);
}

input[type=checkbox]:checked~label .check {
	opacity: 1;
	-webkit-transform: scale(1) rotate(45deg);
	-moz-transform: scale(1) rotate(45deg);
	transform: scale(1) rotate(45deg);
}

/* bubble animation */

@-webkit-keyframes growCircle {

	0%,
	100% {
		-webkit-transform: scale(0);
	}

	70% {
		background: #DDD;
		-webkit-transform: scale(1.25);
	}
}

@-moz-keyframes growCircle {

	0%,
	100% {
		-moz-transform: scale(0);
	}

	70% {
		background: #DDD;
		-moz-transform: scale(1.25);
	}
}

@keyframes growCircle {

	0%,
	100% {
		transform: scale(0);
	}

	70% {
		background: #DDD;
		transform: scale(1.25);
	}
}





article,
aside,
details,
figcaption,
figure,
footer,
hgroup,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden] {
	display: none;
}

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	height: 100%;
}

body {
	margin: 0;
	height: 100%;
	width: 100%;
}

h1 {
	font-size: 2em;
	font-weight: 300;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 1em;
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

q {
	quotes: "\201C""\201D""\2018""\2019";
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

fieldset {
	border: 1px solid silver;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

button,
input,
select {
	font-family: inherit;
	font-size: 100%;
	margin: 0;
}

button,
input {
	line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
input[disabled] {
	cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
	border: 1px solid #D1D2D4;

}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

ul,
ol {
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
	margin: 0;
}

a {
	text-decoration: none;
}

body,
html {
	width: 100%;
	min-width: 20em;
}

h1 {
	font-size: 1.875em;
	line-height: 1.2em;
	margin-bottom: 0.4em;
}

h2 {
	font-weight: 300;
	font-size: 1.5em;
	line-height: 1.25em;
	margin-bottom: 0.5em;
}

.block {
	position: relative;
	margin: 0 auto;
	padding: 1.5em 1.25em;
	max-width: 60em;
}


.main {
	background: #FFFFFF;
	color: #39464E;
}

.main .block {
	padding: 0px;
	padding-top: .0em;
}




/* input elements */
.btnBox {
	padding-top: 5px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

.btnSubmit {
	width: 130px;
	margin-left: 5px;
	margin-right: 5px;
	height: 42px;
	line-height: 38px;
	text-decoration: none;
	font-weight: 300;
	vertical-align: middle;
	cursor: pointer;
	-webkit-border-radius: 2;
	-moz-border-radius: 2;
	border-radius: 2px;
	color: #FFFFFF;
	border: 0px;
	background-color: #2874B6;
	font-size: 90%;
}

.btnSubmit:hover {
	opacity: 0.7;
}


.form {
	padding: 0 16px;
	max-width: 550px;
	margin: 50px auto;
	font-size: 18px;
	font-weight: 600;
	line-height: 36px;
}

body {
	background-color: #D1D7DC;
	font-family: 'Fira Sans', sans-serif;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

code {
	background-color: #9AA3AC;
	padding: 0 8px;
}


label .circle {
	animation: growCircle 0.3s ease;
}

@keyframes growCircle {

	0%,
	100% {
		transform: scale(0);
	}

	70% {
		background: #DDD;
		transform: scale(1.25);
	}
}




.radio-toolbar input[type="radio"]:checked~* {
	background: pink !important;
}

.radio-toolbar input[type="radio"] {
	display: auto;
}

.service-radio {
	appearance: auto;
	background-color: initial;
	cursor: default;
	box-sizing: border-box;
	margin: 3px 3px 0px 5px;
	padding: initial;
	border: initial;
}

/*

input{
	-webkit-appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;		
	border-radius: 0;
	font-size:1.1em;
}

*/
input:focus {
	outline: none;
}

input[type='text'],
input[type='email'],
input[type='tel'] {
	width: 240px;
	height: 35px;
	display: block;
	font-size: 1.1em;
	font-weight: 300;
	margin-bottom: 8px;
	margin-right: auto;
	margin-left: auto;
	outline: none;
	border: 1px solid #D1D2D4;
	padding-left: 4px;
}

.flex-column {
    flex-direction: column!important;
}
.d-flex {
    display: flex!important;
}
.f-0 {
    flex: 0 0 auto;
}
.f-1 {
    flex: 1 1 auto;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

	select,
	input {
		font-size: 16px;
	}
}


/* service panels */
.servicePanel {
	width: 100%;    
	height: 100%!important;
	margin-left: auto;
	margin-right: auto;
	display:none;
}

.servicePanel.active{
	display: block!important;
}

.page-body{
	height: calc(100vh - 92px);
    padding: 12px 0;
	overflow: scroll;
	
    overflow-x: hidden;
    overflow-y: auto;

}
footer {
	border-top: 1px solid #dee2e6!important;
	height: 52px;
	overflow: hidden;
	text-align: center;
	padding: 10px;
}

footer .btn{
	border-radius: 20px;
	padding: 5px 20px;
	line-height: 20px;
	text-transform: uppercase;
    font-weight: 700;
	width: 200px;
}

.page-nav {
	border-bottom: 1px solid #dee2e6!important;
	height: 40px;
	overflow: hidden;
}

.page-nav-left,
.page-nav-right {
    position: fixed;
	top: 2px;
}
.page-nav-left a,
.page-nav-right a
{
	font-size: 14px;
}

.page-nav h2 {
	width:100%;
	text-align: center;
	padding: 0.5rem 1rem;
	font-size: 14px;
	font-weight: 900!important;
}


.left-panel{
	-webkit-order: 0;
    order: 0;
}
.right-panel{
    padding-top: 8px;
    background: #f8f8f8;
    -webkit-order: 1;
    order: 1;
	height: 100% !important;
}

#use-my-location{
	padding: 0;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	color: #39464E;
	margin-bottom: 20px;
}
#address-input{
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
	margin-right:10px;
	padding-left: 10px;
	font-size: 14px;
}
#address-input::placeholder {
    font-size: 12px;
}
#btnSearchAddress {
	border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
	height: 28px;
	font-size: 12px;
}

.select-store{
	border-radius: 1rem;
    font-size: 11px;
    float: right;
    text-transform: uppercase;
	white-space: nowrap;
	position: relative;
    top: 50%;
    transform: translateY(-50%);
	height: 30px;
}

.hiddenTitle{
	display: none;
}

/* available service slots */
#panel_date .btnBox {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#availableServiceSlots {
	overflow: auto;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10px;
	text-align: center;
}
.ui-widget.ui-widget-content{
	width: 100%;
    border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px

}
.calendar .ui-datepicker .ui-datepicker-prev{
	right:22px;
	left: unset;
}
.ui-widget-header{
	background: none;
    border: none
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next{
	width: 20px;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span{
	background-image: none;
    text-indent: 0;
    font-size: 16px;
    line-height: 16px;
}
.calendar .ui-datepicker .ui-datepicker-title {
    text-transform: uppercase;
    margin: 0 0 0 10px;
    line-height: 1.8em;
    text-align: left;
    text-decoration: underline;
    font-size: 0.8em;
}

.ui-datepicker tbody td{
	height:44px;
	text-align: center;
}

.ui-datepicker td span, .ui-datepicker td a{
	border: none;
    background: none;
    color: black;
    text-align: center;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: none;
    background: none;
	color: black;
	border-radius: 50%;
    width: 38px;
    display: inline-block;
    height: 38px;
    margin: 0 auto;
    line-height: 32px;
}
.ui-state-disabled span,
a.ui-state-default
{
	position: relative;
}
.ui-state-disabled span::after,
a.ui-state-default::after
{
	position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -3px;
    margin-top: 8px;
    content: " ";
    background-color: #929292;
    height: 6px;
    width: 6px;
    border-radius: 50%;
}

a.ui-state-default::after{
	background-color:#5CD83E
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	background-color:#0071E3 !important;
	color:white;
}
a.ui-state-active::after{
	display: none;
}

.serviceSlot {
	display: inline-block;
	margin-right: 7px;
	margin-bottom: 7px;
	height: 70px;
	width: 75px;
	/*border:1px solid #6D7173;	*/
	border: 1px solid #000000;
	cursor: pointer;
	white-space: nowrap;
	text-align: center;
}

.serviceSlotDisabled {
	display: inline-block;
	margin-right: 7px;
	margin-bottom: 7px;
	height: 70px;
	width: 75px;
	/*border:1px solid #6D7173;	*/
	border: 1px solid #000000;
	cursor: pointer;
	white-space: nowrap;
	text-align: center;
	cursor: no-drop;
	opacity: 50%;
}

.serviceSlotMonth {
	font-size: 14px;
	color: #000000;
}

.serviceSlotDay {
	font-size: 30px;
	line-height: 32px;
	color: #000000;
}

.serviceSlotHour {
	padding-top: 1px;
	font-size: 10px;
	/*color:#6D7173;*/
	color: #000000;
	font-style: italic;
}

.serviceSlotSel {
	color: #82B649;
}

/* service packages */
#secondaryServices{
	display: none;
}
.servicePackage {
	margin-top: 15px;
	position: relative;
}
.servicePackage input{
	position: absolute;
    top: 3px;
    left: 0;
}
.servicePackageLabel {
	padding: 0 40px 0 30px;
    font-size: 15px;
    font-weight: 600;
}

.servicePackageLabel i{
	float:right;
	line-height: 20px;
}
.servicePackagePrice {
	padding: 0 40px 0 30px;
    font-size: 14px;
    color: #979797;
}


.servicePackageDescription {
	color: #9f9f9f;
    margin: 15px 0 0 0;
    font-size: 13px;
	display: none;
}



.noSlotsMsg {
	border: 1px dotted #6D7173;
	padding: 10px;
}



.serviceSlotSel{
	color: #80B641;
}
.btnSubmit{
	color: #FFFFFF;
	background-color: #2874B6;
}	

#panel_address .input-group>.form-control {
	height: 28px;
}

#stores-div .store-location {
	padding: 10px;
	border-top: 1px solid rgba(7, 6, 6, 0.85);
}
#stores-div .store-location:last-child{
	border-bottom: 1px solid rgba(7, 6, 6, 0.85);
}
.select-store-item {
	width: 100%;
    padding: 0 120px 0 15px;
    float: left;
	position: relative;
}
.select-store-item .store-icon{
	position: absolute;
	top: 3px;
}
.select-store-item .btn-wrapper{
	position: absolute;
    top: 0px;
    right: 15px;
    height: 100%;
}
.select-store-item .select-store-item-inner{
	padding-left: 20px;
	font-weight: 400;
	font-size: 12px;
}
.select-store-item .select-store-item-inner .shop-name{
	font-weight: 700;
	font-size: 16px;
}


.panel-sticky{
	position: sticky;
    top: 0;
}
.right-panel #booking-summary{
	border: 1px solid #ddd;
	margin-bottom: 20px;
    border-radius: 3px;
    float: left;
	width: 100%;
}
.right-panel .alert {
    background-color: #fff;
    padding: 15px;
	float: left;
    margin: 0;
	width: 100%;
    display: block;
}

#contact-summary{
	border-top: 0.5px solid #ddd;
	display: none;
}

.summary-item{
	width: 100%;
	display: none;
    float: left;
    position: relative;
}
.summary-item.active{
	display:block;
}
.summary-item-text{
	padding: 0 0 20px 40px;
    font-weight: 400;
    font-size: 12px;
	word-break: break-word;
}

.summary-item-text .summary-secondary-text{
	font-size: 10px;
    color: grey;
}
.summary-item-icon {
	position: absolute;
    top: 3px;
}

#summary-note i,
#summary-name i,
#summary-phone i,
#summary-email i
{
	font-size: 10px;
    font-weight: 900;
	font-style: normal;
	top: 1px;
}
	

.opening-hours .day{
	width:40px;
	display: inline-block;
}


.btnBox input{
	width: 130px;
}
.page-body .middle-wrap {
	height: 100%;
}


.selectedDateDiv{
	background-color: #fff;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 3px;
    float: left;
    width: 100%;
	text-align: left;
}
.selectedDateDiv .title{
	font-weight: 700;
    font-size: 14px;
}
.selectedDateDiv .date{
	font-weight: 700;
    font-size: 12px;
}
.selectedDateDiv .slots{
	font-weight: 400;
    font-size: 12px;
	color: grey;
}
.toggle-div{
	background-color: #ededed;
    padding: 15px;
    margin: 0 0 20px 0;
    border: 2px solid #605c5c;
    border-radius: 15px;
    float: left;
    width: 100%;
    text-align: left;
}

.toggle-div .toggle-handle i{
	float: right;
    line-height: 20px;
}

.toggle-div .toggle-content{
	display: none;
	margin-top: 10px;
	font-size: 13px;
    font-weight: 500;
}
.toggle-div .toggle-content.active{
	display: block;
	transition: all .5s ease-in-out;
}
.policyDiv .title,
#terms .title{
	text-transform: uppercase;
    text-decoration: underline;
    font-weight: 700;
    font-size: 14px;
}


.round-cell{
	background-color: #ffffff;
    padding: 15px;
    margin: 0 0 20px 0;
    border: 1.5px solid #d8d8d8;
    border-radius: 15px;
    float: left;
    width: 100%;
    text-align: left;
}

.subSection .title,
#contactTitle,
#pricing-info .title{
	font-weight: 700;
    font-size: 16px;
}

.input-title{
	font-weight: 700;
    font-size: 14px;
}

#terms .toggle-content,
#pricing-info .toggle-content{
	/*font-size: 11px;*/
}

.terms-div{
	padding: 0 20px;
    position: relative;
    margin: 20px 0 15px;
}
#cbTerms{
	float: left;
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
}
.terms-content{
	padding-left: 30px;
    font-size: 12px;
}

.subSection{
	border-bottom: 1px solid #d8d8d8;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.services-wrap,
.subSection .content
{
	padding-left: 15px;
}

.subSection .content{
	margin-top: 10px;
}
#comments,
#bikeDetail{
	width: 100%;
    border: 0;
    background: #ededed;
    border-radius: 10px;
    padding: 5px 10px;
	font-size: 14px;
}
#booking_form_content input[type="text"],
#booking_form_content input[type="tel"],
#booking_form_content input[type="email"] {
	width: 100%;
    border-radius: 5px;
    padding: 5px 10px;
	font-size: 13px;
}
.successful {
	text-align: center;
}
.successful i{
	color: #37b249;
    font-size: 80px;
	margin: 15px 0;
}
.successful .title{
	font-size: 16px;
    font-weight: 700;
	margin-bottom: 15px;
}

.order2{
	order: 2;
}

.final .right-panel{
	flex: 0 0 100%;
    max-width: 100%;
    background: white;
	order: 2;
	height: auto !important;
}
.final .left-panel{
	flex: 0 0 100%;
    max-width: 100%;
}
.final .servicePanel{
	height: auto !important;
}
.final .panel-sticky{
	max-width: 400px;
    margin: 0 auto;
}

.tbn-primary{
	color:#0071E3;
}


.error-div{
	color: red;
}
@media screen and (max-width: 767px){
	.panel-sticky{
		position: unset;
	}
	.page-body{
		padding:0;
	}
	.page-body .middle-wrap {
		height: auto;
		overflow: scroll;
		padding: 0 15px;
	}
	.left-panel{
		-webkit-order: 1;
		order: 1;
		height: auto !important;
		padding-bottom: 0 !important;
	}
	.right-panel{
		-webkit-order: 0;
		order: 0;
		min-height: auto;
		height: auto !important;
		background: #ffffff;
	}

	footer .btn{
		width: auto;
	}

}
