.containerCard {
display: flex;
flex-direction: column;
font-size: 16px;
padding: 1.5625rem 0;
align-items: center;
background-color: #000000;
width: 100%;
max-width: 250px;
box-shadow: 0 0 5px #3ab793;
border-radius: 5px;
margin: 0 5px;
white-space: nowrap;
line-height: 1.25rem;
&:hover {
box-shadow: 0 0 1rem #3ab793;
cursor: pointer;
}
.cardTitle {
display: inline-block;
margin-bottom: 1rem;
font-size: 1.125rem;
}
.cardValue {
align-items: center;
}
}
.containerCardActive {
background-color: #3ab793;
}