.product_table{
	padding-top: 10px;
}

.pagination_link{
	margin-left:5px;
	color:black;
	font-size:1.2em;
	cursor:pointer;
	padding:6px;
	border:1.5px solid #222222;
}

.pagination_link:hover{
	background-color: yellow;
}

.pagination_link:focus{
	background-color: yellow;
}

.go_back{
  color:black;
  font-size:1.2em;
  cursor:pointer;
  padding:6px;
  border:1.5px solid #222222;
}

.go_back:hover{
  background-color: yellow;
}

.go_back:focus{
  background-color: yellow;
}

.image_container {
  position: relative;
  width: auto;
}

.image_container .p_icon {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.my-cart-btn {
	color: black;
	font-size:48px;
}

.p_icon span {
	display: inline-block;
	height: 50px;
	width: 50px;
	text-align: center;
	background: #99ffff;
	line-height: 40px;
}

/*.p_icon span:hover{
	background-color: blue;
}*/

.image_container:hover .p_icon {
  opacity: 1;
}

#retrieve_product_data{
	height: 360px;
	padding-top: 10px;
}

/* The Modal (background) */
.product-detail-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.product-content-modal {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
}

.product-content-modal table{
  border-collapse: collapse;
  width: 100%;
}

.product-content-modal table td{
	color: black;
}

.product-content-modal .product-img-in-table{
	text-align: center;
}

.product-content-modal table span{
	font-weight: bolder;
	color: black;
}

.product-content-modal button{
	font-size:20px;
}

/* The Close Button */
.product-content-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.product-content-close:hover,
.product-content-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/*product slider*/
.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}
