@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);
}

#nav,
.brand-decoration,
#location,
#reviews,
#about-us,
#gallery,
#footer,
div.svelte-1hzn8rv {
    display: none;
}


span.radio,
span.radio:after,
span.checkbox,
span.checkbox:before,
span.checkbox:after,
button,
#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 {
    -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;
}

html, body {
    height: 100%
}

#app {
    min-height: 100%;
    position: relative;
}

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%;
}

#reservation {
    padding: 20px 0 80px;
    position: relative;
}

#reservation-form .center, .reservation-action .center {
    padding: 0 10px;
    max-width: 800px;
    overflow: hidden;
    box-sizing: content-box;
}

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

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

#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 20%;
    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 {
    margin-top: 24px;
}

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

#employees .no-picture li {
    text-align: left;
    flex: 0 0 50%;
}

#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;
    width: 50%;
    float: left;
    box-sizing: border-box;
    margin-bottom: 24px;
}

#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: 0 -5px 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 0;
    float: left;
    width: calc(50% - 15px);
    box-sizing: border-box;
}

#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);
}

#datetime button {
    clear: both;
    display: block;
}

#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 auto 30px;
    padding: 32px 40px 20px;
    background: var(--background-color-element);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    max-width: 500px;
}

.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 .add-to-calendar {
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.reservation-action .add-to-calendar 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 .add-to-calendar svg {
	position: absolute;
	left: 8px;
	top: 50%;
	margin-top: -12px;
	width: 22px;
	height: 23px;
	color: #FFF;
}

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

.reservation-action .add-to-calendar a:hover {
	background: #FFF;
	color: #000;
}

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

.reservation-action .payment-methods li {
	margin-bottom: 8px;
}

.reservation-action .payment-methods a {
	display: block;
	padding: 16px;
	background-color: var(--background-color-element);
	color: var(--primary-text-color);
	text-decoration: none;
	box-shadow: var(--box-shadow);
	border-radius: 10px;
}

.reservation-action .payment-methods a:hover {
	color: var(--primary-color);
	box-shadow: none;
}

.reservation-action .payment-methods .icon {
	float: right;
}

.reservation-action .payment-methods .apple-pay .icon,
.reservation-action .payment-methods .google-pay .icon {
	border: 1px solid;
	border-radius: 3px;
	padding: 6px;
	margin: -7px 0;
}

.reservation-action .payment-methods .icon svg + svg {
	margin-left: 8px;
}

.reservation-action .delimiter {
	display: block;
	text-align: center;
	margin: 2.5em 0 2em;
	border-top: 1px solid var(--inactive-color);
}

.reservation-action .delimiter span {
	display: table;
	padding: 0 10px;
	background-color: var(--background-color-general);
	margin: -.5em auto 0;
}

.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;
}

#legal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    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;
}

@media (max-width: 1200px) {	
    #reservation-form .center, .reservation-action .center {
        float: none;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 940px) {	
    #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;
    }

    #datetime .calendar, #datetime .time-slots {
        float: none;
        width: auto;
    }

    #datetime .time-slots {
        margin-left: -5px;
    }
    
    #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;
    }

    h1 {
        font-size: 2.2em;
    }
    
    h2 {
        font-size: 2em;
    }
    
    button {
        width: 100%;
        box-sizing: border-box;
    }
    
    .center {
        padding: 0 15px;
    }
    
    #reservation-form .center, .reservation-action .center {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    #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;
    }
}

@media (max-width: 830px) {
    #reservation {
        padding-bottom: 140px;
    }
    
    .center {
        padding: 0 50px;
    }
    
    #legal li {
        float: none;
    }
    
    #legal .signature {
        float: none;
        display: block;
        text-align: right;
    }
}

@media (max-width: 655px) {
    .reservation-action .box {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 560px) {
	#legal .center {
		padding-left: 15px;
		padding-right: 15px;
		width: 530px;
	}
}

@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 (min-width: 481px) {
    #employees li:nth-child(5) ~ li {
        margin-top: 40px;
    }
    
    #employees .no-rating li:nth-child(5) ~ li {
        margin-top: 0;
    }
    
    #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;
    }
}