.button-tooltip {
    position: relative;
    padding: 1rem;
    border: none;
}
.button-tooltip > .tooltip-area {
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    width: 100%;
    border-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    max-height: 0;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    background-color: inherit;
    overflow: hidden;
    padding: 0rem 2rem;
    font-weight: 400;
    backdrop-filter: brightness(0.85);
}

.button-tooltip:hover > .tooltip-area {
    max-height: 250px;
    padding: 1rem 2rem;
}
.button-tooltip.primary > .tooltip-area {
    background-color: #00433D;
}
.button-tooltip.secondary > .tooltip-area {
    background-color: #66590B;
}
.button-tooltip.inter2 > .tooltip-area {
    background-color: #42640E;
}