@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}


/********************/
/* ESTILOS DEL BODY */
/********************/


.cl_body
{
	display: flex;
	flex-direction: column;
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: top;
	overscroll-behavior-y: none;
    touch-action: pan-y;
}


/********************/
/* ESTILOS DEL MAIN */
/********************/


.cl_main 
{
	display: block;
	visibility: hidden;
	position: absolute;
	width: 100%;
	opacity: 0;
	transition-property: opacity;
	transition-duration: 1000ms;
	transition-timing-function: ease-in-out;
}


/**********************************************/
/* ESTILOS DE LOS TEXTOS DEL TIPO DE PRODUCTO */
/**********************************************/


.cl_cont_textos_tipo_pro
{
	display: flex;
	flex-direction: row;
	position: absolute;
	width: 100%;
	height: fit-content;
	margin-top: 105px;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(48, 89, 123, 1);	
}

.cl_cont_caja_textos_tipo_pro
{
 	display: flex;
	width: 32%;
	justify-content: space-around;
}

@media (hover: none) and (pointer: coarse)
{
	.cl_caja_textos_tipo_pro
	{
		display: flex;
		flex-direction: column;
		width: fit-content;
		text-decoration: none;	
	}
}

@media (hover: hover) and (pointer: fine)
{
	.cl_caja_textos_tipo_pro
	{
		display: flex;
		flex-direction: column;
		width: fit-content;
		text-decoration: none;	
	}
	.cl_caja_textos_tipo_pro:hover > div > span
	{
		color: rgb(255, 255, 255, 0.5);
	}
}

.cl_cont_texto_tipo_pro
{
	display: block;
	align-self: center;
	white-space: nowrap;
}

#id_cont_texto_tipo_pro_cen_tel_not_com
{
	display: block;
}

#id_cont_texto_tipo_pro_cen_tel_uno_tab_cel
{
	display: none;
}

#id_cont_texto_tipo_pro_cen_tel_dos_tab_cel
{
	display: none;
}

#id_cont_texto_tipo_pro_por_dig_not_com
{
	display: block;
}

#id_cont_texto_tipo_pro_por_dig_uno_tab_cel
{
	display: none;
}

#id_cont_texto_tipo_pro_por_dig_dos_tab_cel
{
	display: none;
}

#id_cont_texto_tipo_pro_lla_de_enf_not_com
{
	display: block;
}

#id_cont_texto_tipo_pro_lla_de_enf_uno_tab_cel
{
	display: none;
}

#id_cont_texto_tipo_pro_lla_de_enf_dos_tab_cel
{
	display: none;
}

.cl_texto_tipo_pro
{
	vertical-align: middle;
	font-family: "Helvetica";
	font-size: 22px;
 	font-weight: 500;
	color: rgb(255, 255, 255, 1);
	text-decoration: none;
 	letter-spacing: 1px;
	white-space: nowrap;
	user-select: none;
	transition-property: color;
	transition-duration: 250ms;
	transition-timing-function: ease-in-out;
}


/****************************************/
/* ESTILOS DE LAS IMÁGENES DEL PRODUCTO */
/****************************************/


.cl_cont_imagenes_pro_not_com
{
	display: block;
	position: absolute;
	width: 100%;
	height: auto;
	padding-top: 25px;
	padding-bottom: 19px;
}

.cl_cont_imagenes_pro_tab_cel
{
	display: none;
	position: absolute;
	width: 100%;
	height: auto;
	padding-top: 25px;
	padding-bottom: 19px;
}

.cl_cont_texto_imagen_pro
{
	display: block;
	width: 100%;
	padding-bottom: 7px;
}

.cl_texto_imagen_pro
{
	display: block;
	text-align: center;
	font-family: "Helvetica";
	font-size: 29px;
 	font-weight: 600;
	color: rgb(89, 131, 167, 1);
	text-shadow: -1px 1px 0 rgb(53, 56, 73, 1), 1px 1px 0 rgb(53, 56, 73, 1), 1px -1px 0 rgb(53, 56, 73, 1), -1px -1px 0 rgb(53, 56, 73, 1);
	text-decoration: none;
 	text-transform: uppercase;
 	letter-spacing: 1px;
	white-space: nowrap;
	user-select: none;
}

.cl_cont_gru_imagenes_pro
{
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.cl_caja_imagen_pro
{
	display: flex;
	flex-direction: column;
	width: 33.33%;
	align-items: center;
}

.cl_cont_imagen_pro
{
	display: block;
	position: relative;
	width: 255px;
	height: 255px;
}

.cl_imagen_pro
{
	width: 100%;
	height: auto;
	pointer-events: none;
	user-select: none;
}

.cl_texto_capa_imagen_pro
{
	font-family: "Helvetica";
	font-size: 26px;
 	font-weight: 500;
	color: rgb(250, 250, 250, 1);
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	letter-spacing: 1px;
	text-wrap: nowrap;
	user-select: none;
/* 	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%); */
	transform: translate(-50%, -50%);
}

@media (hover: none) and (pointer: coarse)
{
	.cl_capa_imagen_pro
	{
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		height: 100%;
		width: 100%;
		opacity: 0.6;
		background-color: rgb(68, 109, 153);
	}
}

@media (hover: hover) and (pointer: fine)
{
	.cl_capa_imagen_pro
	{
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		height: 100%;
		width: 100%;
		opacity: 0;
		transition-property: opacity;
		transition-duration: 500ms;
		transition-timing-function: ease-in-out;
		background-color: rgb(68, 109, 153);
	}
	.cl_cont_imagen_pro:hover .cl_capa_imagen_pro
	{
		opacity: 0.6;
	}
}


/*********************/
/* PUNTOS DE RUPTURA */
/*********************/


/* Dispositivos grandes como notebooks o computadoras (más de 960 px) */
@media only screen and (min-width: 961px)
{

}

/* Dispositivos medianos como tablets (960 px o menos) */
@media only screen and (max-width: 960px)
{
	.cl_cont_textos_tipo_pro
	{
		margin-top: 90px;
		padding-top: 16px;
		padding-bottom: 16px;
	}
	#id_cont_texto_tipo_pro_cen_tel_not_com
	{
		display: none;
	}
	#id_cont_texto_tipo_pro_cen_tel_uno_tab_cel
	{
		display: block;
	}
	#id_cont_texto_tipo_pro_cen_tel_dos_tab_cel
	{
		display: block;
	}
	#id_cont_texto_tipo_pro_por_dig_not_com
	{
		display: none;
	}
	#id_cont_texto_tipo_pro_por_dig_uno_tab_cel
	{
		display: block;
	}
	#id_cont_texto_tipo_pro_por_dig_dos_tab_cel
	{
		display: block;
	}
	#id_cont_texto_tipo_pro_lla_de_enf_not_com
	{
		display: none;
	}
	#id_cont_texto_tipo_pro_lla_de_enf_uno_tab_cel
	{
		display: block;
	}
	#id_cont_texto_tipo_pro_lla_de_enf_dos_tab_cel
	{
		display: block;
	}
	.cl_texto_tipo_pro
	{
		font-size: 19px;
	}
	.cl_cont_imagenes_pro_not_com
	{
		display: none;
	}
	.cl_cont_imagenes_pro_tab_cel
	{
		display: block;
	}
	.cl_texto_imagen_pro
	{
		font-size: 25px;
	}
	.cl_cont_gru_imagenes_pro
	{
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.cl_caja_imagen_pro
	{
		width: 50%;
	}
	.cl_cont_imagen_pro
	{
		width: 224px;
		height: 224px;		
	}
	.cl_texto_capa_imagen_pro
	{
		font-size: 23px;
	}
}

/* Dispositivos chicos como teléfonos (768 px o menos) */
@media only screen and (max-width: 768px)
{
	.cl_cont_textos_tipo_pro
	{
		margin-top: 77px;
		padding-top: 12px;
		padding-bottom: 14px;
	}
	.cl_texto_tipo_pro
	{
		font-size: 15px;
	}
	.cl_cont_imagenes_pro_tab_cel
	{
		padding-top: 26px;
		padding-bottom: 0;
	}
	.cl_cont_texto_imagen_pro
	{
		padding-bottom: 28px;
	}
	.cl_texto_imagen_pro
	{
		font-size: 20px;
		font-size-adjust: 0.49;
	}
	.cl_cont_gru_imagenes_pro
	{
		flex-direction: column;
		padding-top: 0;
		padding-bottom: 0;		
	}
	.cl_caja_imagen_pro
	{
		width: 100%;
		padding-bottom: 32px;
	}
	.cl_cont_imagen_pro
	{
		width: 210px;
		height: 210px;		
	}
	.cl_texto_capa_imagen_pro
	{
		font-size: 21px;
	}
}