.icon-menu {
    position: fixed;
    min-height: 100%;
    max-height: 100%;
    border-radius: 0;
    width: 105px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 5px;
    border: 0 solid red;
    overflow-y: scroll;
    animation-name: icon_menu_shift;
    animation-duration: 4s;
    right: 0;
}

.icon-menu::-webkit-scrollbar {
    display: none;
}

.icon-menu.closed-icon-menu {
    animation-name: icon_menu_shift_reverse;
    animation-duration: 4s;
    right: -105px;
}

@keyframes icon_menu_shift {
    0% {
        right: -105px;
    }
    100% {
        right: 0;
    }
}

@keyframes icon_menu_shift_reverse {
    0% {
        right: 0;
    }
    100% {
        right: -105px;
    }
}

.icon-menu-trigger {
    width: 20px;
    position: fixed;
    top: 20%;
    right: 105px;
    border: 2px dotted #000000;
    border-right: 0 solid rgba(253, 183, 19, 0.5);
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    text-align: center;
    background: #fdb713;
    color: #000000;
    animation-name: icon_menu_trigger_shift;
    animation-duration: 4s;
    z-index: 1000;
}

.icon-menu-trigger.closed-icon-menu-trigger {
    right: 0;
    animation-name: icon_menu_trigger_shift_reverse;
    animation-duration: 4s;
}

@keyframes icon_menu_trigger_shift {
    0% {
        right: 0;
    }
    100% {
        right: 105px;
    }
}

@keyframes icon_menu_trigger_shift_reverse {
    0% {
        right: 105px;
    }
    100% {
        right: 0;
    }
}

.icon-menu-trigger .trigger-label {
    width: 100%;
    display: block;
}

.icon-menu-trigger .trigger-label.hide {
    display: none;
}

.menu-group {
    border: 2px dotted transparent;
    padding: 0 10px 0 10px;
    width: 95px;
    border-radius: 10px;
    align-items: center;

    margin-top: 10px;
    margin-bottom: 10px;
}

.menu-group.dotted {
    border: 2px dotted #fdb713;
}

.menu-group .title {
    border-radius: 10px 10px 0 0;
    background: black;
    text-align: center;
    color: white;
    width: 91px;
    margin-left: -10px;
}

.menu-item {
    margin: 5px 0 5px 0;
}

.menu-item a {
    text-decoration: none;
}

.menu-item-icon {
    background: #000000;
    border: 1px solid #fdb713;
    box-shadow: 0 0 7px 0.5px #fdb713;
    border-radius: 5px;
    width: 70px;
    height: 55px;
}

.menu-item-icon.inverted {
    background: #fdb713;
    border: 1px solid #000000;
}

.menu-item-icon.discount {
    background: #000000;
    border: 1px solid #FF0000;
}


.menu-item-icon.active {
    border: 1px solid #FFFFFF;
    box-shadow: 0 0 7px 0.5px #FFFFFF;
}

.menu-item-icon img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.menu-item-icon .default-logo-svg {
    width: 80%;
    height: 80%;
    margin: 5% 10% 15% 10%;
}

.menu-item-icon .logo-svg {
    width: 60%;
    height: 60%;
    margin: 15% 20% 25% 20%;
}

.menu-item-tag {
    position: relative;
    border: 2px solid #fdb713;
    background: black;
    padding: 2px;
    width: 87px;
    left: -8px;
    align-items: center;
    text-align: center;
    margin-top: -6px;
    font-weight: 700;
    font-size: 10px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.menu-item-tag.inverted {
    background: #fdb713;
    border: 2px solid #000000;
    color: #000000;
}

.menu-item-tag.discount {
    background: #FF0000;
    border: 2px solid #000000;
    color: #000000;
}


.menu-item-tag.active {
    background: #fdb713;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 7px 0.5px #FFFFFF;
    color: #000000;
    cursor: default;
}

.menu-item-tag.inverted.active {
    background: #000000;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 7px 0.5px #FFFFFF;
    color: #FFFFFF;
    cursor: default;
}

.icon-menu-trigger:hover {
    background: #000000;
    border-color: #fdb713;
    color: #FFFFFF;
}

.menu-item:hover .menu-item-icon {
    border: 1px solid #FFFFFF;
    box-shadow: 0 0 7px 0.5px #FFFFFF;
}

.menu-item:hover .menu-item-tag {
    background: #fdb713;
    color: #000000;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 7px 0.5px #FFFFFF;
}

.menu-item:hover .menu-item-tag.inverted {
    color: white;
    background: #000000;
}