@import url('https://fonts.cdnfonts.com/css/raleway-5');

* {
    font-family: 'Raleway', sans-serif;
}

nav {
    font-size: smaller;
}

.navbar-toggler-icon {
    font-size: smaller;
}

p.info {
    text-align: justify;
}

.fondo {
    background-image: url("../img/header-bg.jpg");
    background-size: cover;
    min-height: 30vh;
    align-items: center;
}

.fondo h1, .fondo h4 {
    color: white;
}

.overlay-morado {
    position: absolute;
    left: 0;
    min-height: 30vh;
    width: 100%;
    background-color: transparent;
    background-image: linear-gradient(180deg, #130421 0%, #2F104A 100%);
    opacity: 0.72;
    z-index: 2;
}

.fondo div {
    z-index: 3;
}

.bg-listado {
    background-color: #2F104A;
    color: white;
    border-bottom: 4px solid !important;
}

.txt-justify {
    text-align: justify;
}

.fa-arrow-down {
    color:#2F104A !important;
    padding: 2px;
}

#datosEquipo, #otrosDatos, #datosJ1, #datosJ2 {
    display: none;
}

#dniCheck:focus, #dniCheckJ1:focus, #dniCheckJ2:focus {
    border-color: none;
    outline: 0;
    box-shadow: none;
}

.bloqueado {
    background-color: #d7d7d7;
}

@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

#bgDM {
    display:none;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    background-color: rgba(0, 0, 0, .1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

#spinnerDM {
    display:none;
    width: 80px;
    height: 80px;
    border: 10px solid #00000070;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border-left: 10px solid #ff0000e6;
    animation:spin 1s ease infinite
}

.cartaJugador {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cerrada {
    margin: 2rem;
    font-size: xxx-large;
    background-color: #d23238;
    color: white;
    border-radius: 20px;
    animation: insc 2s ease 0s 1 normal forwards;
}

@keyframes insc {
	0% {
		animation-timing-function: ease-out;
		transform: scale(1);
		transform-origin: center center;
	}

	10% {
		animation-timing-function: ease-in;
		transform: scale(0.91);
	}

	17% {
		animation-timing-function: ease-out;
		transform: scale(0.98);
	}

	33% {
		animation-timing-function: ease-in;
		transform: scale(0.87);
	}

	45% {
		animation-timing-function: ease-out;
		transform: scale(1);
	}
}