
.select-ext {
	background: #fff;
	width: 100%;
	box-shadow: 0px 0px 0px rgba(0, 0, 0, .16);
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: .2s ease all;	
	padding: 2px 5px 2px 20px;
	position: relative;
	z-index: 200;
	border: 1px solid transparent;
	min-height: 37px;
}

.select-ext.active {
	box-shadow: 0px 5px 10px rgba(0, 0, 0, .16);
	border-bottom: 1px solid #000;
}

.select-ext i {
	font-size: 10px;
	margin-left: 30px;
	color: #819099;
  font-weight: bold !important
}

.select-ext i:before {
  font-weight: bolder !important;
}

.titulo {
	margin-bottom: 5px;	
	font-family: 'Atlas Grotesk Regular', sans-serif;
  color: #819099;
  font-size: 14px;
  text-decoration: none !important;
}

.descripcion {
	font-size: 12px;
	color: #434343;
  text-decoration: none !important;
  margin-bottom: 5px;
}

.selected .contenido-opcion .textos .titulo{
  color: #000;
}

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

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

.opcion{
  text-decoration: none !important;
}

@keyframes fadeIn {
	from {
		transform: translateY(-50px) 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 20px;
}

.contenido-opcion img {
	width: 60px;
	height: 60px;
	margin-right: 30px;
}

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

.opciones .contenido-opcion .titulo{
  color: #000;
}
