.promocodes .body_bg {
    background: linear-gradient(rgba(5, 22, 46, 0.4), rgba(0, 0, 0, 0.4)), url(/img/pcode/bg/bg_promus.webp?v=2) no-repeat;
    background-attachment: fixed; 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
}

.promocodes .sticker::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.25) 50%);
    border-bottom-right-radius: 10px;
    pointer-events: none;
    z-index: 1;
    transition: var(--base-transition);
}
.promocodes .sticker::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 23px;
    height: 23px;
    background: transparent;
    border-top-left-radius: 10px;
    box-shadow: -3px -3px 6px rgba(0, 0, 0, 0.28);
    pointer-events: none;
    transition: var(--base-transition);
}
#body .promocodes .sticker:hover {
    box-shadow: none !important;
}
.promocodes .sticker:hover::before {
    width: 25px;
    height: 25px;
}
.promocodes .sticker:hover::after {
    width: 28px;
    height: 28px;
}