html {
    -ms-touch-action: none;
}

body,
canvas,
div {
    display: block;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Remove spin of input type number */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 0;
    border: 0;
    margin: 0;
    cursor: default;
    color: #000;
    background-color: #000;
    text-align: center;
    font-family: Helvetica, Verdana, Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

a:link,
a:visited {
    color: #000;
}

a:active,
a:hover {
    color: #000;
}

p.header {
    font-size: small;
}

p.footer {
    font-size: x-small;
}

#splash {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#swipe {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/en_swipe.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000000;
    z-index: 1000;
    background-size: contain;
    opacity: .95;
    overflow: hidden;
}

#orientation {
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/en_orientation.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    z-index: 1000;
    background-size: contain;
    visibility: hidden;
    opacity: .95;
}

.mask {
    height: 150vh;
    width: 100%;
    z-index: 20;
    display: none;
    position: absolute;
    top: 0%;
}

.absvh {
    position: absolute;
    height: 100vh;
}

.fullscreen-instructions-swipe {
    width: 150px;
    height: 150px;
    position: fixed;
    top: 75vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    animation-duration: 2s;
    animation-name: fullscreen-swipe;
    animation-iteration-count: infinite
}

.btn-flotante {
	font-size: 10px; /* Cambiar el tamaño de la tipografia */
	text-transform: uppercase; /* Texto en mayusculas */
	font-weight: bold; /* Fuente en negrita o bold */
	color: #ffffff; /* Color del texto */
	border-radius: 5px; /* Borde del boton */
	letter-spacing: 2px; /* Espacio entre letras */
	background-color: #E91E63; /* Color de fondo */
	padding: 18px 20px; /* Relleno del boton */
	position: fixed;
	bottom: 20px;
	left: 20px;
	transition: all 300ms ease 0ms;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	z-index: 99;
}
.btn-flotante:hover {
	background-color: #2c2fa5; /* Color de fondo al pasar el cursor */
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(-7px);
}
@media only screen and (max-width: 600px) {
 	.btn-flotante {
		font-size: 14px;
		padding: 12px 20px;
		bottom: 20px;
		right: 20px;
	}
}
.bgimage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/images/background/back.jpg'); /* Cambia por la ruta de tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
/*.progress-bar{background-color: #1a1a1a; position: absolute; left: 25%; top: 80%; height: 15px; padding: 5px; width: 50%; margin: 0 -175px; border-radius: 5px; box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;}.progress-bar span{display: block; height: 100%; border-radius: 3px; box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset; transition: width .4s ease-in-out; background-color: #34c2e3;}.stripes span{background-size: 30px 30px; background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); animation: animate-stripes 1s linear infinite;}@keyframes animate-stripes{0%{background-position: 0 0;} 100%{background-position: 60px 0;}}*/