#atalhosLaterais {
    position: fixed;
    right: 10px;
    z-index: 2;
    top: 41%;
    transform: translateY(-50%);

    #listaDeBotoes {
        list-style: none;
        margin: 0;
        padding: 0;

        li {
            display: flex;
            flex-direction: row-reverse;
            justify-content: space-between;
            width: 40px;
            height: 40px;

            border-radius: 8px;
            text-align: center;

            transition: calc(2*var(--delay-default)) ease;
            cursor: pointer;

            &:hover {
                width: 220px;

                #btnAsideCriciumaMais {
                    width: 100%;
                }
            }


            &#btnAsideCriciumaMais {

                button {
                    all: unset;

                    display: flex;
                    align-items: center;

                    position: relative;

                    width: 40px;
                    height: 40px;

                    padding-inline: 5px;
                    border-radius: 8px;

                    cursor: pointer;
                    background-color: white;
                    box-sizing: border-box;
                    box-shadow: 0px 0px 2px 1px #00000011;

                    &:disabled {
                        background-color: #e9ecef;
                    }

                    img {
                        object-fit: cover;
                        width: 100%;
                        pointer-events: none;
                    }
                }

                .texto-criciuma-mais-aside {
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    position: absolute;
                    z-index: -1;
                    left: 0;

                    width: 40px;
                    height: 40px;

                    border-radius: 8px;
                    text-wrap-mode: nowrap;
                    font-weight: 500;
                    background-color: white;
                    overflow: hidden;
                    transition: calc(2*var(--delay-default)) ease;
                    box-shadow: 0px 0px 2px 1px #00000024;

                    img {
                        width: 30px;
                        height: 30px;
                    }

                }

                &:hover .texto-criciuma-mais-aside {
                    width: 170px;
                }
            }
        }
    }
}