@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

#cnv_container {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	height: auto;
}

#cnv_container > * {
	padding: 10px;
	flex: 1 100%;
	height: 1px;
}

#cnv_left_select {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 0;
	text-align: center;
}

#cnv_right_select {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 0;
	text-align: center;
}

.cnv-title {
	font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-style: bold;
	font-size: 30pt;
	margin: 0 0 15px 0;
}

#cnv_results {
	padding: 60px 15px;
}

#cnv-tabla-resultados {
	border-collapse: separate;
	width: 100%;
	table-layout: fixed;
}

#cnv-tabla-resultados th {
	background-color: #4471C4;
	color: #fff;
	font-weight: bold;
	height: 30px;
	text-align: center;
	vertical-align: middle;
	font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-style: normal;
	font-size: 16pt;
}

#cnv-tabla-resultados td {
	font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
	padding: 5px 2px;
	text-align: center;
	font-size: 12pt;
}

#cnv-tabla-resultados tr:nth-child(odd) td{
	background-color: #CFD5EB;
}
#cnv-tabla-resultados tr:nth-child(even) td{
	background-color: #E9ECF5;
}

.wrap-cnv-drop {
	background: #0070ff;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, .2);
	cursor: pointer;
	margin: 0 auto;
	max-width: 255px;
	padding: 1rem;
	position: relative;
	width: 75%;
	z-index: 3;
	font-family: Arial;
	text-align: center;
}

.wrap-cnv-drop::after {
	border-color: #fff transparent;
	border-style: solid;
	border-width: 10px 10px 0;
	content: "";
	height: 0;
	margin-top: -4px;
	position: absolute;
	right: 1rem;
	top: 50%;
	width: 0;
}

.wrap-cnv-drop .drop {
	background: #0070ff;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, .2);
	display: none;
	left: 0;
	list-style: none;
	margin-top: 0;
	opacity: 0;
	padding-left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 2;
}

.wrap-cnv-drop .drop li a {
	color: #fff;
	display: block;
	padding: 1rem;
	text-decoration: none;
}

.wrap-cnv-drop span {
	color: #fff;
}

.wrap-cnv-drop .drop li:hover a {
	background-color: #695d52;
	color: #e7ded5;
}

.wrap-cnv-drop.active::after {
	border-width: 0 10px 10px;
}

.wrap-cnv-drop.active .drop {
	display: block;
	opacity: 1;
	pointer-events: auto;
}