/* ========================================
   Widget Menu - Menu rapide
   ======================================== */

.widget-menu {
    position: fixed;
    right: 0;
    top: 130px;
    z-index: 1000;
}

.widget-menu__container {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.widget-menu__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #4a5d09;
    transition: background-color 0.3s ease;
    text-decoration: none;
    width: 40px;
    height: 40px;
}

.widget-menu__item:hover,
.widget-menu__item:focus {
    background-color: #dcdc01;
}

.widget-menu__icon {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.widget-menu__text.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
    .widget-menu {

        top: 50%;
        transform: translateY(-50%);

    }

}