.quick__navigation {
    display: none;
    position: absolute;
    right: 1em;
    top: 5.1em;
}

.quick__navigation-menu {
    display: flex;
    flex-direction: column;
    /* grid-template-columns: repeat(3, 33.3%); */
    /* width: 100%;
    height: 100%; */
    /* align-self: center; */
    align-items: center;
    position: relative;
    box-sizing: border-box;
    justify-content: center;
    /* margin: 0 50%; */
    z-index: 9999;
    background-color: #fff;
    border-radius: 6.7px;
}

/* .quick__navigation__menu-link {
    width: 300px;
} */

.quick__navigation__link {
    display: flex;
    /* width: 259px; */
    padding: 0px 11px 0px 15px;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    opacity: 0.6;
    background: linear-gradient(92deg, rgba(255, 255, 255, 0.08) 3.84%, rgba(255, 255, 255, 0.00) 248.69%);
    backdrop-filter: blur(20px);
    cursor: pointer;
}

.quick__navigation__link:hover {
    border-radius: 10px;
    background: linear-gradient(92deg, rgba(255, 255, 255, 0.20) 3.84%, rgba(255, 255, 255, 0.00) 248.69%), rgba(40, 184, 16, 0.05);
    backdrop-filter: blur(20px);
}

.quick__navigation__icon {
    display: flex;
    width: 18.001px;
    height: 18px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.quick__navigation__text {
    display: flex;
    width: 180px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* @keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    animation: fadeOut 0.5s ease-in-out forwards;
} */