/*-------------------------
	Simple reset
--------------------------*/


*{
	margin:0;
	padding:0;
}


/*-------------------------
	General Styles
--------------------------*/
.recuperar_txt{ 
	color: #000000; 
	padding: 10px 20px;
	position: relative; 
	text-align: center;
	top: 130px;
}

.columna_login .recuperar_txt{ 
	color: #FFFFFF; 
	padding: 10px 20px;
	position: unset; 
	text-align: center;
	text-transform: uppercase;
	top: 130px;
}

html{
	-webkit-background-size: 75% 100%;
	-moz-background-size: 75% 100%;
	-o-background-size: 75% 100%;
	background-size: 75% 100%; 

	width: 100vw;
	overflow: hidden;
}

body{
	font:14px/1.3 Helvetica,Arial,sans-serif;
	height: calc(100vh - 45px);
	/*padding-top: 100px;*/
	overflow: hidden;
}

.login_menu {
	float: left;
	width: 100%;
	text-align: center;
	margin-top: -70px;
}

.login_menu_option {
	margin-right: 0px;
	margin-bottom: 2px;
}

.login_menu_option .element {
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
	display: inline-block;
	margin-bottom: 2px;
	margin-right: 15px;
	padding: 4px 0px 1px 6px;
	vertical-align: middle;
	width: 140px;
}

.columna_fans {
	float: left;
	padding-left: 60px;
	padding-top: 30px;
	text-align: left;
	width: 40%;
}

.columna_login {
	background-color: #ffffff;
	border-right: 1px solid #e4e4e3;
	float: left;
	height: 100vh;
	width: 25%;
	position: absolute;
}

.img_fans {
	width: 50%;
}

@media (max-width: 720px) {
	body{
		padding-top: 10%;
	}
	
	.login_menu {
		margin-top: 0px;
	}
	
	.columna_login {
		height: 100%;
		width: 100%;
	}
	
	.whatsapp-link {
		right: 60px;
	}
	
}

@media (min-width: 721px) and (max-width: 980px) {
	.columna_login {
		width: 35%;
	}	
	
	.whatsapp-link {
		right: 60px;
	}
}

a, a:visited {
	text-decoration:none;
	outline:none;
	color:#4D4080;
}

a:hover{
	text-decoration:underline;
}

section, footer{
	display: block;
}


/*----------------------------
	Styling the forms
-----------------------------*/

.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
  }
  .lds-ellipsis div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #fff;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
	0% {
	  transform: scale(0);
	}
	100% {
	  transform: scale(1);
	}
  }
  @keyframes lds-ellipsis3 {
	0% {
	  transform: scale(1);
	}
	100% {
	  transform: scale(0);
	}
  }
  @keyframes lds-ellipsis2 {
	0% {
	  transform: translate(0, 0);
	}
	100% {
	  transform: translate(24px, 0);
	}
  }  

#loader-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

#loader-container.none {
	display: none !important;
}

#formContainer{
	width:288px;
	height:321px;
	margin:0 auto;
	position:relative;
	z-index:1;

	-moz-perspective: 800px;
	-webkit-perspective: 800px;
	perspective: 800px;
}

#formContainer form{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;

	/* Enabling 3d space for the transforms */
	-moz-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;

	/* When the forms are flipped, they will be hidden */
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;

	/* Enabling a smooth animated transition */
	-moz-transition:0.8s;
	-webkit-transition:0.8s;
	transition:0.8s;

	/* Configure a keyframe animation for Firefox */
	-moz-animation: pulse 2s infinite;

	/* Configure it for Chrome and Safari */
	-webkit-animation: pulse 2s infinite;
}

.columna_login #formContainer form{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;

	/* Enabling 3d space for the transforms */
	-moz-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;

	/* When the forms are flipped, they will be hidden */
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;

	/* Enabling a smooth animated transition */
	-moz-transition:0.8s;
	-webkit-transition:0.8s;
	transition:0.8s;

	/* Configure a keyframe animation for Firefox */
	-moz-animation: none;

	/* Configure it for Chrome and Safari */
	-webkit-animation: none;
}


/* Firefox Keyframe Animation */
@-moz-keyframes pulse{
	0%{		box-shadow:0 0 1px #c03437;}
	50%{	box-shadow:0 0 8px #c03437;}
	100%{	box-shadow:0 0 1px #c03437;}
}

/* Webkit keyframe animation */
@-webkit-keyframes pulse{
	0%{		box-shadow:0 0 1px #c03437;}
	50%{	box-shadow:0 0 10px #c03437;}
	100%{	box-shadow:0 0 1px #c03437;}
}

#login{
	background:url('/assets/images/login_form_bg.png?v=1.0.2') no-repeat;
	z-index:100;
}

.signin_label {
	color: #292244;
	font-weight: bold;
	text-align: center;
	width: 100%;
}

.input_group {
	margin-bottom: 15px;
	margin-top: 80px;
	text-align: center;
	width: 100%;
}

.pass_group {
	margin-bottom: 15px;
	text-align: center;
	width: 100%;
}

#restablish{
	/*background:url('/assets/images/login_form_bg_restaurar.png?v=1.0.1') no-repeat;*/
	z-index:100;
}

#recover{
	background:url('/assets/images/recover_form_bg.png?v=1.0.1') no-repeat;
	z-index:1;
	opacity:0;

	/* Rotating the recover password form by default */
	-moz-transform:rotateY(180deg);
	-webkit-transform:rotateY(180deg);
	transform:rotateY(180deg);
}

#formContainer.flipped #login{

	opacity:0;

	/**
	 * Rotating the login form when the
	 * flipped class is added to the container
	 */

	-moz-transform:rotateY(-180deg);
	-webkit-transform:rotateY(-180deg);
	transform:rotateY(-180deg);
}

#formContainer.flipped #recover{

	opacity:1;

	/* Rotating the recover div into view */
	-moz-transform:rotateY(0deg);
	-webkit-transform:rotateY(0deg);
	transform:rotateY(0deg);
}


/*----------------------------
	Inputs, Buttons & Links
-----------------------------*/


#login .flipLink,
#recover .flipLink{

	/* The blue ribbon links */

	height: 65px;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-indent: -9999px;
    top: 0;
    width: 65px;
}

.columna_login #login .flipLink,
.columna_login #recover .flipLink{

	/* The blue ribbon links */
	color: #292244;
	height: 65px;
    overflow: hidden;
    position: unset;
    right: 0;
    text-indent: -9999px;
    text-transform: uppercase;
    top: 0;
    width: 65px;
}

#recover .flipLink{
	right:auto;
	left:0;
}

#login:after{
	/* The "Click here" tooltip */
	width:98px;
	height:16px;
	content:'';
	background:url('/assets/images/click_here.png') no-repeat;
	position:absolute;
	right:-120px;
	top:22px;
}

input[type=text],input[type=password]{
	/* The text fields */
	font: 15px 'Segoe UI',Arial,sans-serif;
	border: none;
	background:none;
	height: 36px;
	left: 26px;
	position: absolute;
	top: 176px;
	width: 234px;
	text-indent: 8px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	color:#000000;
	outline:none;
}

.columna_login input[type=text],.columna_login input[type=password]{
	/* The text fields */
	font: 15px 'Segoe UI',Arial,sans-serif;
	border: 1px solid #00acc7;
	background:#e4e4e3;
	height: 36px;
	position: unset;
	width: 234px;
	text-indent: 8px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	color:#000000;
	outline:none;
}

#loginPass{
	top: 215px;
}

#recoverEmail{
	top:215px;
}

.columna_login input[type=submit]{

	/* Submit button */
	background: #ffd200;
	background-image: none; 
	border:none;
	border-radius:0px;
	box-shadow:0 1px 1px #a5a5a5;
	color:#fff;
	cursor:pointer;
	font:14px/36px 'Segoe UI Light','Segoe UI',Arial,sans-serif;
	font-weight: bold;
	height:36px;
	left:25px;
	opacity:0.9;
	padding: 1px 10px 25px 10px;
	position:unset;
	text-transform: uppercase;
	top:262px;
	width: auto;
}

input[type=submit]{

	/* Submit button */

	opacity:0.9;
	position:absolute;
	top:262px;
	left:25px;
	width: 239px;
	height:36px;
	cursor:pointer;
	border-radius:6px;
	box-shadow:0 1px 1px #888;
	border:none;
	color:#fff;
	font:14px/36px 'Segoe UI Light','Segoe UI',Arial,sans-serif;

	/* CSS3 Gradients */

	background-image: linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -o-linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);

	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.5, rgb(200,164,38)),
		color-stop(0.5, rgb(220,180,0)),
		color-stop(1, rgb(255,209,0))
	);
}

input[type=submit]:hover{
	opacity:1;
}

input::-webkit-input-placeholder {
    color:#eee;
}


/*----------------------------
	The Footer
-----------------------------*/


footer{
	background-color: #001038;
	bottom: 0;
	box-shadow: 0 -1px 2px #0c1526;
	height: 45px;
	left: 0;
	padding-top: 10px;
	position: fixed;
	width: 100%;
	z-index: 100000;
}

footer h2{
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
	padding-top: 10px;
	position: absolute;
	text-align: center;
	width: 100%;
}

footer h2 i{
	font-style:normal;
	color:#888;
}

footer a.tzine,a.tzine:visited{
	color: #999999;
	font-size: 12px;
	left: 50%;
	margin: 16px 0 0 110px;
	position: absolute;
	text-decoration: none;
	top: 0;
}

footer a i{
	color:#d0d3d4;
	font-style: normal;
}

footer a i b{
	color:#c92020;
	font-weight: normal;
}

.overlayNotify {
    background: #000000 none repeat scroll 0 0;
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1031;
}

.notifyBox {
    background: #ffffff none repeat scroll 0 0;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    left: 45%;
    margin-left: -125px;
    margin-top: -75px;
    min-height: 110px;
    padding: 20px;
    position: fixed;
    text-align: center;
    top: 50%;
    width: 25%;
    z-index: 1032;
}

.size13 {
    font-size: 13px;
}

.opensans {
    /*font-family: "Open Sans";*/
}

.welcome_text {
	color: #000000;
    font-family: "Open Sans";
    margin-left: 10%;
    margin-top: 130px;
    text-align: center;
    width: 80%;
}

.notifyConten {
    padding-bottom: 15px;
}

.btn-search4 {
    /* Submit button */

	opacity:0.9;
	cursor:pointer;
	border-radius:6px;
	box-shadow:0 1px 1px #888;
	border:none;
	color:#fff;
	padding: 0.5px 20px;
	font:14px/36px 'Segoe UI Light','Segoe UI',Arial,sans-serif;
 
	/* CSS3 Gradients */

	background-image: linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -o-linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);

	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.5, rgb(200,164,38)),
		color-stop(0.5, rgb(220,180,0)),
		color-stop(1, rgb(255,209,0))
	);
}

.btn-search4:hover {
    opacity:1;
}

.none {
    display: none;
}

.registroMovil {
	margin-top: 30px;
	width: 100%;
	height: 300px;
	right: 0px;
	transition: 1s right;
	z-index: 100;
}

.registroMovil .tabMovil {
	box-shadow: -2px -1px 3px rgba(0,0,0,0.7);
	cursor:pointer;
	transform-origin: left top 0;
	background: -webkit-gradient( linear, left bottom, left top, color-stop(0.5, rgb(200,164,38)), color-stop(0.5, rgb(220,180,0)), color-stop(1, rgb(255,209,0)) );
	padding: 10px;
	width: 100px;
	text-align: center;
	color: #FFFFFF;
	font-weight: bold;
	border-radius: 15px 15px 0px 0px;
	opacity: 0.9;
}

.registroMovil .formRegistro {
	background-color: rgba(0,0,0,0.7);
	width: 100%;
	min-height: 100px;
	height: 100vh;
	padding-bottom: 180px;
	z-index: 3000;
}

.registro {
	position: fixed;
	top: 180px;
	width: 500px;
	height: 300px;
	right: -540px;
	transition: 1s right;
	z-index: 100;
}

.registro .tab {
	box-shadow: -2px -1px 3px rgba(0,0,0,0.7);
	cursor:pointer;
	transform: rotate(270deg);
	transform-origin: left top 0;
	margin-top: 143px;
	background: -webkit-gradient( linear, left bottom, left top, color-stop(0.5, rgb(200,164,38)), color-stop(0.5, rgb(220,180,0)), color-stop(1, rgb(255,209,0)) );
	padding: 10px;
	width: 100px;
	text-align: center;
	color: #FFFFFF;
	font-weight: bold;
	border-radius: 15px 15px 0px 0px;
	opacity: 0.9;
}

.registro .formRegistro {
	background-color: rgba(0,0,0,0.7);
	float: right;
	width: 100%;
	min-height: 100px;
	margin-right: -38px;
	margin-left: 20px;
	height: 107vh;
	margin-top: -180px;
	padding-bottom: 180px;
	z-index: 3000;
}

.registro #register, .registroMovil #register {
	margin-left: 50px;
	margin-right: 50px;
}

.registro .row, .registroMovil .row {
    margin-right: -50px;
    margin-left: 0px;
    max-height: 90%;
    overflow-y: auto;
    overflow-x: hidden;
}

.registro .col-md-12, .registroMovil .col-md-12 {
    width: 100%;
}

.registro .col-md-1, .registro  .registro .col-md-10, .registro .col-md-11, .registro .col-md-12, .registro .col-md-2, .registro .col-md-3, .registro .col-md-4, .registro .col-md-5, .registro .col-md-6, .registro  .col-md-7, .registro  .col-md-8, .registro  .col-md-9 {
    float: left;
}

.registro .signup-heading, .registroMovil .signup-heading {
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.registro .input-field, .registroMovil .input-field {
    position: relative;
    margin-top: 0rem;
}

.registro .input-field input, .registroMovil .input-field input {
    color: #ffffff;
    position: unset !important;
}

.input-field .prefix ~ input, .input-field .prefix ~ textarea {
	margin-left: 2.5rem;
	width: 92%;
	/* width: calc(100% - 3rem); */
}

.registro input[type="text"], .registroMovil input[type="text"], 
.registro input[type="password"], .registroMovil input[type="password"],
.registro input[type="email"], .registroMovil input[type="email"],
.registro input[type="url"], .registroMovil input[type="url"], 
.registro input[type="date"], .registroMovil input[type="date"],
.registro input[type="tel"], .registroMovil input[type="tel"], 
.registro input[type="number"], .registroMovil input[type="number"],
.registro input[type="search"], .registroMovil input[type="search"], 
.registro select, .registroMovil select, 
.registro textarea.materialize-textarea, .registroMovil textarea.materialize-textarea 
{
    background-color: transparent;
    border: none;
        border-bottom-color: currentcolor;
        border-bottom-style: none;
        border-bottom-width: medium;
    border-bottom: 1px solid #9e9e9e;
    outline: none;
    height: 2.5rem;
    width: 65%;
    font-size: 1rem;
    margin: 0 0 15px 0;
        margin-left: 0px;
    padding: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

.registro .div-btn-primary, .registroMovil .div-btn-primary {
	opacity: 1;
	width: 69%;
	height: 36px;
	cursor: pointer;
	border-radius: 6px;
	box-shadow: 0 1px 1px #888;
	border: none;
	color: #fff;
	font: 14px/36px 'Segoe UI Light','Segoe UI',Arial,sans-serif;
	font-weight: bold;
	text-align: center;
	background-image: linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -o-linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(200,164,38) 50%, rgb(220,180,0) 50%, rgb(255,209,0) 100%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.5, rgb(200,164,38)), color-stop(0.5, rgb(220,180,0)), color-stop(1, rgb(255,209,0)) )
}

.registro .div-btn-primary:hover, .registroMovil .div-btn-primary:hover {
	background-image: linear-gradient(bottom, rgb(255,209,0) 50%, rgb(220,180,0) 50%, rgb(200,164,38) 100%);
	background-image: -o-linear-gradient(bottom, rgb(255,209,0) 50%, rgb(220,180,0) 50%, rgb(200,164,38) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(255,209,0) 50%, rgb(220,180,0) 50%, rgb(200,164,38) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(255,209,0) 50%, rgb(220,180,0) 50%, rgb(200,164,38) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(255,209,0) 50%, rgb(220,180,0) 50%, rgb(200,164,38) 100%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.5, rgb(255,209,0)), color-stop(0.5, rgb(220,180,0)), color-stop(1, rgb(200,164,38)) );
}

.registro .div-btn-primary a, .registroMovil .div-btn-primary a {
	color: #FFFFFF;
	text-decoration: none;
}

.registro .clearfix, .registroMovil .clearfix {
	clear: both;
}

.registro .input-field label, .registroMovil .input-field label {
    color: #ffffff;
}

.registro .ErrorLabel, .registroMovil .ErrorLabel {
	color: #ffffff !important;
	display:none;
}

.registro .Error, .registroMovil .Error {
	border-color: #ff5f19 !important;
}

.registro .Error::placeholder, .registroMovil .Error::placeholder {
	color: #c3c3c3 !important;
	font-weight: bold;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

/*--------------------
	Media Queries
--------------------*/

@media (max-width: 568px) {
    body {
        padding-top: 0em;
    }
    .notifyBox {
        width: 68%;
    }
    .registro {
	    margin-top: 0px;
		right: -465px;
		width: 400px;
	}
	
    input[type=text],input[type=password]{
		/* The text fields */
		
		color:#FFFFFF;
	}
	
	.whatsapp-link {
		right: 60px;
	}
}

@media (max-width: 320px) {
    .notifyBox {
        left: 52%;
    }
    
    .whatsapp-link {
		right: 60px;
	}
}

@media (min-width: 992px) {
	.col-md-3 {
		width: 25%;
	}
	.col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
		float: left;
	}

	.whatsapp-link {
		right: 60px;
	}
}

@media (min-width: 768px) {
	
	.col-sm-6 {
		width: 50%;
	}
	
	.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
		float: left;
	}
	
	.whatsapp-link {
		right: 60px;
	}
}

.Registrar {
	/* CSS3 Gradients */

	background-image: linear-gradient(bottom, rgb(238,228,57) 50%, rgb(213,201,18) 100%);
	background-image: -o-linear-gradient(bottom, rgb(238,228,57) 50%, rgb(213,201,18) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(238,228,57) 50%, rgb(213,201,18) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(238,228,57) 50%, rgb(213,201,18) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(238,228,57) 50%, rgb(213,201,18) 100%);

	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.5, rgb(238,228,57)),
		color-stop(1, rgb(213,201,18))
	);
	border-radius: 5px;
	color: #FFFFFF;
	margin: auto;
	margin-top: 305px;
	padding: 10px;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	width: 217px;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Simula 'background-size: cover;' */
    z-index: -1; /* Asegura que el video esté detrás del contenido */
}

.whatsapp-link {
    display: inline-block;
    text-decoration: none;
    position: fixed;
	bottom: 20px;
	right: 20px;
	z-index:100;
}

.whatsapp-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}