/* ===== LOBBY ONLINE ===== */

.tournaments-container {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
}

.online-lobby-header {
	display: grid;
	grid-template-columns: 130px 100px 140px 1fr;
	padding: 12px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
	border-bottom: 2px solid #e5e7eb;
	background: #fafafa;
}

.online-lobby-row {
	display: grid;
	grid-template-columns: 130px 100px 140px 1fr;
	align-items: center;
	padding: 14px 16px;
	border-bottom: 1px solid #e5e7eb;
}

.online-lobby-row:hover {
	background: #f3f6fb;
}

.online-lobby-time {
	line-height: 1.25;
	font-size: 14px;
	color: #111827;
}

.online-lobby-hour {
	font-weight: 600;
	color: #111827;
}

.online-lobby-meta {
	text-align: right;
}

.online-lobby-countdown {
	font-size: 12px;
	color: #2563eb;
}

.online-lobby-buyin {
	font-weight: 600;
	color: #111827;
}

.online-lobby-prizepool {
	font-weight: 600;
	color: #117c57;
}

.online-lobby-name {
	color: #1f2937;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.online-lobby-action {
	text-align: right;
}

.online-lobby-play {
	background: #16a34a;
	border: none;
	color: #ffffff;
	font-weight: 700;
	font-size: 13px;
	padding: 7px 14px;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.05s ease;
}

.online-lobby-play:hover {
	background: #15803d;
	transform: translateY(-1px);
}

/* ===== HERO CLUB FINAL ===== */

.club-hero-final {
	position: relative;
	border-radius: 18px;
	margin: 28px 0 40px;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		#0b2f55 0%,
		#071a33 55%,
		#061427 100%
	);
}

.club-hero-final::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		135deg,
		rgba(255,255,255,0.015),
		rgba(255,255,255,0.015) 4px,
		transparent 4px,
		transparent 18px
	);
	pointer-events: none;
}

.club-hero-inner {
	position: relative;
	padding: 32px 48px;
	text-align: center;
	color: #ffffff;
}

.club-hero-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 16px;
}

.club-hero-logo {
	max-width: 170px;
}

.club-hero-badge {
	background: rgba(255,255,255,0.14);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.05em;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.club-hero-badge::before{
	content: "";
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	display: inline-block;
	background-image: url("/wp-content/themes/torneosp/img/verificado.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transform: translateY(-0.5px);
}

.club-hero-title {
	font-size: 26px;
	font-weight: 800;
	margin: 6px 0 10px;
}

.club-hero-subtitle {
	font-size: 15px;
	color: #c9d7ea;
	max-width: 760px;
	margin: 0 auto 26px;
}

.club-hero-features {
	display: grid;
	grid-template-columns: repeat(3, minmax(220px, 1fr));
	gap: 14px 22px;
	max-width: 960px;
	margin: 0 auto 34px;
	text-align: left;
	font-size: 15px;
}

.club-hero-features div {
	background: rgba(255,255,255,0.10);
	padding: 10px 16px;
	border-radius: 14px;
	line-height: 1.4;
}

.club-hero-cta {
	margin-top: 6px;
}

.club-hero-button {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 320px;
	padding: 14px 32px;
	background: linear-gradient(180deg, #22c55e, #16a34a);
	color: #052e16;
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0.02em;
	border-radius: 10px;
	text-decoration: none;
	box-shadow: 0 6px 0 #0f7a37;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.club-hero-button:visited {
	color: #052e16;
	background: linear-gradient(180deg, #22c55e, #16a34a);
}

.club-hero-button-suprema-poker:visited {
	color: #052e16;
	background: linear-gradient(180deg, #f4c06b, #EFA144);
}

.club-hero-button span {
	font-size: 12px;
	font-weight: 800;
	margin-top: 2px;
	letter-spacing: 0.18em;
	opacity: 0.85;
}

.club-hero-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 0 #0f7a37;
}

.club-hero-button-suprema-poker {
	background: linear-gradient(180deg, #f4c06b, #EFA144);
	color: #3a2400;
	box-shadow: 0 6px 0 #b87410;
}

.club-hero-button-suprema-poker:visited {
	color: #3a2400;
	background: linear-gradient(180deg, #f4c06b, #EFA144);
}

.club-hero-button-suprema-poker:hover {
	box-shadow: 0 8px 0 #b87410;
}

.club-hero-note {
	margin-top: 12px;
	font-size: 13px;
	color: #b9cbe3;
}

.feat-mobile {
	display: none;
}

@media (max-width: 768px) {
	.club-hero-final {
		margin: 8px 0px;
	}

	.club-hero-inner {
		padding: 18px 16px 20px;
	}

	.club-hero-brand {
		gap: 10px;
		margin-bottom: 12px;
	}

	.club-hero-logo {
		max-width: 120px;
	}

	.club-hero-badge {
		font-size: 10px;
		padding: 4px 10px;
	}

	.club-hero-title {
		font-size: 20px;
		line-height: 1.25;
		margin: 6px 0;
	}

	.club-hero-subtitle {
		font-size: 13px;
		line-height: 1.4;
		margin-bottom: 14px;
	}

	.feat-desktop {
		display: none;
	}

	.feat-mobile {
		display: inline;
	}

	.club-hero-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px 10px;
		margin-bottom: 16px;
	}

	.club-hero-features div {
		padding: 6px 8px;
		font-size: 12px;
		line-height: 1.25;
		border-radius: 10px;
		background: rgba(255,255,255,0.08);
		white-space: nowrap;
	}

	.club-hero-button {
		min-width: 100%;
		font-size: 18px;
		padding: 4px 10px;
		box-shadow: 0 3px 0 #0f7a37;
	}

	.club-hero-button-suprema-poker {
		min-width: 100%;
		font-size: 18px;
		padding: 4px 10px;
		box-shadow: 0 3px 0 #b87410;
	}

	.club-hero-note {
		font-size: 11px;
		margin-top: 6px;
	}

	.online-lobby-header {
		display: none;
	}

	.online-lobby-row {
		display: block;
		padding: 10px 5px;
	}

	.online-lobby-name {
		order: 1;
		font-size: 16px;
		font-weight: 700;
		margin-bottom: 6px;
		white-space: normal;
	}

	.tournaments-container:not(.lobby-nc) .online-lobby-time {
		display: none;
	}

	.online-lobby-hour {
		font-weight: 600;
	}

	.online-lobby-buyin,
	.online-lobby-prizepool {
		font-weight: 500;
	}

	.sep {
		display: inline;
	}

	.online-lobby-countdown {
		width: 100%;
		font-size: 12px;
		color: #2563eb;
		margin-top: 2px;
	}

	.tournaments-container:not(.lobby-nc) .online-lobby-buyin,
	.tournaments-container:not(.lobby-nc) .online-lobby-prizepool {
		display: none;
	}

	.tournaments-container:not(.lobby-nc) .online-lobby-row::after {
		content:
			attr(data-hour)
			" | buy-in: $"
			attr(data-buyin)
			" | "
			attr(data-prizepool);
		display: block;
		font-size: 13px;
		color: #374151;
	}

	.tournaments-container:not(.lobby-nc)
	.online-lobby-row[data-tiempo]::before {
		content: attr(data-tiempo);
		display: block;
		font-size: 12px;
		color: #2563eb;
		margin-top: 2px;
	}

	.online-lobby-countdown {
		display: block;
		margin-top: 2px;
		font-size: 12px;
		color: #2563eb;
	}
}

@media (max-width: 768px) {
	.tournaments-container.lobby-nc .online-lobby-time {
		display: none;
	}

	.tournaments-container.lobby-nc .online-lobby-buyin,
	.tournaments-container.lobby-nc .online-lobby-prizepool {
		display: none;
	}

	.tournaments-container.lobby-nc
	.online-lobby-row:not(.freeroll)::before {
		content: attr(data-tiempo);
		display: block;
		font-size: 12px;
		color: #2563eb;
		margin-bottom: 4px;
	}

	.tournaments-container.lobby-nc
	.online-lobby-row::after {
		content:
			"buy-in: "
			attr(data-buyin)
			" | "
			attr(data-prizepool);
		display: block;
		font-size: 13px;
		color: #374151;
	}

	.tournaments-container.lobby-nc
	.online-lobby-row.freeroll::after {
		content: attr(data-tiempo);
		display: block;
		font-size: 12px;
		color: #2563eb;
		margin-bottom: 4px;
	}
}

/* ===== FREEROLL (BUY-IN 0) ===== */

.online-lobby-row.freeroll {
	position: relative;
	background: #f7fbff;
}

.online-lobby-row.freeroll::before {
	content: "🎁";
	position: absolute;
	right: 12px; 
	top: 50%;
	transform: translateY(-50%);
	font-size: 34px;
	opacity: 0.12;
	pointer-events: none;
	z-index: 0;
}

.online-lobby-row.freeroll > * {
	position: relative;
	z-index: 1;
}

.online-lobby-row.freeroll:hover {
	background: #eef6ff;
}

/* =========================================
	MODAL REGISTRO - SUPREMA POKER
========================================= */

body.spm-modal-open {
	overflow: hidden;
	touch-action: none;
}

.suprema-poker-modal-registro {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
}

.suprema-poker-modal-registro.spm-open {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 0;
}

.suprema-poker-modal-registro .spm-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .68);
	backdrop-filter: blur(4px);
}

.suprema-poker-modal-registro .spm-dialog {
	position: relative;
	width: min(560px, calc(100% - 26px));
	margin: 0;
	border-radius: 18px;
	overflow: hidden;
	background: #0b0b0b;
	border: 1px solid rgba(255,255,255,.12);
	box-shadow: 0 24px 80px rgba(0,0,0,.60);
	animation: spmIn .18s ease-out;
}

@keyframes spmIn {
	from { transform: translateY(10px); opacity: 0; }
	to   { transform: translateY(0); opacity: 1; }
}

.suprema-poker-modal-registro .spm-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.15);
	background: rgba(255,255,255,.06);
	color: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	font-size: 16px;
}

.suprema-poker-modal-registro .spm-header {
	padding: 22px 20px 14px;
	background: linear-gradient(180deg, rgba(255,199,0,.18), rgba(0,0,0,0));
}

.suprema-poker-modal-registro .spm-badge {
	display: inline-block;
	font-size: 12px;
	letter-spacing: .5px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	color: #fff;
	margin-bottom: 10px;
}

.suprema-poker-modal-registro .spm-title {
	margin: 0;
	font-size: 20px;
	color: #fff;
}

.suprema-poker-modal-registro .spm-subtitle {
	margin: 8px 0 0;
	font-size: 14px;
	color: rgba(255,255,255,.78);
}

.suprema-poker-modal-registro .spm-body {
	padding: 14px 20px 22px;
	display: grid;
	gap: 14px;
}

.suprema-poker-modal-registro .spm-step {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 12px;
	padding: 14px;
	border-radius: 16px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.10);
}

.suprema-poker-modal-registro .spm-step-num {
	width: 40px;
	height: 40px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: rgba(255,199,0,.18);
	border: 1px solid rgba(255,199,0,.40);
	color: #fff;
	font-weight: 800;
}

.suprema-poker-modal-registro .spm-step-title {
	font-weight: 900;
	color: #fff;
	margin-bottom: 6px;
}

.suprema-poker-modal-registro .spm-step-text {
	color: rgba(255,255,255,.80);
	font-size: 14px;
}

/* ===============================
	BOTONES DESCARGA
================================ */

.suprema-poker-modal-registro .spm-store-buttons{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 12px;
}

.suprema-poker-modal-registro .spm-store-btn{
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 16px;
	text-decoration: none;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.12);
	box-shadow: 0 10px 30px rgba(0,0,0,.35);
	transition: transform .14s ease, background .14s ease, border-color .14s ease;
	will-change: transform;
}

.suprema-poker-modal-registro .spm-store-btn:hover{
	transform: translateY(-2px);
	background: rgba(255,255,255,.07);
	border-color: rgba(255,199,0,.35);
}

.suprema-poker-modal-registro .spm-store-btn:active{
	transform: translateY(0);
}

.suprema-poker-modal-registro .spm-store-btn:focus-visible{
	outline: none;
	box-shadow: 0 0 0 3px rgba(255,199,0,.35);
}

.suprema-poker-modal-registro .spm-store-btn::before{
	content:"";
	position:absolute;
	inset:-1px;
	border-radius: 16px;
	background: linear-gradient(120deg, rgba(255,199,0,.26), rgba(0,0,0,0));
	opacity: 0;
	transition: opacity .14s ease;
	pointer-events:none;
}

.suprema-poker-modal-registro .spm-store-btn:hover::before{
	opacity: 1;
}

.suprema-poker-modal-registro .spm-store-icon{
	width: 38px;
	height: 38px;
	object-fit: contain;
	flex: 0 0 auto;
	filter: drop-shadow(0 10px 14px rgba(0,0,0,.45));
}

.suprema-poker-modal-registro .spm-store-text{
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.suprema-poker-modal-registro .spm-store-text strong{
	font-size: 14px;
	font-weight: 900;
	letter-spacing: .2px;
	color: #fff;
}

.suprema-poker-modal-registro .spm-store-text small{
	font-size: 12px;
	color: rgba(255,255,255,.70);
	font-weight: 700;
	margin-top: 2px;
}

.suprema-poker-modal-registro .spm-club-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 12px;
	align-items: center;
	justify-items: center;
}

.suprema-poker-modal-registro .spm-club-guide {
	border: none;
	overflow: hidden;
	padding: 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
}

.suprema-poker-modal-registro .spm-club-guide img {
	width: 100%;
	max-width: 180px;
	height: auto;
	display: block;
}

.suprema-poker-modal-registro .spm-club-id {
	margin-top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px 20px;
	border-radius: 14px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.10);
	width: fit-content;
	justify-self: center;
}

.suprema-poker-modal-registro .spm-club-label {
	color: rgba(255,255,255,.75);
	font-size: 13px;
}

.suprema-poker-modal-registro .spm-club-value {
	color: #fff;
	font-size: 18px;
	letter-spacing: 1px;
}

.suprema-poker-modal-registro .spm-note {
	margin-top: 10px;
	font-size: 12px;
	color: rgba(255,255,255,.65);
}

@media (max-width: 520px) {
	.suprema-poker-modal-registro .spm-dialog {
		margin-top: 7vh;
	}
}

/* ===============================
	COPIAR ID CLUB
================================ */

.suprema-poker-modal-registro .spm-club-right {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	justify-content: center;
}

.suprema-poker-modal-registro .spm-copy-btn{
	width: 40px;
	height: 40px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(255,255,255,.06);
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: transform .14s ease, background .14s ease, border-color .14s ease;
}

.suprema-poker-modal-registro .spm-copy-btn:hover{
	transform: translateY(-1px);
	background: rgba(255,255,255,.08);
	border-color: rgba(255,199,0,.35);
}

.suprema-poker-modal-registro .spm-copy-btn:active{
	transform: translateY(0);
}

.suprema-poker-modal-registro .spm-copy-btn img{
	width: 18px;
	height: 18px;
	object-fit: contain;
	filter: drop-shadow(0 8px 12px rgba(0,0,0,.55));
}

.suprema-poker-modal-registro .spm-tooltip{
	position: absolute;
	right: 0;
	top: -38px;
	background: rgba(0,0,0,.90);
	border: 1px solid rgba(255,255,255,.14);
	color: #fff;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .2px;
	opacity: 0;
	transform: translateY(6px);
	pointer-events: none;
	transition: opacity .16s ease, transform .16s ease;
	white-space: nowrap;
}

.suprema-poker-modal-registro .spm-tooltip.is-visible{
	opacity: 1;
	transform: translateY(0);
}

.suprema-poker-modal-registro .spm-player-id-guide {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.suprema-poker-modal-registro .spm-guide-text {
	font-size: 11px;
	color: rgba(255,255,255,.6);
	font-weight: 700;
	text-align: center;
}

.suprema-poker-modal-registro .spm-player-id-guide img {
	max-width: 131px;
	height: auto;
	border-radius: 6px;
}

/* ===============================
	PASO 3 - ID JUGADOR + WHATSAPP
================================ */

.suprema-poker-modal-registro .spm-player-id-wrap {
	margin-top: 0;
	width: 100%;
}

.suprema-poker-modal-registro .spm-player-id-input{
	width: 100%;
	height: 44px;
	border-radius: 14px;
	padding: 0 14px;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: .4px;
	color: #fff;
	background: rgba(0,0,0,.35);
	border: 1px solid rgba(255,255,255,.14);
	outline: none;
	transition: border-color .14s ease, box-shadow .14s ease, background .14s ease;
}

.suprema-poker-modal-registro .spm-player-id-input:focus{
	border-color: rgba(255,199,0,.45);
	box-shadow: 0 0 0 3px rgba(255,199,0,.20);
	background: rgba(0,0,0,.45);
}

.suprema-poker-modal-registro .spm-whatsapp-btn{
	margin-top: 12px;
	width: 100%;
	height: 46px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	font-weight: 1000;
	font-size: 14px;
	letter-spacing: .2px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.16);
	color: #fff;
	transition: transform .14s ease, background .14s ease, border-color .14s ease, opacity .14s ease;
}

.spm-error-msg {
	color: #ff4d4d;
	font-size: 12px;
	margin-top: 5px;
	min-height: 18px;
}

.suprema-poker-modal-registro .spm-wsp-icon{
	width: 18px;
	height: 18px;
	object-fit: contain;
	filter: drop-shadow(0 10px 12px rgba(0,0,0,.5));
}

.suprema-poker-modal-registro .spm-whatsapp-btn.is-disabled{
	opacity: .45;
	cursor: not-allowed;
	pointer-events: none;
	filter: grayscale(1);
}

.suprema-poker-modal-registro .spm-whatsapp-btn:not(.is-disabled):hover{
	transform: translateY(-1px);
	border-color: rgba(255,199,0,.35);
	background: rgba(255,255,255,.10);
}

/* =========================================
	MOBILE COMPACT - SUPREMA POKER MODAL
========================================= */

@media (max-width: 768px){
	.suprema-poker-modal-registro .spm-dialog{
		margin: 0;
		width: min(560px, calc(100% - 16px));
		border-radius: 16px;
	}

	.suprema-poker-modal-registro .spm-header{
		padding: 12px 12px 5px;
	}

	.suprema-poker-modal-registro .spm-title{
		font-size: 18px;
	}

	.suprema-poker-modal-registro .spm-subtitle{
		font-size: 13px;
		margin-top: 6px;
	}

	.suprema-poker-modal-registro .spm-body{
		padding: 0px 5px;
		gap: 6px;
	}

	.suprema-poker-modal-registro .spm-step{
		padding: 10px;
		gap: 10px;
		border-radius: 14px;
		grid-template-columns: 34px 1fr;
	}

	.suprema-poker-modal-registro .spm-step-num{
		width: 34px;
		height: 34px;
		border-radius: 12px;
		font-size: 14px;
	}

	.suprema-poker-modal-registro .spm-step-title{
		font-size: 15px;
		margin-bottom: 4px;
	}

	.suprema-poker-modal-registro .spm-step-text{
		font-size: 13px;
		line-height: 1.35;
	}

	.suprema-poker-modal-registro .spm-store-buttons{
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
		margin-top: 10px;
	}

	.suprema-poker-modal-registro .spm-store-btn{
		padding: 8px 6px;
		gap: 8px;
		justify-content: center;
		border-radius: 14px;
	}

	.suprema-poker-modal-registro .spm-store-icon{
		width: 18px;
		height: 18px;
	}

	.suprema-poker-modal-registro .spm-store-text{
		align-items: center;
		text-align: center;
		line-height: 1;
	}

	.suprema-poker-modal-registro .spm-store-text strong{
		font-size: 12px;
		letter-spacing: .1px;
	}

	.suprema-poker-modal-registro .spm-store-text small{
		display: none;
	}

	.suprema-poker-modal-registro .spm-club-row {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		justify-items: center;
	}

	.suprema-poker-modal-registro .spm-club-guide {
		padding: 0 5px;
	}

	.suprema-poker-modal-registro .spm-club-id {
		padding: 8px 10px;
		background: rgba(0,0,0,.35);
		border: 1px solid rgba(255,255,255,.12);
	}

	.suprema-poker-modal-registro .spm-club-label{
		font-size: 12px;
	}

	.suprema-poker-modal-registro .spm-club-value{
		font-size: 16px;
	}

	.suprema-poker-modal-registro .spm-copy-btn{
		width: 36px;
		height: 36px;
		border-radius: 12px;
	}

	.suprema-poker-modal-registro .spm-player-id-input {
		height: 40px;
		font-size: 14px;
		padding: 0 8px;
		text-align: center;
	}

	.suprema-poker-modal-registro .spm-guide-text {
		font-size: 10px;
	}

	.suprema-poker-modal-registro .spm-whatsapp-btn{
		height: 42px;
		border-radius: 14px;
		font-size: 13px;
	}

	.suprema-poker-modal-registro .spm-note{
		margin-top: 8px;
		font-size: 11px;
	}

	.suprema-poker-modal-registro .spm-close{
		width: 34px;
		height: 34px;
		top: 10px;
		right: 10px;
	}
}