* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/*body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: #fofofo;
	
}
*/

.containermenuimagenes .img_container {
	width: 430px;
	height: 430px;
	margin-left: -28px;
	margin-bottom: 20px;

}

.container .img_container .main_img {
	width: 100%;
	height: 100%;
	border-radius: 1px;
	box-shadow: 0 5px 5px rgba(1, 23, 46, 0.6);
	object-fit: cover;

}

.container .thumbnail_container {
	height: 80px;
	display: flex;
	box-shadow: 0 5px 5px rgba(1, 23, 46, 0.6);
	justify-content: space-between;

}

.container .thumbnail_container .thumbnail {
	width: 80px;
	height: 80px;
	border-radius: 5px;
	cursor: pointer;
	object-fit: cover;
	opacity: .7;
	transition: .3s;
}

.container .thumbnail_container .thumbnail:hover {
	opacity: .1;
}

.active {
	opacity: 1 !important;
	box-shadow: 0 8px 8px rgba(1, 23, 46, 0.6);
}


@media (min-width:1000px) {
	.containermenuimagenes {
		margin-top: -60px;
	}
}