/*
 Theme Name:   Divi Child
 Theme URI:    https://intercertus-turismo.com
 Description:  Tema hijo de Divi para Intercertus
 Author:       Intercertus
 Template:     Divi
 Version:      1.0.0
*/

/* ===== Carga del sitio (loadeer) ===== */
.loadeer-container {
	background-color: #fff;
	display: flex;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.5s ease-out;
}

.loadeer {
	position: relative;
	width: 120px;
	height: 120px;
	padding: 10px;
	border-radius: 50%;
	overflow: hidden;
}

.loadeer img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 50%;
}

.bordeer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 5px solid transparent;
	border-top-color: #100625;
	border-bottom-color: #100625;
	animation: spin 2s linear infinite;
	box-sizing: border-box;
}

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

.hide-loadeer {
	z-index: -9999;
	opacity: 0;
}
