/* Grid line arrangment for product page */

.grid-container {
  display: grid;
  justify-content: space-evenly;
  grid-template-columns: 20% 20% 20% 20% 20%;
  grid-gap: 5px;
  background-color: white;
  padding: 10px;
}

.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: left;
  padding: 5px 0;
 
}

.item1 {
  grid-row-start: 1;
  grid-row-end: 4;
}
@media only screen and (max-width: 500px)
{
.grid-container {
  display: grid;
  justify-content: space-evenly;
  grid-template-columns: 33% 33% 33%;
  grid-gap: 5px;
  background-color: white;
  padding: 10px;
} 
}


  .divider {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.divider::before, .divider::after {
  flex: 1;
  content: '';
  padding: 2px;
  background-color: #0f7abe;
  margin: 3px;
}
   .outer-rectangle { 
    width: 115px; 
	height: 75px; 
	background-color: #4A569D; 
	border-radius: 8px; 
	position: relative;
	display: flex; 
	justify-content: center; 
	align-items: center; 
	margin: 6px; 
	}

.inner-rectangle { 
	width: 92%; 
	height: 90%; 
	background-color: #ffffff; 
	border-radius: 2px; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	overflow: hidden; 
	}

.inner-rectangle img { 
	width: 100%; height: 100%; 
	object-fit: contain; 
	}