* {
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	     text-size-adjust: none;
}

.evvnt-full-screen {
	position: fixed !important;
	top: 0;
	margin: 0;
	left: 0;
	bottom: 0;
	height: 100vh !important;
	min-height: 100vh !important;
	z-index: 99999;
}

:root,
:host {
	line-height: 24px;
	-webkit-text-size-adjust: 100%;
	tab-size: 4;
	font-size: 16px;
	--srem: 16px;
	font-family:
		ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.c-card img {
	transition: transform 0.3s ease-in-out;
}

.c-card:hover .event-image-container img {
	transform: translate(-50%, -50%) scale(1.05);
}

.hide-mobile-scroll ::-webkit-scrollbar {
	display: none;
}

.image-placeholder {
	background-color: #dfdbe5;
}

.event-image-container {
	background-color: black;
	background-image: linear-gradient(
		rgba(255, 255, 255, 0.6) 0%,
		rgba(40, 40, 40, 0.8) 60%,
		rgba(0, 0, 0, 1) 90%
	);
	overflow: hidden;
	position: relative;
	text-align: center;
	min-width: 100%;
	margin: 0;
}

.blurred-background {
	background-position: center;
	background-size: 125%;
	filter: blur(10px);
	width: 100%;
	height: 100%;
}

.event-image {
	width: 100%;
	vertical-align: top;
	object-fit: contain;
	border: 0;
	bottom: 0;
	max-height: 100%;
	max-width: 100%;
	left: 50%;
	top: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}

.event-image img {
	height: 100%;
}

.subtle-shadow {
	box-shadow: 0 16px 64px -16px rgb(44 55 77 / 10%);
	transition:
		box-shadow 0.5s;
}

.subtle-shadow:hover {
	box-shadow: 0 16px 64px -16px rgb(44 55 77 / 24%);
}

.medium-shadow {
	box-shadow: 0 16px 64px -16px rgb(44 55 77 / 24%);
}

/* clears the ‘X’ from Internet Explorer */
input[type="search"]::-ms-clear {
	display: none;
	width: 0;
	height: 0;
}
input[type="search"]::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

input[type="search"] {
	-webkit-appearance: none;
	background-color: white;
}

input[type="search"]:focus {
	box-shadow: none;
}

@media only screen and (max-width: 767px) {
	.modal-full-height-minus-header {
		height: 100vh;
	}
}

/* Datepicker styles */
.Selectable
.DayPicker-Day--selected:not(.DayPicker-Day--start):not(
	.DayPicker-Day--end
):not(.DayPicker-Day--outside) {
	background-color: #f0f8ff !important;
	color: #4a90e2;
}
.Selectable .DayPicker-Day {
	border-radius: 0 !important;
}
.Selectable .DayPicker-Day--start {
	border-top-left-radius: 50% !important;
	border-bottom-left-radius: 50% !important;
}
.Selectable .DayPicker-Day--end {
	border-top-right-radius: 50% !important;
	border-bottom-right-radius: 50% !important;
}

/* Not sure why tailwind seems to be missing this */
.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* map styles */
.marker-label {
	margin-left: 0.25px;
	margin-top: 1px;
}

#GMap [role="dialog"] {
	padding: 0 !important;
}

#GMap:focus-visible {
	outline: none !important;
}

#GMap div:focus-visible {
	outline: none !important;
}

.infowindow-card {
	min-width: 300px;
}

.w-42 {
	width: calc(10.5 * var(--srem));
}

.h-min {
	height: min-content;
}

@supports (aspect-ratio: 1 / 1) {
	.aspect-video {
		aspect-ratio: 16 / 9;
	}

	.aspect-video[class*="h-["] {
		height: auto;
	}
}

@supports not (aspect-ratio: 1 / 1) {
	.aspect-video {
		padding-top: 0;
	}

	.ev-max-h-170 {
		max-height: 170px;
	}

	.carousel-root .slide .aspect-video {
		padding-top: 0;
	}
}

.swiper {
	overflow-y: visible !important;
	overflow-x: hidden !important;
	padding-bottom: calc(3 * var(--srem)) !important;
	margin-bottom: calc(-3 * var(--srem));
}

.swiper-wrapper {
	height: auto !important;
}

.button {
	display: inline-flex;
	touch-action: manipulation;
	align-items: center;
	justify-content: center;
	gap: 8px;
	white-space: nowrap;
	border-radius: 4px;
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 12px;
	padding-bottom: 12px;
	font-weight: 700;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.button:hover {
	text-decoration-line: none;
}

.button:enabled {
	cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {

	.button {
		transition-property: none;
	}
}

.button-white {
	border-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
	--tw-text-opacity: 1;
	color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}

.button-sm {
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 14px;
	line-height: 20px;
}

.ads-image {
	transform: none !important;
}
