
#catalog_search 
{
	font-size: 24px;
	font-weight: bold	
  color: #4e5a7b;
  width:80%;
  background-color: #44FF8a;
	display:flex;
}

#catalog_search label
{
  color: #000
  font-weight: bold;
  width: 20%;
  float: left;
  	display:flex;
	
}

#catalog_search input[type=text] 
{
  border: 2px solid red;
  border-radius: 4px;
  background-color: white;
  background-image: url('/images/searchicon.png');
  background-position: 10px 20px;
  background-repeat: no-repeat;
  padding-left: 40px;
  transition: width 0.4s ease-in-out;
  	display:flex;
}

#catalog_search input[type=text]:focus
{
  background-color: lightblue;
  width: 100%;
}

#catalog_search input[type=button], input[type=submit], input[type=reset] 
{
 // background-color: #04AA6D;
  background-color: #FF0000;
  border: none;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  	display:flex;
}



* {
  box-sizing: border-box;
  
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

html {
  font-family: "Lucida Sans", sans-serif;
}

.header {
  background-color: #9933cc;
  color: #ffffff;
  padding: 15px;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #FF0000;
  //background-color: #33b515;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li:hover {
  background-color: #0099cc;
  text-decoration: none; 
}


a.CategoryLink:link { 
  text-decoration: none; 
} 
a.CategoryLink:visited { 
  text-decoration: none; 
} 
a.CategoryLink:hover { 
  text-decoration: none; 
} 
a.CategoryLink:active { 
  text-decoration: none; 
}


.aside {
  background-color: #33b5e5;
  padding: 15px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.footer {
  background-color: #0099cc;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 15px;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 2.33%;}
  .col-2 {width: 10.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}


figcaption {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18pt;
  color: #0;
}

.display {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.products {
  background-color: white;
  color: black;
  padding: 1rem;
  height: auto;
  text-align: center;
  clear: both
}

.catalog-image
{
 	width: 100%;
  height: auto;
  border-radius: 50%;
}

.catalog-nutrition-image
{
 	width: auto;
  height: auto;
 
}

.img-circle
{
   border-collapse: separate; 
	 border-radius: 50%;
   
}

.navbar
{
  background-color: red;
}

.catalog_category_blurb
{
 font-family: Arial, Helvetica, sans-serif;
  font-size: 18pt;
  color: #000000;
}

.product_info_overlay {
   position:absolute;
    top:10%;
    left:15%;
		//position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 70%; /* Full width (cover the whole page) */
  height: 80%; /* Full height (cover the whole page) */
 // top: 0;
//  left: 0;
//  right: 0;
 // bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}


.product_info{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  color: white;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}