/**
 * Frontend CSS for Tory's Messekalender
 */

/* CSS Variables (overridden by inline styles from settings) */
:root {
	--tmk-primary-btn: #00B9BC;
	--tmk-primary-btn-hover: #009fa2;
	--tmk-text-color: #203556;
	--tmk-gradient-start: #00737d;
	--tmk-gradient-end: #203556;
	--tmk-border-radius: 12px;
	--tmk-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	--tmk-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Base Styles */
.tmk-messe-seite,
.tmk-next-fair {
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--tmk-text-color);
	line-height: 1.6;
}

/* Hero Section */
.tmk-hero {
	background: linear-gradient(135deg, var(--tmk-gradient-start), var(--tmk-gradient-end));
	border-radius: var(--tmk-border-radius);
	padding: 3rem 2rem;
	margin-bottom: 2rem;
	color: white;
}

.tmk-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 2rem;
	align-items: center;
}

.tmk-hero-media img {
	width: 100%;
	height: auto;
	border-radius: var(--tmk-border-radius);
	box-shadow: var(--tmk-shadow);
}

.tmk-hero-copy h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 1rem;
	line-height: 1.2;
}

.tmk-hero-sub {
	font-size: 1.125rem;
	margin: 0;
	opacity: 0.95;
	line-height: 1.6;
}

/* Controls */
.tmk-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.tmk-search {
	flex: 1;
	min-width: 250px;
}

.tmk-search-input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid #e0e0e0;
	border-radius: 9999px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.2s;
}

.tmk-search-input:focus {
	outline: none;
	border-color: var(--tmk-primary-btn);
}

.tmk-view-toggle {
	display: flex;
	gap: 0.5rem;
	background: #f5f5f5;
	padding: 0.25rem;
	border-radius: 9999px;
}

.tmk-toggle-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: transparent;
	border: none;
	border-radius: 9999px;
	font-size: 0.95rem;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	transition: all 0.2s;
}

.tmk-toggle-btn:hover {
	background: white;
	color: var(--tmk-text-color);
}

.tmk-toggle-btn.active {
	background: var(--tmk-primary-btn);
	color: white;
	box-shadow: var(--tmk-shadow);
}

.tmk-toggle-btn svg {
	width: 20px;
	height: 20px;
}

/* Content Views */
.tmk-content {
	position: relative;
}

.tmk-list-view,
.tmk-calendar-view {
	display: none;
}

.tmk-list-view.active,
.tmk-calendar-view.active {
	display: block;
}

/* List View */
.tmk-month-group {
	margin-bottom: 3rem;
}

.tmk-month-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--tmk-text-color);
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 3px solid var(--tmk-primary-btn);
}

.tmk-fair-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
}

/* Fair Card */
.tmk-fair-card,
.tmk-next-fair {
	background: white;
	border-radius: var(--tmk-border-radius);
	box-shadow: var(--tmk-shadow);
	padding: 1.5rem;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	box-sizing: border-box;
}

.tmk-fair-card:hover,
.tmk-next-fair:hover {
	box-shadow: var(--tmk-shadow-hover);
	transform: translateY(-2px);
}

.tmk-fair-card-logo,
.tmk-next-fair-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	background: #f9f9f9;
	border-radius: 8px;
	padding: 1rem;
}

.tmk-card-logo-img,
.tmk-logo-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.tmk-fair-card-header,
.tmk-next-fair-header {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.tmk-fair-card-title,
.tmk-next-fair-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--tmk-text-color);
	margin: 0;
	line-height: 1.3;
}

.tmk-fair-card-meta,
.tmk-next-fair-meta {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.tmk-card-meta-item,
.tmk-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	color: #666;
}

/* Better spacing for hall/booth row */
.tmk-meta-booth { margin-top: 0.15rem; margin-bottom: 0.5rem; }
.tmk-meta-booth .tmk-pair { display: inline-flex; align-items: baseline; gap: 0.25rem; margin-right: 1rem; }
.tmk-meta-booth .tmk-value { color: #203556; }

.tmk-meta-booth .tmk-label { font-weight: 400; margin-right: 0.25rem; color: #666; }

.tmk-icon {
	flex-shrink: 0;
	color: var(--tmk-primary-btn);
}

.tmk-fair-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.tmk-next-fair-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

/* Next Fair Shortcode specific styles */
.tmk-next-fair .tmk-next-fair-logo {
	height: 120px; /* Larger logo for next fair */
}

.tmk-next-fair .tmk-next-fair-actions .tmk-btn {
	padding: 0.5rem 0.9rem; /* Smaller buttons for next fair */
	font-size: 0.875rem;
}

/* Badges */
.tmk-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.85rem;
	font-weight: 600;
	background: #e0e0e0;
	color: var(--tmk-text-color);
}

/* Generic chips for hall/booth info */
.tmk-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.25rem 0.6rem;
	border-radius: 9999px;
	background: #eeeeee; /* light grey bubble */
	color: #666; /* text color like other meta */
	font-size: 0.85rem;
	font-weight: 400; /* not bold */
}

.tmk-chip svg { width: 14px; height: 14px; color: #00B9BC; flex-shrink: 0; }
.tmk-chip .tmk-label { font-weight: 400; color: #666; }

.tmk-badge-running {
	background: #4caf50;
	color: white;
}

.tmk-badge-today {
	background: #ff9800;
	color: white;
}

.tmk-badge-hall {
	background: #e3f2fd;
	color: #1976d2;
}

.tmk-badge-booth {
	background: #f3e5f5;
	color: #7b1fa2;
}

/* Buttons */
.tmk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.1rem;
	background: var(--tmk-primary-btn);
	color: white;
	border: none;
	border-radius: 9999px;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s;
	font-family: inherit;
}

.tmk-btn:hover {
	background: var(--tmk-primary-btn-hover);
	transform: translateY(-1px);
	box-shadow: var(--tmk-shadow);
	color: white;
	text-decoration: none;
}

.tmk-btn:active {
	transform: translateY(0);
}

.tmk-btn-sm {
	padding: 0.5rem 0.9rem;
	font-size: 0.875rem;
}

.tmk-btn-outline {
	background: transparent;
	color: var(--tmk-primary-btn);
	border: 2px solid var(--tmk-primary-btn);
}

.tmk-btn-outline:hover {
	background: var(--tmk-primary-btn);
	color: white;
}

/* Calendar View - Complete Rewrite */
.tmk-calendar-view {
	width: 100%;
}

.tmk-calendar {
	background: white;
	border-radius: var(--tmk-border-radius);
	box-shadow: var(--tmk-shadow);
	padding: 2rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.tmk-calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.tmk-calendar-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--tmk-text-color);
	margin: 0;
}

.tmk-calendar-nav {
	background: transparent;
	border: none;
	color: var(--tmk-text-color);
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 50%;
	transition: background 0.2s;
}

.tmk-calendar-nav:hover {
	background: #f0f0f0;
}

.tmk-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0;
	background: #e0e0e0;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	width: 100%;
}

.tmk-calendar-weekday {
	background: #f5f5f5;
	padding: 0.75rem;
	text-align: center;
	font-weight: 600;
	font-size: 0.875rem;
	color: #666;
}

.tmk-calendar-day {
	background: white;
	min-height: 80px;
	padding: 0.5rem;
	position: relative;
	transition: background 0.2s;
	border: 1px solid #e0e0e0;
	box-sizing: border-box;
}

.tmk-calendar-day:not(.tmk-calendar-day-empty):hover {
	background: #f9f9f9;
}

.tmk-calendar-day-empty {
	background: #fafafa;
}

.tmk-calendar-day.is-today {
	background: #e3f2fd;
}

.tmk-calendar-day-number {
	display: block;
	font-weight: 600;
	color: var(--tmk-text-color);
	margin-bottom: 0.25rem;
}

.tmk-calendar-events {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.tmk-calendar-event {
	display: flex;
	align-items: flex-start;
	gap: 0.25rem;
	padding: 0.25rem;
	background: var(--tmk-primary-btn);
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 0.75rem;
	text-align: left;
	cursor: pointer;
	transition: opacity 0.2s;
	font-family: inherit;
	white-space: normal;
	word-wrap: break-word;
	line-height: 1.2;
	min-height: auto;
	margin: 1px;
	box-sizing: border-box;
}

.tmk-calendar-event:hover {
	opacity: 0.9;
}

.tmk-calendar-event .tmk-event-name {
	flex: 1;
	white-space: normal;
	word-wrap: break-word;
	line-height: 1.2;
}

.tmk-calendar-event .tmk-event-dot {
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.tmk-event-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: white;
	flex-shrink: 0;
}

.tmk-event-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Modal */
.tmk-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	align-items: center;
	justify-content: center;
}

.tmk-modal[aria-hidden="false"] {
	display: flex;
}

.tmk-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}

.tmk-modal-content {
	position: relative;
	background: white;
	border-radius: var(--tmk-border-radius);
	padding: 2rem;
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	animation: tmkModalSlideIn 0.3s ease-out;
}

@keyframes tmkModalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tmk-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: transparent;
	border: none;
	color: #666;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 50%;
	transition: background 0.2s;
}

.tmk-modal-close:hover {
	background: #f0f0f0;
}

/* No Results */
.tmk-no-fair,
.tmk-no-results {
	text-align: center;
	padding: 3rem 1rem;
	color: #999;
	font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 1024px) {
	.tmk-hero-inner {
		grid-template-columns: 1fr;
	}

	.tmk-fair-grid {
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	}
}

/* Tablet optimization - zwischen 768px und 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
	.tmk-fair-grid {
		grid-template-columns: 1fr;
	}
	
	/* Elementor-spezifische Fixes */
	.elementor-widget-tmk-shortcode .tmk-fair-grid,
	.elementor-widget-tmk-next-fair .tmk-fair-grid {
		grid-template-columns: 1fr !important;
	}
	
	.elementor-widget-tmk-shortcode .tmk-fair-card,
	.elementor-widget-tmk-next-fair .tmk-next-fair {
		width: 100% !important;
		max-width: 100% !important;
	}
}

/* Elementor-spezifische Überschreibungen - EXCLUDE calendar completely */
.elementor-widget-tmk-shortcode,
.elementor-widget-tmk-next-fair {
	width: 100% !important;
}

/* Only affect fair-grid and fair-card, never calendar */
.elementor-widget-tmk-shortcode .tmk-list-view .tmk-fair-grid,
.elementor-widget-tmk-next-fair .tmk-fair-grid {
	width: 100% !important;
	grid-template-columns: 1fr !important;
}

.elementor-widget-tmk-shortcode .tmk-list-view .tmk-fair-card,
.elementor-widget-tmk-next-fair .tmk-next-fair {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* Elementor Widget Container Fixes - ONLY fair-grid and fair-card */
.elementor-widget-container .tmk-list-view .tmk-fair-grid {
	grid-template-columns: 1fr !important;
}

.elementor-column .tmk-list-view .tmk-fair-grid {
	grid-template-columns: 1fr !important;
}

.elementor-widget-container .tmk-list-view .tmk-fair-card,
.elementor-column .tmk-list-view .tmk-fair-card,
.elementor-widget-container .tmk-next-fair,
.elementor-column .tmk-next-fair {
	width: 100% !important;
	max-width: 100% !important;
}

/* Elementor Section fixes - ONLY list view fair-grid */
.elementor-section .tmk-list-view .tmk-fair-grid,
.elementor-container .tmk-list-view .tmk-fair-grid {
	grid-template-columns: 1fr !important;
}

/* Elementor Calendar fixes - ensure same width as list */
.elementor-widget-tmk-shortcode .tmk-calendar-view,
.elementor-widget-tmk-shortcode .tmk-calendar,
.elementor-widget-container .tmk-calendar-view,
.elementor-widget-container .tmk-calendar,
.elementor-column .tmk-calendar-view,
.elementor-column .tmk-calendar,
.elementor-section .tmk-calendar-view,
.elementor-section .tmk-calendar,
.elementor-container .tmk-calendar-view,
.elementor-container .tmk-calendar {
	width: 100% !important;
	max-width: 100% !important;
}

/* Override any responsive grid at larger screens in Elementor - ONLY LIST VIEW, NEVER CALENDAR */
@media (min-width: 1025px) {
	.elementor-widget-tmk-shortcode .tmk-list-view .tmk-fair-grid,
	.elementor-widget-tmk-next-fair .tmk-fair-grid,
	.elementor-widget-container .tmk-list-view .tmk-fair-grid,
	.elementor-column .tmk-list-view .tmk-fair-grid,
	.elementor-section .tmk-list-view .tmk-fair-grid {
		grid-template-columns: 1fr !important;
		width: 100% !important;
	}
	
	.elementor-widget-tmk-shortcode .tmk-list-view .tmk-fair-card,
	.elementor-widget-tmk-next-fair .tmk-next-fair,
	.elementor-widget-container .tmk-list-view .tmk-fair-card,
	.elementor-column .tmk-list-view .tmk-fair-card,
	.elementor-widget-container .tmk-next-fair,
	.elementor-column .tmk-next-fair {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	/* Specific fix for next-fair shortcode when it appears alone */
	.elementor-widget-tmk-next-fair .tmk-next-fair {
		display: flex !important;
		flex-direction: column !important;
	}
	
	/* Ensure calendar has same width as list at larger screens */
	.elementor-widget-tmk-shortcode .tmk-calendar-view,
	.elementor-widget-tmk-shortcode .tmk-calendar,
	.elementor-widget-container .tmk-calendar-view,
	.elementor-widget-container .tmk-calendar {
		width: 100% !important;
		max-width: 100% !important;
	}
}

/* Clean Popup */
.tmk-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
}

.tmk-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}

.tmk-popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	max-width: 600px;
	width: 90%;
	max-height: 85vh;
	overflow: hidden;
}

.tmk-popup-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px;
	background: var(--tmk-primary);
	color: white;
}

.tmk-popup-header h3 {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 600;
}

.tmk-popup-close {
	background: none;
	border: none;
	color: #000;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	padding: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s;
}

.tmk-popup-close:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.tmk-popup-body {
	padding: 0;
	max-height: calc(85vh - 80px);
	overflow-y: auto;
}

.tmk-form-container {
	padding: 24px;
}

.tmk-form-container .hs-form {
	margin: 0;
}

.tmk-form-container .hs-form-frame {
	margin: 0;
}

/* HubSpot Form Styling */
.tmk-popup .hs-form .hs-form-field {
	margin-bottom: 20px;
}

.tmk-popup .hs-form .hs-form-field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
}

.tmk-popup .hs-form .hs-form-field input,
.tmk-popup .hs-form .hs-form-field select,
.tmk-popup .hs-form .hs-form-field textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	font-size: 16px;
	transition: border-color 0.2s;
}

.tmk-popup .hs-form .hs-form-field input:focus,
.tmk-popup .hs-form .hs-form-field select:focus,
.tmk-popup .hs-form .hs-form-field textarea:focus {
	outline: none;
	border-color: var(--tmk-primary);
}

.tmk-popup .hs-form .hs-submit {
	margin-top: 24px;
}

.tmk-popup .hs-form .hs-submit input[type="submit"] {
	background: var(--tmk-primary);
	color: white;
	padding: 14px 28px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s;
}

.tmk-popup .hs-form .hs-submit input[type="submit"]:hover {
	background: #0056b3;
}

@media (max-width: 768px) {
	.tmk-hero {
		padding: 2rem 1.5rem;
	}

	.tmk-hero-copy h1 {
		font-size: 2rem;
	}

	.tmk-hero-sub {
		font-size: 1rem;
	}

	.tmk-controls {
		flex-direction: column;
		align-items: stretch;
	}

	.tmk-search {
		width: 100%;
	}

	.tmk-view-toggle {
		justify-content: center;
	}

	.tmk-fair-grid {
		grid-template-columns: 1fr;
	}

	.tmk-month-title {
		font-size: 1.5rem;
	}

	.tmk-calendar {
		padding: 1rem;
	}

	.tmk-calendar-day {
		min-height: 60px;
		font-size: 0.85rem;
	}

	.tmk-event-name {
		display: none;
	}
}

@media (max-width: 480px) {
	.tmk-hero {
		padding: 1.5rem 1rem;
	}

	.tmk-hero-copy h1 {
		font-size: 1.5rem;
	}

	.tmk-hero-sub {
		font-size: 0.95rem;
	}

	.tmk-toggle-btn span {
		display: none;
	}

	.tmk-fair-card,
	.tmk-next-fair {
		padding: 1rem;
		margin: 0;
		box-sizing: border-box;
	}

	.tmk-fair-card-actions,
	.tmk-next-fair-actions {
		flex-direction: column;
		gap: 0.75rem;
	}

	/* Next Fair specific mobile adjustments */
	.tmk-next-fair .tmk-next-fair-logo {
		height: 100px; /* Smaller on mobile */
	}

	.tmk-next-fair .tmk-next-fair-actions .tmk-btn {
		padding: 0.6rem 1rem;
		font-size: 0.9rem;
	}

	.tmk-btn,
	.tmk-btn-sm {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		padding: 0.6rem 1rem;
		font-size: 0.9rem;
	}

	.tmk-modal-content {
		padding: 1.5rem;
	}

	.tmk-calendar-grid {
		gap: 0;
	}

	.tmk-calendar-day {
		min-height: 50px;
		padding: 0.25rem;
		font-size: 0.75rem;
	}

	.tmk-calendar-weekday {
		padding: 0.5rem;
		font-size: 0.75rem;
	}
}

/* Extra small mobile devices */
@media (max-width: 480px) {
	.tmk-fair-card,
	.tmk-next-fair {
		padding: 0.75rem;
		margin: 0;
	}

	.tmk-btn,
	.tmk-btn-sm {
		padding: 0.5rem 0.8rem;
		font-size: 0.85rem;
		min-height: 44px;
	}

	.tmk-fair-card-actions,
	.tmk-next-fair-actions {
		gap: 0.5rem;
	}

	/* Next Fair specific extra small mobile adjustments */
	.tmk-next-fair .tmk-next-fair-logo {
		height: 80px; /* Even smaller on extra small screens */
	}

	.tmk-next-fair .tmk-next-fair-actions .tmk-btn {
		padding: 0.5rem 0.8rem;
		font-size: 0.85rem;
		min-height: 44px;
	}
}

/* Screen Reader Only */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Loading State */
.tmk-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem;
	color: #999;
}

.tmk-loading::after {
	content: "";
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid var(--tmk-primary-btn);
	border-radius: 50%;
	animation: tmkSpin 1s linear infinite;
}

@keyframes tmkSpin {
	to { transform: rotate(360deg); }
}

