.v-center-outer {
  height: 100vh;
}

.inner {
  max-width: 1200px;
}

.thin-inner {
  max-width: 900px;
}

.grid {
  display: grid;
  row-gap: 2em;
  column-gap: 2em;
}

.c-2c {
  grid-template-columns: repeat(2, 1fr);
}

.c-3c {
  grid-template-columns: repeat(3, 1fr);
}

.c-4c {
  grid-template-columns: repeat(4, 1fr);
}

.c-6c {
  grid-template-columns: repeat(6, 1fr);
}

.c-8c {
  grid-template-columns: repeat(8, 1fr);
}

.c-8-4c {
  grid-template-columns: 8fr 4fr;
}

.c-2-10c {
  grid-template-columns: 2fr 10fr;
}

.grid-center {
  display: grid;
  place-content: center;
  place-items: center;
}

.grid-left {
  display: grid;
  place-content: start;
  place-items: start;
}

.grid-right {
  display: grid;
  place-content: end;
  place-items: end;
}

.grid-start {
  display: grid;
  place-content: start;
  place-items: start;
}

.grid-end {
  display: grid;
  place-content: end;
  place-items: end;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.flow-c {
  grid-auto-flow: column;
}

.full-width {
  width: 100%;
}
:root {
	--primary-color: #1a1a2e;
	--secondary-color: #16213e;
	--accent-color: #e94560;
	--text-color: #e0e0e0;
	--link-text-color: #86c4e7;
	--card-bg: #0f3460;
	--input-bg: #1e2a4a;
	--error-color: #ff6b6b;
	--table-bg: #0f3460;
	--table-header-bg: #1a1a2e;
	--club-primary-color: #1a1a2e;
	--club-secondary-color: #16213e;
	--club-accent-color: #e94560;
	--club-text-color: #e0e0e0;
	--club-card-bg: #0f3460;
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.container {
	max-width: 50rem;
	padding: 1.25rem;
	margin: 0 auto;
}

h1,
h2,
h3 {
	color: var(--accent-color);
}

h1 {
	font-size: 1.5rem;
	color: #e94560;
	text-align: center;
}

h2 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
	color: var(--accent-color);
}

h3 {
	font-size: 1rem;
}

header {
	padding: 1rem 0;
	text-align: center;
	background-color: var(--secondary-color);
}

a {
	color: var(--link-text-color);
	text-decoration: none;
}

.top-links {
	margin: 1em 0;
	text-align: right;
}

.button,
.edit-button {
	display: inline-block;
	padding: .625rem 1.25rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	background-color: var(--accent-color);
	border-radius: .3125rem;
	transition: background-color .3s ease;
}

.button:hover,
.edit-button:hover {
	background-color: #c81e45;
}

.edit-button {
	display: block;
	width: 100%;
	margin-top: 1rem;
	font-size: 1rem;
	text-align: center;
}

.menu-header {
	margin-top: 1.25rem;
	overflow: hidden;
	background-color: var(--card-bg);
	border-radius: .5rem;
}

.menu-title-banner {
	width: 100%;
	aspect-ratio: 4/1;
	object-fit: cover;
	border-radius: .3rem .3rem 0 0;
}

.menu-avatar,
.menu-rank-image,
.profile-avatar,
.profile-rank-image {
	object-fit: cover;
	border-radius: 50%;
}

.menu-avatar,
.profile-avatar {
	width: 5rem;
	height: 5rem;
}

.menu-rank-image,
.profile-rank-image {
	width: 2.5rem;
	height: 2.5rem;
}

.menu-player-info,
.profile-player-info {
	flex-grow: 1;
	margin: 0 1rem;
}

.player-name {
	margin-bottom: 5px;
	font-size: 1.2em;
	font-weight: 700;
}

.player-clan,
.player-club {
	font-size: .9em;
	opacity: .8;
}

.menu-stats-container,
.profile-stats-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .75rem;
	margin: 1rem 1.25rem;
}

.menu-stat-item,
.profile-stat-item {
	padding: .75rem;
	text-align: center;
	background-color: var(--secondary-color);
	border-radius: .5rem;
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(9.375rem, 1fr));
	gap: .9375rem;
	margin-top: 1.25rem;
}

.menu-item {
	padding: .9375rem;
	text-align: center;
	cursor: pointer;
	background-color: var(--card-bg);
	border-radius: .5rem;
	transition: transform .3s ease;
}

.menu-item:hover {
	transform: translateY(-.3125rem);
}

.menu-item i {
	margin-bottom: .625rem;
	font-size: 1.5rem;
}

.profile-card {
	padding: 0;
	margin-top: 1.25rem;
	overflow: hidden;
	background-color: var(--card-bg);
	border-radius: .5rem;
	box-shadow: 0 .25rem .5rem rgb(0 0 0 / 10%);
}

.profile-title-banner {
	width: 100%;
	aspect-ratio: 4/1;
	object-fit: cover;
	border-radius: .3rem .3rem 0 0;
}

.profile-header {
	display: flex;
	align-items: center;
	padding: 1.25rem;
}

.profile-achievements,
.profile-comment {
	padding: 1rem;
	margin: 1rem 1.25rem;
	background-color: var(--secondary-color);
	border-radius: .5rem;
}

.profile-achievements ul {
	padding-left: 0;
	list-style-type: none;
}

.profile-achievements li {
	margin-bottom: .25rem;
	font-size: .9rem;
}

.profile-footer {
	margin: 1rem 1.25rem;
	font-size: .8rem;
	text-align: right;
	opacity: .7;
}

.account-settings-link {
	margin: .75rem 1.25rem;
	font-size: .9rem;
	text-align: center;
}

.account-settings-link a {
	color: var(--text-color);
	text-decoration: none;
	opacity: .7;
	transition: opacity .3s ease;
}

.pagination a,
.pagination span {
	padding: 8px 12px;
	margin: 0 4px;
	color: var(--text-color);
	text-decoration: none;
	background-color: var(--secondary-color);
	border-radius: 4px;
	transition: background-color .3s ease;
}

.club-player-table th a {
	color: var(--accent-color);
	text-decoration: none;
}

.account-settings-link a:hover {
	opacity: 1;
}

form {
	max-width: 40rem;
	margin: 0 auto;
}

.form-group {
	margin-bottom: 1.25rem;
}

label {
	display: block;
	margin-bottom: .5rem;
	font-weight: 700;
}

input[type=email]:not(.swal2-container *),
input[type=number]:not(.swal2-container *),
input[type=password]:not(.swal2-container *),
input[type=text]:not(.swal2-container *),
select:not(.swal2-container *) {
  width: 100%;
  padding: .625rem;
  font-size: 1rem;
  color: var(--text-color);
  background-color: var(--input-bg);
  border: none;
  border-radius: .3125rem;
}

.error-message {
	margin-top: .3125rem;
	font-size: .875rem;
	color: var(--error-color);
}

@media (width <=375px) {

	.player-info-container,
  .profile-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.menu-avatar,
  .menu-rank-image,
  .profile-avatar,
  .profile-rank-image {
		margin: .5rem 0;
	}

	.menu-player-info,
  .profile-player-info {
		margin: .5rem 0;
	}

	.menu-stats-container,
  .profile-stats-container {
		gap: .5rem;
	}

	.menu-stat-item,
  .profile-stat-item {
		padding: .5rem;
	}

	.menu-stat-item h3,
  .profile-stat-item h3 {
		font-size: .8rem;
	}

	.menu-stat-item p,
  .profile-stat-item p {
		font-size: .9rem;
	}

	.menu-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.admin-page {
	height: 100%;
	padding: 2em;
	color: #333;
	background-color: #f8f9fa;
}

.admin-page .container {
	background-color: #fff;
	border-radius: .5rem;
	box-shadow: 0 .25rem .5rem rgb(0 0 0 / 10%);
}

.admin-page h1,
.admin-page h2,
.admin-page h3 {
	color: #333;
}

.admin-page .button {
	background-color: #007bff;
}

.admin-page .button:hover {
	background-color: #0056b3;
}

.admin-page table {
	width: 100%;
	margin-top: 1.25rem;
	border-collapse: collapse;
}

.admin-page td,
.admin-page th {
	padding: .75rem;
	border-bottom: 1px solid #dee2e6;
}

.admin-page th {
	font-weight: 700;
	background-color: #f8f9fa;
}

.admin-page .button-small {
	padding: .3125rem .625rem;
	font-size: .875rem;
}

.admin-page .button-edit {
	background-color: #28a745;
}

.admin-page .button-edit:hover {
	background-color: #218838;
}

.admin-page .button-delete {
	background-color: #dc3545;
}

.admin-page .button-delete:hover {
	background-color: #c82333;
}

.admin-page .form-group {
	margin-bottom: 1rem;
}

.admin-page label {
	display: block;
	margin-bottom: .5rem;
}

.admin-page input[type=email],
.admin-page input[type=number],
.admin-page input[type=password],
.admin-page input[type=text],
.admin-page textarea {
	width: 100%;
	padding: .5rem;
	color: #495057;
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: .25rem;
}

.admin-page .error-message {
	margin-top: .25rem;
	font-size: .875rem;
	color: #dc3545;
}

@media (width <=768px) {

	.admin-page table,
  .admin-page tbody,
  .admin-page td,
  .admin-page th,
  .admin-page thead,
  .admin-page tr {
		display: block;
	}

	.admin-page tr {
		margin-bottom: .625rem;
		border-bottom: 2px solid #dee2e6;
	}

	.admin-page thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	.admin-page td {
		position: relative;
		padding-left: 50%;
		border: none;
	}

	.admin-page td::before {
		position: absolute;
		left: .75rem;
		width: 45%;
		padding-right: .625rem;
		font-weight: 700;
		white-space: nowrap;
		content: attr(data-label);
	}
}

.profile-edit-container {
	max-width: 50rem;
	padding: 1.25rem;
	margin: 0 auto;
}

.profile-edit-card {
	padding: 1.25rem;
	margin-top: 1.25rem;
	background-color: #0f3460;
	border-radius: .5rem;
	box-shadow: 0 .25rem .5rem rgb(0 0 0 / 10%);
}

.profile-edit-banner {
	width: 100%;
	height: 200px;
	margin-bottom: 1rem;
	background-color: #16213e;
	border-radius: .3rem .3rem 0 0;
}

.profile-edit-header {
	display: flex;
	align-items: center;
	margin-bottom: 1.25rem;
}

.profile-edit-avatar {
	width: 100px;
	height: 100px;
	margin-right: 1.25rem;
	background-color: #16213e;
	border-radius: 50%;
}

.profile-edit-info {
	flex-grow: 1;
}

.profile-edit-achievements,
.profile-edit-comment {
	padding: 1rem;
	margin: 1rem 0;
	background-color: #16213e;
	border-radius: .5rem;
}

.profile-edit-footer {
	margin-top: 1rem;
	font-size: .8rem;
	text-align: right;
	opacity: .7;
}

.profile-edit-button {
	display: inline-block;
	padding: .625rem 1.25rem;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background-color: #e94560;
	border: none;
	border-radius: .3125rem;
	transition: background-color .3s ease;
}

.profile-edit-submit {
	width: 100%;
	margin-top: 1rem;
}

.profile-edit-button:hover {
	background-color: #c81e45;
}

.profile-edit-button:disabled {
  cursor: not-allowed;
  background-color: #cccccc;
}

.profile-edit-button:disabled:hover {
  background-color: #cccccc;
}

.profile-edit-input,
.profile-edit-select,
.profile-edit-textarea {
	width: 100%;
	padding: .5rem;
	margin-top: .25rem;
	color: #e0e0e0;
	background-color: #1e2a4a;
	border: 1px solid #16213e;
	border-radius: .3125rem;
}

.profile-edit-label {
	display: block;
	margin-top: 1rem;
	font-weight: 700;
	color: #e0e0e0;
}

.profile-edit-avatar-wrapper {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.profile-edit-achievements-group {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .5rem;
}

.profile-edit-title {
	display: flex;
	align-items: center;
	margin-top: 1rem;
}

.profile-edit-current-title {
	margin-right: 1rem;
	font-weight: 700;
	color: #e0e0e0;
}

.profile-edit-title-button {
	padding: .3rem .8rem;
	font-size: .9rem;
}

.profile-edit-subtitle {
	margin-bottom: .5rem;
	color: #e94560;
}

.profile-edit-uuid {
	color: #e0e0e0;
}

.image-file-field {
	display: none;
}

.profile-title-banner-container {
	margin: -1.25rem;
	margin-bottom: 1rem;
}

@media (width <=768px) {
	.profile-edit-header {
		flex-direction: column;
		align-items: center;
	}

	.profile-edit-avatar {
		margin-right: 0;
		margin-bottom: 1rem;
	}

	.profile-edit-info {
		width: 100%;
		text-align: center;
	}

	.profile-edit-achievements-group {
		grid-template-columns: 1fr;
	}
}

.player-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	background-color: var(--secondary-color);
}

.player-logo {
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-color);
	text-decoration: none;
}

.player-menu-toggle {
	font-size: 24px;
	color: var(--text-color);
	cursor: pointer;
	background: 0 0;
	border: none;
}

.player-side-menu {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
	width: 300px;
	height: 100%;
	overflow-y: auto;
	background-color: var(--secondary-color);
	transition: transform .3s ease-in-out;
	transform: translateX(100%);
}

.player-side-menu.active {
	transform: translateX(0);
}

.player-menu-header {
	padding: 20px;
	text-align: center;
	background-color: var(--card-bg);
}

.player-avatar-container {
	width: 80px;
	height: 80px;
	margin: 0 auto 10px;
	overflow: hidden;
	border-radius: 50%;
}

.player-avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.player-info-container {
	display: flex;
	align-items: center;
	justify-content: space-around;
	justify-content: space-between;
	padding: 1.25rem;
	margin-top: 15px;
}

.player-info-item {
	text-align: center;
}

.player-info-label {
	font-size: 12px;
	opacity: .7;
}

.player-info-value {
	font-size: 16px;
	font-weight: 700;
}

.player-menu-list {
	padding: 20px;
	list-style: none;
}

.player-menu-item {
	margin-bottom: 15px;
}

.player-menu-link {
	display: flex;
	align-items: center;
	color: var(--text-color);
	text-decoration: none;
}

.player-menu-link i {
	width: 20px;
	margin-right: 10px;
	text-align: center;
}

.player-menu-link.active,
.player-menu-link:hover {
	color: var(--accent-color);
}

.player-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: none;
	background-color: rgb(0 0 0 / 50%);
}

body.player-menu-open {
	overflow: hidden;
}

@media (width <=768px) {
	.player-side-menu {
		width: 70%;
	}
}

.entry-qr-header {
	margin-bottom: 30px;
	text-align: center;
}

.entry-qr-header h1 {
	font-size: 24px;
	color: var(--accent-color);
}

.entry-qr-card {
	padding: 20px;
	text-align: center;
	background-color: var(--card-bg);
	border-radius: 10px;
	box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
}

.entry-qr-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	height: 300px;
	padding: 10px;
	margin: 0 auto 20px;
	background-color: #fff;
	border-radius: 10px;
}

.entry-qr-image canvas {
	max-width: 100%;
	max-height: 100%;
}

.entry-qr-info {
	margin-bottom: 20px;
}

.entry-qr-info p {
	margin: 5px 0;
}

.entry-qr-instructions {
	margin-bottom: 20px;
	font-size: 14px;
	color: #a0a0a0;
}

.club-container {
	max-width: 1200px;
	padding: 20px;
	margin: 0 auto;
}

.club-title {
	margin-bottom: 30px;
	color: var(--club-accent-color);
	text-align: center;
}

.club-menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.club-menu-item {
	padding: 20px;
	margin-bottom: 15px;
	text-align: center;
	background-color: var(--club-card-bg);
	border-radius: 10px;
	transition: transform .3s ease;
}

.club-menu-item:hover {
	transform: translateY(-5px);
}

.club-menu-item i {
	margin-bottom: 10px;
	font-size: 48px;
	color: var(--club-accent-color);
}

.club-menu-item-title {
	margin-bottom: 10px;
	font-size: 18px;
	color: var(--club-text-color);
}

.club-menu-item-description {
	font-size: 14px;
	color: #a0a0a0;
}

@media (width >=768px) and (width <=1024px) {
	.club-menu-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (width <=767px) {
	.club-menu-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

body {
	height: 100vh;
	padding: 0;
	margin: 0;
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--primary-color);
}

.club-checkin-container {
	max-width: 600px;
	padding: 1rem;
	margin: 1rem auto;
	background-color: var(--secondary-color);
	border-radius: 10px;
	box-shadow: 0 0 20px rgb(0 0 0 / 30%);
}

.club-checkin-title {
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
	color: var(--accent-color);
	text-align: center;
}

.club-checkin-methods {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.club-checkin-qr,
.club-checkin-search {
	padding: 1.5rem;
	background-color: var(--card-bg);
	border-radius: 10px;
}

.club-button {
	width: 100%;
	padding: .8rem 1.5rem;
	padding: 10px 20px;
	margin-top: .5rem;
	font-size: 1rem;
	font-size: 1em;
	color: var(--text-color);
	cursor: pointer;
	background-color: var(--accent-color);
	border: none;
	border-radius: 5px;
	transition: background-color .3s ease;
}

.club-button:hover {
	background-color: #d3405b;
}

.club-search-form {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	align-items: center;
	width: 100%;
	max-width: 600px;
	padding: 30px;
	margin-bottom: 30px;
	background-color: var(--secondary-color);
	border-radius: 8px;
}

.club-search-input {
	width: 100%;
	padding: .8rem;
	color: var(--text-color);
	background-color: var(--secondary-color);
	border: none;
	border-radius: 5px;
}

#qr-reader {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 500px;
	padding: 20px;
	margin: 20px auto;
	margin-top: 1rem;
	color: var(--accent-color);
	background-color: var(--card-bg);
	border: 2px solid var(--accent-color);
	border-radius: 10px;
}

.club-player-info {
	padding: 1.5rem;
	margin-top: 1.5rem;
	background-color: var(--card-bg);
	border-radius: 10px;
}

.club-player-info p {
	margin-bottom: .5rem;
}

@media (width >=768px) {
	.club-checkin-container {
		padding: 2rem;
	}

	.club-checkin-title {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.club-button {
		font-size: 1.1rem;
	}
}

input.chip {
	width: 50%;
	color: #1a1a2e;
	background-color: #fff;
	border: solid 1px #a6a6a6;
}

.club-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	background-color: #16213e;
}

.club-logo {
	font-size: 24px;
	font-weight: 700;
	color: #e94560;
	text-decoration: none;
}

.club-menu-button {
	padding: 8px 15px;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	background-color: #e94560;
	border-radius: 5px;
}

.club-menu-toggle {
	font-size: 24px;
	color: #e0e0e0;
	cursor: pointer;
	background: 0 0;
	border: none;
}

.club-side-menu {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
	width: 300px;
	height: 100%;
	overflow-y: auto;
	background-color: #16213e;
	transition: transform .3s ease-in-out;
	transform: translateX(100%);
}

.club-side-menu.active {
	transform: translateX(0);
}

.club-menu-header {
	padding: 20px;
	text-align: center;
	background-color: #0f3460;
}

.club-name {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 700;
	color: #e0e0e0;
}

.club-menu-list {
	padding: 20px;
	list-style: none;
}

.club-side-menu-item {
	margin-bottom: 15px;
	font-size: 1.5em;
}

.club-menu-link {
	display: flex;
	align-items: center;
	color: #e0e0e0;
	text-decoration: none;
}

.club-menu-link i {
	width: 20px;
	margin-right: 10px;
	text-align: center;
}

.club-menu-link.active,
.club-menu-link:hover {
	color: #e94560;
}

.club-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: none;
	background-color: rgb(0 0 0 / 50%);
}

.menu-icon {
	color: var(--text-color);
}

.club-item-container {
	max-width: 1200px;
	padding: 20px;
	margin: 0 auto;
}

.club-item-list-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.club-item-title {
	font-size: 2em;
	color: var(--accent-color);
}

.club-item-add-btn {
	padding: 15px 30px;
	font-size: 1.2em;
	color: var(--text-color);
	cursor: pointer;
	background-color: var(--accent-color);
	border: none;
	border-radius: 5px;
	transition: background-color .3s;
}

.club-item-add-btn:hover {
	background-color: #d3405b;
}

.club-item-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.club-item {
	display: flex;
	flex-direction: column;
	padding: 20px;
	background-color: var(--card-bg);
	border-radius: 10px;
}

.club-item-name {
	margin-bottom: 10px;
	font-size: 1.4em;
}

.club-item-price {
	margin-bottom: 10px;
	font-size: 1.2em;
	font-weight: 700;
}

.club-item-payment {
	margin-bottom: 15px;
	font-size: 1em;
}

.club-item-actions {
	display: flex;
	justify-content: space-between;
}

.club-item-delete-btn,
.club-item-edit-btn {
	padding: 10px 20px;
	font-size: 1.1em;
	color: var(--text-color);
	cursor: pointer;
	background-color: var(--secondary-color);
	border: none;
	border-radius: 5px;
	transition: background-color .3s;
}

.club-item-delete-btn:hover,
.club-item-edit-btn:hover {
	background-color: var(--accent-color);
}

@media (max-width:768px) {
	.club-item-list {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.club-item-add-btn,
  .club-item-delete-btn,
  .club-item-edit-btn {
		padding: 12px 24px;
		font-size: 1em;
	}
}

select.payment {
	width: 50%;
	border-color: #ced4da;
	border-style: solid;
}

select.title {
	width: 50%;
	border-color: #ced4da;
	border-style: solid;
}

.club-purchase-container {
	max-width: 800px;
	padding: 20px;
	margin: 0 auto;
	background-color: var(--secondary-color);
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .3);
}

.club-purchase-title {
	margin-bottom: 20px;
	font-size: 2em;
	color: var(--accent-color);
	text-align: center;
}

.club-purchase-methods {
	margin-bottom: 30px;
}

.club-purchase-qr h2 {
	margin-bottom: 15px;
	font-size: 1.5em;
	color: var(--text-color);
}

#purchase-form {
	padding: 20px;
	margin-top: 20px;
	background-color: var(--card-bg);
	border-radius: 10px;
}

#purchase-form h2 {
	margin-bottom: 15px;
	font-size: 1.8em;
	color: var(--accent-color);
}

#purchase-form h3 {
	margin-bottom: 15px;
	font-size: 1.4em;
	color: var(--text-color);
}

#item-list {
	margin-bottom: 20px;
}

#item-list div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	margin-bottom: 10px;
	background-color: var(--secondary-color);
	border-radius: 5px;
}

#item-list span {
	font-size: 1.1em;
	color: var(--text-color);
}

#item-list input[type=number] {
	width: 60px;
	padding: 5px;
	font-size: 1em;
	color: var(--text-color);
	background-color: var(--secondary-color);
	border: 1px solid var(--accent-color);
	border-radius: 3px;
}

#total-amount {
	padding: 15px;
	margin-top: 20px;
	background-color: var(--secondary-color);
	border-radius: 5px;
}

#total-amount p {
	margin-bottom: 10px;
	font-size: 1.2em;
	color: var(--text-color);
}

#purchase-button {
	display: block;
	width: 100%;
	padding: 15px;
	margin-top: 20px;
	font-size: 1.2em;
	color: var(--text-color);
	cursor: pointer;
	background-color: var(--accent-color);
	border: none;
	border-radius: 5px;
	transition: background-color .3s ease;
}

#purchase-button:hover {
	background-color: #d3405b;
}

@media (max-width:768px) {
	.club-purchase-container {
		padding: 15px;
	}

	.club-purchase-title {
		font-size: 1.8em;
	}

	.club-purchase-qr h2 {
		font-size: 1.3em;
	}

	#purchase-form h2 {
		font-size: 1.6em;
	}

	#purchase-form h3 {
		font-size: 1.2em;
	}

	#item-list span {
		font-size: 1em;
	}

	#item-list input[type=number] {
		width: 50px;
	}

	#total-amount p {
		font-size: 1.1em;
	}

	#purchase-button {
		font-size: 1.1em;
	}
}

.club-title-container {
	max-width: 1200px;
	padding: 20px;
	margin: 0 auto;
}

.club-title-header {
	margin-bottom: 20px;
	font-size: 2em;
	color: var(--accent-color);
	text-align: center;
}

.club-new-title-btn {
	display: block;
	width: 200px;
	padding: 10px 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	font-size: 16px;
	color: var(--text-color);
	cursor: pointer;
	background-color: var(--accent-color);
	border: none;
}

.club-title-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.club-title-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-color: var(--card-bg);
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

.club-title-image-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 25%;
	overflow: hidden;
}

.club-title-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 4/1;
	object-fit: contain;
	object-fit: cover;
	background-color: var(--secondary-color);
	border-radius: .3rem .3rem 0 0;
}

.club-title-info {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
	padding: 15px;
}

.club-title-name {
	margin-bottom: 10px;
	font-size: 18px;
	color: var(--text-color);
}

.club-coin-info {
	padding: 15px;
}

.club-edit-btn {
	align-self: flex-start;
	padding: 5px 10px;
	font-size: 14px;
	color: var(--text-color);
	cursor: pointer;
	background-color: var(--secondary-color);
	border: none;
}

.club-player-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1200px;
	padding: 20px;
	margin: 0 auto;
}

.club-player-header {
	width: 100%;
	margin-bottom: 30px;
	font-size: 2em;
	color: var(--accent-color);
	text-align: center;
}

.club-search-form .form-group {
	width: 100%;
	margin-bottom: 20px;
}

.club-search-form label {
	display: block;
	margin-bottom: 10px;
	font-weight: 700;
	color: var(--text-color);
}

.club-search-form input[type=search],
.club-search-form input[type=text] {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	color: var(--text-color);
	background-color: var(--primary-color);
	border: 1px solid var(--accent-color);
	border-radius: 4px;
}

.club-search-form .radio-group {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 20px;
}

.club-search-form input[type=radio] {
	margin-right: 5px;
}

.club-search-button {
	width: 100%;
	max-width: 200px;
	padding: 12px 30px;
	font-size: 16px;
	color: var(--text-color);
	cursor: pointer;
	background-color: var(--accent-color);
	border: none;
	border-radius: 4px;
	transition: background-color .3s ease;
}

.club-search-button:hover {
	background-color: #d3405b;
}

.club-player-table {
	width: 100%;
	overflow: hidden;
	border-collapse: collapse;
	background-color: var(--table-bg);
	border-radius: 8px;
}

.club-player-table td,
.club-player-table th {
	padding: 12px;
	text-align: left;
	border-bottom: 1px solid var(--secondary-color);
}

.club-player-table th {
	color: var(--accent-color);
	background-color: var(--table-header-bg);
}

.pagination a:hover {
	background-color: var(--accent-color);
}

.club-player-table th a:hover {
	text-decoration: underline;
}

.club-player-table tr:last-child td {
	border-bottom: none;
}

.club-edit-button,
.club-title-button {
	padding: 8px 15px;
	margin-right: 5px;
	color: var(--text-color);
	cursor: pointer;
	background-color: var(--secondary-color);
	border: none;
	border-radius: 4px;
	transition: background-color .3s ease;
}

.club-edit-button:hover,
.club-title-button:hover {
	background-color: var(--accent-color);
}

.club-no-results {
	margin-top: 20px;
	font-style: italic;
	color: var(--text-color);
	text-align: center;
}

.pagination {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.pagination .current {
	background-color: var(--accent-color);
}

@media (max-width:768px) {
	.club-search-form {
		padding: 20px;
	}

	.club-search-form .radio-group {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
	}

	.club-player-table {
		font-size: 14px;
	}

	.club-edit-button,
  .club-title-button {
		padding: 6px 12px;
		font-size: 12px;
	}
}

.title-selection-container {
	max-width: 800px;
	margin: 0 auto;
}

.title-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.title-item {
	padding: 10px;
	text-align: center;
	cursor: pointer;
	border-radius: 8px;
	transition: all .3s ease;
}

.title-item.selected {
	background-color: rgba(233, 69, 96, .1);
	outline: 3px solid #e94560;
}

.title-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.title-name {
	margin-top: 10px;
	font-size: 14px;
}

@media (max-width:600px) {
	.title-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	}
}

.ticket-selection-container {
	max-width: 800px;
	margin: 0 auto;
}

.ticket-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.ticket-item {
	padding: 10px;
	text-align: center;
	cursor: pointer;
	border-radius: 8px;
	transition: all .3s ease;
}

.ticket-item.selected {
	background-color: rgba(233, 69, 96, .1);
	outline: 3px solid #e94560;
}

.ticket-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.ticket-name {
	margin-top: 10px;
	font-size: 14px;
}

@media (max-width:600px) {
	.ticket-grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}
}

.title-selection-form {
	margin-top: 20px;
}

.title-radio {
	display: none;
}

.title-label {
	display: block;
	cursor: pointer;
}

.confirm-button {
	display: block;
	width: 200px;
	padding: 10px;
	margin: 20px auto;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
	background-color: #e94560;
	border: none;
	border-radius: 5px;
}

.confirm-button:disabled {
	cursor: not-allowed;
	background-color: #ccc;
}

.flash-message {
	padding: 10px;
	margin-bottom: 20px;
	text-align: center;
	border-radius: 5px;
}

.flash-message.notice {
	color: #fff;
	background-color: #4caf50;
}

.flash-message.alert {
	color: #fff;
	background-color: #f44336;
}

@media (max-width:600px) {
	.title-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	}
}

img.pokerstats-logo {
	width: 200px;
	margin: 0 auto;
}

.clan-join-request {
  padding: 2em;
  margin-bottom: 20px;
  border-radius: 5px;
}

.clan-join-request h2 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.clan-join-request-info {
  margin-bottom: 15px;
}

.clan-join-request-info p {
  margin: 5px 0;
}

.cancel-request-button {
  padding: 10px 15px;
  color: white;
  cursor: pointer;
  background-color: #d9534f;
  border: none;
  border-radius: 3px;
  transition: background-color 0.3s;
}

.cancel-request-button:hover {
  background-color: #c9302c;
}

.ticket-image-container {
  position: relative;
  overflow: hidden;
}

.used-label {
  position: absolute;
  right: 0px;
  padding: 5px 10px;
  font-size: 0.8em;
  color: white;
  background-color: rgba(255, 0, 0, 0.7);
  border-radius: 8px;
}

.tournament-entry-container {
  max-width: 800px;
  padding: 20px;
  margin: 0 auto;
}

.tournament-entry-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.tournament-info {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;

  h2 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  p {
    margin-bottom: 5px;
  }

	pre.tournament-prize,
  pre.tournament-note {
    padding: 0;
    margin: 0 0 10px 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    white-space: pre-wrap;
    background-color: transparent;
    border: none;
  }
}

.entry-form {
  margin-bottom: 20px;

  h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

.entry-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.player-select {
  flex-grow: 1;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.remove-entry-btn {
  padding: 8px 12px;
  margin-left: 10px;
  color: white;
  cursor: pointer;
  background-color: #ff4d4d;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s;

  &:hover {
    background-color: #ff3333;
  }
}

.submit-entries-btn {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 18px;
  color: white;
  cursor: pointer;
  background-color: #4CAF50;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s;

  &:hover {
    background-color: #45a049;
  }

  &:disabled {
    cursor: not-allowed;
    background-color: #7a7a7a;
  }
}

.confirm-entries-btn {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 18px;
  color: white;
  cursor: pointer;
  background-color: #4CAF50;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s;

  &:hover {
    background-color: #45a049;
  }

  &:disabled {
    cursor: not-allowed;
    background-color: #7a7a7a;
  }
}

.tournament-result-container {
  max-width: 800px;
  padding: 20px;
  margin: 0 auto;
}

.tournament-result-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.tournament-info {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.tournament-info h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.result-form {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.result-form h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.entry-row {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.entry-rank {
  width: 40px;
  margin-right: 10px;
  font-weight: bold;
}

.entry-name {
  flex-grow: 1;
}

.move-button {
  display: inline-block;
  padding:  0.5em 0.75em;
  margin: 0 0.5em;
  font-size: 1.5em;
  color: white;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background-color: #4CAF50;
  border: none;
  border-radius: 3px;
}

.move-button:disabled {
  cursor: not-allowed;
  background-color: #cccccc;
}

.submit-results-btn {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 18px;
  color: white;
  cursor: pointer;
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.submit-results-btn:hover {
  background-color: #45a049;
}

.submit-results-btn:disabled {
  cursor: not-allowed;
}

.follows-container {
  max-width: 800px;
  padding: 20px;
  margin: 0 auto;
}

.follows-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.follows-search-form {
  margin-bottom: 30px;
}

.follows-search-form-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background-color: #f5f5f5;
  border-radius: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.follows-search-input {
  flex-grow: 1;
  padding: 10px 15px;
  font-size: 16px;
  background: transparent;
  border: none;
  outline: none;
}

.follows-search-button {
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  background-color: #007bff;
  border: none;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.follows-search-button:hover {
  background-color: #0056b3;
}

.follows-list {
  margin-top: 20px;
}

.follows-player-item {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.follows-player-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.follows-player-link {
  display: flex;
  flex-grow: 1;
  align-items: center;
  text-decoration: none;
}

.follows-player-avatar {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  object-fit: cover;
  border-radius: 50%;
}

.follows-player-name {
  font-size: 18px;
  font-weight: 500;
}

.follows-button {
  padding: 8px 15px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.follows-follow-button {
  color: white;
  background-color: #28a745;
}

.follows-unfollow-button {
  color: white;
  background-color: #dc3545;
}

.follows-follow-button:hover {
  background-color: #218838;
}

.follows-unfollow-button:hover {
  background-color: #c82333;
}

.follows-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.follows-pagination span {
  margin: 0 5px;
}

.follows-pagination a {
  padding: 5px 10px;
  color: #007bff;
  text-decoration: none;
  border: 1px solid #007bff;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.follows-pagination a:hover {
  color: white;
  background-color: #007bff;
}

.club-message-container,
.player-message-container {
  max-width: 800px;
  padding: 20px;
  margin: 0 auto;
}

.club-message-header,
.player-message-header {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

.club-new-message-btn {
  display: inline-block;
  padding: 10px 15px;
  margin-bottom: 20px;
  color: white;
  text-decoration: none;
  background-color: #4CAF50;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.club-new-message-btn:hover {
  background-color: #45a049;
}

.club-message-list,
.player-message-list {
  display: grid;
  gap: 20px;
}

.club-message-card,
.player-message-card {
  padding: 20px;
  background-color: #0f3460;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.club-message-card:hover,
.player-message-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.club-message-title,
.player-message-title {
  margin-bottom: 10px;
  font-size: 18px;
  color: #ececec;
}

.club-message-content,
.player-message-content {
  margin-bottom: 15px;
  font-size: 14px;
  color: #c4c4c4;
}

.club-message-actions {
  display: flex;
  justify-content: flex-end;
}

.club-edit-btn,
.club-delete-btn {
  padding: 5px 10px;
  margin-left: 10px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 3px;
}

.club-edit-btn {
  color: white;
  background-color: #3498db;
}

.club-delete-btn {
  color: white;
  background-color: #e74c3c;
}

.player-message-date {
  font-size: 12px;
  color: #999;
}

@media (max-width: 600px) {
  .club-message-list,
  .player-message-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 601px) {
  .club-message-list,
  .player-message-list {
    grid-template-columns: 1fr;
  }
}

.club-message-form-container,
.player-message-detail-container {
  max-width: 600px;
  padding: 20px;
  margin: 0 auto;
}

.club-message-form-header,
.player-message-detail-header {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

.club-message-form {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.club-message-form
.form-control {
  width: 100%;
  padding: 10px;
  font-size: 16px;
	color: #333;
	background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.club-message-submit-btn {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  background-color: #4CAF50;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.club-message-submit-btn:hover {
  background-color: #45a049;
}

.club-message-back-btn,
.player-message-back-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  color: #333;
  text-decoration: none;
  background-color: #f0f0f0;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.club-message-back-btn:hover,
.player-message-back-btn:hover {
  background-color: #e0e0e0;
}

.player-message-detail-content {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #0f3460;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.player-message-detail-meta {
  font-size: 14px;
  color: #666;
  text-align: right;
}

.sales-history-container {
  max-width: 1200px;
  padding: 2rem;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sales-history-title {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #ff5a5a;
  text-align: center;
}

.date-navigation {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.date-nav-btn {
  flex: 1;
  max-width: 150px;
  padding: 10px 15px;
  color: white;
  text-align: center;
  text-decoration: none;
  background-color: #007bff;
  border-radius: 5px;
}

.date-nav-btn:hover {
  background-color: #0056b3;
}

.sales-summary {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sales-summary h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #e94560;
}

.sales-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sales-table th,
.sales-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.sales-table th {
  font-weight: bold;
  color: #ededed;
}

.sales-table tr:last-child td {
  border-bottom: none;
}

.sales-table tr:hover {
  background-color: #1a4b7c;
}

.editable-field {
  width: 80px;
  padding: 0.3rem;
  font-size: 1rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

.update-btn {
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  color: #fff;
  cursor: pointer;
  background-color: #28a745;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.update-btn:hover {
  background-color: #218838;
}

@media (max-width: 768px) {
  .sales-history-container {
    padding: 1rem;
  }

  .sales-table {
    font-size: 0.9rem;
  }

  .editable-field {
    width: 60px;
  }
}

.poker-timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

.timer-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.timer-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-info-label {
  font-size: 14px;
  color: #8a8a8a;
}

.timer-info-value {
  font-size: 24px;
  font-weight: bold;
}

.timer-info-sub {
  font-size: 14px;
  color: #8a8a8a;
}

.timer-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
	max-width: 95%;
}

.timer-level {
	margin-bottom: 0px;
  font-size: 32px;
}

.timer-countdown {
  font-size: 88px;
  font-weight: bold;
}

.timer-blinds {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.current-blinds {
  font-size: 42px;
  font-weight: bold;
}

.next-blinds {
  font-size: 20px;
  color: #8a8a8a;
}

.timer-progress-bar {
  width: 100%;
  height: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #333333;
  border-radius: 5px;
}

.timer-progress {
  height: 100%;
  background-color: #4CAF50;
  transition: width 1s linear;
}

.timer-controls-right {
	display: grid;
  place-content: end;
  place-items: end;
	width: 100%;
}

.timer-controls {
  display: flex;
  gap: 20px;
}

.timer-button {
  width: 2em;
  height: 2em;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  background-color: #333333;
  border: none;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.timer-button:hover {
  background-color: #4CAF50;
}

.timer-button-main {
  width: 80px;
  height: 80px;
  font-size: 32px;
  background-color: #4CAF50;
}

.timer-button-main:hover {
  background-color: #45a049;
}

.timer-button.fullscreen-button {
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.timer-settings {
  margin-bottom: 15px;
}

.timer-name-input {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.upload-image-btn {
  padding: 10px 15px;
  margin-bottom: 10px;
  color: white;
  cursor: pointer;
  background-color: #4CAF50;
  border: none;
  border-radius: 4px;
}

.upload-image-btn:hover {
  background-color: #45a049;
}

.timer-header {
  display: flex;
  flex-direction: column;
  align-items: center;
	margin-top: -60px;
  margin-bottom: 10px;
}

.timer-title {
  margin-bottom: 10px;
  font-size: 24px;
}

.timer-image {
  max-width: 400px;
  max-height: 100px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .timer-info {
    flex-wrap: wrap;
  }

  .timer-info-item {
    width: 50%;
    margin-bottom: 20px;
  }

  .timer-countdown {
    font-size: 72px;
  }

  .current-blinds {
    font-size: 36px;
  }

  .next-blinds {
    font-size: 18px;
  }
}
startLine: 2606
endLine: 2606

.control-buttons {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.control-button {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  background-color: #333333;
  border: none;
  border-radius: 50%;
}

.control-button:hover {
  background-color: #4CAF50;
}

.timer-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  background-color: rgba(0,0,0,0.4);
}

.timer-modal-content {
  width: 90%;
  padding: 20px;
  overflow-x: auto;
  background-color: #20004e;
  border-radius: 5px;
}

.modal-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.save-button, .cancel-button {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  border-radius: 3px;
}

.save-button {
  color: white;
  background-color: #4CAF50;
}

.cancel-button {
  color: white;
  background-color: #f44336;
}

.blind-input {
  width: 50px;
  text-align: center;
}

.hide-spin::-webkit-inner-spin-button,
.hide-spin::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance:textfield;
}

.adjust-btn {
  width: 25px;
  height: 25px;
  padding: 0;
  font-size: 16px;
}

.remove-btn {
  padding: 5px 10px;
  color: white;
  cursor: pointer;
  background-color: #f44336;
  border: none;
}

.add-level-btn {
  padding: 10px;
  margin-top: 10px;
  color: white;
  cursor: pointer;
  background-color: #4CAF50;
  border: none;
}

.export-settings-btn {
	padding: 10px;
	margin-top: 10px;
	color: white;
	cursor: pointer;
	background-color: #007bff;
	border: none;
}

.preset-list-btn {
	padding: 10px;
	margin-top: 10px;
	margin-left: 10px;
	color: white;
	cursor: pointer;
	background-color: #4CAF50;
	border: none;
}

.break-row {
  background-color: #3d3c48;
}

.blind-header, .blind-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 2fr) 1fr;
  gap: 10px;
  align-items: center;
  padding: 5px 0;
}

.blind-row > span:first-child {
	min-width: 4em;
  padding-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blind-row.break-row {
  background-color: #f0f0f0;
}

.add-break-btn {
  padding: 10px;
  margin-left: 10px;
  color: white;
  cursor: pointer;
  background-color: #4CAF50;
  border: none;
}

.add-break-btn:hover {
  background-color: #45a049;
}

.blind-structure {
  max-height: 70vh;
  overflow-y: auto;
}

.blind-header {
  margin-bottom: 10px;
  font-weight: bold;
}

.blind-header span {
  text-align: center;
}

.blind-input-group {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 5px;
  align-items: center;
}

.blind-input-group .adjust-btn {
  width: 25px;
  height: 25px;
  padding: 0;
  font-size: 16px;
  line-height: 1;
}

.blind-input-group .blind-input {
  width: 6em;
  text-align: center;
}

.timers-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
	padding: 3em;
}

.timer-card {
  width: 250px;
  padding: 15px;
  border-radius: 8px;
}

.timers-container .timer-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}

.timers-container .timer-info {
  margin-top: 10px;
}

.timer-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.timer-name {
	width: 100%;
}

.terms-of-service {
	max-width: 640px;
  height: 400px;
  padding: 15px;
	margin: auto;
  margin-bottom: 20px;
  overflow-y: scroll;
  border: 1px solid #ccc;
}

.term_confirm {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.term_confirm input[type=checkbox] {
	margin-top: 0em;
	margin-right: 1em;
	transform: scale(1.5);
}

.club-title-unapproved-label {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 5px 10px;
	font-size: 0.8em;
	color: white;
	background-color: rgba(255, 0, 0, 0.7);
	border-radius: 5px;
}

.coin-image {
	width: 4em;
	height: 4em;
	object-fit: cover;
	border-radius: 50%;
}

.terms-of-service ol li {
	margin-left: 2em;
	list-style: decimal;
}

.terms-of-service h3 {
	margin-top: 1em;
}

.tab-3 {
	display: flex;
	flex-wrap: wrap;
}

.tab-3 > label {
	flex: 1 1;
	order: -1;
	min-width: 70px;
	padding: .7em 1em .5em;
	font-size: .9em;
	font-weight: 600;
	color: #efefef;
	text-align: center;
	cursor: pointer;
	background-color: #21142f;
}

.tab-3 > label:hover {
	opacity: .8;
}

.tab-3 input {
	display: none;
}

.tab-3 > div {
	display: none;
	width: 100%;
	padding: 1.5em 1em;
	background-color: #271839;
}

.tab-3 label:has(:checked) {
	color: #2589d0;
	border-bottom: 4px solid #2589d0;
}

.tab-3 label:has(:checked) + div {
	display: block;
}
.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mx-1 {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}
.mx-2 {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}
.mx-3 {
  margin-right: 0.75rem;
  margin-left: 0.75rem;
}
.mx-4 {
  margin-right: 1rem;
  margin-left: 1rem;
}
.mx-5 {
  margin-right: 1.25rem;
  margin-left: 1.25rem;
}
.mx-6 {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}
.mx-7 {
  margin-right: 1.75rem;
  margin-left: 1.75rem;
}
.mx-8 {
  margin-right: 2rem;
  margin-left: 2rem;
}
.mx-9 {
  margin-right: 2.25rem;
  margin-left: 2.25rem;
}
.mx-10 {
  margin-right: 2.5rem;
  margin-left: 2.5rem;
}
.mx-11 {
  margin-right: 2.75rem;
  margin-left: 2.75rem;
}
.mx-12 {
  margin-right: 3rem;
  margin-left: 3rem;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-9 {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-11 {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.m-1 {
  margin: 0.25rem;
}
.m-2 {
  margin: 0.5rem;
}
.m-3 {
  margin: 0.75rem;
}
.m-4 {
  margin: 1rem;
}
.m-5 {
  margin: 1.25rem;
}
.m-6 {
  margin: 1.5rem;
}
.m-7 {
  margin: 1.75rem;
}
.m-8 {
  margin: 2rem;
}
.m-9 {
  margin: 2.25rem;
}
.m-10 {
  margin: 2.5rem;
}
.m-11 {
  margin: 2.75rem;
}
.m-12 {
  margin: 3rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-9 {
  margin-top: 2.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-11 {
  margin-top: 2.75rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-7 {
  margin-bottom: 1.75rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-9 {
  margin-bottom: 2.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-11 {
  margin-bottom: 2.75rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-5 {
  margin-right: 1.25rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mr-7 {
  margin-right: 1.75rem;
}
.mr-8 {
  margin-right: 2rem;
}
.mr-9 {
  margin-right: 2.25rem;
}
.mr-10 {
  margin-right: 2.5rem;
}
.mr-11 {
  margin-right: 2.75rem;
}
.mr-12 {
  margin-right: 3rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-7 {
  margin-left: 1.75rem;
}
.ml-8 {
  margin-left: 2rem;
}
.ml-9 {
  margin-left: 2.25rem;
}
.ml-10 {
  margin-left: 2.5rem;
}
.ml-11 {
  margin-left: 2.75rem;
}
.ml-12 {
  margin-left: 3rem;
}
.mx-n1 {
  margin-right: -0.25rem;
  margin-left: -0.25rem;
}
.mx-n2 {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
.mx-n3 {
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
.mx-n4 {
  margin-right: -1rem;
  margin-left: -1rem;
}
.mx-n5 {
  margin-right: -1.25rem;
  margin-left: -1.25rem;
}
.mx-n6 {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}
.mx-n7 {
  margin-right: -1.75rem;
  margin-left: -1.75rem;
}
.mx-n8 {
  margin-right: -2rem;
  margin-left: -2rem;
}
.mx-n9 {
  margin-right: -2.25rem;
  margin-left: -2.25rem;
}
.mx-n10 {
  margin-right: -2.5rem;
  margin-left: -2.5rem;
}
.mx-n11 {
  margin-right: -2.75rem;
  margin-left: -2.75rem;
}
.mx-n12 {
  margin-right: -3rem;
  margin-left: -3rem;
}
.my-n1 {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}
.my-n2 {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.my-n3 {
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}
.my-n4 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.my-n5 {
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}
.my-n6 {
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}
.my-n7 {
  margin-top: -1.75rem;
  margin-bottom: -1.75rem;
}
.my-n8 {
  margin-top: -2rem;
  margin-bottom: -2rem;
}
.my-n9 {
  margin-top: -2.25rem;
  margin-bottom: -2.25rem;
}
.my-n10 {
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}
.my-n11 {
  margin-top: -2.75rem;
  margin-bottom: -2.75rem;
}
.my-n12 {
  margin-top: -3rem;
  margin-bottom: -3rem;
}
.m-n1 {
  margin: -0.25rem;
}
.m-n2 {
  margin: -0.5rem;
}
.m-n3 {
  margin: -0.75rem;
}
.m-n4 {
  margin: -1rem;
}
.m-n5 {
  margin: -1.25rem;
}
.m-n6 {
  margin: -1.5rem;
}
.m-n7 {
  margin: -1.75rem;
}
.m-n8 {
  margin: -2rem;
}
.m-n9 {
  margin: -2.25rem;
}
.m-1n0 {
  margin: -2.5rem;
}
.m-1n1 {
  margin: -2.75rem;
}
.m-1n2 {
  margin: -3rem;
}
.mt-n1 {
  margin-top: -0.25rem;
}
.mt-n2 {
  margin-top: -0.5rem;
}
.mt-n3 {
  margin-top: -0.75rem;
}
.mt-n4 {
  margin-top: -1rem;
}
.mt-n5 {
  margin-top: -1.25rem;
}
.mt-n6 {
  margin-top: -1.5rem;
}
.mt-n7 {
  margin-top: -1.75rem;
}
.mt-n8 {
  margin-top: -2rem;
}
.mt-n9 {
  margin-top: -2.25rem;
}
.mt-n10 {
  margin-top: -2.5rem;
}
.mt-n11 {
  margin-top: -2.75rem;
}
.mt-n12 {
  margin-top: -3rem;
}
.mb-n1 {
  margin-bottom: -0.25rem;
}
.mb-n2 {
  margin-bottom: -0.5rem;
}
.mb-n3 {
  margin-bottom: -0.75rem;
}
.mb-n4 {
  margin-bottom: -1rem;
}
.mb-n5 {
  margin-bottom: -1.25rem;
}
.mb-n6 {
  margin-bottom: -1.5rem;
}
.mb-n7 {
  margin-bottom: -1.75rem;
}
.mb-n8 {
  margin-bottom: -2rem;
}
.mb-n9 {
  margin-bottom: -2.25rem;
}
.mb-n10 {
  margin-bottom: -2.5rem;
}
.mb-n11 {
  margin-bottom: -2.75rem;
}
.mb-n12 {
  margin-bottom: -3rem;
}
.mr-n1 {
  margin-right: -0.25rem;
}
.mr-n2 {
  margin-right: -0.5rem;
}
.mr-n3 {
  margin-right: -0.75rem;
}
.mr-n4 {
  margin-right: -1rem;
}
.mr-n5 {
  margin-right: -1.25rem;
}
.mr-n6 {
  margin-right: -1.5rem;
}
.mr-n7 {
  margin-right: -1.75rem;
}
.mr-n8 {
  margin-right: -2rem;
}
.mr-n9 {
  margin-right: -2.25rem;
}
.mr-n10 {
  margin-right: -2.5rem;
}
.mr-n11 {
  margin-right: -2.75rem;
}
.mr-n12 {
  margin-right: -3rem;
}
.ml-n1 {
  margin-left: -0.25rem;
}
.ml-n2 {
  margin-left: -0.5rem;
}
.ml-n3 {
  margin-left: -0.75rem;
}
.ml-n4 {
  margin-left: -1rem;
}
.ml-n5 {
  margin-left: -1.25rem;
}
.ml-n6 {
  margin-left: -1.5rem;
}
.ml-n7 {
  margin-left: -1.75rem;
}
.ml-n8 {
  margin-left: -2rem;
}
.ml-n9 {
  margin-left: -2.25rem;
}
.ml-n10 {
  margin-left: -2.5rem;
}
.ml-n11 {
  margin-left: -2.75rem;
}
.ml-n12 {
  margin-left: -3rem;
}
.px-1 {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
.px-2 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.px-3 {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.px-4 {
  padding-right: 1rem;
  padding-left: 1rem;
}
.px-5 {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
.px-6 {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.px-7 {
  padding-right: 1.75rem;
  padding-left: 1.75rem;
}
.px-8 {
  padding-right: 2rem;
  padding-left: 2rem;
}
.px-9 {
  padding-right: 2.25rem;
  padding-left: 2.25rem;
}
.px-10 {
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
.px-11 {
  padding-right: 2.75rem;
  padding-left: 2.75rem;
}
.px-12 {
  padding-right: 3rem;
  padding-left: 3rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-9 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-11 {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-7 {
  padding: 1.75rem;
}
.p-8 {
  padding: 2rem;
}
.p-9 {
  padding: 2.25rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-11 {
  padding: 2.75rem;
}
.p-12 {
  padding: 3rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-7 {
  padding-top: 1.75rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-9 {
  padding-top: 2.25rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-11 {
  padding-top: 2.75rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-7 {
  padding-bottom: 1.75rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pb-9 {
  padding-bottom: 2.25rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-11 {
  padding-bottom: 2.75rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pr-1 {
  padding-right: 0.25rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-5 {
  padding-right: 1.25rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pr-7 {
  padding-right: 1.75rem;
}
.pr-8 {
  padding-right: 2rem;
}
.pr-9 {
  padding-right: 2.25rem;
}
.pr-10 {
  padding-right: 2.5rem;
}
.pr-11 {
  padding-right: 2.75rem;
}
.pr-12 {
  padding-right: 3rem;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pl-7 {
  padding-left: 1.75rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pl-9 {
  padding-left: 2.25rem;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pl-11 {
  padding-left: 2.75rem;
}
.pl-12 {
  padding-left: 3rem;
}
.px-n1 {
  padding-right: -0.25rem;
  padding-left: -0.25rem;
}
.px-n2 {
  padding-right: -0.5rem;
  padding-left: -0.5rem;
}
.px-n3 {
  padding-right: -0.75rem;
  padding-left: -0.75rem;
}
.px-n4 {
  padding-right: -1rem;
  padding-left: -1rem;
}
.px-n5 {
  padding-right: -1.25rem;
  padding-left: -1.25rem;
}
.px-n6 {
  padding-right: -1.5rem;
  padding-left: -1.5rem;
}
.px-n7 {
  padding-right: -1.75rem;
  padding-left: -1.75rem;
}
.px-n8 {
  padding-right: -2rem;
  padding-left: -2rem;
}
.px-n9 {
  padding-right: -2.25rem;
  padding-left: -2.25rem;
}
.px-n10 {
  padding-right: -2.5rem;
  padding-left: -2.5rem;
}
.px-n11 {
  padding-right: -2.75rem;
  padding-left: -2.75rem;
}
.px-n12 {
  padding-right: -3rem;
  padding-left: -3rem;
}
.py-n1 {
  padding-top: -0.25rem;
  padding-bottom: -0.25rem;
}
.py-n2 {
  padding-top: -0.5rem;
  padding-bottom: -0.5rem;
}
.py-n3 {
  padding-top: -0.75rem;
  padding-bottom: -0.75rem;
}
.py-n4 {
  padding-top: -1rem;
  padding-bottom: -1rem;
}
.py-n5 {
  padding-top: -1.25rem;
  padding-bottom: -1.25rem;
}
.py-n6 {
  padding-top: -1.5rem;
  padding-bottom: -1.5rem;
}
.py-n7 {
  padding-top: -1.75rem;
  padding-bottom: -1.75rem;
}
.py-n8 {
  padding-top: -2rem;
  padding-bottom: -2rem;
}
.py-n9 {
  padding-top: -2.25rem;
  padding-bottom: -2.25rem;
}
.py-n10 {
  padding-top: -2.5rem;
  padding-bottom: -2.5rem;
}
.py-n11 {
  padding-top: -2.75rem;
  padding-bottom: -2.75rem;
}
.py-n12 {
  padding-top: -3rem;
  padding-bottom: -3rem;
}
.p-n1 {
  padding: -0.25rem;
}
.p-n2 {
  padding: -0.5rem;
}
.p-n3 {
  padding: -0.75rem;
}
.p-n4 {
  padding: -1rem;
}
.p-n5 {
  padding: -1.25rem;
}
.p-n6 {
  padding: -1.5rem;
}
.p-n7 {
  padding: -1.75rem;
}
.p-n8 {
  padding: -2rem;
}
.p-n9 {
  padding: -2.25rem;
}
.p-1n0 {
  padding: -2.5rem;
}
.p-1n1 {
  padding: -2.75rem;
}
.p-1n2 {
  padding: -3rem;
}
.pt-n1 {
  padding-top: -0.25rem;
}
.pt-n2 {
  padding-top: -0.5rem;
}
.pt-n3 {
  padding-top: -0.75rem;
}
.pt-n4 {
  padding-top: -1rem;
}
.pt-n5 {
  padding-top: -1.25rem;
}
.pt-n6 {
  padding-top: -1.5rem;
}
.pt-n7 {
  padding-top: -1.75rem;
}
.pt-n8 {
  padding-top: -2rem;
}
.pt-n9 {
  padding-top: -2.25rem;
}
.pt-n10 {
  padding-top: -2.5rem;
}
.pt-n11 {
  padding-top: -2.75rem;
}
.pt-n12 {
  padding-top: -3rem;
}
.pb-n1 {
  padding-bottom: -0.25rem;
}
.pb-n2 {
  padding-bottom: -0.5rem;
}
.pb-n3 {
  padding-bottom: -0.75rem;
}
.pb-n4 {
  padding-bottom: -1rem;
}
.pb-n5 {
  padding-bottom: -1.25rem;
}
.pb-n6 {
  padding-bottom: -1.5rem;
}
.pb-n7 {
  padding-bottom: -1.75rem;
}
.pb-n8 {
  padding-bottom: -2rem;
}
.pb-n9 {
  padding-bottom: -2.25rem;
}
.pb-n10 {
  padding-bottom: -2.5rem;
}
.pb-n11 {
  padding-bottom: -2.75rem;
}
.pb-n12 {
  padding-bottom: -3rem;
}
.pr-n1 {
  padding-right: -0.25rem;
}
.pr-n2 {
  padding-right: -0.5rem;
}
.pr-n3 {
  padding-right: -0.75rem;
}
.pr-n4 {
  padding-right: -1rem;
}
.pr-n5 {
  padding-right: -1.25rem;
}
.pr-n6 {
  padding-right: -1.5rem;
}
.pr-n7 {
  padding-right: -1.75rem;
}
.pr-n8 {
  padding-right: -2rem;
}
.pr-n9 {
  padding-right: -2.25rem;
}
.pr-n10 {
  padding-right: -2.5rem;
}
.pr-n11 {
  padding-right: -2.75rem;
}
.pr-n12 {
  padding-right: -3rem;
}
.pl-n1 {
  padding-left: -0.25rem;
}
.pl-n2 {
  padding-left: -0.5rem;
}
.pl-n3 {
  padding-left: -0.75rem;
}
.pl-n4 {
  padding-left: -1rem;
}
.pl-n5 {
  padding-left: -1.25rem;
}
.pl-n6 {
  padding-left: -1.5rem;
}
.pl-n7 {
  padding-left: -1.75rem;
}
.pl-n8 {
  padding-left: -2rem;
}
.pl-n9 {
  padding-left: -2.25rem;
}
.pl-n10 {
  padding-left: -2.5rem;
}
.pl-n11 {
  padding-left: -2.75rem;
}
.pl-n12 {
  padding-left: -3rem;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
