
a{
	text-decoration: none;
}
.contenedor {
	width: 100%;
	max-width: 1000px;
	margin: auto;
}

.selectbox {
	width: 100%;
	margin: auto;
	position: relative;
}

.select {
	background: #fff;
	width: 75%;
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
	border-radius: 75px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: .2s ease all;

	position: relative;
	z-index: 200;
	border: 2px solid transparent;

    margin: auto;

	background-color: white;

    margin-bottom: 10px;
}

.select.active,
.select:hover {
	box-shadow: 0px 5px 10px rgba(0, 0, 0, .16);
	
}

.select.active:before {
	content: "";
	display: block;
	height: 0;
	width: 0;
	border-top: 15px solid #213f8f;
	border-right: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid transparent;
	position: absolute;
	bottom: -30px;
	left: calc(50% - 15px);
}

.select i {
	font-size: 30px;
	margin-left: 30px;
	color: red;
}


.opciones {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 5px 10px rgba(0,0,0,.16);
	max-height: 400px;
	overflow: auto;
	z-index: 100;
	width: 100%;
	display: none;
}

.opciones.active {
	display: block;
	animation: fadeIn .3s forwards;
}

@keyframes fadeIn {
	from {
		transform: translateY(-200px) scale(.5);
	}
	to {
		transform: translateY(0) scale(1);
	}
}

.contenido-opcion {
	width: 100%;
	display: flex;
	align-items: center;
	transition: .2s ease all;
}

.opciones .contenido-opcion {
	padding: 5px;
}

.contenido-opcion img {
	width: 80%;
	height: 80%;
    margin: auto;
}

.opciones .contenido-opcion:hover {
	background: #ff66c4;
}

.opciones .contenido-opcion:hover .titulo,
.opciones .contenido-opcion:hover .descripcion {
	color: #fff;
}

@media screen and (max-width: 800px){
	.selectbox {
		width: 100%;
	}
}