@charset "utf-8";
/* CSS Document */
/*
  Emerald Computer Sales Ltd.
  Author: Chris Kovalcik	
  Date:   May 21, 2023

  Filename:         main.css
  Contains styles used by the business.html page.
*/

/* Main modal window container */
.infoModal {
	display: none; 
	position: absolute; 
	z-index: 99; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%; 
	overflow: auto; 
	background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
	transition: all 0.5s ease-in-out; /* animate opening */
}

/* Modal Content/Box */
.modal-content {
	position: relative;
	background-color: #fefefe; /* Light Grey */
	margin: auto;
	top: 130px;
	padding: 20px;
	border: 1px solid #888; /* Grey */
	width: 80%; 
	height: 80%; 
	overflow: auto; 
}

/* Close Button */
.closeModel {
	position: absolute;
	top: 0;
	right: 0;
	color: #aaa; /* Grey */
	font-size: 28px;
	font-weight: bold;
	padding: 10px;
}

/* Show pointer on hover over close button */
.closeModel:hover,
.closeModel:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}