@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body {
	font-family: "Roboto", "Helvetica Neue", sans-serif;
	margin: 0;
	padding: 0;
	font-size: 14px;
	background-color: #F5F4F4;
}
.loader {
	display: none;
	width: 150px;
	text-align: center;
	position: fixed;
	top: 47%;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 10002;
}
.loader h1 { text-align: center; color: var(--blanco); margin: 15px 0; font-size: 20px; }
.loader > div {
	width: 18px;
	height: 18px;
	background-color: #F9EDD7;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.loader > div.bounce1 { background-color: var(--primario); }
.loader > div.bounce3 { background-color: var(--primario); }
.loader .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.loader .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	} 40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}
.skeleton {
    background: linear-gradient( 90deg, #eeeeee 25%, #dddddd 37%, #eeeeee 63% );
    background-size: 400% 100%;
    animation: skeleton-loading 1.2s ease-in-out infinite;
	opacity: 0.3;
}
@keyframes skeleton-loading {
	0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
.container {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 8px;
}
.container.white {
	background-color: var(--blanco);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0px 0px 8px rgba(69, 69, 69, 0.3);
}
.capaNegra {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10001;
	background-color: var(--negro-transparente);
	display: none;
}
img { max-width: 100%; }
a { text-decoration: none; transition: 0.3s all; }
.tRight { text-align: right; }
.tCenter { text-align: center; }
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primario);
    color: var(--blanco);
    border: 1px solid var(--primario);
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    box-sizing: border-box;
    padding: 8px 16px;
    transition: 0.4s all;
	height: 37px;
}
.button i { margin-right: 5px; }
.button:hover, .button.white {
	background-color: var(--blanco);
    color: var(--primario);
}
.button.white:hover {
	color: var(--blanco);
    background-color: var(--primario);
}
.button.orange {
	background-color: var(--terciario);
    color: var(--blanco);
}
.button.orange:hover {
	color: var(--terciario);
    background-color: var(--blanco);
}
.button.red {
	background-color: var(--rojo);
    color: var(--blanco);
}
.button.red:hover {
	color: var(--rojo);
    background-color: var(--blanco);
}
header {
	background-color: var(--primario);
    color: var(--blanco);
    padding: 16px 0;
}
header .container {
	display: flex;
    align-items: center;
    justify-content: space-between;
}
header .container img { height: 50px; width: auto; }
header .buttonSession {
	width: 270px;
    display: none;
    align-items: center;
}
header .buttonSession.activos { display: flex; }
header .buttonSession .button {
    margin: 0 5px;
    border: 1px solid var(--blanco);
}
main { padding-top: 20px; }
h2.headTitle {
  font-size: 36px;
  line-height: 36px;
  color: var(--primario);
  padding: 5px;
  box-sizing: border-box;
}
h2.headTitle.conBorde { border-bottom: 1px solid var(--primario); }
.container.cards {
    display: flex;
    flex-flow: row wrap;
}
.container .cardList {
	margin-bottom: 25px;
	display: flex;
	align-self: stretch;
	flex-wrap: wrap;
}
.container.cards .cardList {
	width: 31%;
	margin: 1%;
}
.container .cardList .cardListContainer {
	width: 30%;
	min-width: 260px;
}
.container .cardList .graphsContainer {
	width: 70%;
	height: 265px;
}
.container .cardList .graphsContainer canvas {
	height: 100%;
	width: 100%;
}
.container.cards .cardList .cardListContainer {
	width: 100%;
}
.container.cards .cardList .graphsContainer {
	width: 100%;
	border: 1px solid #ccc;
}
.tarjeta {
	 box-sizing: border-box;
	 padding: 16px 24px;
	 border-radius: 8px 0px 0px 8px;
	 width: 100%;
	background-color: var(--primario);
    color: var(--blanco)
}
.tarjeta.card { border-radius: 8px 8px 0px 0px; }
.tarjeta h2 {
	font-weight: 700;
	font-size: 22px;
	line-height: 29px;
	margin: 0;
	width: 100%;
	height: 29px;
}
.tarjeta h3 {
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	margin: 0;
}
.tarjeta table {
	border: none;
	margin: 10px 0;
	width: 100%;
}
.tarjeta table tr {
	margin: 4px 10px;
}
.tarjeta table tr td {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	width: 50%;
	height: 23px;
}
.tarjeta table tr td b {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--blanco);
    color: var(--primario);
	width: 100%;
	border-radius: 8px;
	padding: 2px 0;
}
.tarjeta .button {
	width: 100%;
}
canvas {
	width: 100%;
	height: 300px;
}
.sociales {
	margin: 25px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sociales .network {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 25px;
    border-radius: 50%;
    color: var(--blanco);
    transition: 0.4s all;
}
.sociales .network.twitter {
    background-color: #1DA1F2;
    border: 1px solid #1DA1F2;
}
.sociales .network.twitter:hover {
    background-color: var(--blanco);
    color: #1DA1F2;
}
.sociales .network.facebook {
    background-color: #4267B2;
    border: 1px solid #4267B2;
}
.sociales .network.facebook:hover {
    background-color: var(--blanco);
    color: #4267B2;
}
.sociales .network.google {
    background-color: #EA4335;
    border: 1px solid #EA4335;
}
.sociales .network.google:hover {
    background-color: var(--blanco);
    color: #EA4335;
}
.sociales .network.windows {
    background-color: #00A4EF;
    border: 1px solid #00A4EF;
}
.sociales .network.windows:hover {
    background-color: var(--blanco);
    color: #00A4EF;
}
.cross {
	position: relative;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: var(--negro-transparente);
	text-align: center;
	width: 100%;
	display: block;
}
.cross:before, .cross:after {
	position: absolute;
	top: 51%;
	overflow: hidden;
	width: 30%;
	height: 1px;
	content: '\a0';
	background-color: var(--negro-transparente);
}
.cross:before { left: 0; }
.cross:after { right: 0; }
.modal h2 {
	margin: 20px 0 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
}
.modal form { margin: 10px 0; }
.modal form input, .modal .form input, .modal .form select,
.stripeDiv, .conexionCuenta input, .conexionCuenta select,
.perfil input, .setupRisk input, .setupRisk select,
.mapSymbols input, .mapSymbols select {
	width: 100%;
    border: 1px solid var(--primario);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 8px;
    color: var(--primario);
	margin: 10px 0;
}
.modal form button, .modal .form button { width: 100%; cursor: pointer; margin-top: 10px; }
.sessionMenu {
	background-color: var(--secundario);
	color: var(--blanco);
	padding: 19px 0;
}
.sessionMenu.home { display: none; }
.sessionMenu .container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sessionMenu .container b {
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	margin: 0;
}
.sessionMenu .container .menuMobile { display: none; color: var(--blanco); }
.sessionMenu .container nav { display: block; }
.sessionMenu .container nav ul {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.sessionMenu .container nav ul li {  margin: 0 12px; }
.sessionMenu .container nav ul li a {
	color: var(--blanco);
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	transition: 0.4s all;
}
.sessionMenu .container nav ul li a:hover,
.sessionMenu .container nav ul li a.active {
  color: var(--primario);
}
.columna.skeleton { width: 140px; height: 30px; display: block; }
span.skeleton { display: block; margin-bottom: 3px; }
.tableResponsive {
	width: 100%;
	overflow-x: auto;
}
.tableResponsive table { min-width: 100%; }
.tableResponsive table tr { width: 100%; }
.tableResponsive table tr th {
	min-width: 100px;
	padding: 10px 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: var(--primario);
	border-bottom: 1px solid rgba(204, 204, 204, 0.4);
	text-align: center;
}
.tableResponsive table tr th .icon {
	color: var(--secundario);
	font-size: 16px;
	margin-left: 10px;
	cursor: pointer;
}
.tableResponsive table tr td {
	min-width: 100px;
	border-bottom: 1px solid rgba(204, 204, 204, 0.4);
	padding: 10px 0;
}
.tableResponsive table tr td.tCenter { text-align: center; }
.tableResponsive table tr td span.icon:not(:empty) {
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
}
.tableResponsive table tr td span.icon:not(:empty).purple { color: var(--secundario); }
.tableResponsive table tr td span.icon:not(:empty).green { color: var(--verde); }
.tableResponsive table tr td span.icon:not(:empty).rojo { color: var(--rojo); }
.tableResponsive table tr td span.icon:not(:empty).circle { border: 1px solid var(--verde); border-radius: 50%; }
.tableResponsive table tr td .buttonLine {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-width: 300px;
}
.tableResponsive table tr td .buttonLine a { margin: 5px; width: 100%; }
.tableResponsive table tr td .button {
	padding: 6px 0px;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	margin: 4px 0;
}
.tableResponsive table tr td .card {
	color: var(--secundario);
	font-size: 50px;
	display: block;
	margin-top: -5px;
}
.tableResponsive table tr td .google { color: #EA4335; }
.tableResponsive table tr td .twitter { color: #1DA1F2; }
.tableResponsive table tr td .facebook { color: #4267B2; }
.tableResponsive table tr td p { margin: 0; }
.tableResponsive table tr td.tRight { padding-left: 40px; }
.inputSearch {
	width: 500px;
	max-width: 100%;
	display: flex;
	align-items: center;
	border: 1px solid var(--primario);
	box-sizing: border-box;
	border-radius: 8px;
	padding: 8px;
	margin-bottom: 15px;
}
.inputSearch .icon {
	font-size: 16px;
	color: var(--secundario);
}
.inputSearch input {
	width: calc(100% - 20px);
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: var(--primario);
	border: none;
	outline: none;
}
.inputSearch input::placeholder {
	color: var(--secundario);
}
.filters {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.filters .filterIcon {
	color: var(--terciario);
	margin-right: 14px;
	width: 18px;
}
.filters ul.chooser {
	display: none;
	padding: 5px;
	margin: 0;
	background-color: var(--blanco);
	list-style: none;
	position: absolute;
	max-height: 400px;
	overflow-y: auto;
	overflow-x: hidden;
	top: 40px;
	width: 250px;
	max-width: 100%;
	border: 1px solid var(--grisBorde);
	box-sizing: border-box;
}
.filters ul.chooser li.title {
	width: 100%;
	padding: 8px;
	font-weight: bold;
	border-bottom: 1px solid var(--grisBorde);
	margin-bottom: 8px;
}
.filters ul.actives {
	width: 100%;
	max-width: calc(100% - 20px);
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
	flex-flow: row wrap;
}
.filters ul.actives li { margin-right: 10px; margin-bottom: 5px; }
.filters ul.actives li a {
	display: flex;
	align-items: center;
	background-color: var(--secundario);
	color: var(--primario);
	border-radius: 16px;
	border: 1px solid var(--secundario);
	padding: 4px 10px;
	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	transition: 0.4s all;
}
.filters ul.actives li a:hover { background-color: var(--blanco); }
.filters ul.actives li a .icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	margin-right: 5px;
	border-radius: 50%;
	border: 1px solid var(--primario);
}
.brokerList {
	display: flex;
	justify-content: center;
	flex-flow: row wrap;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
}
.brokerList .broker {
	width: 31%;
	margin: 1%;
	box-sizing: border-box;
	padding: 15px;
	border: 1px solid var(--secundario);
	border-radius: 15px;
}
.brokerList .broker h4 {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: var(--negro);
	margin: 16px 0 0;
}
.brokerList .broker img {
	margin: 15px auto;
	max-width: 70%;
	height: auto;
}
.brokerList .broker ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.brokerList .broker ul li {
	width: 100%;
	margin-bottom: 15px;
}
.dFlex { display: flex; }
.halfContent {
	width: 50%;
	box-sizing: border-box;
	padding: 0 20px;
}
.halfContent h3 {
	margin-top: 0;
	font-size: 24px;
	line-height: 36px;
	color: var(--secundario);
	padding: 5px;
	border-bottom: 1px solid var(--secundario);
}
.halfContent .datosPerfil {
	text-align: left;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: row wrap;
	margin-bottom: 8px;
}
.halfContent .datosPerfil b { display: block; width: 200px; }
.halfContent .datosPerfil span { display: block; width: 100%; }
.halfContent .datosPerfil .icon { color: var(--primario); }
.toggle { margin-right: 5px; }
.toggle input[type=checkbox] { height: 0; width: 0; visibility: hidden; }
.toggle input[type=checkbox]:checked + label { background: var(--primario); }
.toggle input[type=checkbox]:checked + label:after {
	left: calc(100% - 1px);
	transform: translateX(-100%);
}
.toggle label {
	margin-top: -16px;
	cursor: pointer;
	text-indent: -9999px;
	width: 40px;
	height: 20px;
	background: var(--secundario);
	display: block;
	border-radius: 20px;
	position: relative;
}
.toggle label:after {
	content: '';
	position: absolute;
	top: 1px;
	left: 1px;
	width: 18px;
	height: 18px;
	background: var(--blanco);
	border-radius: 20px;
	transition: 0.3s;
}
.toggle label:active:after { width: 20px; }
.datosPerfil span.skeleton { height: 19px; }
.suscripcionList { display: none; }
.adicionalLink { margin: 8px 0; display: block; }
.adicionalData { display: none; padding: 15px 0; box-sizing: border-box; }
.modal .halfContent { padding: 0; }
.modal .halfContent:first-child { padding-right: 5px; }
.modal .halfContent:last-child { padding-left: 5px; }
hr { border-color: var(--primario); }
.encabezado .linkBack { color: var(--terciario); }
.encabezado .info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--primario);
	margin-bottom: 15px;
}
.encabezado .info .elemento {
	font-size: 16px;
	line-height: 19px;
	font-weight: 400;
}
.encabezado .info .elemento h3 {
	font-size: 16px;
	line-height: 19px;
	margin: 0;
}
.encabezado .info .elemento b {
	display: block;
	font-weight: normal;
	text-align: center;
}
.encabezado .info .elemento span { display: block; line-height: 29px; }
.encabezado .info .elemento span.valor {
	color: var(--terciario);
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
.encabezado .button {
	width: 280px;
	margin-bottom: 20px;
}
.tabs {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 20px 0;
	padding: 0;
}
.tabs li { margin-right: 16px; }
.tabs li a {
	border: 1px solid var(--secundario);
	border-radius: 8px;
	color: var(--secundario);
	padding: 4px 16px;
	font-size: 24px;
	line-height: 29px;
	transition: 0.4s all;
	box-sizing: border-box;
	text-decoration: none;
}
.tabs li a:hover,
.tabs li a.active {
	background-color: var(--primario);
	color: var(--blanco);
}
.elemento .skeleton { height: 30px; }
.estrategiaDetail .skeleton { height: 20px; }
.accountName, .title-type-1, .tabContent { display: none; }
.tabContent.active { display: block; }
.detail .dFlex {
	display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}
.estrategiaDetail {
	width: 48%;
	list-style: none;
	margin: 0 1%;
	padding: 0;
}
.estrategiaDetail li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 20px 5px;
	box-sizing: border-box;
	font-size: 16px;
}
.estrategiaDetail li span { color: var(--primario); }
.estrategiaDetail li b {
	color: var(--terciario);
	display: block;
	min-width: 40px;
	text-align: right;
}
.estrategiaDetail li b span {
	color: var(--terciario);
	font-weight: normal;
}
.graphLine {
	width: 48%;
	margin: 20px 1%;
}
.graphLine .lines b {
	width: 100%;
	display: block;
	font-weight: normal;
	color: var(--primario);
}
.graphLine .lines b span {
	color: var(--terciario);
	float: right;
}
.graphLine .lines .percent {
	position: relative;
	width: 100%;
	height: 8px;
	background-color: var(--primario);
	border-radius: 5px;
	margin-bottom: 15px;
}
.graphLine .lines .percent span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--terciario);
	height: 8px;
}
.permisos, .premiumIcon { display: none; }
.dt-search, .dt-paging  {
    float: right !important;
    text-align: right;
}
.terminosTxt .button {
	justify-content: flex-start !important;
	display: block !important;
	margin: 30px 0 !important;
}
.planList {
	display: flex;
	justify-content: center;
	flex-flow: row wrap;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
}
.planList .plan {
	width: 31%;
	margin: 1%;
	box-sizing: border-box;
	padding: 15px;
	border: 1px solid var(--secundario);
	border-radius: 15px;
}
.planList .plan h4 {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: var(--negro);
	margin: 0 0 16px;
}
.planList .plan b {
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	color: var(--negro);
	margin: 0;
}
.planList .plan p { color: var(--negro-transparente); margin: 15px 0; }
.planList .plan ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.planList .plan ul li { width: 100%; margin-bottom: 15px; }
.planList .plan.active { background-color: var(--primario); color: var(--blanco); }
.planList .plan.active h4, .planList .plan.active p { color: var(--blanco); }
.planList .plan.active .button {
	display: block;
	background-color: var(--blanco);
	color: var(--primario);
}
.planList .plan .button { margin: 20px 0; }
.resumen .planList .plan { width: 98%; }
.resumen .cuenta {
	margin: 0 auto;
	max-width: 100%;
	padding: 10px;
	box-sizing: border-box;
	display: flex;
}
.resumen .cuenta .datos {
	max-width: 50%;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}
.resumen .cuenta .datos .planCodifi {
	width: 100%;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 10px 0;
	margin-bottom: 10px;
}
.resumen .cuenta .datos .planCodifi img {
	width: 35px;
	height: auto;
	margin-right: 10px;
}
.resumen .cuenta .datos .planCodifi .detail b { display: block; margin: 0; }
.resumen .cuenta .datos .planCodifi .detail span { margin: 0; display: block; }
.resumen .cuenta .datos .planCodifi .detail b span { display: initial; }
.resumen .cuenta .datos .metodoPago { margin-bottom: 20px; }
.resumen .cuenta .datos .metodoPago .method {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.resumen .cuenta .datos .metodoPago .method .detail {
	display: flex;
	align-items: center;
	margin-left: 5px;
}
.resumen .cuenta .datos .metodoPago .method .detail .icon { font-size: 35px; color: var(--primario); }
.resumen .cuenta .datos .metodoPago .method .detail .txtDetail { margin-left: 8px; }
.resumen .cuenta .datos .metodoPago .method .detail .txtDetail b { display: block; text-transform: uppercase; }
.resumen .cuenta .datos p {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: var(--negro-transparente);
	margin: 15px 0;
}
.resumen .cuenta .datos .dFlex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.contentHTML { margin: 50px 0; }
.conexionCuenta {
	width: 800px;
	max-width: 98%;
	margin: 0 auto;
}
.conexionCuenta .inputHalfContainer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 8px;
}
.conexionCuenta .inputHalfContainer label {
	width: 50%;
	text-align: left;
	font-weight: bold;
}
.conexionCuenta .inputHalfContainer div { width: 50%; text-align: left; }
.conexionCuenta .inputHalfContainer p { color: var(--terciario); }
.conexionCuenta input[type="radio"] { width: 20px; }
.steps {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.steps li { text-align: center; }
.steps li a { font-size: 12px; text-align: center; }
.steps li a span {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--primario);
	color: var(--primario);
	font-size: 18px;
	border-radius: 50%;
	margin: 5px auto;
	transition: 0.3s all;
}
.steps li a.active span {
	background-color: var(--terciario);
	color: var(--blanco);
}
.steps li a.full span, .steps li a.full.active span, .steps li a:hover > span {
	background-color: var(--primario);
	color: var(--blanco);
}
.continuaTab.center { margin: 20px auto; }
.selectorChart { position: relative; margin-top: 50px; }
.selectorChart a { font-weight: 700; }
.selectorChart ul {
	display: none;
	position: absolute;
	width: 110px;
	list-style: none;
	margin: 0 0 50px;
	padding: 0;
	background-color: #fff;
}
.selectorChart ul li {
	text-align: center;
	padding: 5px;
	border-bottom: 1px solid #000;
}
.graphContainer { width: 100%; height: 300px; }
.graphContainer canvas { width: 100%; height: 100%; }
.graficaContainer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.graficaContainer div.pieGraph {
	min-width: 400px;
	max-width: 400px;
	height: 300px;
}
.graficaContainer div.barrasGraph {
	width: 100%;
	height: 300px;
}
.configuraciones h3 {
    margin-top: 0;
    font-size: 24px;
    line-height: 36px;
    color: var(--secundario);
    padding: 5px;
    border-bottom: 1px solid var(--secundario);
}
.configuraciones input, .configuraciones select { margin: 0; }
.configuraciones .datosPerfil {
    text-align: left;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.configuraciones .datosPerfil b {
    display: block;
    width: 280px;
}
.configuraciones .datosPerfil span {
    display: block;
    width: 100%;
}
.configuraciones .datosPerfil span p { color: var(--terciario); }
.configuraciones .datosPerfil .icon {  display: inline-block; }
.configuraciones .datosPerfil .icon.purple { color: var(--secundario); }
.configuraciones .datosPerfil .icon.green { color: var(--verde); }
.configuraciones .datosPerfil .icon.rojo { color: var(--terciario); }
.configuraciones .datosPerfil .icon.circle:not(:empty) {
    padding-top: 2px;
    box-sizing: border-box;
    border: 1px solid  var(--verde);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
	margin-right: 5px;
}
.configuraciones .dFlex {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}
.configuraciones .dFlex .info {
    width: 50%;
    box-sizing: border-box;
    padding: 10px;
}
.configuraciones .dFlex .conexionCuenta {
    width: 50%;
    box-sizing: border-box;
    padding: 10px;
}
.configuraciones .dFlex .conexionCuenta .datosPerfil b { width: 100%; }
.configuraciones .dFlex .button { margin-top: 30px; }
.symbols {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}
.symbols b {
    display: block;
    margin-bottom: 8px;
}
.symbols b .icon {
    color: var(--primario);
    width: 17px;
    display: inline-block;
}
.symbols b span.verde { color: var(--verde); }
.symbols b span.rojo { color: var(--terciario); }
.symbols b span.rojo .icon { color: var(--terciario); }
.symbols .allowDisabled {
    display: flex;
    align-items: center;
}
.symbols .allowDisabled .button {
    width: 200px;
    margin-right: 8px;
}
.symbols .symbolsList {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row wrap;
}
.symbols .symbolsList .symbol {
    width: 20%;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.symbols .symbolsList .symbol .toggle { margin-right: 5px; }
.symbols .symbolsList .symbol .toggle input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}
.symbols .symbolsList .symbol .toggle input[type=checkbox]:checked + label { background: var(--primario); }
.symbols .symbolsList .symbol .toggle input[type=checkbox]:checked + label:after {
    left: calc(100% - 1px);
    transform: translateX(-100%);
}
.symbols .symbolsList .symbol .toggle label {
    margin-top: -16px;
    cursor: pointer;
    text-indent: -9999px;
    width: 40px;
    height: 20px;
    background: var(--secundario);
    display: block;
    border-radius: 20px;
    position: relative;
}
.symbols .symbolsList .symbol .toggle label:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 18px;
    height: 18px;
    background: var(--blanco);
    border-radius: 20px;
    transition: 0.3s;
}
.symbols .symbolsList .symbol .toggle label:active:after { width: 20px; }
.filtrosHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rightFlex {
    display: flex;
    align-items: center;
}
.rightFlex .filtrosCheck {
    display: flex;
    align-items: center;
}
.rightFlex .filtrosCheck div {
    display: flex;
    align-items: center;
    margin-right: 8px;
}
.rightFlex .filtrosCheck div input { margin-right: 5px; }
.rightFlex .filtrosCheck div label { margin: 0; }
.rightFlex .botonModal { width: 150px; }
.modal h2 {
	width: 100%;
	background-color: var(--primario);
	color: #fff;
	box-sizing: border-box;
	padding: 8px;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.modal { padding-top: 65px; }
.modal .buttonLine {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	box-sizing: border-box;
	margin-top: 10px;
}
.modal .buttonLine .button { margin: 0 5px; }
.configuraciones input[type="radio"] { width: 20px; }
.symbolList { margin-bottom: 15px; }
.mapeo { width: 50%; }
.mapeo .mapa {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mapeo .mapa input {
    margin: 0 5px;
    min-width: 48%;
}
.mapeo .mapa a {
    display: block;
    min-width: 4%;
    text-align: center;
    color: var(--terciario);
}
.graficasMensuales { display: none; }
@media screen and ( max-width: 1050px ) {
	.container.cards .cardList { width: 48%; }
}
@media screen and ( max-width: 920px ) {
	.dFlex { display: block; }
	.halfContent { width: 100%; }
}
@media screen and (max-width: 870px) {
	.sessionMenu .container .menuMobile { display: block; }
	.sessionMenu .container nav {
		display: none;
		width: 100%;
		position: absolute;
		right: 0;
		top: 48px;
		background-color: var(--secundario);
		padding: 15px;
		box-sizing: border-box;
		z-index: 1;
	}
	.sessionMenu .container nav.open { display: block; }
	.sessionMenu .container nav ul { display: block; }
	.sessionMenu .container nav ul li { margin: 15px 12px; text-align: center; }
}
@media screen and (max-width: 800px) {
	.encabezado .info .elemento.desc { display: none; }
}
@media screen and (max-width: 750px) {
	h2 { text-align: center; }
	.brokerList .broker { width: 98%; }
	.encabezado .info { flex-flow: row wrap; }
	.encabezado .info .elemento { width: 50%; }
	.encabezado .button { width: 100%; }
	.planList .plan { width: 98%; }
}
@media screen and (max-width: 720px) {
	.tabs li a { font-size: 18px; line-height: 22px; }
	.estrategiaDetail { columns: 1; width: 100%; }
}
@media screen and ( max-width: 700px ) {
	.container .cardList { flex-flow: row wrap; }
	.container .cardList .cardListContainer { width: 100%; }
	.container .cardList .graphsContainer { width: 100%; }
	.container.cards .cardList { width: 98%; }
}
@media screen and ( max-width : 520px ) {
	.encabezado .info .elemento { width: 100%; }
	.tabs { width: 100%; display: block; }
	.tabs li { width: 100%; margin: 3px 0; }
	.tabs li a { width: 100%; display: block; text-align: center; }
}
@media screen and ( max-width : 480px ) {
	header .buttonSession { width: 214px; }
	header .buttonSession .button { font-size: 14px; line-height: 15px; padding: 8px; }
}