@charset "utf-8";
/* CSS Document */
body{
	margin: 0;
	padding: 0;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	user-select: none; /* Deshabilita la selección de texto */
	-webkit-user-select: none; /* Para navegadores basados en WebKit */
	-moz-user-select: none;    /* Para Firefox */
	-ms-user-select: none;     /* Para Internet Explorer/Edge */
}
#all{
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index: 1;
}

#login{
	position: absolute;
	top: 0;
	left: 0;
}

#urlapp{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	border: none;
	background-color: #FFF;
}
#opaco{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	height: 100%;
	border: none;
	background-color: #000;
	animation: changeOpaco 4s infinite;
}
@keyframes changeOpaco {
	0% { background-color: #000; } /* Color inicial */
	50% { background-color: #333; } /* Color de transición a #333 */
	100% { background-color: #000; } /* Color final (vuelve al original) */
}

.loading-container {
	display: flex;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	align-items: center;
	height: 100vh;
}

.loading-spinner {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.lista{
	position: absolute;
	top: 0;
	left: 0;
}

.message{
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	overflow: auto;
	position: absolute;
	background-color: rgba(0,0,0,0.8);
	color: #FFF;
	z-index: 500;
}
.modal-left{
	width: 25%;
}
.modal-left.modal .modal-dialog {
    transform: translate(-25%);
}
.modal-left.modal.show .modal-dialog {
    transform: translate(0);
}

.modal-left .modal-dialog {
    margin: 0 auto;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    height: 100%;
    max-width: 380px;
}
.modal-left .modal-content {
    min-height: 100%;
}
.modal-left .modal-footer {
    justify-content: center;
}
.modal.show{
	z-index: 1050 !important;
}

/* ----- MODAL STYLE ----- */

.modal-content {
	border-radius: 0;
	border: none;
}

.modal-header {
	border-bottom-color: #EEEEEE;
	background-color: #FAFAFA;
}

.modal-content {
	border-radius: 0;
}

.menu-list {
	list-style: none;
	padding: 0;
}

.menu-list li {
	margin-bottom: 10px;
}

.menu-list a {
	color: #333;
	text-decoration: none;
	font-size: 24px;
}

.menu-list a:hover {
	color: #007BFF;
}
.menu-list a:focus {
	outline: none;
	background-color: #007BFF;
	color: #fff;
}