     * {
	 margin: 0;
	 padding: 0;
	 box-sizing: border-box;
}
 body {
	 background-color: #e1e1e1;
	 font-family: Arial, Helvetica, sans-serif;
	 display: grid;
	 min-height: 100vh;
}

.header {
	top:10px;
	left: 10px;
	width: 100%;
	background-color: white;
	text-wrap: wrap;
}

#header_img{
	float: left;
	height: 100%;
}


 .container {
	background-color: #fff;
	border-radius: 5px;
	display: grid; 
	grid-template-columns: 1fr 5fr auto; 
	width: 60vw;
	box-shadow: 0 15px 20px rgba(0, 0, 0, 0.356);
	margin-bottom: 50px;


}


.container__img {
	margin: 10px; 
	max-height: 100%; 
	height:200px;
	width: 200px;

	display: flex; /* Use flexbox for centering */
    justify-content: center; /* Horizontally center content */
    align-items: center; /* Vertically center content */
    overflow: hidden; /* Hide overflow */
}

.container__text {
	right: 10px;
	margin-top: 10px;
	width: 100%;
}

 .container .btn {
	 border: none;
	 height: 100%;
	 right: 10px;
	 outline: none;
	 align-items: center;
	 background-color: #fc9400;
	 color: #fff;
	 padding: 3px 5px;
	 font-size: 1rem;
	 text-transform: uppercase;
	 border-radius: 6px;
	 cursor: pointer;
	 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.294);
}
 .container .btn i {
	 margin-left: 0px;
	 font-size: 1.5rem;
}

 .container__text h1 {
	 color: #351897;
	 font-weight: 400;
	 
}
 .container__text .container__text__star span {
	 font-size: 0.8rem;
	 color: #ffa800;

	 margin: -5px 0 20px;

}
 .container__text p {
	 font-size: 0.9rem;
	 margin-top: 10px;
}
 .container__text .container__text__timing {
	 display: flex;
	 margin: 20px 0 10px;
}
 .container__text .container__text__timing .container__text__timing_time {
	margin-right: 30px;
	margin-bottom: 20px;
}
 .container__text .container__text__timing h2 {
	 margin-bottom: 5px;
	 font-size: 1rem;
	 font-weight: 400;
	 color: #818189;
}
 .container__text .container__text__timing p {
	 color: #351897;
	 font-weight: bold;
	 font-size: 1.2rem;
}
 
/*SEARCH BAR*/

.topnav {
width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #e9e9e9;
}

.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #2196F3;
  color: white;
}

.topnav .search-container {
  float: right;
  width: 100%;
}

.topnav input[type=text] {
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
}


#searchBarId{
	width: 100%;
}
/*SEARCH BAR*/

/*Horizontal Line*/

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
/*Horizontal Line*/


#submitId{
	width: 100px;
	height: 30px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}



  
/* Dropdown */
 

  .select {
	display:flex;
	flex-direction: column;
	position:relative;
	width:250px;
	height:40px;
  }
  
  .option {
	padding:0 30px 0 10px;
	min-height:40px;
	display:flex;
	align-items:center;
	background:#ffffff;
	border-top:#222 solid 1px;
	position:absolute;
	top:0;
	width: 100%;
	pointer-events:none;
	order:2;
	z-index:1;
	transition:background .4s ease-in-out;
	box-sizing:border-box;
	overflow:hidden;
	white-space:nowrap;
	
  }
  
  .option:hover {
	background:#575555;
  }
  
  .select:focus .option {
	position:relative;
	pointer-events:all;
  }

  
  
  .selectopt {
	opacity:0;
	position:absolute;
	left:-99999px;
  }
  
  .selectopt:checked + label {
	order: 1;
	z-index:2;
	background:#d8d3d3;
	border-top:none;
	position:relative;
  }
  
  .selectopt:checked + label:after {
	content:'';
	width: 0; 
	  height: 0; 
	  border-left: 5px solid transparent;
	  border-right: 5px solid transparent;
	  border-top: 5px solid white;
	position:absolute;
	right:10px;
	top:calc(50% - 2.5px);
	pointer-events:none;
	z-index:3;
  }
  
  .selectopt:checked + label:before {
	position:absolute;
	right:0;
	height: 40px;
	width: 40px;
	content: '';
	background:#666;
  }

/*Button Dropdown */

/*Button Group Ordenar */

.btn-group{
	
}

.btn-group button {
	margin-left: 10%;
	background-color: white; /* Green background */
	border: 1px solid rgb(0, 0, 0); /* Green border */
	color: black; /* White text */
	padding: 10px 24px; /* Some padding */
	cursor: pointer; /* Pointer/hand icon */
	float: left; /* Float the buttons side by side */
  }
  
  /*
  .btn-group button:not(:last-child) {
	border-right: none;  Prevent double borders 
  }*/
  
  /* Clear floats (clearfix hack) */
  .btn-group:after {
	content: "";
	clear: both;
	display: table;
  }
  
  /* Add a background color on hover */
  .btn-group button:hover {
	background-color: #a9aaaa;
  }

  .upvoted{
	background-color:grey;
  }
 
/*Button Group Ordenar */


/*Button Description */

.button_description {
	display: inline-block;
	position: relative;
	z-index: 1;
	overflow: hidden;
	text-decoration: none;
	font-family: sans-serif;
	font-weight: 600;
	font-size: 1em;
	padding: 0.2em 0.3em;
	color: rgb(0, 0, 0);
	background-color: #ffffff;
	border: 0.15em solid rgb(167, 15, 40);
	margin: 1px;
	border-radius: calc(0.75em + 0.5em + 0.15em);
}

/*Button Description */

/*pagination */

.pagination a {
	color: black;
	float: left;
	padding: 8px 16px;
	text-decoration: none;
	transition: background-color .3s;
	border: 1px solid #ddd;
	margin: 0 4px;
  }
  
  .pagination a.active {
	background-color: #4CAF50;
	color: white;
	border: 1px solid #4CAF50;
  }
  
  .pagination a:hover:not(.active) {background-color: #ddd;}

/*pagination */

/*Slider */
.wrapper {
	width: 400px;
	height: 80px;
	background: #fff;
	border-radius: 10px;
	padding: 10px 25px 20px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  }
  header h2 {
	font-size: 24px;
	font-weight: 600;
  }

  .price-input {
	width: 100%;
	display: flex;
	margin: 5px 0 15px;
  }
  .price-input .field {
	display: flex;
	width: 100%;
	height: 45px;
	align-items: center;
  }
  .field input {
	width: 100%;
	height: 100%;
	outline: none;
	font-size: 19px;
	margin-left: 12px;
	border-radius: 5px;
	text-align: center;
	border: 1px solid #999;
	-moz-appearance: textfield;
  }
  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
  }
  .price-input .separator {
	width: 130px;
	display: flex;
	font-size: 19px;
	align-items: center;
	justify-content: center;
  }
  
  
  
  /* Support */
  .support-box {
	top: 2rem;
	position: relative;
	bottom: 0;
	text-align: center;
	display: block;
  }
  .b-btn {
	color: white;
	text-decoration: none;
	font-weight: bold;
  }
  .b-btn.paypal i {
	color: blue;
  }
  .b-btn:hover {
	text-decoration: none;
	font-weight: bold;
  }
  .b-btn i {
	font-size: 20px;
	color: yellow;
	margin-top: 2rem;
  }

/*Slider */


.pageContent{
	margin-top: 50px;
	display: flex;
}

.flex-child-element{
	flex: 0.1;
	margin: 10px;

}

.flex-child-element:first-child{
	margin-right: 40px;
	max-height: 400px;
	border: #2196F3;

	
}

