:root
{
	--le_red: #ac1e2c;
}
/* #region Form */
@font-face {
	font-family: "Rajdhani-regular";
	src: url("../webfonts/rajdhani-regular-webfont.woff") format("woff");
}
/* #endregion */

/* #region ContactButton */
.contact-button-container
{
	bottom: 0%;
	right: 0%;
	display: block;
	position: absolute;
	width: 100%;
}

.contact-button-wrapper
{
	display: flex;
	align-items: right;
	justify-content: right;
}

.contact-button
{
	background-color: brown;
	color: white;
	cursor: pointer;
	padding-left: 1rem;
	padding-right: 1.5rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	border: none;
	font-size: max(1.25vw, 18px);
	transition: 0.3s;
	opacity: 70%;
	z-index: 5;
	text-transform: uppercase;
}

.contact-button:hover
{
	background-color: #cb3333;
	opacity: 100%;
}

.machine-form-container
{
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	position: absolute;
	box-sizing: border-box;
	background-color: white;
	z-index: 10;
	overflow-y: auto;
}
/* #endregion */


/* #region CustomPage */
.custom-table-page-container
{
	z-index: 4;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* #endregion */


/* #region Electrode */
.custom-table-page-container .electrode
{
	display: flex;
    flex-direction: column;
	width: 75%;
	height: 100%;
	top: 0;
    left: 0;
	padding: 5rem 5rem;
    position: absolute;
    box-sizing: border-box;
	background-color: #e3e0ec;
	height: 100%;
}

.electrode-data
{
	height: 90%;
	overflow-y: auto;
}

div.electrode .title
{
	font-size: 3vw;
	font-weight: bold;
	color: var(--le_red);
	margin-bottom: 1rem;
	margin-top: 0;
}

div.electrode .table-header
{
	width: 100%;
	background-color: var(--le_red);
	color: white;
}
div.electrode .table-header p
{
	padding: 0.8rem 1rem;
	margin: 0;
}

div.electrode .product-name
{
	color: black;
}

div.electrode .table-row
{
	display: flex;
	flex-direction: row;
	background-color: #FFFFFF;
	width: 100%;
	border-bottom: 1px solid lightgray;
}

div.electrode .table-row :is(a, p)
{
	padding: 1rem;
	margin: 0;
	display: block;
}

div.electrode .description
{
	padding-top: 0 !important;
	font-weight: 500 !important;
	font-size: 0.85em;
	line-height: 1.5em;
}

div.electrode .product-sku :is(a, p)
{
	color: var(--le_red);
	font-size: 0.85em;
	width: fit-content;
	float: right;
	border: solid 1px #ac1e2c;
	padding: 0.6rem 1rem;
	border-radius: 0.5rem;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

div.electrode .product-sku
{
	width: 26%;
	text-align: right;
	padding-right: 2.5em;
	margin-top: auto;
	margin-bottom: auto;
	display: flex;
	flex-flow: column;
	align-items: end;
}

div.electrode .product-sku a
{
	text-decoration: none;
	cursor: pointer;
	transition-duration: 150ms;
}

div.electrode .product-sku a:hover
{
	color: #8b1224;
	transition-duration: 150ms;
}

div.electrode .product-sku
{
	color: var(--le_red);
}

div.electrode .product-image
{
	width: 16%;
	padding: 1em;
}

div.electrode .product-image img
{
	width: 100%;
	height: auto;
}

div.electrode .product-name
{
	width: 80%;
}
/* #endregion */

div.electrode .product-name p
{
	font-weight: bold;
}

.side-menu-group-title
{
	font-size: max(1.1vw, 18px);
	margin-bottom: 0.25rem;
}

.side-menu-group-item
{
	margin-bottom: 0.2em;
	font-size: max(0.8vw, 18px);
    text-transform: uppercase;
	font-weight: 500;
}

.side-menu-header
{
	margin-top: 2.5em;
}

.side-menu-group
{
	margin-top: 1em;
}

.hiddendiv.electrode
{
	transition-duration: 0ms !important;
}


.equipment-link-button-container
{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.equipment-link-button-wrapper
{
	position: absolute;
	right: 27%;
	top: 3%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.equipment-link-button
{
	background-color: var(--le_red);
	color: white;
	cursor: pointer;
	padding-left: 1.75rem;
	padding-right: 1.75rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	border: none;
	font-size: max(1.4em, 18px);
	font-weight: 600;
	margin-left: auto;
	margin-right: auto;
	transition: 0.3s;
	z-index: 5;
	text-transform: uppercase;
	border-radius: 2em;
}

.equipment-link-button:hover
{
	background-color: var(--le_red_hl);
}