* {
	box-sizing: border-box;
}

/* Wrapper */
.imageWrapper {
	width: 100%;
	height: 100%;
	background: rgba(22,22,22,0.9);
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 100;
}

.imageWrapper img { 
	max-width: 800px;
}

.imageWrapper span {
	position: absolute;
	top: 5%;
	right: 5%;
	font-size: 30px;
	font-family: sans-serif;
	color: #fff;
	cursor: pointer;
}

body {
	background-color: rgb(244,245,246);
}

.img-gallery {
	width: 80%;
	margin: 2% auto 4%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-row-gap: 80px;
	grid-column-gap: 30px;
}

.img-gallery img {
	width: 100%;
	height: 100%;
	cursor: pointer;
	margin: auto 0 auto;
	transition: 0.5s ease;
	display: flex;
	border: 1px solid rgba(22,22,22,1);
}

.img-gallery img:hover {
	transform: scale(1.1);
	box-shadow: 0 32px 75px rgba(68, 77, 136, 0.6);
}

.img-magnifier-container {
	position: relative;
	width: 90%;
	max-width: 800px;
}

.img-magnifier-container img {
	max-width: 800px;
	width: 100%;
	height: 100%;
}

.img-magnifier-glass {
	position: absolute;
	border: 1px solid rgba(22,22,22,1);
	cursor: none;
	/*Set the size of the magnifier glass:*/
	width: 200px;
	height: 200px;
}

.cutter_row {
	display: flex;  /* aligns all child elements (flex items) in a row */
	text-align: center;
	justify-content: center;
	align-items: center;
	border: 1px;
	border-top: 0px;
	border-style: solid;
	border-color: rgba(22,22,22,1);
	font-family: Montserrat, serif, system-ui;
	-webkit-text-size-adjust: 100%;
	overflow-wrap: break-word;
	word-break: break-word;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
	vertical-align: middle;
	color: rgba(22,22,22,1);
	text-align: center;
	line-height:1.6;
	margin: 0;
	padding: 0;
}

.cutter_col {
	box-sizing: border-box;
	overflow-wrap: break-word;
	vertical-align: middle;
}

.cutter_head {
	border-inline-end: double rgba(22,22,22,1);
	font-weight: 600;
	align-self: stretch;
}
