.pt-tabs {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	gap: 20px;
	margin: 40px auto 20px auto;
	padding: 0;
	justify-content: center;
}

.pt-tab {
	cursor: pointer;
	border-bottom: 1px solid #646464;
	font-size: 14px;
}

.pt-tab.pt-selected {
	font-weight: 600;
	border-bottom: 3px solid black;
	padding-bottom: 2px;
}

.pt-class-register-link {
	text-decoration: none;
	background-color: var(--green);
	border: 2px solid transparent;
	color: white;
	padding: 20px;
	display: block;
	border-radius: var(--cta-radius);
	width: auto;
	align-self: flex-end;
	text-align: center;
}

.pt-class {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 20px 0;
	padding: 30px;
	/* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
	/* box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px; */
	box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
	/* background-color: #fefefe; */
	border-radius: 10px;
}

.pt-class-line {
	height: 4px;
}

.pt-title {
	/* font-weight: bold; */
}

.pt-category {}

.pt-spots-left {
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 5px;
}

.pt-spots-left.pt-fire {
	color: #FF5733;
}

.pt-spots-left.pt-full {
	color: var(--green);
	color: #5cb85c;
}

.pt-spots-left>img {
	align-self: center;
	margin-top: -7px;
}

.pt-description {
	font-size: 16px;
	line-height: 18px;
}

.pt-description>.pt-field {
	display: flex;
	align-items: center;
}

.pt-extra {
	margin: 20px 0 0 0;
}

.pt-drop-in-classes .pt-spots-left {
	display: none;
}

.pt-content-title {
	width: 100%;
	text-align: center;
	font-style: italic;
	margin-bottom: 10px;
	font-size: 14px;
}


.pt-icon {
	margin-right: 15px;
	width: 25px;
	/* position: absolute;
    left: -25px;
    top: -2px; */
}

.pt-2-columns {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.pt-column {
	/* padding: 1rem; */
}

.pt-column.pt-left {
	flex: 3;
}

.pt-column.pt-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pt-kids-racket-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}


.pt-classes-coach-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}


.pt-classes-coach {
	text-align: center;
	/* max-width: 200px; */
	flex-basis: calc(50% - 1rem);

	max-width: 300px;
}

.pt-classes-coach-headshot {
	/* width: 100%;
    height: auto; */
	/* width: 150px;
	height: 150px; */
	border-radius: 50%;
	object-fit: cover;

	width: 300px;
	height: 300px;
}

.pt-kids-racket-img {
	display: none;
}

.pt-column.pt-right {
	display: none;
}

@media screen and (max-width: 480px) {
	.pt-classes-coach {
		flex-basis: 100%;
	}
}

@keyframes shimmer {
	0% {
		background-position: -500%;
	}

	100% {
		background-position: 500%;
	}
}

.pt-shimmer-text {
	font-size: 1rem;
	font-weight: bold;
	background: linear-gradient(90deg, #f0f, #0ff, #00f, #0f0, #ff0, #f00, #f0f, #0ff, #00f, #0f0, #ff0, #f00);
	-webkit-background-clip: text;
	color: transparent;
	background-size: 500% 100%;
	animation: shimmer 20s linear infinite;
	display: inline-block;
}

.pt-show-more-trigger {
	cursor: pointer;
	text-align: center;
	width: fit-content;
	margin: 0 !important;
}

.pt-show-more-trigger:not(.pt--active) .pt-show-less-text {
	display: none;
}

.pt-show-more-trigger.pt--active .pt-show-less-text {
	display: block;
}

.pt-show-more-trigger:not(.pt--active) .pt-show-more-text {
	display: block;
}

.pt-show-more-trigger.pt--active .pt-show-more-text {
	display: none;
}

.pt-title strong {
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.pt-title strong {
		display: block;
	}
}

a.pt-category-tab {
	display: inline-block;
	padding: 10px 20px;
	margin: 5px;
	text-decoration: none;
	color: #000;
	background-color: #fff;
	border: 2px solid #ccc;
	transition: all 0.3s ease;
}

a.pt-category-tab:hover {
	background-color: #ccc;
	border: 2px solid transparent;
	/* border-bottom: 2px solid #000; */
}

@media (max-width: 600px) {
	a.pt-category-tab {
		padding: 10px;
		font-size: 14px;
	}
}

.pt-notice {
	border: 1px solid grey;
	padding: 20px;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* TOGGLE – matches /booking toggle style */
.pt-show-full-filter {
	align-self: center;
}
.pt-toggle-input {
  position:absolute;
  opacity:0;
  width:0;
  height:0;
}

.pt-toggle-label {
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  user-select:none;
}

.pt-toggle-track {
  width:36px;
  height:20px;
  background:#ccc;
  border-radius:10px;
  position:relative;
  transition:background 0.2s;
  flex-shrink:0;
}

.pt-toggle-thumb {
  position:absolute;
  top:2px;
  left:2px;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 1px 3px rgba(0,0,0,0.15);
  transition:transform 0.2s;
}

/* Checked state */
.pt-toggle-input:checked + .pt-toggle-label .pt-toggle-track {
  background:var(--green);
}
.pt-toggle-input:checked + .pt-toggle-label .pt-toggle-thumb {
  transform:translateX(16px);
}

.pt-toggle-text {
  font-size:13px;
  font-family:'Work Sans', sans-serif;
  font-weight:500;
  color:#555;
}

/* Focus ring (keyboard) */
.pt-toggle-input:focus-visible + .pt-toggle-label .pt-toggle-track {
  outline:2px solid #2563eb;
  outline-offset:2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pt-toggle-track, .pt-toggle-thumb { transition:none; }
}
/* END TOGGLE */

.pt-gym-access-callout {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  margin: 20px;
  background: #fafafa;
  font-family: inherit;
}

.pt-gym-access-callout h3 {
  margin-top: 0;
  font-size: 1.0rem;
}

.pt-gym-access-callout p {
  margin: 8px 0 12px;
  font-size: 14px;
}

.pt-gym-access-callout ul {
  margin: 0 0 14px 18px;
  padding: 0;
  font-size: 14px;
}

.pt-gym-access-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pt-gym-access-actions a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #333;
  color: #fff;
  background: #333;
  font-weight: 600;
  font-size: 14px;
}

.pt-gym-access-actions a:last-child {
  background: #fff;
  color: #333;
}

#weekday-dropdown {
	font-size: 14px;
}

@media screen and (max-width: 768px) {
	#weekday-dropdown {
		font-size: 12px;
	}
}

