I'm looking to achieve a specific layout change when checking a checkbox, but I've run into an issue. Currently, the top portion of the content folds up while the bottom remains static. However, my goal is to have the opposite effect where the top part stays fixed and the folding starts from the bottom. Can anyone provide guidance on how to make this adjustment?
Below is the CSS code being used:
.home.payment.cyber .ade #ignore > div {
max-height: 340px;
transition: all .5s linear;
overflow: hidden;
opacity: 1;
}
.home.payment.cyber .ade #ignore #ignore_child.fold_transition {
max-height: 5px;
transition: all .5s linear;
opacity: 0;
}