#loader{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.9);
	z-index: 99999;
}
#loader div{
	position: absolute;
	left: calc(50% - 35px);
	top: calc(50% - 35px);
	border: 0px solid #fff;
	border-top: 4px solid #00c2a8;
	border-bottom: 4px solid #00c2a8;
	border-left: 0px solid #00c2a8;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.movil, .tablet{ display: none; }
.desktop{ display: block; }

.swal-title{
	font-size: 20px;
}
.swal-overlay{
	z-index: 99993;
}
.swal-button{
	background-color: #000;
	border-radius: 18px;
}
.swal-button--cancel{
	color: #333;
	background-color: #efefef;
}
.ajs-message{
	background: #d85015;
	text-align: center;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 48px;
	border-radius: 4px;
	border:	0;
	cursor: pointer;
	padding: 0 !important;
}

/* ==========================================================================
 Author's custom styles
   ========================================================================== */
*{
	outline: none;
	box-sizing: border-box;
}
body{
	font-family: "Montserrat", sans-serif;
	padding: 0;
	margin: 0;
	align-items: center;
	display: flex;
	flex-direction: column;
	background: #000;
}
body.static{
	overflow: hidden;
}
a{ color: #ffff; }
a:hover, a:link, a:visited, a:active{ text-decoration: none; }
input:-internal-autofill-selected{
	background: #fff !important;
}
input, textarea, select, button{
	font-family: "Montserrat", sans-serif;
}
main{
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1440px;
	align-items: center;
	justify-content: center;
}
.movil, .tablet{ display: none; }
.desktop{ display: block; }

.contenedor{
	display: flex;
	flex-direction: column;
	clear: both;
	width: 100%;
	margin: 0 auto;
	padding: 0 50px;
	max-width: 1440px;
}
.contenedor-sl{
	display: block;
	clear: both;
	width: 100%;
	margin: 0 auto;
	padding: 0 50px;
	overflow: hidden;
	max-width: 1440px;
}
header{
	width: 100%;
	z-index: 992;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
header .logo{
	transform: rotate(-5deg);
	transition: 0.3s all ease;
}
.card {
    width: 100%;
    max-width: 420px;
    background: #111;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
}
.card-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
	color: #fff;
}
.card-subtitle {
    font-size: 13px;
    color: #ccc;
    text-align: center;
    margin-bottom: 18px;
}
.card-qr{
	display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.card form{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.field-label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #ddd;
}
.field-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #000;
    color: #fff;
    font-size: 14px;
}
.btn-submit {
    margin-top: 10px;
    width: 100%;
    padding: 12px;
    border-radius: 999px;
    border: none;
    font-size: 16px;
    background: linear-gradient(90deg, #FFA000, #FF6F00);
    font-weight: 700;
    cursor: pointer;
    color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}
.help-text {
    margin-top: 10px;
    font-size: 11px;
    color: #aaa;
    text-align: center;
}
footer{
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 50px 0;
	gap: 20px;
}
footer .social{
	display: flex;
	flex-direction: column;
}
footer .social ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 20px;
}
footer .social ul li a{
	color: #999;
}
footer .copy{
	color: #999;
	font-weight: 300;
	font-size: 12px;
}
.field-btn{
	display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.error{
	color: #f00;
    font-size: 12px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
}