body {
    font-family: 'Manrope', sans-serif;
}

.btn {
    display: flex;
    flex-direction: column;
}

.btn__div {
    display: flex;
    justify-content: center;
}

.btn__div-hidden {
    visibility: hidden;
    height: 0;
}

.btn__text-wrapper_hidden {
    visibility: hidden;
}

.btn__div-hidden .btn__text-wrapper {
    max-width: 100%;
}

.btn.onHover .btn__text-wrapper_hidden {
    max-width: 100%;
}

.btn__picto {
    background: #DBE7EB;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn__text-wrapper {
    height: 100%;
    width: fit-content;
    min-width: 0;
    overflow: hidden;
    transition: .8s;
    max-width: 0;
}

.btn__text {
    background: #FFFFFF;
    color: #000000;
    padding: 8px 10px;
    font-size: 16px;
    line-height: 24px; 
    letter-spacing: 0.32px;
    font-weight: 400;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.btn.onHover .btn__text-wrapper {
    transition: .8s;
    cursor: pointer;
    max-width: 100%;
}