@charset "utf-8";

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

@font-face{
	font-family:RobotoCondensed-Regular;
	src:url(../fonts/RobotoCondensed-Regular.ttf);
}
/*==============================================================================================================================*/
body {
	font-family: OpenSans-Regular;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
}
/*PARA FIJAR LA TABLA AL REALIZAR SCROLL CON SOMBRA*/

.tableBorderUpColor{
	border-top: medium solid #CC0003;
}

.tableBorderDownColor{
	border-bottom: medium solid #DC3545;
}

.TableColor:nth-child(odd){
	background-color: #F2F2F2;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	box-sizing: border-box;
	word-break: break-all;
}
.TableColor:nth-child(even) {
	background-color: #FFFFFF;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	box-sizing: border-box;
	word-break: break-all;
}
.TableColor:hover{
	background-color: #FFF7DD;
	box-sizing: border-box;
	word-break: break-all;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}

/*PARA FIJAR LA TABLA AL REALIZAR SCROLL CON SOMBRA*/
.fixed-table-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000; /* 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*/

tr{
	font-family: OpenSans-Regular;
	font-size: 18px;
	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: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
}

th {
	font-family: RobotoCondensed-Regular;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
}

form {
	font-family: RobotoCondensed-Regular;
	font-size: 18px;
	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:inline-block;
}

label{
	font-family: RobotoCondensed-Regular;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	padding: 0px;
	height: auto;
	width: auto;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	display: inline-block;
	box-sizing: border-box;
}

input, textarea, select {
	font-family: RobotoCondensed-Regular;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	background-color: #FFF;
	padding: 8px;
	height: auto;
	width: 98%;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	border: thin solid #666;
	display: inline-block;
	box-sizing: border-box;
	border-radius: 5px;
}

input:focus, textarea:focus, select:focus{
	outline: none;
	border-color: #1D73AB;
	box-shadow: 0 0 10px #1D73AB;
	background-color: #FFFFFF;
	-webkit-transition: all 400ms ease-in 0ms;
	-moz-transition: all 400ms ease-in 0ms;
	-ms-transition: all 400ms ease-in 0ms;
	-o-transition: all 400ms ease-in 0ms;
	transition: all 400ms ease-in 0ms;
	
}

.button1{
	font-family: RobotoCondensed-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-color: #0F0B38;
	text-align: center;
	padding: 10px;
	height: auto;
	width: 100%;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	border: thin solid #081828;
	cursor: pointer;
	box-sizing: border-box;
	display: block;
}

.button2{
	font-family: RobotoCondensed-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-color: #DC3545;
	text-align: center;
	padding: 10px;
	height: auto;
	width: 100%;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	border: thin solid #DC3545;
	cursor: pointer;
	box-sizing: border-box;
	display: block;
}

.button3{
	font-family: RobotoCondensed-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-color: #6C757D;
	text-align: center;
	padding: 10px;
	height: auto;
	width: auto;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	border: thin solid #6C757D;
	cursor: pointer;
	box-sizing: border-box;
	display: block;
}

.tituloDeModulos {
	font-family: RobotoCondensed-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 */
}

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

.span2{
	color: #C90003;
	font-family: RobotoCondensed-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: normal;
}

.span3{
	color: #C90003;
	font-family: RobotoCondensed-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: normal;
	cursor:pointer;
}

.span4{
	color: #000000;
	font-family: RobotoCondensed-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: normal;
	cursor:pointer;
}

.spanCategorias {
    font-family: RobotoCondensed-Regular;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #333;
    text-decoration: none;
    padding: 5px;
    margin: 5px 0; /* Margen uniforme superior e inferior */
    cursor: pointer;
    -webkit-transition: all 320ms ease-in 0ms;
    -moz-transition: all 320ms ease-in 0ms;
    -ms-transition: all 320ms ease-in 0ms;
    -o-transition: all 320ms ease-in 0ms;
    transition: all 320ms ease-in 0ms;
    box-sizing: border-box;
    display: block;
    height: auto;
    width: 50%; /* Ancho por defecto */
    background-color: #FFF;
    border: thin none #000;
}

.spanCategorias:hover {
    background-color: #F8F9FA;
    border: thin solid #CCC;
    cursor: pointer;
    -webkit-transition: all 320ms ease-in 0ms;
    -moz-transition: all 320ms ease-in 0ms;
    -ms-transition: all 320ms ease-in 0ms;
    -o-transition: all 320ms ease-in 0ms;
    transition: all 320ms ease-in 0ms;
    box-sizing: border-box;
    display: block;
}

/* Media query para pantallas de 768px o menos */
@media screen and (max-width: 768px) {
    .spanCategorias {
        width: 100%; /* Ancho completo */
        margin: 5px auto; /* Centra horizontalmente */
        text-align: center; /* Centra el texto */
    }
}

h1{
	color: #0B0B0B;
	font-family: RobotoCondensed-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 30px;
	line-height: normal;
	margin-top: 10px;
	margin-bottom: 0px;
}

h2{
	color: #2D2D2D;
	font-family: RobotoCondensed-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 25px;
	line-height: normal;
	margin-top: 20px;
	margin-bottom: 20px;
}

h3{
	color: #2D2D2D;
	font-family: RobotoCondensed-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: normal;
	margin-top: 10px;
	margin-bottom: 0px;
}

h4{
	color: #FF0000;
	font-family: RobotoCondensed-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: normal;
	margin: 0;
	display: inline-block;
	padding: 0;
	box-sizing: border-box;
}

h5{
	color: #000000;
	font-family: RobotoCondensed-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: normal;
	margin: 0;
	display: inline-block;
	padding: 0;
	box-sizing: border-box;
}

h6{
	color: #FFFFFF;
	font-family: RobotoCondensed-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 22px;
	line-height: normal;
	margin: 0;
	display: inline-block;
	padding: 0;
	box-sizing: border-box;
}

.carrito-contenedor {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Espacio entre imagen y texto */
}

.carrito-contenedor img {
  width: 40px;
  height: auto;
}

.carrito-texto h4,
.carrito-texto h5 {
  margin: 0;
  padding: 0;
  text-align: left;
  display: block;
  line-height: 1.2;
}

ul {
	font-family: RobotoCondensed-Regular;
	font-size: 12px;
	list-style-type: disc;
	list-style-position: outside;
}

li {
	font-family: RobotoCondensed-Regular;
	font-size: 12px;
}
a:link {
	font-family: RobotoCondensed-Regular;
	font-size: 18px;
	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-out 0ms;
	-moz-transition: all 300ms ease-out 0ms;
	-ms-transition: all 300ms ease-out 0ms;
	-o-transition: all 300ms ease-out 0ms;
	transition: all 300ms ease-out 0ms;
}
a:visited {
	font-family: RobotoCondensed-Regular;
	font-size: 18px;
	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-out 0ms;
	-moz-transition: all 300ms ease-out 0ms;
	-ms-transition: all 300ms ease-out 0ms;
	-o-transition: all 300ms ease-out 0ms;
	transition: all 300ms ease-out 0ms;
}
a:hover {
	font-family: RobotoCondensed-Regular;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #F7931E;
	text-decoration: none;
	cursor: pointer;
	-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: RobotoCondensed-Regular;
	font-size: 18px;
	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-out 0ms;
	-moz-transition: all 300ms ease-out 0ms;
	-ms-transition: all 300ms ease-out 0ms;
	-o-transition: all 300ms ease-out 0ms;
	transition: all 300ms ease-out 0ms;
}

#messageGreen{
	font-family: RobotoCondensed-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: RobotoCondensed-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: RobotoCondensed-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: RobotoCondensed-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: RobotoCondensed-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: RobotoCondensed-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;
}

.imageMenuResponsivo{
	display:none;
}

.whatsapp{
	height: auto;
	width: 5%;
	margin: 0px;
	padding: 0px;
	border: thin none #000;
	position: fixed;
	left: 92%;
	top: 85%;
	right: 0px;
	bottom: 0px;
	cursor: pointer;
	box-sizing:border-box;
	display:block;
	/*box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2); /* Añadir sombra */
}
