@charset "utf-8";
/* CSS Document */

@font-face{
	font-family:angelic;
	src:url(../fonts/angelic.otf);
}
@font-face{
	font-family:Sansation_Regular;
	src:url(../fonts/Sansation_Regular.ttf);
}
@font-face{
	font-family:OpenSans-Regular;
	src:url(../fonts/OpenSans-Regular.ttf);
}

body {
	font-family: OpenSans-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

/*SOMBRAS EN LOS BORDES DE LOS TR*/
.trShadowRight {
    background-color: #FFFFFF; /* Color de fondo */
    padding: 20px;
    box-shadow: inset -1px 0px 10px rgba(0, 0, 0, 0.5); /* Sombra hacia la izquierda interna */
}

.trShadowLeft {
    background-color: #FFFFFF;
    padding: 20px;
    box-shadow: inset 6px 0 6px -4px rgba(0, 0, 0, 0.4); /* sombra interna solo a la izquierda */
}
/*SOMBRAS EN LOS BORDES DE LOS TR*/

.tableBorderUpYellow{
	border-top: 8px solid #FFC107;
}
.tableBorderDownYellow{
	border-bottom: 8px solid #FFC107;
}

table.td-top-gradient {
  border-top: 8px solid; /* grosor del borde */
  border-image: linear-gradient(to right, #AE2923 0%, #FFCC33 50%, #AE2923 100%) 1;
}
table.td-bottom-gradient {
  border-bottom: 8px solid; /* grosor del borde */
  /*border-image: linear-gradient(to right, #AE2923 10%, #FFCC33 50%, #AE2923 100%) 1;*/
  border-image: linear-gradient(to right, #AE2923 0%, #FFCC33 50%, #AE2923 100%) 1;
}

tr{
	font-family: OpenSans-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
}

td {
	font-family: OpenSans-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
}

form {
	font-family: OpenSans-Regular;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	margin: 0px;
	padding: 10px;
	height: auto;
	width: 100%;
	border: thin none #000;
	box-sizing:border-box;
	display:block;
}

label{
	font-family: Sansation_Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	box-sizing: border-box;
	display: block;
}

label.requerido::after {
  content: " *";
  color: red;
  font-weight: bold;
}

input, textarea, select {
	font-family: OpenSans-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight:bold;
	font-variant: normal;
	text-transform: none;
	color: #333;
	text-decoration: none;
	background-color: #D6D8D9;
	padding: 8px;
	height: auto;
	width: 95%;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	border: thin solid #999;
	box-sizing: border-box;
	display: block;
	border-radius: 5px;
}

input:focus, textarea:focus, select:focus {
	outline: none;
	border-color: #FF8114;
	box-shadow: 0px 0px 5px 5px #FFF3CD;
	animation: parpadeo 0.5s infinite alternate; /* 👈 aquí está la magia */
	background-color: #FFFFFF;
}

#txtBuscarTienda {
    width: 98%;
	border-radius: 5px; /* redondea las esquinas */
    border: 1px solid #000000; /* borde gris suave */
    padding: 8px; /* espacio interno */
    outline: none; /* quita el borde azul al enfocar */
    transition: all 0.3s ease; /* efecto suave */
	box-sizing:border-box;
	display:block;
}

#txtBuscarTienda:focus {
    border-color: #000000; /* color al enfocar (usa tu color corporativo si quieres) */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8); /* brillo negro */
}

.button1{
	font-family: OpenSans-Regular;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #343A40;
	text-decoration: none;
	background-color: #FFC107;
	text-align: center;
	height: auto;
	width: auto;
	padding: 8px;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	border: thin solid #FFC107;
	cursor: pointer;
	box-sizing: border-box;
	display: inline-block;
	border-radius: 5px;
}

.button2{
	font-family: OpenSans-Regular;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
	background-color: #6C757D;
	text-align: center;
	height: auto;
	width: auto;
	padding: 8px;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	border: thin solid #6C757D;
	cursor: pointer;
	box-sizing: border-box;
	display: inline-block;
	border-radius: 5px;
}

.button3{
	font-family: OpenSans-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
	background-color: #B82D36;
	text-align: center;
	height: auto;
	width: auto;
	padding: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	border: thin solid #B82D36;
	cursor: pointer;
	box-sizing: border-box;
	display: inline-block;
	border-radius: 5px;
}

hr {
  border: none;
  height: 4px; /* grosor de la línea */
  background: linear-gradient(to right, #FFCC33 50%, #AE2923 50%);
  border-radius: 5px; /* bordes suaves, opcional */
  margin: 20px 0; /* espacio superior e inferior */
}

h1{
	font-family: OpenSans-Regular;
	color: #FFCC33;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 33px;
	line-height: normal;
}

h2{
	font-family: OpenSans-Regular;
	color: #000000;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	font-size: 28px;
	line-height: normal;
	padding: 0;
	margin-right: 0px;
	margin-top: 5px;
	margin-left: 10px;
	margin-bottom: 5px;
}

h3{
	font-family: OpenSans-Regular;
	color: #FFFFFF;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: normal;
	padding: 0;
	margin-right: 0px;
	margin-top: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
}

.spanWhite{
	color: #FFFFFF;
	font-family: OpenSans-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: normal;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0;
	box-sizing:border-box;
	display:inline;;
}

.spanBlack{
	color: #000000;
	font-family: OpenSans-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: normal;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0;
	box-sizing:border-box;
	display:inline;;
}

.span1{
	color: #FFFFFF;
	font-family: OpenSans-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: normal;
}

.span2{
	color: #000000;
	font-family: OpenSans-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: normal;
}

ul {
  font-family: OpenSans-Regular;
  font-size: 15px;
  list-style: none; /* quitamos el disc por defecto */
  padding-left: 20px; /* dejamos espacio para el icono */
}

li {
  font-family: OpenSans-Regular;
  font-size: 15px;
  position: relative;
  margin-bottom: 8px; /* separa un poco las líneas */
}

li::before {
  content: "";
  position: absolute;
  left: -20px; /* posición a la izquierda del texto */
  top: 4px;    /* ajusta verticalmente según el tamaño */
  width: 20px;
  height: 20px;
  background-image: url("../images/play_15px.png");
  background-size: contain;
  background-repeat: no-repeat;
}

#messageGreen{
	font-family: OpenSans-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #006600;
	text-decoration: none;
	background-color: #D4EDDA;
	padding: 10px;
	height: auto;
	width: 100%;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	border: thin none #D4EDDA;
	box-sizing:border-box;
	border-radius:5px;
}

#messageGreen #buttonGreen{
	font-family: OpenSans-Regular;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
	background-color: #28A745;
	text-align: center;
	vertical-align: middle;
	padding: 10px;
	height: auto;
	width: auto;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	border: thin solid #28A745;
	cursor: pointer;
	box-sizing: border-box;
	display: block;
	border-radius: 5px;
}

#messageRed{
	font-family: OpenSans-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #900;
	text-decoration: none;
	background-color: #F8D7DA;
	padding: 10px;
	height: auto;
	width: 100%;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	border: thin none #F8D7DA;
	box-sizing:border-box;
	border-radius:5px;
}

#messageRed #buttonRed{
	font-family: OpenSans-Regular;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
	background-color: #DC3545;
	text-align: center;
	vertical-align: middle;
	padding: 10px;
	height: auto;
	width: auto;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	border: thin solid #DC3545;
	cursor: pointer;
	box-sizing: border-box;
	display: block;
	border-radius: 5px;
}

#messageYellow{
	font-family: OpenSans-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #856404;
	text-decoration: none;
	background-color: #FFF3CD;
	padding: 10px;
	height: auto;
	width: 100%;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 0px;
	border: thin none #FFF3CD;
	box-sizing:border-box;
	border-radius:5px;
}

#messageYellow #buttonYellow{
	font-family: OpenSans-Regular;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #333;
	text-decoration: none;
	background-color: #FFC107;
	text-align: center;
	vertical-align: middle;
	padding: 10px;
	height: auto;
	width: auto;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	border: thin solid #FFC107;
	cursor: pointer;
	box-sizing: border-box;
	display: block;
	border-radius: 5px;
}

hr {
  height: 1px; /* Define el grosor del <hr> */
  width: 90%; /* Define el ancho */
  border: none; /* Elimina cualquier estilo de borde predeterminado */
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  margin: 20px auto; /* Centra el <hr> */
}

a:link {
	font-family: OpenSans-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	-webkit-transition: all 300ms ease-in 0ms;
	-moz-transition: all 300ms ease-in 0ms;
	-ms-transition: all 300ms ease-in 0ms;
	-o-transition: all 300ms ease-in 0ms;
	transition: all 300ms ease-in 0ms;
}
a:visited {
	font-family: OpenSans-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	-webkit-transition: all 300ms ease-in 0ms;
	-moz-transition: all 300ms ease-in 0ms;
	-ms-transition: all 300ms ease-in 0ms;
	-o-transition: all 300ms ease-in 0ms;
	transition: all 300ms ease-in 0ms;
}
a:hover {
	font-family: OpenSans-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #AE2923;
	text-decoration: none;
	-webkit-transition: all 300ms ease-in 0ms;
	-moz-transition: all 300ms ease-in 0ms;
	-ms-transition: all 300ms ease-in 0ms;
	-o-transition: all 300ms ease-in 0ms;
	transition: all 300ms ease-in 0ms;
}
a:active {
	font-family: OpenSans-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	-webkit-transition: all 300ms ease-in 0ms;
	-moz-transition: all 300ms ease-in 0ms;
	-ms-transition: all 300ms ease-in 0ms;
	-o-transition: all 300ms ease-in 0ms;
	transition: all 300ms ease-in 0ms;
}

.banner-td {
  height: 600px;
  background-color: #D8D8D8;
  /*background-image: url("../images/bannerIndex2.jpg");*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /* <- hace que se ajuste al contenedor */
  padding: 0;
  margin: 0;
}

/* 🔽 Ajuste para móviles pequeños */
@media (max-width: 768px) {
  .banner-td {
    height: 300px; /* la mitad de alto para tablets y móviles */
  }
}

@media (max-width: 480px) {
  .banner-td {
    height: 200px; /* aún más compacto en pantallas pequeñas */
  }
}

.tituloDeModulos {
	font-family:OpenSans-Regular;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
	background: linear-gradient(to top, #000, #343A40);
	text-align: left;
	margin: 0px;
	padding: 12px;
	height: auto;
	width: 100%;
	border: thin solid #CCC;
	box-sizing: border-box;
	border-radius: 5px;
	position: relative; /* Relative positioning for floating elements */
}

/*PARA ENCERAR LOS VALORES DE LOS COMBOBOX SEAN NUMEROS O LETRAS EN FONDOS DE COLORES*/
.spanBgFontsGreen{
	font-family: OpenSans-Regular;
	font-size: 13px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
	background-color: #28A745;
	text-align: center;
	margin: 0px;
	padding: 5px;
	height: auto;
	width: auto;
	border: thin solid #28A745;
	box-sizing: border-box;
	display: inline-block;
	border-radius: 10px;
}

.spanBgFontsRed{
	font-family: OpenSans-Regular;
	font-size: 13px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
	background-color: #DC3545;
	text-align: center;
	margin: 0px;
	padding: 5px;
	height: auto;
	width: auto;
	border: thin solid #DC3545;
	box-sizing: border-box;
	display: inline-block;
	border-radius: 10px;
}

.spanBgFontsYellow{
	font-family: OpenSans-Regular;
	font-size: 13px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #343A40;
	text-decoration: none;
	background-color: #FFC107;
	text-align: center;
	margin: 0px;
	padding: 5px;
	height: auto;
	width: auto;
	border: thin solid #FFC107;
	box-sizing: border-box;
	display: inline-block;
	border-radius: 10px;
}
/*PARA ENCERAR LOS VALORES DE LOS COMBOBOX SEAN NUMEROS O LETRAS EN FONDOS DE COLORES*/

/*PARA FIJAR LA TABLA AL REALIZAR SCROLL CON SOMBRA*/
.fixed-table-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1; /* Para asegurar que esté por encima de otros elementos */
	background-color: #120E3A; /* Para que el fondo sea del mismo color */
	transition: box-shadow 0.3s ease-in-out; /* Transición suave para la sombra */
}
		
.fixed-table-container.shadow {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Sombra cuando se hace scroll */
}
/*PARA FIJAR LA TABLA AL REALIZAR SCROLL CON SOMBRA*/

/*MARQUESINA*/
.marquee {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	box-sizing: border-box;
	color: #FFFFFF;
	font-family: OpenSans-Regular;
	font-size: 18px;
	animation: marquee 20s linear infinite;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	line-height: normal;
}

@keyframes marquee {
  0% { 
    transform: translateX(100%); 
  }
  100% { 
    transform: translateX(-100%); 
  }
}

.zoom {
  transition: transform 0.5s ease;
}

.zoom:hover {
  transform: scale(1.2);
}
/*MARQUESINA*/


