:root {
    --quiter-appointments-main-color: #00ccff;
	--quiter-appointments-disable-icon: '';
}

.quiter-appointments .hidden {
    visibility: hidden;
}

/** Loader */
.quiter-appointments-loader {
    border: 10px solid #ffffff;
    border-top: 10px solid var(--quiter-appointments-main-color);
    border-bottom: 10px solid var(--quiter-appointments-main-color);
    border-radius: 50%;
    animation: spin 2s linear infinite;
	position: fixed;
    z-index: 999;
    height: 80px;
    width: 80px;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.quiter-appointments .quiter-appointments-loader {
    display: none;
}

.quiter-appointments.load .quiter-appointments-loader {
    display: block;
}

.quiter-appointments.load:before {
    content: '';
	background: rgba(255,255,255,0.8);
	width: 100%;
    height: 100%;
	position: fixed;
    z-index: 999;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}



@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/** End Loader */


/** General Styles **/

.quiter-appointments__step {
	display: grid;
	grid-template-columns: 80px;
	margin-top: 32px;
}

.quiter-appointments__number {
	border: solid 3px;
	border-color: var(--quiter-appointments-main-color);
	border-radius: 50%;
	color: var(--quiter-appointments-main-color);
	font-size: 30px;
	font-weight: 700;
	height: 52px;
	width: 52px;
	text-align: center;
	
	grid-column: 1/1;
	grid-row: 1/1;
	margin: auto;
}

.quiter-appointments__description {
	font-weight: 600;
	
	grid-column: 2/2;
	grid-row: 1/1;
	line-height: 1;
}

@media (max-width: 600px) {
	.quiter-appointments__step {
		display: block;
	}
	
	.quiter-appointments__number {
		height: initial;
		width: initial;
		text-align: initial;
		grid-column: initial;
		grid-row: initial;
		margin: initial;
		padding: 0 12px;
	}
}



/** Step 1 - Number Plate **/

.quiter-appointments__number-plate {
	display: flex;
	align-items: center;
	
	grid-column: 2/2;
	grid-row: 2/2;
}

.quiter-appointments__number-plate img {
	height: 68px;
	width: 30px;
	border-radius: 6px 0 0 6px;
}

.quiter-appointments__number-plate input#number_plate {
	border: 3px solid;
	border-left: none;
	border-radius: 0 6px 6px 0;
    padding: 8px;
    text-align: center;
    font-size: 40px;
    width: 290px;
	outline: none;
}

@media (max-width: 480px) {
	.quiter-appointments__number-plate input#number_plate {
		width: 100%;
	}
}


/** Step 2 - Workshops **/

.quiter-appointments__workshops {
	grid-column: 2/2;
	grid-row: 2/2;
	display: flex;
	flex-wrap: wrap;
}

.quiter-appointments__workshops .quiter-appointments__workshop {
	position: relative;
	width: 32%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 24px;
	-webkit-box-shadow: 0px 2px 8px 2px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 2px 8px 2px rgba(0,0,0,0.25);
    box-shadow: 0px 2px 8px 2px rgb(0 0 0 / 25%);
	margin-right: 16px;
}

.quiter-appointments__workshops .quiter-appointments__workshop:last-of-type {
	margin-right: 0;
}

.quiter-appointments__workshops .quiter-appointments__workshop .quiter-appointments__workshop--image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: top;
	cursor: pointer;
}

.quiter-appointments__workshops .quiter-appointments__workshop .quiter-appointments__workshop--info {
	padding: 16px;
	width: 100%;
	cursor: pointer;
}

.quiter-appointments__workshops .quiter-appointments__workshop:hover .quiter-appointments__workshop--info:hover,
.quiter-appointments__workshops .quiter-appointments__workshop.active .quiter-appointments__workshop--info {
	background-color: var(--quiter-appointments-main-color);
}

.quiter-appointments__workshops .quiter-appointments__workshop .quiter-appointments__workshop--title {
	position: absolute;
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	margin-top: 0;
	margin-bottom: 12px;
	top: 16px;
	left: 16px;
	background-color: #f5f5f5;
	border-radius: 16px;
	padding: 6px 16px;
}

.quiter-appointments__workshop .quiter-appointments__workshop--info:hover .quiter-appointments__workshop--title,
.quiter-appointments__workshop.active .quiter-appointments__workshop--info .quiter-appointments__workshop--title {
	color: #fff;
	background-color: var(--quiter-appointments-main-color);
}

.quiter-appointments__workshops .quiter-appointments__workshop--maps .quiter-appointments__workshop--maps_title {
	margin: 0;
	font-size: 14px;
	display: none;
}

.quiter-appointments__workshop .quiter-appointments__workshop--info:hover .quiter-appointments__workshop--maps_title,
.quiter-appointments__workshop.active .quiter-appointments__workshop--info .quiter-appointments__workshop--maps_title {
	color: #fff;
}

.quiter-appointments__workshops .quiter-appointments__workshop--maps {
	position: absolute;
	right: 16px;
	top: 154px;
}


.quiter-appointments__workshops .quiter-appointments__workshop--maps .quiter-appointments__workshop--maps__icons {
	display: flex;
	align-items: center;
}

.quiter-appointments__workshop--maps__icons a {
	margin-right: 6px;
}

.quiter-appointments__workshop--maps__icons a:last-of-type {
	margin-right: 0;
}

.quiter-appointments__workshop--maps__icons a svg {
	width: 32px;
}

.quiter-appointments__workshops .quiter-appointments__workshop--schedule__title {
	font-weight: 600;
	margin-bottom: 0;
}

.quiter-appointments__workshop .quiter-appointments__workshop--info:hover .quiter-appointments__workshop--schedule__title,
.quiter-appointments__workshop.active .quiter-appointments__workshop--info .quiter-appointments__workshop--schedule__title {
	color: #fff;
}

.quiter-appointments__workshops .quiter-appointments__workshop--schedule ul {
	list-style: none;
	padding-left: 0;
	font-size: 14px;
	margin-top: 8px;
}

.quiter-appointments__workshop .quiter-appointments__workshop--info:hover ul,
.quiter-appointments__workshop.active .quiter-appointments__workshop--info ul {
	color: #fff;
}


@media (max-width: 1600px) {
	.quiter-appointments__workshops {
		justify-content: space-between;
	}
	
	.quiter-appointments__workshops .quiter-appointments__workshop {
		flex-direction: column;
		width: 48%;
		margin-right: 0;
	}
	
	.quiter-appointments__workshops .quiter-appointments__workshop .quiter-appointments__workshop--image {
		width: 100%;
	}
	
	.quiter-appointments__workshops .quiter-appointments__workshop .quiter-appointments__workshop--info {
		margin-right: initial;
	}
}

@media (max-width: 767px) {
	.quiter-appointments__workshops .quiter-appointments__workshop {
		flex-direction: column;
		width: 100%;
	}
}


/** Step 3 - Schedule **/
.quiter-appointments__schedule .quiter-appointments__schedule--calendar,
.quiter-appointments__schedule .quiter-appointments__schedule--hours,
.quiter-appointments__schedule .quiter-appointments__schedule--operators {
	padding: 30px;
	height: 535px;
	overflow-y: auto;
	-webkit-box-shadow: 0px 2px 8px 2px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 2px 8px 2px rgba(0,0,0,0.25);
    box-shadow: 0px 2px 8px 2px rgb(0 0 0 / 25%);
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar p,
.quiter-appointments__schedule .quiter-appointments__schedule--hours p, 
.quiter-appointments__schedule .quiter-appointments__schedule--operators p {
	font-weight: 600;
}

.quiter-appointments__schedule h2 {
	color: var(--quiter-appointments-main-color);
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: solid 2px #e6e6e6;
    text-align: center;
}

@media (max-width: 1600px) {
	.quiter-appointments__schedule .quiter-appointments__schedule--calendar,
	.quiter-appointments__schedule .quiter-appointments__schedule--hours,
	.quiter-appointments__schedule .quiter-appointments__schedule--operators {
		height: 500px;
	}
	
	.quiter-appointments__schedule h2 {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.quiter-appointments__schedule .quiter-appointments__schedule--calendar,
	.quiter-appointments__schedule .quiter-appointments__schedule--hours,
	.quiter-appointments__schedule .quiter-appointments__schedule--operators {
		margin-right: 0;
	}
}


/** Step 3.1 Calendar **/

.quiter-appointments__schedule {
	grid-column: 2/2;
	grid-row: 2/2;
	
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar {
	width: 38%;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar h2 {
	text-align: left;
	border-bottom: none;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar__title-container {
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar__directions a {
	color: #e6e6e6;
    border: solid 1px #e6e6e6;
    padding: 4px;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar__directions .next {
	margin-left: 6px;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar table {
	width: 100%;
	border-collapse: collapse;
	border-bottom: solid 2px #e6e6e6;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar table tr:nth-child(1) {
	border-top: solid 2px #e6e6e6;
	border-bottom: solid 2px #e6e6e6;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar table th {
	font-weight: 500;
	padding-top: 8px;
	padding-bottom: 8px;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar table th:last-of-type {
	color: #dc3534;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar table td {
	text-align: center;
	vertical-align: middle;
	padding: 12px;
	cursor: pointer;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar table td.disabled {
	color: #404040;
	font-weight: 400;
	cursor: initial;
	background-image: var(--quiter-appointments-disable-icon);
	background-size: 30px;
	background-repeat: no-repeat;
	background-position: center;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar table td.disabled:empty {
	background-image: none;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar table td.active {
	position: relative;
	color: #fff;
}

.quiter-appointments__schedule .quiter-appointments__schedule--calendar table td.active:after {
	content: '';
	width: 36px;
	height: 36px;
	position: absolute;
	left: 1px;
	right: 0;
	top: 0;
	bottom: 1px;
	margin: auto;
	border-radius: 50%;
	background-color: var(--quiter-appointments-main-color);
	z-index: -1;
}

@media (max-width: 1600px) {
	.quiter-appointments__schedule .quiter-appointments__schedule--calendar table td {
		padding: 10px;
	}
}

@media (max-width: 992px) {
	.quiter-appointments__schedule .quiter-appointments__schedule--calendar {
		width: 100%;
		margin-bottom: 24px;
	}
}



/** Step 3.2 - Hours **/
.quiter-appointments__schedule .quiter-appointments__schedule--hours {
	width: 28%;
}

.quiter-appointments__schedule .quiter-appointments__schedule--hours__items p {
	background-color: #f5f5f5;
    cursor: pointer;
    outline: none;
    padding: 12px;
    text-align: center;
}

.quiter-appointments__schedule .quiter-appointments__schedule--hours__items p:hover,
.quiter-appointments__schedule .quiter-appointments__schedule--hours__items p.active {
	color: #fff;
	background-color: var(--quiter-appointments-main-color);
}

@media (max-width: 992px) {
	.quiter-appointments__schedule .quiter-appointments__schedule--hours {
		width: 48%;
		margin-bottom: 24px;
	}
}
	
@media (max-width: 480px) {
	.quiter-appointments__schedule .quiter-appointments__schedule--hours {
		width: 100%;
	}
}



/** Step 3.3 - Asesors **/
.quiter-appointments__schedule .quiter-appointments__schedule--operators {
	width: 28%;
}

.quiter-appointments__schedule .quiter-appointments__schedule--operator {
	display: flex;
    align-items: center;
    margin-top: 16px;
    background-color: #f5f5f5;
    border-radius: 50px 0 0 50px;
	cursor: pointer;
}

.quiter-appointments__schedule .quiter-appointments__schedule--operator.active,
.quiter-appointments__schedule .quiter-appointments__schedule--operator:hover {
	color: #fff;
	background-color: var(--quiter-appointments-main-color);
}

.quiter-appointments__schedule .quiter-appointments__schedule--operator .quiter-appointments__schedule--operator__image {
	width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.quiter-appointments__schedule .quiter-appointments__schedule--operator .quiter-appointments__schedule--operator__info {
	padding-left: 16px;
	padding-right: 16px;
    width: 100%;
}


@media (max-width: 1600px) {
	.quiter-appointments__schedule--operator__title {
		font-size: 14px;
	}
	
	.quiter-appointments__schedule .quiter-appointments__schedule--operator .quiter-appointments__schedule--operator__image {
		width: 80px;
    	height: 80px;
	}
}

@media (max-width: 992px) {
	.quiter-appointments__schedule .quiter-appointments__schedule--operators {
		width: 48%;
	}
	
	.quiter-appointments__schedule .quiter-appointments__schedule--operator {
		flex-direction: column;
    	border-radius: 0;
    	padding-top: 16px;
	}
	
	.quiter-appointments__schedule .quiter-appointments__schedule--operator .quiter-appointments__schedule--operator__info {
		text-align: center;
	}
}
	

@media (max-width: 480px) {
	.quiter-appointments__schedule .quiter-appointments__schedule--operators {
		width: 100%;
	}
}




/** Step 4 - Services **/
.quiter-appointments__services {
	display: flex;
    flex-wrap: wrap;
	width: 100%;
	
	grid-column: 2/2;
	grid-row: 2/2;
}

.quiter-appointments__services .quiter-appointments__service {
	width: 24%;
    display: flex;
    align-items: center;
	padding: 12px;
	cursor: pointer;
	margin-bottom: 12px;
	margin-right: 12px;
	-webkit-box-shadow: 0px 2px 8px 2px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 2px 8px 2px rgba(0,0,0,0.25);
    box-shadow: 0px 2px 8px 2px rgb(0 0 0 / 25%);
}

.quiter-appointments__services .quiter-appointments__service:hover,
.quiter-appointments__services .quiter-appointments__service.active {
	color: #fff;
	background-color: var(--quiter-appointments-main-color);
}

.quiter-appointments__services .quiter-appointments__service--icon {
	width: 64px;
	height: 64px;
}

.quiter-appointments__services .quiter-appointments__service:hover .quiter-appointments__service--icon,
.quiter-appointments__services .quiter-appointments__service.active .quiter-appointments__service--icon {
	filter: invert(1);
}

.quiter-appointments__services .quiter-appointments__service label {
	margin-left: 16px;
	font-weight: 500;
	display: flex;
    align-items: center;
    cursor: pointer;
}

.quiter-appointments__service input[type="checkbox"] {
    display: none;
}

@media (max-width: 1600px) {
	.quiter-appointments__services .quiter-appointments__service {
		width: 31.5%;
	}
}

@media (max-width: 992px) {
	.quiter-appointments__services .quiter-appointments__service {
		width: 48%;
	}
}

@media (max-width: 767px) {
	.quiter-appointments__services .quiter-appointments__service {
		width: 100%;
		margin-right: 0;
	}
}

/** Step 5 - Contact **/
.quiter-appointments__form {
	grid-column: 2/2;
	grid-row: 2/2;
}

.quiter-appointments__form .quiter-appointments__form--input {
	display: flex;
    align-items: center;
}

.quiter-appointments__form .quiter-appointments__form--input .quiter-appointments__form--icon {
	width: 36px;
    height: 36px;
}

.quiter-appointments__form .quiter-appointments__form--input label {
	margin-left: 16px;
    font-weight: 600;
    width: 140px;
}

.quiter-appointments__form .quiter-appointments__form--input input,
.quiter-appointments__form textarea {
	background-color: #f5f5f5;
    border: none;
    outline: none;
    padding: 6px 12px;
    width: 400px;
	margin-bottom: 16px;
}

.quiter-appointments__form input[type="checkbox"] {
	width: initial;
}

.quiter-appointments__form label[for="legal_conditions"] {
	width: initial;
	margin-top: 16px;
	margin-left: 0;
}

.quiter-appointments__form label[for="legal_conditions"] a {
	color: #000;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 767px) {
	.quiter-appointments__form .quiter-appointments__form--input label {
		font-size: 12px;
	}
	
	.quiter-appointments__form .quiter-appointments__form--input .quiter-appointments__form--icon {
		width: 24px;
		height: 24px;
	}
	
	.quiter-appointments__form .quiter-appointments__form--input input,
	.quiter-appointments__form textarea {
		width: 100%;
	}
	
	.quiter-appointments__form input[type="checkbox"] {
		width: initial;
	}
}

@media (max-width: 480px) {
	.quiter-appointments__form .quiter-appointments__form--input {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.quiter-appointments__form .quiter-appointments__form--input label {
		margin-left: 0;
	}
}


/** Step 6 - Appointment Confirmed **/
.quiter-appointments__confirmed {
	grid-column: 2/2;
    grid-row: 2/2;
}

.quiter-appointments__confirmed .quiter-appointments__confirmed-text-container {
	display: flex;
	align-items: center;
}

.quiter-appointments__confirmed .quiter-appointments__confirmed--icon {
	height: 42px;
    width: 42px;
    margin-right: 10px;
}

.quiter-appointments__confirmed .quiter-appointments__confirmed--text {
	font-size: 14px;
}

.quiter-appointments__confirmed button#appointment_confirmed {
	background-color: var(--quiter-appointments-main-color);
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
    width: 200px;
    margin-top: 12px;
    cursor: pointer;
}

@media (max-width: 480px) {
	.quiter-appointments__confirmed .quiter-appointments__confirmed-text-container {
		flex-direction: column;
    	align-items: flex-start;
	}
}