@page {
	size: 80mm auto;
	margin: 0mm 0mm 0mm 0mm;
	padding: 0mm;
}

@font-face {
	font-family: 'Cooper Black Regular';
	font-style: normal;
	font-weight: normal;
	src: local('Cooper Black Regular'), url('./fonts/cooper.woff') format('woff');
}
@font-face {
	font-family: 'Roboto Regular';
	font-style: normal;
	font-weight: normal;
	src: local('Roboto Regular'), url('./fonts/Roboto-Regular.woff2') format('woff2');
}

.material-symbols-rounded {
	font-variation-settings: 'FILL' 1, 'wght' 100, 'GRAD' 200, 'opsz' 24;
}
.product-button {
	border: none;
	border-radius: var(--border-radius, 8px);
	overflow-wrap: break-word;
	hyphens: auto;
	background-color: #f5f5dcaa;
	font-size: 1rem;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
	/* Sombra */
}

.product-button:active {
	box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.2);
	/* Sombra */
}

.base-modal {
	width: 50vw;
	aspect-ratio: 3/2;
	background-color: #e0e0e0;
}

/* It defines general structure styles, modifying browser or behavioral components */
:root {
	--border-radius: 8px;
	--phi: 1.618;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}

html {
	scroll-behavior: smooth;
}

h3 {
	margin-block-start: 0;
	margin-block-end: 0;
}

/* Estilizar el contenedor de la barra de desplazamiento */
::-webkit-scrollbar {
	width: 4px;
	/* Ancho de la barra de desplazamiento vertical */
	height: 2px;
	/* Altura de la barra de desplazamiento horizontal */
}

/* Estilizar el track (fondo) de la barra de desplazamiento */
::-webkit-scrollbar-track {
	/* background-color: #999; */
	background-color: tan;
	/* border-radius: 10px; */
}

/* Estilizar el thumb (deslizador) de la barra de desplazamiento */
::-webkit-scrollbar-thumb {
	background-color: #f5f5dc55;
	/* border-radius: 10px; */
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

/* Estilizar el thumb (deslizador) de la barra de desplazamiento en hover */
::-webkit-scrollbar-thumb:hover {
	background-color: #5555;
}

*[data-background-color='crimson'] {
	background-color: crimson;
	color: white;
}
