@font-face {
	font-family: "DMSans";
	src: url("/assets-themes/fonts/DM_Sans/DMSans-Regular.ttf") format("truetype");
	font-weight: normal;
}

@font-face {
	font-family: "DMSans";
	src: url("/assets-themes/fonts/DM_Sans/DMSans-Bold.ttf") format("truetype");
	font-weight: 700;
}

@font-face {
	font-family: "Teko";
	src: url("/assets-themes/fonts/Teko/Teko-Regular.ttf") format("truetype");
	font-weight: normal;
}

@font-face {
	font-family: "Teko";
	src: url("/assets-themes/fonts/Teko/Teko-Bold.ttf") format("truetype");
	font-weight: 700;
}

@font-face {
	font-family: 'apponio-aurora-icon-set';
	src:  url('/assets-themes/fonts/icon-font/apponio-aurora-icon-set.eot?dtdfab');
	src:  url('/assets-themes/fonts/icon-font/apponio-aurora-icon-set.eot?dtdfab#iefix') format('embedded-opentype'),
	  url('/assets-themes/fonts/icon-font/apponio-aurora-icon-set.ttf?dtdfab') format('truetype'),
	  url('/assets-themes/fonts/icon-font/apponio-aurora-icon-set.woff?dtdfab') format('woff'),
	  url('/assets-themes/fonts/icon-font/apponio-aurora-icon-set.svg?dtdfab#apponio-aurora-icon-set') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

:root {
	--box-shadow: 0 3px 6px rgba(0,0,0,.1);
}

span.radio,
span.radio:after,
span.checkbox,
span.checkbox:before,
span.checkbox:after,
button,
#nav .menu-toggle span,
#nav .menu-toggle span:before,
#nav .menu-toggle span:after,
#nav .center > div,
#nav .main-nav a,
#nav .main-nav a:after,
#reservation-form .previous-steps li,
#services > ul > li,
#services > ul > li h3,
#services > ul > li strong,
#employees svg,
#employees li label,
#employees .star-rating-wrapper .value,
#datetime .calendar span,
#datetime .calendar input,
#datetime .time-slots span,
#customer strong,
#service-rating strong,
.reservation-action li a,
.reservation-action li svg,
.reservation-action li span,
.slider-row,
#gallery li,
#gallery img,
.controls .prev,
.controls .next {
	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	-o-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}

#nav .center > div:before {
	-webkit-transition: .3s opacity ease-in-out;
	-moz-transition: .3s opacity ease-in-out;
	-o-transition: .3s opacity ease-in-out;
	transition: .3s opacity ease-in-out;
}

body {
	margin: 0;
	font: 1em/1 DMSans, sans-serif;
	color: var(--primary-text-color);
	background: var(--background-color-general);
}

img {
	max-width: 100%;
	vertical-align: middle;
}

svg {
	vertical-align: middle;
}

a {
	color: var(--primary-color);
}

a:hover {
	text-decoration: none;
}

h1, h2 {
	font: 2.5em / 1.2 Teko;
	font-weight: bold;
	color: var(--primary-color);
	margin: 24px 0;
}

h3 {
	font-family: Teko;
	font-weight: bold;
}

p {
	line-height: 1.875;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

dl, dd {
	margin: 0;
}

label {
	position: relative;
}

label.required > strong:after {
	content: ' *';
	color: var(--error-color);
}

input[type=radio], input[type=checkbox] {
	position: fixed;
	left: -100%;
}

span.radio, span.checkbox {
	position: absolute;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid var(--outline-color);
	box-sizing: border-box;
	cursor: pointer;
}

span.checkbox {
	border-radius: 3px;
}

span.radio:after {
	content: '\e900';
	font-family: apponio-aurora-icon-set;
	font-size: 12px;
	color: var(--background-color-general);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	cursor: pointer;
	text-align: center;
	line-height: 20px;
}

span.checkbox:after {
	content: '\e900';
	font-family: 'apponio-aurora-icon-set';
	font-size: 12px;
	color: var(--background-color-general);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	cursor: pointer;
	text-align: center;
	line-height: 20px;
}

input[type=radio]:checked + span.radio,
input[type=checkbox]:checked + span.checkbox {
	border-color: var(--primary-color);
}

input[type=radio]:checked + span.radio:after {
	background: var(--primary-color);
}

input[type=checkbox]:checked + span.checkbox:after {
	color: var(--primary-color);
}

button, .button {
	display: inline-block;
	background: var(--primary-color);
	color: var(--secondary-text-color);
	border: 2px solid var(--primary-color);
	text-transform: uppercase;
	padding: 14px 36px 12px;
	font: 1.375em/1 Teko;
	font-weight: bold;
	border-radius: 10px;
	vertical-align: -.15em;
	cursor: pointer;
	overflow: hidden;
}

.loading {
	position: relative;
}

.loading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	opacity: 0.75;
}

.loading:after {
	content: '';
	width: 16px;
	height: 16px;
	background: var(--secondary-text-color);
	display: block;
	border-radius: 50%;
	box-shadow: 30px 0 0 0 var(--secondary-text-color), 60px 0 0 0 var(--secondary-text-color);
	color: var(--secondary-text-color);
	animation: loading 1.5s linear infinite;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -8px;
	margin-left: -40px;
}

button.loading {
	color: var(--primary-color)
}

button.loading:before {
	background: var(--primary-color);
}

button.secondary {
	background: none;
	border: 0;
	color: var(--primary-color);
	text-decoration: underline;
}

button[disabled] {
	background: none;
	color: var(--outline-color);
	border-color: var(--outline-color);
	cursor: not-allowed;
}

button:hover {
	background: none;
	color: var(--primary-color);
}

button.secondary:hover {
	text-decoration-color: transparent;
}

button[disabled]:hover {
	background: none;
	color: var(--outline-color);
}

.clear {
	clear: both;
}

.center {
	width: 1130px;
	max-width: 100%;
	margin: auto;
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
}

.rating-indicator {
	width: 100%;
	height: 100%;
	position: relative;
	padding: 1px;
	box-sizing: border-box;
	background-color: var(--inactive-color);
	background-clip: content-box;
}

.rating-indicator svg {
	position: absolute;
	top: 0;
	left: 0;
}

.rating-indicator svg {
	color: var(--background-color-element);
	height: 100%;
	width: 100%;
}

.rating-indicator span {
	display: block;
	min-width: 20%;
	background: var(--rating-stars-color);
	height: 100%;
}

.controls .prev, .controls .next {
	cursor: pointer;
}

#nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: var(--background-color-nav);
	color: var(--text-color-nav);
	font-family: Teko;
	z-index: 2;
}

#nav .center {
	display: flex;
	gap: 100px;
	padding-top: 10px;
	padding-bottom: 10px;
}

#nav .logo {
	max-width: 240px;
	height: 60px;
	display: flex;
	align-items: center;
}

#nav .logo img {
	max-width: 100%;
	max-height: 100%;
}

#nav .menu-toggle {
	display: none;
	width: 32px;
	height: 24px;
	padding: 18px 5px;
}

#nav .menu-toggle span,
#nav .menu-toggle span:before,
#nav .menu-toggle span:after {
	content: '';
	height: 4px;
	width: 100%;
	background: var(--text-color-nav);
	border-radius: 2px;
	position: absolute;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

#nav .menu-toggle span:before {
	top: -10px;
}

#nav .menu-toggle span {
	position: relative;
	display: block;
	top: 10px;
}

#nav .menu-toggle span:after {
	bottom: -10px;
}

#nav .menu-toggle.open span:before {
	top: 0;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

#nav .menu-toggle.open span {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

#nav .menu-toggle.open span:after {
	top: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

#nav .center > div {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

#overlay {
	position: fixed;
	top: 60px;
	left: 0;
	right: 0;
	bottom: 100%;
	background: var(--background-color-nav);
	opacity: .5;
	z-index: -1;
}

#nav a {
	color: var(--text-color-nav);
	text-decoration: none;
	outline: 0;
}

#nav .main-nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
	font-size: 1.25em;
	font-weight: bold;
}

#nav .main-nav a {
	line-height: 52px;
	display: block;
	padding-top: 8px;
	position: relative;
}

#nav .main-nav a:after {
	content: '';
	position: absolute;
	left: 0;
	width: 0;
	height: 3px;
	bottom: 7px;
	background-color: var(--text-color-nav);
}

#nav .main-nav a:hover:after {
	width: 100%;
}

#nav ul.contact {
	padding: 12px 0 0 46px;
	margin-left: 100px;
	position: relative;
	white-space: nowrap;
}

#nav ul.contact svg {
	position: absolute;
	left: 0;
	width: 36px;
	height: 36px;
}

#nav ul.contact li {
	font-size: 1.0625em;
	font-weight: bold;
	line-height: 1.4;
}

#nav ul.contact li.opening-hours {
	font-size: .875em;
	font-weight: normal;
	line-height: 1;
}

#reservation {
	margin-top: 80px;
	position: relative;
}

.brand-decoration {
	width: 50%;
	position: sticky;
	top: 80px;
	left: 50%;
	background: var(--bg-main-image) top center no-repeat;
	background-size: cover;
	z-index: 0;
	height: calc(100vh - 80px);
	float: right;
}

.brand-decoration:after, #reviews:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: var(--primary-color);
	opacity: .3;
	z-index: -1;
}

.brand-decoration img {
	max-width: 360px;
	max-height: 100%;
	object-fit: contain;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

#reservation-form, .reservation-action {
	width: 50%;
	min-height: 900px;
	min-height: calc(100vh - 80px);
}

#reservation-form .center, .reservation-action .center {
	float: right;
	width: 430px;
	padding: 30px 120px 0 15px;
	overflow: hidden;
	box-sizing: content-box;
}

#reservation-steps-wrapper > h1 {
	display: none;
}

#reservation-form .progress-outline {
	margin: 0 0 16px;
	display: flex;
	justify-content: space-between;
	position: relative;
	font-size: .9em;
	overflow: hidden;
}

#reservation-form .progress-outline li {
	display: block;
	background: var(--background-color-general);
	padding: 0 10px;
	color: var(--primary-color);
	direction: rtl;
}

#reservation-form .progress-outline li:first-child {
	padding-left: 0;
}

#reservation-form .progress-outline li:last-child {
	padding-right: 0;
}

#reservation-form .progress-outline li:before {
	content: '';
	position: absolute;
	top: 50%;
	width: 33.333%;
	height: 0;
	border-top: 1px solid var(--primary-color);
	z-index: -1;
}

#reservation-form .progress-outline.hidden-worker-selection li:before {
	width: 50%;
}

#reservation-form .progress-outline li.active:before {
	border-top-style: dashed;
}

#reservation-form .progress-outline li.active ~ li {
	color: var(--inactive-color);
}

#reservation-form .progress-outline li.active ~ li:before {
	border-top-color: var(--inactive-color);
}

#reservation-form .progress-outline a {
	color: var(--primary-color);
	text-decoration: none;
}

#reservation-form .progress-outline li.active ~ li a {
	color: var(--inactive-color);
}

#reservation-form .previous-steps {
	display: none;
}

#reservation-form .previous-steps li {
	background: var(--background-color-element);
	border-radius: 10px;
	padding: 12px 18px 6px;
	border: 2px solid var(--background-color-element);
	box-shadow: var(--box-shadow);
	cursor: pointer;
}

#reservation-form .previous-steps li + li {
	margin-top: 12px;
}

#reservation-form .previous-steps h3 {
	font-size: 1em;
	margin: 0;
	color: var(--primary-color);
}

#reservation-form .previous-steps strong {
	font: bold 1.3em Teko;
	display: block;
	overflow: hidden;
	line-height: 1.2;
	white-space: nowrap;
	text-overflow: ellipsis;
}

#reservation-form .previous-steps li:hover {
	border-color: var(--primary-color);
}

#reservation button {
	margin-top: 24px;
}

#services > ul {
	margin: 24px 0;
}

#services > ul > li {
	background: var(--background-color-element);
	border: 2px solid var(--background-color-element);
	display: block;
	border-radius: 10px;
	box-shadow: var(--box-shadow);
	overflow: hidden;
	cursor: pointer;
}

#services > ul > li + li {
	margin-top: 12px;
}

#services h3 {
	font-size: 1.25em;
	line-height: 1.2;
	color: var(--primary-color);
	padding: 14px 20px;
	margin: 0;
}

#services > ul > li:hover,
#services > ul > li.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

#services > ul > li:hover h3,
#services > ul > li.active h3 {
	color: var(--background-color-element);
}

#services fieldset {
	display: none;
	border: none;
	padding: 0;
	margin: 0;
	background: var(--background-color-general);
	border-radius: 0 0 8px 8px;
	cursor: default;
}

#services li.active fieldset {
	display: block;
}

#services span.radio {
	top: 14px;
	left: 10px;
	width: 20px;
	height: 20px;
}

#services label {
	display: block;
	padding: 14px 20px 14px 40px;
	cursor: pointer;
}

#services label h4,
#services label .price {
	font-family: Teko;
	font-size: 1.25em;
	margin: 0;
	line-height: 1.2;
	color: var(--primary-color);
}

#services label > div {
	display: table;
	width: 100%;
}

#services label h4,
#services label .price {
	display: table-cell;
}

#services label .price {
	text-align: right;
	font-size: 1em;
	line-height: 1.5;
}

#services label .price s {
	color: var(--inactive-color);
	vertical-align: middle;
}

#services label .price strong {
	font-size: 1.25em;
	line-height: 1;
	margin-left: 8px;
}

#services label .duration {
	display: block;
	font-family: Teko;
	margin: 4px 0 6px;
}

#services label .duration svg {
	margin-right: 6px;
	vertical-align: -.2em;
}

#services label h5 {
	font-size: 1em;
	font-weight: bold;
	margin-top: 1.2em;
	margin-bottom: .5em;
}

#services label p {
	margin: 0;
	line-height: 1.3;
}

#services label ul {
	line-height: 1.3;
	list-style: disc;
	padding-left: 1em;
}

#services label p + p {
	margin-top: .5em;
}

#services label ul + p {
	margin-top: .5em;
}

#services label p + ul {
	margin-top: .5em;
}

#employees ul {
	display: flex;
	gap: 8px 0;
	flex-wrap: wrap;
	margin: 65px -5px 24px;
}

#employees li {
	flex: 0 1 33.333%;
	text-align: center;
}

#employees label {
	display: block;
	background: var(--background-color-element);
	box-shadow: var(--box-shadow);
	padding: 15px 10px 2.5em;
	border-radius: 10px;
	cursor: pointer;
	height: 100%;
	margin: 0 5px;
	box-sizing: border-box;
}

#employees h4 {
	font: 1.5em / 1.1 Teko;
	font-weight: bold;
	margin: 16px 0 0;
}

#employees img, #employees label > svg {
	width: 96px;
	min-width: 96px;
	height: 96px;
	margin-top: -50px;
	color: var(--primary-text-color);
	border-radius: 50%;
	object-fit: cover;
}

#employees ul .star-rating-wrapper .value {
	padding-right: 8px;
	color: var(--primary-text-color);
}

#employees .rating-indicator {
	width: 69px;
	height: 14px;
	float: right;
}

#employees .no-picture {
	display: block;
	margin-top: 24px;
}

#employees .no-rating {
	margin-top: 24px;
}

#employees .no-picture li {
	text-align: left;
}

#employees .no-picture li + li {
	margin-top: 11px;
}

#employees .no-rating label {
	padding-bottom: 15px;
}

#employees .no-picture label {
	padding: 14px 20px 10px;
}

#employees .no-picture h4 {
	font-size: 1.25em;
	margin: 0;
	padding-right: 5.5em;
}

#employees .no-rating h4 {
	padding-right: 0;
}

#employees .no-picture .star-rating-wrapper {
	position: absolute;
	left: auto;
	right: 20px;
	top: 50%;
	margin-top: -.5em;
	margin-left: auto;
	width: auto;
}

#employees label:hover > svg, #employees input:checked + label > svg {
	color: var(--primary-color);
}

#employees input:checked + label {
	background: var(--primary-color);
	color: var(--secondary-text-color);
}

#employees input:checked + label .rating-indicator svg {
	color: var(--primary-color);
}

#employees label:hover {
	box-shadow: none;
	color: var(--primary-color);
}

#employees input:checked + label .value {
	color: var(--secondary-text-color);
}

#datetime .calendar {
	background: var(--background-color-element);
	box-shadow: var(--box-shadow);
	padding: 12px 18px 18px;
	border-radius: 10px;
}

#datetime .calendar-header {
	text-align: center;
	margin-bottom: 10px;
}

#datetime .calendar-header span {
	padding: 10px;
	width: 30px;
	cursor: pointer;
}

#datetime .calendar-header svg {
	height: 16px;
	width: 9px;
}

#datetime .calendar-header strong {
	display: block;
	margin: 0 50px;
	font: bold 1.1em Teko;
	text-transform: uppercase;
	color: var(--primary-color);
	padding: 8px;
}

#datetime #prev-month {
	float: left;
}

#datetime #next-month {
	float: right;
}

#datetime .calendar table {
	width: 100%;
	text-align: center;
	border-collapse: collapse;
}

#datetime .calendar table.loading:before {
    background: var(--background-color-element);
    z-index: 1;
}

#datetime .calendar table.loading:after {
	background: var(--primary-color);
	box-shadow: 30px 0 0 0 var(--primary-color), 60px 0 0 0 var(--primary-color);
	color: var(--primary-color);
    z-index: 2;
}

#datetime .calendar th {
	color: var(--primary-color);
	border-bottom: 1px solid;
	font: 1.35em Teko;
	padding: 10px 2px;
}

#datetime .calendar tbody tr:first-child td {
	padding-top: 12px;
}

#datetime .calendar tbody td {
	padding: 1px;
}

#datetime .calendar table label {
	display: block;
	height: 2.9025em;
}

#datetime .calendar table span {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: auto;
	width: 2.15em;
	height: 100%;
	padding: 4px;
	border: 1px solid transparent;
	font: 1.35em / 1 Teko;
	border-radius: 10px;
	box-sizing: border-box;
}

#datetime .calendar table span b {
	display: block;
	font: .55em / 1 'DMSans';
	font-weight: bold;
}

#datetime .calendar span:hover {
	border-color: var(--primary-color);
}

#datetime .calendar input:checked + span {
	background-color: var(--primary-color);
	color: var(--secondary-text-color);
}

#datetime .calendar input:checked + span b {
	color: var(--secondary-text-color) !important;
}

#datetime .calendar input[disabled] + span {
	color: var(--inactive-color);
	cursor: not-allowed;
	text-decoration: line-through;
}

#datetime .calendar input[disabled] + span:hover {
	border-color: var(--inactive-color);
}

#datetime .time-slots {
	margin: 50px -5px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 0;
}

#datetime .time-slots.morning + .time-slots.afternoon {
	margin-top: 20px;
}

#datetime .time-slots label {
	flex: 0 1 25%;
	align-self: flex-start;
	text-align: center;
	font: 1.2em Teko;
}

#datetime .time-slots span {
	display: block;
	margin: 0 5px;
	background: var(--background-color-element);
	padding: 6px;
	box-shadow: var(--box-shadow);
	border-radius: 10px;
	cursor: pointer;
}

#datetime .time-slots span:hover {
	box-shadow: none;
	color: var(--primary-color);
}

#datetime .time-slots input:checked + span {
	background: var(--primary-color);
	color: var(--secondary-text-color);
}

#customer label, #service-rating .center > label {
	display: block;
}

#customer label + label,
#customer label + div label {
	margin-top: 11px;
}

#customer input, #customer textarea, #service-rating textarea {
	font: 1.375em / 1.363636 Teko;
	font-weight: bold;
	width: 100%;
	box-sizing: border-box;
	border: 0;
	box-shadow: var(--box-shadow);
	background: var(--background-color-element);
	padding: 20px 15px 2px;
	border-radius: 10px;
	outline: none;
	color: var(--primary-text-color);
}

#customer textarea, #service-rating textarea {
	resize: vertical;
	min-height: 4.2em;
}

#customer strong, #service-rating strong {
	position: absolute;
	font: 1.375em / 1 Teko;
	left: 15px;
	top: 17px;
}

#customer label.error strong {
	color: var(--error-color);
}

#customer label.error strong:before {
	content: '*';
}

#customer .error-message {
	color: var(--error-color);
	margin: 11px 0;
	line-height: 1.4;
}

#customer input.active + strong,
#customer input:focus + strong,
#customer textarea.active + strong,
#customer textarea:focus + strong,
#phone-number-input strong,
#service-rating textarea.active + strong,
#service-rating textarea:focus + strong {
	font-size: .75em;
	top: 8px;
}

#customer .checkbox-wrapper {
	padding-left: 34px;
	min-height: 24px;
	display: flex;
    align-items: center;
}

#phone-number-input .iti {
	display: block;
}

#phone-number-input .iti__country-container {
	padding: 0;
}

#phone-number-input .iti__selected-country {
	border-radius: 10px 0 0 10px;
}

#phone-number-input .iti button {
	margin: 0;
}

#phone-number-input input {
	padding-left: 54px;
}

#phone-number-input strong {
	left: 54px;
}

#customer .discount-code {
	position: relative;
}

#customer .discount-code input {
	padding-right: 6.6em;
}

#customer .discount-code .button {
	position: absolute;
	right: 0;
	top: 0;
	padding-left:  24px;
	padding-right: 24px;
}

#customer .reservation-summary {
	font: 1.375em / 1 'Teko';
	width: 100%;
	margin: 16px 0;
	border-collapse: collapse;
	line-height: 1.5;
}

#customer .reservation-summary th {
	text-align: left;
}

#customer .reservation-summary td {
	text-align: right;
}

#customer .reservation-summary tbody th {
	font-weight: normal;
}

#customer .reservation-summary tbody tr:first-child th,
#customer .reservation-summary tbody tr:first-child td {
	padding-top: 8px;
	border-top: 1px solid var(--inactive-color);
}

#customer .reservation-summary tbody tr:last-child th,
#customer .reservation-summary tbody tr:last-child td {
	padding-bottom: 6px;
	border-bottom: 1px solid var(--inactive-color);
}

#customer .reservation-summary tfoot tr th,
#customer .reservation-summary tfoot tr td {
	padding: 8px 0;
	font-weight: bold;
}

.checkbox-wrapper span.checkbox {
	width: 24px;
	height: 24px;
}

.checkbox-wrapper span.checkbox:after {
	line-height: 24px;
	font-size: 16px
}

#thank-you, #service-cancel {
	text-align: center;
}

.reservation-action .box {
	margin: 24px 0 30px;
	padding: 32px 40px 20px;
	background: var(--background-color-element);
	border-radius: 10px;
	box-shadow: var(--box-shadow);
}

.reservation-action h1 {
	font-size: 1.875em;
	margin-bottom: 10px;
}

.reservation-action h3 {
	font-family: DMSans, sans-serif;
	font-weight: normal;
	color: var(--primary-color);
	margin: 0 0 30px;
}

.reservation-action table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid var(--primary-color);
}

.reservation-action tr {
	height: 48px;
}

.reservation-action th {
	font-weight: normal;
	text-align: left;
	border-bottom: 1px solid var(--inactive-color);
}

.reservation-action td {
	color: var(--primary-color);
	font-weight: bold;
	text-align: right;
	border-bottom: 1px solid var(--inactive-color);
}

.reservation-action dt {
	font: 1em / 1 Teko;
	font-weight: bold;
	text-transform: uppercase;
}

.reservation-action dd {
	margin-bottom: 10px;
}

.reservation-action tr:last-child th, .reservation-action tr:last-child td {
	border-bottom: 0;
}

.reservation-action ul {
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.reservation-action li a {
	position: relative;
	display: inline-block;
	padding: 6px 16px 6px 38px;
	font-size: .75em;
	line-height: 1.2;
	background-color: #000;
	color: #A5A5A5;
	text-align: left;
	border-radius: 3px;
	text-decoration: none;
	box-shadow: var(--box-shadow);
}

.reservation-action li svg {
	position: absolute;
	left: 8px;
	top: 50%;
	margin-top: -12px;
	width: 22px;
	height: 23px;
	color: #FFF;
}

.reservation-action li span {
	display: block;
	font-size: 1.33333em;
	color: #FFF;
}

.reservation-action li a:hover {
	background: #FFF;
	color: #000;
}

.reservation-action li a:hover svg, .reservation-action li a:hover span {
	color: #000;
}

.reservation-action p {
	margin: 30px 0;
}

.reservation-action > a {
	font-family: Teko;
	text-transform: uppercase;
	font-weight: bold;
}

#service-rating h2 {
	margin-bottom: 16px;
}

.rating-form {
	position: relative;
	width: 240px;
	height: 50px;
	font-size: 0;
	direction: rtl;
	margin: 16px 0 30px -5px;
}

.rating-form label {
	display: inline-block;
	cursor: pointer;
	z-index: 2;
	width: 20%;
	height: 100%;
}

.rating-form .rating-indicator {
	position: absolute;
	top: 0;
	left: 0;
	direction: ltr;
}

.rating-form .rating-indicator svg {
	color: var(--background-color-general);
}

.rating-form .rating-indicator span {
	min-width: 0;
	width: 0;
}

#rating-5:checked + label ~ .rating-indicator span {width: 100%;}
#rating-4:checked + label ~ .rating-indicator span {width: 80%;}
#rating-3:checked + label ~ .rating-indicator span {width: 60%;}
#rating-2:checked + label ~ .rating-indicator span {width: 40%;}
#rating-1:checked + label ~ .rating-indicator span {width: 20%;}

#rating-5 + label:hover ~ .rating-indicator span {width: 100%;}
#rating-4 + label:hover ~ .rating-indicator span {width: 80%;}
#rating-3 + label:hover ~ .rating-indicator span {width: 60%;}
#rating-2 + label:hover ~ .rating-indicator span {width: 40%;}
#rating-1 + label:hover ~ .rating-indicator span {width: 20%;}

.confirmation {
	display: flex;
	margin: 30px 0 10px;
	gap: 6px;
}

.confirmation button {
	width: 50%;
	padding: 14px 10px 12px;
}

#location {
	height: 0;
	padding-bottom: 42%;
	position: relative;
}

#location h2 {
	background: var(--primary-color);
	color: var(--secondary-text-color);
	padding: 32px 64px 32px 76px;
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	z-index: 1;
}

#map {
	position: absolute;
	width: 100%;
	top: 80px;
	bottom: 0;
	z-index: 0;
	background: white;
}

#reviews {
	background: var(--bg-reviews-image) no-repeat center / cover;
	min-height: 100vh;
	display: flex;
}

#reviews .center {
	width: 840px;
	overflow: hidden;
	padding: 180px 0;
	position: relative;
}

#reviews ul {
	display: flex;
	flex-direction: row;
	align-items: center;
	overflow: hidden;
	position: relative;
}

#reviews li {
	padding: 0 30px;
	box-sizing: border-box;
}

#reviews .review {
	background: var(--background-color-element);
	padding: 40px 60px;
	text-align: center;
	border-radius: 10px;
}

#reviews h3 {
	font-size: 2.5em;
	margin: 0 0 16px;
	color: var(--primary-color);
}

#reviews p {
	white-space: pre-line;
}

#reviews .rating-indicator {
	width: 96px;
	height: 20px;
	margin: auto;
}

#reviews .prev, #reviews .next {
	position: absolute;
	top: 50%;
	left: 10px;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	border-radius: 10px;
	color: var(--background-color-element);
	background: var(--primary-text-color);
	padding: 5px;
	box-sizing: border-box;
	text-align: center;
}

#reviews .next {
	left: auto;
	right: 10px;
}

#reviews .prev:hover, #reviews .next:hover {
	background: var(--primary-color);
}

#reviews .controls svg {
	height: 30px;
}

#about-us .center {
	display: table;
	padding-top: 75px;
	padding-bottom: 100px;
}

#about-us .content, #about-us .branding {
	display: table-cell;
	vertical-align: middle;
}

#about-us .content {
	padding-right: 100px;
}

#about-us .branding {
	width: 440px;
	text-align: center;
}

#about-us h2 {
	margin: 0 0 50px;
}

#about-us p + p {
	margin-top: 30px;
}

#gallery ul {
	display: flex;
width: 100%;
	height: 500px;
}

#gallery li {
	flex: 1;
overflow: hidden;
margin: 0;
line-height: 0;
	border: solid var(--background-color-general);
	border-width: 0 1px 2px;
}

#gallery li:first-child {
	border-left: 0;
}

#gallery li:last-child {
	border-right: 0;
}

#gallery img {
width: 100%;
height: 100%;
object-fit: cover;
}

#footer {
	background-color: var(--background-color-nav);
	overflow: hidden;
	color: var(--text-color-nav);
	padding: 85px 0;
}

#footer .center {
	display: flex;
	flex-wrap: wrap;
}

#footer a {
	color: var(--text-color-nav);
}

#footer svg {
	width: 51px;
	height: 51px;
}

#footer .logo {
	width: 190px;
	margin-right: 75px;
	flex-shrink: 0;
}

#footer .opening-hours {
	width: 195px;
	margin: 3px 75px 8px 0;
	font-size: .875em;
	line-height: 1.6;
}

#footer .opening-hours table {
	width: 100%;
}

#footer .opening-hours th {
	text-align: left;
	font-weight: normal;
}

#footer .opening-hours td {
	width: 6.2em;
}

#footer .contact {
	margin: 8px 40px 8px 0;
	width: 335px;
	flex-grow: 1;
}

#footer .contact li + li {
	margin-top: 16px;
}

#footer .contact a {
	font: 1.75em Teko;
	text-decoration: none;
	display: table;
}

#footer .contact span, #footer .contact strong {
	display: table-cell;
	vertical-align: middle;
}

#footer .contact span {
	vertical-align: top;
}

#footer .contact svg {
	margin-right: 20px;
}

#footer .others h4 {
	font-size: .875em;
	font-weight: normal;
	margin: 0 0 12px;
}

#footer .others ul {
	overflow: hidden;
}

#footer .others li {
	float: left;
}

#footer .others li + li {
	margin-left: 15px;
}

#footer .others ul + h4 {
	margin-top: 20px;
}

#footer .others .payment-options li + li {
	margin-left: 6px;
}

#footer .others .payment-options svg {
	width: auto;
	height: auto;
	background: #fff;
	padding: 10px;
	border-radius: 4px;
}

#legal {
	background-color: var(--background-color-nav);
	color: var(--text-color-nav);
	padding: 6px 0;
	overflow: hidden;
}

#legal li {
	float: left;
	margin-right: 30px;
}

#legal a {
	font-size: .875em;
	line-height: 2;
	color: var(--text-color-nav);
	text-decoration: none;
}

#legal a:hover {
	text-decoration: underline;
}

#legal .signature {
	float: right;
	font-size: .875em;
	line-height: 2;
}

#legal .signature a {
	text-decoration: none;
}

#legal .signature img {
	vertical-align: baseline;
}

#svg {
	display: none;
}

/* Provides space for navigation when scrolling to anchor links targets */

#reservation, #reservation-form, .reservation-action, #location, #reviews, #about-us, #products {
	position: relative;
	top: -80px;
	padding-top: 80px;
	margin-bottom: -80px;
	box-sizing: border-box;
}

#map {
	top: 80px;
}

#nav {z-index: 100;}
#reservation {z-index: 60;}
#location {z-index: 50;}
#location h2 {top: 80px;}
#reviews {z-index: 40;}
#about-us {z-index: 30;}
#products {z-index: 20;}

@media (max-width: 1400px) {
	#location {
		padding-bottom: 50%;
	}
}

@media (max-width: 1200px) {
	.brand-decoration img {
		max-width: 280px;
	}
	
	#reservation-form .center, .reservation-action .center {
		float: none;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	#about-us .content {
		padding: 0 50px;
		text-align: center;
	}
	
	#gallery {
		overflow: hidden;
		position: relative;
		height: 0;
		padding-bottom: 50%;
	}
	
	#gallery .slider {
		position: absolute;
		height: 100%;
		max-width: 100%;
	}
	
	#gallery ul {
		position: relative;
		height: 100%;
	}
	
	#gallery li {
		flex: 1 !important;
	}
	
	#gallery .prev, #gallery .next {
		position: absolute;
		left: 30px;
		top: 50%;
		width: 40px;
		height: 40px;
		margin-top: -20px;
		background: var(--background-color-element);
		border-radius: 50%;
		opacity: .75;
	}
	
	#gallery .prev:hover, #gallery .next:hover {
		opacity: 1;
	}
	
	#gallery .next {
		left: auto;
		right: 30px;
	}
	
	#gallery .prev:before,
	#gallery .prev:after,
	#gallery .next:before,
	#gallery .next:after {
		content: '';
		position: absolute;
		top: 12px;
		left: 7px;
		width: 20px;
		height: 4px;
		border-radius: 4px;
		transform: rotate(-45deg);
	background: var(--primary-text-color);
	}
	
	#gallery .prev:after {
		top: auto;
		bottom: 12px;
		transform: rotate(45deg);
	}
	
	#gallery .next:before {
		left: auto;
		right: 7px;
		transform: rotate(45deg);
	}
	
	#gallery .next:after {
		left: auto;
		right: 7px;
		top: auto;
		bottom: 12px;
	}
	
	#footer {
		padding: 60px 0;
	}
	
	#footer .logo {
		margin-right: 60px;
	}
	
	#footer .opening-hours {
		margin-right: 60px;
	}
	
	#footer .contact a {
		font-size: 1.5em;
	}
	
	#footer .contact svg {
		width: 36px;
		height: 36px;
	}
}

@media (max-width: 1130px) {
	#location {
		padding-bottom: 60%;
	}
}

@media (max-width: 1100px) {	
	#footer .center {
		width: 1030px;
	}
	
	#footer .logo {
		width: 140px;
		margin-right: 50px;
	}
	
	#footer .opening-hours {
		margin-right: 50px;
	}
	
	#footer .contact {
		max-width: 320px;
	}
}

@media (max-width: 1020px) {
	#about-us h2 {
		margin-bottom: 20px;
	}
	
	#about-us .branding {
		width: 360px;
	}
	
	#footer .center {
		width: 700px;
	}
	
	#footer .logo {
		order: 0;
		width: 190px;
		margin-right: 110px;
	}
	
	#footer .opening-hours {
		order: 2;
		margin: 30px 80px 30px 0;
		width: 220px;
	}
	
	#footer .contact {
		order: 1;
		margin: 8px 0;
	}
	
	#footer .others {
		order: 3;
		margin: 30px 0;
	}
	
	#footer .others h4 {
		font: bold 1.5em Teko;
	}
}

@media (max-width: 940px) {	
	#nav .center {
		gap: 60px;
	}
	
	#nav ul.contact {
		margin-left: 60px;
	}
	
	.brand-decoration {
		position: relative;
		width: auto;
		height: 0;
		top: auto;
		left: auto;
		padding-bottom: 40%;
		float: none;
	}
	
	#reservation-form, .reservation-action {
		width: auto;
		margin: auto;
		min-height: auto;
	}
	
	#reservation-form .center, .reservation-action .center {
		width: 530px;
		padding-left: 50px;
		padding-right: 50px;
		max-width: 100%;
		box-sizing: border-box;
	}
	
	#reservation-steps-wrapper h1 {
		display: block;
	}
	
	#reservation-form .progress-outline {
		display: none;
	}
	
	#reservation-form .previous-steps {
		display: block;
	}
	
	#services h1 {
		display: none;
	}
	
	#customer .checkbox-wrapper {
		padding-left: 44px;
		min-height: 32px;
	}

	.checkbox-wrapper span.checkbox {
		width: 2em;
		height: 2em;
	}

	.checkbox-wrapper span.checkbox:after {
		width: 30px;
		line-height: 30px;
	}
	
	#about-us .center {
		display: block;
		width: 600px;
	}
	
	#about-us .content {
		display: block;
		margin: auto;
	}
	
	#about-us .branding {
		display: none;
	}
	
	#gallery .prev {
		left: 15px;
	}
	
	#gallery .next {
		right: 15px;
	}
}

@media (max-width: 830px) {
	.center {
		padding: 0 50px;
	}
	
	#nav .center {
		gap: normal;
		justify-content: space-between;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	
	#nav .center > div {
		position: fixed;
		display: block;
		top: 60px;
		right: 0;
		height: 0;
		width: 360px;
		opacity: 0;
		background: var(--background-color-nav);
		overflow: hidden;
	}
	
	#nav .menu-toggle.open + div {
		height: calc(100% - 60px);
		opacity: 1;
		overflow: auto;
	}
	
	#nav .menu-toggle.open + div #overlay {
		bottom: 0;
	}
	
	#nav .main-nav {
		display: block;
		font-size: 2em;
		margin: 0 15px;
		width: auto;
	}
	
	#nav .main-nav li {
		margin: 0 -15px;
	}
	
	#nav .main-nav a {
		line-height: 40px;
		padding: 18px 20px 14px;
	}
	
	#nav ul.contact {
		margin: 0 15px;
		border-top: 2px solid var(--primary-color);
		padding-top: 24px;
		padding-left: 60px;
		white-space: normal;
	}
	
	#nav ul.contact svg {
		width: 50px;
		height: 50px;
	}
	
	#nav ul.contact li {
		font-size: 1.5em;
	}
	
	#nav ul.contact li.opening-hours {
		font-size: 1.25em;
	}
	
	#nav .logo {
		height: 50px
	}
	
	#nav .menu-toggle {
		display: block;
		padding: 13px 5px;
	}
	
	#reservation {
		margin-top: 60px;
	}
		
	#reservation, #reservation-form, .reservation-action, #location, #reviews, #about-us, #products {
		top: -60px;
		padding-top: 60px;
		margin-bottom: -60px;
	}
	
	#location h2, #map {
		top: 60px;
	}
	
	#legal li {
		float: none;
	}
	
	#legal .signature {
		float: none;
		display: block;
		text-align: right;
	}
}

@media (max-width: 780px) {
	#location {
		padding-bottom: 0;
		height: auto;
	}
	
	#location h2 {
		position: relative;
		top: 0;
		padding: 26px 15px;
		text-align: center;
	}
	
	#map {
		position: relative;
		top: auto;
		height: 400px;
	}
	
	#about-us .content {
		padding: 0;
	}
	
	#gallery li {
		border: 0;
	}

	#gallery {
		padding-bottom: 100%;
	}
	
	#footer .center {
		width: auto;
	}
}

@media (max-width: 730px) {
	.brand-decoration img {
		max-width: 220px;
	}
	
	#footer .logo {
		width: 150px;
		margin-right: 80px;
	}
	
	#footer .opening-hours {
		margin-right: 50px;
		width: 180px;
	}
}

@media (max-width: 655px) {
	.reservation-action .box {
		padding-left: 25px;
		padding-right: 25px;
	}
	
	#reviews .center {
		padding: 80px 0;
	}
	
	#reviews .review {
		padding: 30px 40px;
	}
	
	#footer {
		padding-top: 45px;
		padding-bottom: 30px;
	}
	
	#footer .logo {
		width: 100%;
		margin: 0;
	}
	
	#footer .logo img {
		max-height: 190px;
		max-width: 320px;
	}
	
	#footer .opening-hours {
		order: 2;
		width: 220px;
		margin: 20px 70px 40px 0;
	}
	
	#footer .contact {
		order: 1;
		width: 100%;
		margin: 40px 0 20px;
	}
	
	#footer .others {
		order: 3;
		margin: 20px 0;
	}
}

@media (max-width: 620px) {
	#reservation-steps-wrapper > h1 {
		margin: 0 0 40px;
	}
	
	.brand-decoration {
		padding: 0;
		height: 180px;
		margin-bottom: 120px;
		background-position: center;
	}
	
	.brand-decoration img {
		max-height: 200px;
		top: 100%;
	}
	
	#footer .opening-hours {
		width: 180px;
		margin-right: 50px;
	}
}

@media (max-width: 540px) {
	#reviews li {
		padding: 0 25px;
	}
	
	#reviews .review {
		padding: 30px 25px;
	}
	
	#reviews .prev {
		left: 5px;
	}
	
	#reviews .next {
		right: 5px;
	}
	
	#footer .opening-hours {
		order: 3;
		width: 220px;
		margin: 20px 0 0;
	}
	
	#footer .others {
		order: 2;
		width: 100%;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 2.2em;
		text-align: center;
	}
	
	h2 {
		font-size: 2em;
		text-align: center;
	}
	
	button {
		width: 100%;
		box-sizing: border-box;
	}
	
	.center {
		padding: 0 15px;
	}
	
	#reservation-form .center, .reservation-action .center {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	#nav .center > div {
		left: 0;
		width: auto;
	}
	
	#employees ul {
		display: block;
		margin: 24px 0;
	}
	
	#employees li {
		text-align: left;
	}
	
	#employees li + li {
		margin-top: 12px;
	}
	
	#employees label {
		padding: 6px 15px;
		display: table;
		width: 100%;
		margin: 0;
		min-height: 82px;
	}

	#employees .no-picture label {
		min-height: auto;
	}
	
	#employees .star-rating-wrapper, #employees .no-picture .star-rating-wrapper {
		position: absolute;
		right: 15px;
		top: 50%;
		margin-top: -.5em;
	}
	
	#employees img, #employees label > svg {
		position: absolute;
		top: 50%;
		margin-top: -35px;
		width: 70px;
		min-width: 70px;
		height: 70px;
	}
	
	#employees h4 {
		display: table-cell;
		width: 100%;
		vertical-align: middle;
		padding: 0 5.5em 0 90px;
	}

	#employees .no-picture h4 {
		padding-left: 0;
	}
	
	.rating-form {
		margin-left: auto;
		margin-right: auto;
	}
	
	#footer .logo {
		text-align: center;
	}
}

@media (max-width: 440px) {
	#employees label {
		min-height: 62px;
	}
	
	#employees img, #employees label > svg {
		min-width: 50px;
		width: 50px;
		height: 50px;
		margin-top: -25px;
	}
	
	#employees h4 {
		font-size: 1.25em;
		padding-left: 70px
	}

	#datetime .calendar {
		padding-left: 8px;
		padding-right: 8px
	}

	#datetime .calendar table span {
		padding: 2px;
		width: 1.8em
	}

	#customer .discount-code input {
		padding-right: 2.8em;
	}

	#customer .discount-code .button {
		padding-left: 12px;
		padding-right: 12px;
	}

	#customer .discount-code .button:before {
		content: '\e900';
		font-family: 'apponio-aurora-icon-set';
		vertical-align: middle;
	}

	#customer .discount-code .button span {
		display: none;
	}
}

@media (max-width: 370px) {	
	.reservation-action p br {
		display: none;
	}
	
	.reservation-action ul {
		display: block;
	}
	
	.reservation-action li + li a {
		margin-top: 10px;
	}

	#datetime .calendar table span {
		padding: 1px;
		width: 1.7em
	}
}

@media (max-height: 360px) and (max-width: 780px) {
	#nav {
		position: absolute;
	}
	
	#nav .center > div {
		height: auto;
		position: absolute;
	}
	
	#nav .menu-toggle.open + div {
		height: auto;
		padding-bottom: 30px;
	}
	
	#overlay {
		display: none;
	}
}

@media (min-width: 481px) {
	#employees li:nth-child(3) ~ li {
		margin-top: 40px;
	}
	
	#employees .no-rating li:nth-child(3) ~ li {
		margin-top: 0;
	}

	#employees .no-picture li:nth-child(3) ~ li {
		margin-top: 11px;
	}
	
	#employees .no-rating img, #employees .no-rating label > svg {
		margin-top: 0;
	}

	#employees .star-rating-wrapper {
		position: absolute;
		bottom: 12px;
		left: 50%;
		padding: 0 10px;
		box-sizing: border-box;
		width: 7.6em;
		margin-left: -3.8em;
	}
}

@keyframes loading {
	15% {
		width: 24px;
		height: 24px;
		box-shadow: 30px 0 0 -4px, 60px 0 0 -4px;
		margin-top: -12px;
		margin-left: -44px;
	}

	30% {
		width: 20px;
		height: 20px;
		box-shadow: 30px 0 0 4px, 60px 0 0 -2px;
		margin-top: -10px;
		margin-left: -42px;
	}

	45% {
		width: 16px;
		height: 16px;
		box-shadow: 30px 0 0 2px, 60px 0 0 4px;
		margin-top: -8px;
		margin-left: -40px;
	}

	60% {
		width: 16px;
		height: 16px;
		box-shadow: 30px 0 0 0, 60px 0 0 2px;
	}
	
	75% {
		width: 16px;
		height: 16px;
		box-shadow: 30px 0 0 0, 60px 0 0 0;
	}
}