/*body.loading{
	overflow: hidden;
}*/
body.loading .loader{
	opacity: 1;
	pointer-events: auto;
	animation-name: nada;
}
.vid_bg{
	width: 100%;
    height: 110vh;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    transform: rotatey(175deg);
    left: 0;
    z-index: -1;
    opacity: 0.8;
    mask-image: linear-gradient(0deg, black, transparent);
    pointer-events: none;
}
.loader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: var(--bgwsolid);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 5000;
	opacity: 1;
	transition: background 500ms ease-out;
	pointer-events: none;
	animation: hide_loader 0.6s forwards 0.5s;
}
.symbol_box{
	width: 30%;
    height: 30%;
    animation: loading_effect 3s infinite;
    transition: all 400ms ease-out;
}
.symbol_box img{
	width: 100%;
    height: 100%;
    filter: var(--filtroc);
}
@keyframes hide_loader{
	0%{
		transform: translateX(0);
		opacity: 1;
	}30%{
		transform: translateX(0);
		opacity: 1;
	}100%{
		
		opacity: 0;
	}
}
@keyframes loading_effect{
	0%{
		transform: scale(0.98);
		opacity: 0%;
	}50%{
		opacity: 100%;
		transform: scale(1);
	}100%{
		opacity: 0%;
		transform: scale(0.98);
	}
}
.editar_link{
	display: flex;
	position: fixed;
	bottom: 60px;
	right: 10px;
	background: linear-gradient(to bottom, #d5d5d5, #737373, #d5d5d5);
	color: white;
	height: 40px;
	width: 40px;
	z-index: 1000;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	transition: all 400ms ease-out;
}
.editar_link:hover{
	transform: scale(0.9);
}
.editar_link img{
	width: 26px;
	height: 26px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(91deg) brightness(107%) contrast(95%);
}
.support_box{
	height: 40px;
	width: 40px;
	background: var(--btnbg);
	border-radius: 50%;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 1000;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, .3);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 400ms ease-out;
}
.support_box:hover{
	transform: scale(0.9);
}
.support_box img{
	width: 26px;
	height: 26px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(91deg) brightness(107%) contrast(95%);
}
.footer_box{
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    gap: 20px;
    padding: 80px 20px 40px 20px;
    z-index: 50;
    position: relative;
    max-width: 1100px;
    margin:auto;
    /* clip-path: ellipse(100% 54% at 50% 55%);*/
}
.footer_box .marca_footer,.footer_box .contacto_box,.footer_box .social{
	flex-grow: 1;
	flex-basis: auto;
}
.marca_footer{
	display: flex;
	justify-content: center;
}
.marca_footer img{
	width: auto;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(6%) hue-rotate(91deg) brightness(139%) contrast(137%) drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
    height: 180px;
}
/*caja 2*/
.footer_box div b{
	color: white;
	text-transform: uppercase;
	margin-bottom: 8px;
	display: flex;
	text-align: center;
	font-size: 26px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
.contacto_box div{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.contacto_box b{
	justify-content: center;
}
.contacto_box div a{
	display: flex;
    gap: 8px;
    background: #0b2e4369;
    text-decoration: none;
    padding: 8px;
    color: white;
    text-align: center;
    align-items: center;
    border-radius: 6px;
}
.contacto_box div a img{
	width: 20px;
	height: 20px;
}
/*caja 3*/
.social{
	display: flex;
	flex-direction: column;
}
.social div{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin: auto 0;
}
.social b{
	justify-content: center;
}
.social div a{
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid #c3d4ddcc;
    border-radius: 4px;
    width: 30%;
    color: whitesmoke;
    text-decoration: none;
    background: linear-gradient(to top, #95a5af6b, #64899bad, #95a5af6b);
}
.social div a img{
	width: 30px;
	height: 30px;
}
.login_btn{
	width: 100%;
    padding: 8px;
    background: linear-gradient(0deg, #ffc010, #fff067);
    text-decoration: none;
    color: black;
    text-align: center;
    margin-top: 8px;
    border-radius: 15px;
}