/*
 # ########*###########################
 Autor: José Luis Rodriguez
 Mail: jrodriguez@bincodex.com
 Web: https://bincodex.com
 Fecha: 2026-06-15 14:30:30
 Archivo: dsp.css
 Codificación: UTF-8
 Editado en: Kate 25.04.3
 ####################################
 */


body {
	font-size: 14px; /* Un poco más grande para legibilidad moderna */
/* 	color: #fff; */
	background: #272727;
	border: 0px solid blue;
}

#main_sys {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 0px solid red;
	width: 100%;
	height: 100%;
}


#dsp-reg{
	border: 1px solid silver;
	width: 300px;
	height: 200px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}


#dsp-call {
	border: 1px solid silver;
	width: 99%;
	height: calc(100vh - 25px);
	background: #4b4b4b;
	position: relative;
}

video {
	border-radius: 8px;
	margin: 10px;
	background: #262626;
	border: 1px solid silver;
}


#videoLocal {
	position: absolute;
	bottom: 50px;
	right: 50px;
	z-index: 1;
	max-width: 250px !important;
	max-height: 150px !important;
}


#videoRemoto {
	position: absolute;
	top: 50px;
	left: 0px;
	width: 97%;
	height: calc( 100vh - 200px );
}


#exe_call{
	position: absolute;
	bottom: 12px;
	left: 20px;

}

#cls_call, #close_modal {
	position: absolute;
	bottom: 20px;
	left: 20px;

}


#debug {
	width: 350px;
	height: 20px;
	padding: 10px 10px 2px 9px;
	background: rgba(0,0,0,0.5);
	color: #00ff00;
	overflow-y: scroll;
	font-size: 12px;
	z-index: 2;
	position: absolute;
	top: 10px;
	right: 0px;
	border-radius: 7px 0px 0px 0px;
	line-height: 1.5;
}


#table_data {
	width: 350px;
	height: 60px;
	background: rgba(0,0,0,0.5);
	color: #ffffff;
	font-size: 12px;
	z-index: 2;
	position: fixed;
	top: 82px;
	right: 1px;
	border: 0px;
/* 	display: none; */
}

#debug_stream {
	width: 350px;
	width: 350px;
	height: 20px;
	padding: 10px 10px 2px 9px;
	background: rgba(0,0,0,0.5);
	color: #00ff00;
	overflow-y: scroll;
	font-size: 12px;
	z-index: 2;
	position: absolute;
	top: 30px;
	right: 0px;
	border-radius: 0px 0px 0px 7px;
	line-height: 1.5;
}

#debug_cxp {
	width: 50px;
	height: 20px;
	padding: 10px 10px 2px 9px;
	background: rgba(0,0,0,0.5);
	color: #00ff00;
	overflow-y: scroll;
	font-size: 12px;
	z-index: 2;
	position: absolute;
	bottom: 32px;
	right: 0px;
	border-radius: 7px 0px 0px 0px;
	line-height: 1.5;
}

#debug_cxm {
	width: 50px;
	height: 20px;
	padding: 10px 10px 2px 9px;
	background: rgba(0,0,0,0.5);
	color: #00ff00;
	overflow-y: scroll;
	font-size: 12px;
	z-index: 2;
	position: absolute;
	bottom: 12px;
	right: 0px;
	border-radius: 0px 0px 0px 7px;
	line-height: 1.5;
}


#video_wait{
	color: #fff;
	position: absolute;
	top: 100px;
	left: 100px;
	z-index: 3;
}


#publicidad {
	width: 50%;
	height: 87px;
/* 	padding: 10px 10px 2px 9px; */
	background: rgba(0,0,0,0.5);
	color: #00ff00;
	overflow-y: scroll;
	font-size: 12px;
	z-index: 2;
	position: absolute;
	bottom: 12px;
	right: 20%;
	border-radius: 7px 7px 7px 7px;
	line-height: 1.5;
}



 .banner-container {
    /*width: 728px;
    height: 90px;
    margin: 50px auto;
    overflow: hidden;
    position: relative;*/
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.banner-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.banner-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Estilos para cada imagen */
.slide-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.slide-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.slide-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.slide-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

/* Indicadores */
.indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    display: none;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Botones de navegación */
.btn-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: all 0.3s;
    display: none;
}

.btn-nav:hover {
    background: rgba(255,255,255,0.6);
}

.btn-prev { left: 10px; }
.btn-next { right: 10px; }


















@media (max-width: 1580px) {

	#publicidad {
		right: 30%;
	}

}


@media (max-width: 1310px) {

	#publicidad {
		right: 27%;
	}

}

@media (max-width: 1170px) {

	#publicidad {
		right: 30%;
		width: 45%;
	}

}

@media (max-width: 1045px) {

	#publicidad {
		right: 32%;
		width: 40%;
	}

}


@media (max-width: 970px) {

	#publicidad {
		right: 36%;
		width: 35%;
	}

}



@media (max-width: 885px) {

	#publicidad {
		right: 38%;
		width: 30%;
	}

}


@media (max-width: 830px) {

	#publicidad {
		right: 41%;
		width: 25%;
	}

}


@media (max-width: 777px) {

	#publicidad {
		right: 44%;
		width: 20%;
	}

}


@media (max-width: 730px) {

	#publicidad {
		right: 70px;
		width: 100px;
		height: 40px;
	}

}


@media (max-width: 540px) {

	.logo-app {
		width: 150px !important;
	}

}


@media (max-width: 510px) {

	.logo-app {
		width: 120px !important;
	}

}


@media (max-width: 480px) {

	.logo-app {
		width: 100px !important;
		height: 50px !important;
	}

}

@media (max-width: 460px) {

	.logo-app {
		width: 80px !important;
		height: 47px !important;
	}

}
