
/* Quantity Buttons for Booking Widget*/
.qtyButtons {
	display: flex;
	margin: 0 0 13px 0;
}

@media (min-width: 992px) and (max-width: 1366px)  {
	.qtyButtons {
		display: block;
	}
}

.panel-dropdown-content .qtyButtons:first-child { margin-top: 8px; }
.panel-dropdown-content .qtyButtons:last-child { margin-bottom: 3px; }

.qtyButtons input {
	font-family: "Open Sans", sans-serif;
	outline: 0;
	font-size: 20px;
	text-align: center;
	width: 50px;
	height: 36px;
	color: #333;
	line-height: 36px;
	margin: 0 !important;
	padding: 0 5px;
	border: none;
	box-shadow: none;
	pointer-events: none;
	display: inline-block;
}

.qtyTitle {
	font-size: 16px;
	font-weight: 600;
	line-height: 36px;
	padding-right: 15px;
	display: block;
	flex: 1;
}

.qtyInc,
.qtyDec {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    background-color: #f2f2f2;
	-webkit-text-stroke: 1px #f2f2f2;
    color: #333;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
	font-family: "FontAwesome";
}

.qtyInc:before { content: "\f067"; }
.qtyDec:before { content: "\f068"; }

.qtyTotal {
	background-color: #66676b;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	font-family: "Open Sans", sans-serif;
	line-height: 18px;
	text-align: center;
	position: relative;
	top: -2px;
	left: 2px;
	height: 18px;
	width: 18px;
}

.rotate-x {
	animation-duration: .5s;
	animation-name: rotate-x;
}

@keyframes rotate-x {
	from {
		transform: rotateY(0deg);
	}
	to {
		transform: rotateY(360deg);
	}
}

/* ---------------------------------- */
/* Time Slots Dropdown
------------------------------------- */
.booking-widget .panel-dropdown .panel-dropdown-content.padding-reset { padding: 0; }
.panel-dropdown-scrollable {
    max-height: 273px;
    overflow: auto;
    padding: 0 10px;
    margin: 22px 6px 16px 6px;
}

/* Custom Scrollbar for -wekbit */
.panel-dropdown-scrollable::-webkit-scrollbar { width: 6px; }

.panel-dropdown-scrollable::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,0.05);
    border-radius: 6px;
}

.panel-dropdown-scrollable::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: rgba(0,0,0,0.2);
}

.panel-dropdown-scrollable::-webkit-scrollbar-thumb:hover {
    border-radius: 6px;
    background-color: rgba(0,0,0,0.3);
}

/* Panel Dropdown Fix */
.panel-dropdown .panel-dropdown-content { pointer-events: none; }
.panel-dropdown.active .panel-dropdown-content { pointer-events: all; }

/* Time Slot Labels */
.time-slot {
	display: block;
}

.time-slot label {
  border-radius: 3px;
  border: none;
  background-color: #f6f6f6;
  width: 100%;
}

/* hide input */
.time-slot input:empty {
	display: none;
}

/* style label */
.time-slot label i {
	position: relative;
	font-size: 18px;
	top: 2px;
	margin-right: 2px;
}

.time-slot input:empty ~ label {
	position: relative;
	float: left;
	padding: 12px 10px;
	text-align: center;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 4px;
	color: #777;
	transition: 0.3s;
	overflow: hidden;
	font-size: 15px;
}

.time-slot:last-child label {
	margin-bottom: 0;
}

.time-slot input ~ label:hover {
	color: #66676b;
	background-color: rgba(102, 103, 107, 0.08);
}

.time-slot input:checked ~ label:hover {
	color: #fff;
}
.time-slot input:checked ~ label {
	color: #fff;
	background-color: #66676b;
}

.time-slot input:checked ~ label span {
	color: #fff;
	opacity: 0.8;
}

.time-slotinput:empty ~ label:after,
.time-slot input:empty ~ label:before {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	text-align: center;
	border-radius: 4px;
	background: transparent;
	z-index: 100;
	opacity: 0;
}

.time-slot label span,
.time-slot label strong {
	font-weight: 600;
	display: block;
	padding: 0;
	margin: 0;
	line-height: 19px;

}

.time-slot label span{
	font-weight: 500;
	opacity: 0.5;
	transition: 0.3s;
}

.time-slot label:hover span {
	color: #66676b;
	opacity: 0.6;
}
.booking-widget { z-index: 100; }

.booking-widget .panel-dropdown .panel-dropdown-content {
    border: none;
	overflow: visible;
	padding: 20px;
    box-shadow: 0 1px 6px 0px rgba(0, 0, 0, 0.1);
}

.booking-widget .panel-dropdown { width: 100%; }

.booking-widget .panel-dropdown .panel-dropdown-content:before {
	content: "";
	height: 10px;
	position: absolute;
	width: 100%;
	top: -3px;
	background-color: #fff;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	border-bottom: 1px solid #eee;
}

.booking-widget .panel-dropdown.active .panel-dropdown-content:before {
	opacity: 1;
	visibility: visible;
}

.booking-widget .panel-dropdown a {
	border: none;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 1px 6px 0px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 600;
    height: auto;
    padding: 10px 16px;
    line-height: 30px;
    margin: 0 0 15px 0;
    position: relative;
    background-color: #fff;
    text-align: left;
    color: #888;
    display: block;
    width: 100%;

    transition: color 0.3s;
}

.booking-widget .panel-dropdown a:hover {
	color: #444;
}

.booking-widget .panel-dropdown a:after {
    font-size: 20px;
    color: #c0c0c0;
    margin-left: 0;
    position: absolute;
    right: 20px;
}
.panel-dropdown {
	position: relative;
	display: inline-block
}

.panel-dropdown a {
	color: #666;
	font-weight: 600;
	font-size: 15px;
	border-radius: 50px;
	padding: 3px 14px;
	transition: all 0.3s;
	display: inline-block;
}

.panel-dropdown.active a,
.panel-dropdown a:hover {
	/*background: #f3f3f3;*/
}

.panel-dropdown a:after {
	content: '\f107';
	font-family: "FontAwesome";
	font-size: 16px;
	color: #66676b;
	font-weight: 500;
	padding-left: 0;
	transition: all 0.3s;
	margin-left: 6px;
	display: inline-block;
}

.panel-dropdown.active a:after { transform: rotate(180deg); }


.panel-dropdown .panel-dropdown-content {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	position: absolute;
	top: 44px;
	left: 0px;
	z-index: 110;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.18);
	border-radius: 4px;
	box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
	padding: 20px 24px;
	overflow-y: auto;
	white-space: normal;
	width: 460px;
}

.panel-dropdown.wide .panel-dropdown-content { width: 570px; }

.panel-dropdown.active .panel-dropdown-content {
	opacity: 1;
	visibility: visible;
}

