

#cuota-home {
	margin-top: 0px;
}

#cuota-home .size-5 {
	width: 1.25rem;
	height: 1.25rem;
}

#cuota-home ul li {
	list-style: none;
}

#cuota-home #list-template li:first-child {
	display: block;
	width: 100%;
}

#cuota-home #list-template li:not(:first-child) {
  display: block;
	position: relative;
	width: 100%;
  padding: 1rem 0;
}

#cuota-home #list-template li:not(:first-child):not(:last-child) {
	border-bottom: 1px var(--color-blue-50) solid;
}

#cuota-home .afp-share-detail-skeleton{
	min-height: 64px;
	min-width: 166px;
	display: block;
	border-radius: 20px;
}

#cuota-home .afp-chart-skeleton {
	height: 350px;
	width: 100%;
	border-radius: 20px;
}

@keyframes move-bg {
	to {
		background-position: var(--bg-size) 0;
	}
}

#cuota-home .skeleton {
	--bg-size: 400%;
	--color-one: #E5E7EB;
	--color-two: #F9FAFB;
	background: linear-gradient(
		90deg,
		var(--color-one),
		var(--color-two),
		var(--color-one)
	)
		0 0 / var(--bg-size) 100%;
	animation: move-bg 4s linear infinite;
}

#cuota-home .fund-tab-small {
	user-select: none;
}

#cuota-home .funds-group label {
	cursor: pointer;
	line-height: var(--lh-font-help);
}

#cuota-home input[type="checkbox"]:focus-visible + label {
	outline: 1px solid var(--color-black); 
}

#cuota-home #fund-a-up,
#cuota-home #fund-a-down {
	color: var(--color-fund-a);
}

#cuota-home #fund-b-up,
#cuota-home #fund-b-down {
	color: var(--color-fund-b);
}

#cuota-home #fund-c-up,
#cuota-home #fund-c-down {
	color: var(--color-fund-c);
}

#cuota-home #fund-d-up,
#cuota-home #fund-d-down {
	color: var(--color-fund-d);
}

#cuota-home #fund-e-up,
#cuota-home #fund-e-down {
	color: var(--color-fund-e);
}

#cuota-home #btnShowMore:hover,
#cuota-home #btnDetails:hover,
#cuota-home #close-chart:hover {
	box-shadow: none;
}

#cuota-home hr {
	border: 1px var(--color-blue-50) solid;
}

#cuota-home #container-chart {
	height: 350px;
	width: 100%;
}

@media (min-width: 768px) { 
	#cuota-home {
		margin-top: -50px;
	}
	
	#cuota-home #list-template li:not(:first-child) {
		display: inline-block;
	}
}

@media (min-width: 992px) { 
	#cuota-home #list-template li:not(:first-child) {
    /* display: flex; */
	}
	
	#cuota-home #list-template li:not(:first-child):not(:last-child) {
		border-bottom: none;
	}
	
	#cuota-home #list-template li:not(:first-child):not(:last-child)::after {
		content: "";
		width: 3px;
		right: 0;
		height: 18px;
		background-color: #E2E2E2;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
	}
}

@media (min-width: 768px) and (max-width: 1399px) {
	#cuota-home #list-template {
		flex-wrap: wrap;
	}
	
	#cuota-home #list-template li:first-child {
		flex-basis: 100%;
	}
	
	#cuota-home #list-template li:not(:first-child) {
		flex: 1;
		min-width: 135px;
	}
	
	#cuota-home #list-template li:not(:first-child):not(:last-child) {
		border-bottom: none;
	}
}