/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 16 2026 | 11:23:24 */
.formulario {
    height: 900px;
    background-repeat: no-repeat;
    background-attachment: scroll;
    margin: auto;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: white;
    gap: 30px;
    padding: 30px;
position: relative;
    z-index: 2222;
}




p.zf-vacio {
    color: white;
    text-shadow: 0px 1px 3px #000000b5;
}
.footer-tn img {
    width: 90px;
    margin: auto;
    display: block;
    margin-bottom: 15px;
}

.box1 img.escudo {
    width: 220px;
    text-align: center;
    margin: auto;
    display: block;
    margin-bottom: -50px;
margin-top: -35px;
}

form.if-form.if-wizard h3 {
    padding-bottom: 25px;
}

.menu a {
    text-decoration: none;
    font-size: 15px;
    padding: 0 12px;
}

.marca img {
    width: 130px;
}

.box1 img.frase {
    width: 420px;
    text-align: center;
    margin: auto;
    display: block;
}



.if-form {
    background: #000000f2;
    border: 1px solid #ff00006b;
    box-shadow: 0px 5px 12px #000000d4;
}


.if-form label {
    color: #ffffff !important;
}

.if-btn {
    background: #e40b00;
    padding: 10px 30px;
    font-size: 15px;
    margin-top: 12px;
    font-family: ubuntu;
}

.cargar-equipo {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.if-add-player .if-btn {
    margin-top: 15px;
}

.trofeo {
    position: absolute;
    bottom: 0px;
    left: 35%;
}

.trofeo img {
    width: 400px;
}

.headerff {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 0.75em;
    max-width: 90%;
    width: 1300px;
    margin: auto;
}

.if-card, .if-team {
    background: #00000099;
}

.if-notice-ok {
    background: #3a913d;
    color: #ffffff;
}

.if-form label {
    font-weight: 100;
    font-size: 14px;
    text-transform: none;
    margin-bottom: 4px;
    font-family: 'Ubuntu';
}

@media (max-width: 768px) {
.cargar-equipo {
    width: 98%;
}
.if-team-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.if-team-meta {
    min-width: 110px;
}

ol.if-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.if-player-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.if-player-data {
    margin-left: -50px;
}

.if-team-count {
    font-size: 0.5em;
    text-align: center;
    margin-left: -10px;
}

.formulario {
        display: block;
        margin-bottom: 50px;
        padding-bottom: 200px;
    }


.box1 img.escudo {
    width: 120px;
    margin-top: -20px;
margin-bottom: -25px;
}

.box1 img.frase {
    width: 220px;
}

.trofeo {
    display: none;
}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
}

.headerff {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	position: relative;
}

.marca {
    font-family: ubuntu;
    font-weight: 700;
    color: #f1d075;
}
.menu {
	display: flex;
	gap: 20px;
}

.menu a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	padding: 8px 12px;
	border-radius: 4px;
}

.menu a:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Botón hamburguesa: oculto en desktop */
.hamburguesa {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 22px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 99920;
}

.hamburguesa span {
	display: block;
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* Animación hamburguesa -> X */
.hamburguesa.abierta span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.hamburguesa.abierta span:nth-child(2) {
	opacity: 0;
}

.hamburguesa.abierta span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.textbenef {
   font-family: ubuntu;
    font-size: 0.7em;
    padding-top: 35px;
}

.benef {
    display: flex;
}

.benef strong {
    display: block;
}

.footer26 {
   display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 35px;
    max-width: 1300px;
    margin: auto;
    gap: 35px;
    width: 90%;
}

.benef img {
    width: 90px;
    height: 90px;
    margin-top: 18px;
    margin-right: 5px;
}

/* ---- Versión mobile ---- */
@media (max-width: 768px) {
	.hamburguesa {
		display: flex;
	}

.headerff {
    padding: 15px 0px;
width: 90%;
max-width: 100%;

}

	.menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        flex-direction: column;
        gap: 0;
        background: #000000eb;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 9910;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
    }

	.menu.abierto {
		right: 0;
	}

	.menu a {
		padding: 15px 25px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

.footer26 {
   display: block;
margin-top: 100px;
}
}



table.zf-tabla thead th {
    background: #434343 !important;
}

.zf-partido-equipo-visita {
    flex-direction: revert !important;
}

.partidos-zonas {
    padding: 10px;
    margin: 10px auto;
    background-color: #000000d1;
}

.zf-buscador-icono {
    top: 11px !important;
}

.zf-buscador {
    margin-bottom: 15px;
}

.headerff-torneo .marca img {
    width: 200px;
}

.headerff-torneo {
    background-color: black;
    text-align: center;
    padding: 25px;
    margin-bottom: 15px;
box-shadow: 0px 2px 10px #000000d4;
}

.zf-perfil-titulo {
    background-color: #00000099;
    padding: 10px;
    border-radius: 5px;
    text-shadow: 0px 1px 5px #0000008f;
}

.zf-llave-grid {
    justify-content: center;
}

.zf-nav-item.is-active {
	background: linear-gradient(180deg, rgb(212 47 47 / 22%), rgb(128 55 21 / 18%))!important;
    border-color: rgba(239, 68, 68, .5) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(239, 68, 68, .22), inset 0 1px 0 rgba(255, 255, 255, .08)!important;
}