body, html{
	background-color: #fff;
	background-image: none;
	scroll-behavior: smooth;
}

button:focus{
	outline: 0;
}

.search-btn, .search-input{
	display: inline-block;
	width: calc(100% - 43px);
}

.search-btn{
	width: inherit;
	padding: 6px 10px;
	box-shadow: 1px 1px 2px rgba(0,0,0,.15);
}

.navbar-custom{
	background-color: rgba(0,0,0,.3);
    border-bottom: transparent 1px solid;
    padding: 10px 20px;
}

#main{
	padding: 0 30px 30px 30px;
}


/*Prod Items */

.prod-item{
	margin-top: 30px;
	background-color: #fff;
	overflow: hidden;
	border-radius: 5px;
	border: solid 1px #f1f1f1;
	transition: all ease .2s;
}

.prod-item:hover{
	border-color: #ccc;
	cursor: pointer;
	box-shadow: 0 0 8px rgba(0,0,0,.1);
	transition: all ease .2s;
}

.prod-item section{
	padding: 10px;
}

.prod-item footer{
	padding: 5px;
	font-family: 'Poppins', arial, sans-serif;
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

}

.prod-item footer p{
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 1.1rem;
}

.prod-item footer span{
	margin: 15px;
	font-size: 1.3rem;
	font-weight: 500;
	padding: 5px 15px;
	display: block;
	background-color: #f99d1c;
	border-radius: 20px;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,.3);
}


.controllers-row{
	margin-top: 20px;
}

.controllers-row>div{
	display: flex;
	align-items: center;
	justify-content: center;
}

.controllers{
	background-color: #52b5e5;
	border: none;
	margin: 5px;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,.1);
	font-size: 1.1rem;
	opacity: .9;
	cursor: pointer;
}

.controllers:hover{
	opacity: 1;
}

.controllers-off{
	pointer-events: none;
	background-color: #3E3E3E;
}

.hidè{
	display: none;
}