	.entrata-tour-widget {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}
	.entrata-tour-widget header {
		background-image: none;
	}
  .entrata-tour-widget__loader {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 300px;
  }
  
	.entrata-tour-widget--submitting {
		opacity: .5;
		pointer-events: none;
	}
	.entrata-tour-widget--submitting::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		background-color: white;
		z-index: 1;
	}
	.entrata-tour-widget--submitting::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		height: 100px;
		width: 100px;
		background-color: transparent;
		border: 5px solid var(--color-primary);
		border-top-color: #fff;
		border-radius: 50%;
		animation: spin 1s linear infinite;
		z-index: 2;
	}
	@keyframes spin {
		0% {
			transform: translate(-50%, -50%) rotate(0deg);
		}
		100% {
			transform: translate(-50%, -50%) rotate(360deg);
		}
	}
	.entrata-tour-widget h2 {
		margin-bottom: 10px;
	}
	.entrata-tour-widget__back-arrow {
		background: none;
		border: none;
		cursor: pointer;
		margin-right: 10px;
		width: 16px;
		height: 16px;
		vertical-align: text-top;
		fill: var(--color-primary);
	}
	.entrata-tour-widget__type-select {
		display: flex;
		flex-direction: column;
		gap: 32px;
		margin-bottom: 32px;
	}
	.entrata-tour-widget__nav {
		display: flex;
		justify-content: center;
		gap: 16px;
		margin-top: 32px;
		font-weight: bold;
	}
	.entrata-tour-widget__error-message {
		color: black;
		font-size: 14px;
		text-align: center;
		background-color: pink;
		padding: 16px;
		border: 1px solid red;
		margin: 10px 0;
		grid-column: 1 / -1;
	}
	.entrata-tour-widget__nav .entrata-tour-widget__button {
		min-width: 200px;
		padding: 10px 24px;
		text-align: center;
		background-color: var(--color-primary);
		border-color: var(--color-primary);
		color: white;
	}
	.entrata-tour-widget__button {
		border: 2px solid #ced4da;
		background-color: white;
		border-radius: 5px;
		padding: 10px;
		cursor: pointer;
		transition: border-color 0.3s;
	}
	.entrata-tour-widget__button--disabled {
		opacity: 0.5;
		cursor: not-allowed;
	}
	.entrata-tour-widget__button--tour {
		box-shadow: 0 1px 1px rgba(0, 0, 0, 0.025), 0 2px 2px rgba(0, 0, 0, 0.025), 0 4px 4px rgba(0, 0, 0, 0.025), 0 8px 8px rgba(0, 0, 0, 0.025);
		padding: 25px;
	}
	.entrata-tour-widget__button__label {
		font-size: 1.5rem;
		font-weight: bold;
	}
	.entrata-tour-widget__button__description {
		font-size: 1rem;
	}

	/* Date Time Picker */
	.tour-date-time-picker__days {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		/*grid-auto-flow: column;*/
		gap: 16px;
		padding: 0;
		margin: 0;
		list-style: none;
	}
	.tour-date-time-picker__day__button {
		padding: 5px;
		transition: all 0.3s;
	}
	.tour-date-time-picker__day__button--active {
		border: 2px solid #06a7e1;
	}
	@media(min-width: 767px) {
		.tour-date-time-picker__day__button {
			padding: 10px;
		}
		.tour-date-time-picker__days {
			justify-content: start;
		}
	}
	.tour-date-time-picker__day {
		display: flex;
		flex-direction: column;
		gap: 8px;
		text-align: center;
		min-width: 5rem;
	}
	.tour-date-time-picker__day__dow {
		font-size: 18px;
		font-weight: bold;
		text-transform: uppercase;
	}
	.tour-date-time-picker__day__dom {}
	.tour-date-time-picker__times {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		padding: 0;
		margin: 24px 0 0;
		text-align: center;
	}
	@media(min-width: 767px) {
		.tour-date-time-picker__times {
			grid-template-columns: repeat(3, 1fr);
		}
	}
	.tour-date-time-picker__time {
		border: 2px solid #ced4da;
		background-color: white;
		border-radius: 5px;
		padding: 10px;
		cursor: pointer;
	}
	.tour-date-time-picker__time {
		transition: all 0.3s;
	}
	.tour-date-time-picker__time--active {
		border: 2px solid #06a7e1;
	}

	.tour-contact-info__fields {
		display: grid;
		gap: 16px;
	}
	.tour-contact-info__input {
		display: block;
		width: 100%;
		padding: 0.375rem 0.75rem;
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.5;
		color: #212529;
		background-color: #fff;
		background-clip: padding-box;
		border: 1px solid #ced4da;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		border-radius: 0.25rem;
		transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	}
	.tour-contact-info__select {
		display: block;
		width: 100%;
		padding: 0.375rem 2.25rem 0.375rem 0.75rem;
		-moz-padding-start: calc(0.75rem - 3px);
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.5;
		color: #212529;
		background-color: #fff;
		background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
		background-repeat: no-repeat;
		background-position: right 0.75rem center;
		background-size: 16px 12px;
		border: 1px solid #ced4da;
		border-radius: 0.25rem;
		transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		grid-column: 1 / -1;
	}
  .tour-contact-info__form-group-error {
    font-size: 11px;
    color: red;
    font-style: italic;
  }
  .tour-contact-info__disclaimer {
    font-size: 12px;
  }
  .tour-contact-info__disclaimer > * {
    font-size: inherit;
  }
	@media(prefers-reduced-motion: no-preference) {
		.fade-enter-active {
			transition: all 0.3s ease-in;
		}

		.fade-leave-active {
			transition: all 0.5s ease-out;
		}

		.fade-enter-from {
			transform: translateX(20px);
			opacity: 0;
		}
		.fade-leave-to {
			transform: translateX(-20px);
			opacity: 0;
		}
	}

.lds-roller {
  /* change color here */
  color: lightgrey;
  font-size: 60px;
  margin-bottom: 20px;
}
.lds-roller,
.lds-roller div,
.lds-roller div:after {
  box-sizing: border-box;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: .5em .5em;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 0.09em;
  height: 0.09em;
  border-radius: 50%;
  background: currentColor;
  margin: -0.045em 0 0 -0.045em;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 0.78284275em;
  left: 0.78284275em;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 0.846410125em;
  left: 0.7em;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 0.886370375em;
  left: 0.603527625em;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 0.9em;
  left: 0.5em;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 0.886370375em;
  left: 0.396472375em;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 0.846410125em;
  left: 0.3em;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 0.78284275em;
  left: 0.21715725em;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 0.7em;
  left: 0.153589875em;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}