.shortcut-panel-wr {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-inline: auto;
    padding: 20px 12px
}

@media(min-width:712px) {
    .shortcut-panel-wr {
        display: flex;
        flex-direction: row;
        gap: 4px;
        padding: 20px 32px
    }
}

@media(min-width:1280px) {
    .shortcut-panel-wr {
        position: absolute;
        top: 84px;
        right: 32px;
        width: min(100%, 282px);
        padding: 0
    }
}

@media(min-width:1580px) {
    .shortcut-panel-wr {
        top: 84px;
        width: min(100%, 320px);
        right: calc(50% - 640px)
    }
}

.shortcut-panel {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%
}

@media(min-width:712px) {
    .shortcut-panel {
        width: 100%
    }
}

@media(min-width:1280px) {
    .shortcut-panel {
        flex-direction: column;
        gap: 16px;
        width: 100%
    }
}

.shortcut-panel__item {
    z-index: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 72px;
    border-radius: 8px;
    padding: 4px 8px 8px;
    background-color: #312d2b;
    overflow: hidden
}

.shortcut-panel__item:before {
    z-index: -1;
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    filter: blur(30px);
    transform: translate(-50%, -50%)
}

@media(min-width:1280px) {
    .shortcut-panel__item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        height: 106px;
        padding: 12px 24px 10px 37px;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px)
    }

    .shortcut-panel__item:before {
        top: unset;
        width: 214px;
        height: 150px;
        bottom: -150px
    }
}

@media(min-width:1580px) {
    .shortcut-panel__item {
        height: 116px;
        padding: 12px 24px 10px 61px
    }
}

.shortcut-panel__item-promo:before {
    background: #cc3743
}

@media(min-width:1280px) {
    .shortcut-panel__item-promo {
        border-bottom: 2px solid #cc3743;
        background: rgba(49, 45, 43, .5)
    }

    .shortcut-panel__item-promo:before {
        background: rgba(204, 55, 67, .4);
        transition: all .3s ease-in-out
    }

    .shortcut-panel__item-promo:hover:before {
        background: rgba(204, 55, 67, .7)
    }
}

.shortcut-panel__item-vip-club:before {
    background: #e3c544
}

@media(min-width:1280px) {
    .shortcut-panel__item-vip-club {
        background: rgba(49, 45, 43, .5);
        border-bottom: 2px solid #e3c544
    }

    .shortcut-panel__item-vip-club:before {
        background: rgba(227, 197, 68, .4);
        transition: all .3s ease-in-out
    }

    .shortcut-panel__item-vip-club:hover:before {
        background: rgba(227, 197, 68, .7);
        transition: all .3s ease-in-out
    }
}

.shortcut-panel__item-bonuses:before {
    background: #9635ff
}

@media(min-width:1280px) {
    .shortcut-panel__item-bonuses {
        background: rgba(49, 45, 43, .5);
        border-bottom: 2px solid #9635ff
    }

    .shortcut-panel__item-bonuses:before {
        background: rgba(150, 53, 255, .4);
        transition: all .3s ease-in-out
    }

    .shortcut-panel__item-bonuses:hover:before {
        background: rgba(150, 53, 255, .7)
    }
}

.shortcut-panel__image-wr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    animation: moveUp .6s ease-in-out .1s infinite alternate;
    transition: all .3s ease-in-out
}

@media(min-width:1280px) {
    .no-touch .shortcut-panel__item:hover .shortcut-panel__image-wr {
        transform: translateY(-10px)
    }
}

@media(min-width:1280px) {
    .shortcut-panel__image-wr {
        width: 72px;
        height: 72px;
        animation: none
    }
}

@keyframes moveUp {
    to {
        transform: translateY(-3px)
    }
}

.shortcut-panel__image {
    width: 100%;
    height: auto
}

.shortcut-panel__title {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: #fff
}

@media(min-width:1280px) {
    .shortcut-panel__title {
        font-size: 20px;
        line-height: 24px
    }
}