html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  background-color: #bebebe;
}
#menu {
	max-height: 90px;
	overflow: hidden;
}
.container {
	padding-top: 10px;
	background-color: #ffffff;	
	margin-top: 85px;
}
p{
	font-size: 1.2rem;
	line-height: 1.8rem;
}
h1{
	font-size: 1.6rem;
}
a:link, a:visited, a:active{
	COLOR: #0275d8;  TEXT-DECORATION: none;
}
a:hover{
	COLOR: #2565AE;  TEXT-DECORATION: underline;
}
.img-fluid {
}
.more{
	list-style-type:none;
}
.more li a{
	font-size: 1.4rem;
	line-height: 2.4rem;	
}
#products{
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}	
.product{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	padding: 5px;
	border: 1px solid #cccccc;
	border-radius: 5px;
	flex: 25%;
	margin: 10px 10px;
}
.product_description {
	padding-top: 20px;
	font-size: 18px;
}
.product_price {
	display: flex;	
	line-height: 50px;
}
.price {
	font-size: 1.3em;	
}
.discount-price {
	font-size: 1.2em;	
	text-decoration: line-through;	
}
.product_btn{
    margin: 0px auto;
}	
.big_text{
font-size: 1.6rem;	
}

.footer {
	border-top: 1px solid #dee2e6 !important;
}

.highlight {
	background-color: #feffd2;
}
.page-number{
	font-size: 1.6rem;
	color: #b33c00;
	padding-top: 10px;
}

#spinner {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media screen and (max-width: 600px) {
	.products :nth-child(even){
	background-color: #dcdcdc;
	}
	.products :nth-child(odd){
	background-color: #aaaaaa;
	}	
	.product {
		flex: 50%;
		margin: 5px 5px !important;	
	}
	.product_details {
		display: flex;
	}	
	.product_description {
		padding-left: 20px;
		font-size: 16px !important;
	}  
	h3 {
		font-weight: 400;
		line-height: 1.5em;	
		font-size: 1.1em;	
	}
	.big_text{
	font-size: 1.4rem !important;	
	}	
}
@media screen and (min-width: 992px) {
	.navbar-nav {
		flex-wrap: wrap;
	}
}