.fixed-promo {
    position: fixed;
    right: 0px;
    top: 187px;
    z-index: 20;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 10px;
    max-width: 26px;
    width: 100%;
    height: 65px;
    transition: .6s linear;
    user-select: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
    padding: 10px;
    font-size: 9px;
    line-height: normal;
    color: #fff;
}
.fixed-promo a {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 26px);
    height: 100%;
    z-index: 5;
    pointer-events: none;
}
.end-time {
    display: none;
}
.fixed-promo__icon {
    height: 100%;
    width: 26px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fixed-promo span {
    margin-left: 0;
}
.fixed-promo__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0 0 17px;
}
.fixed-promo svg {
    flex-shrink: 0;
    transition: .3s ease-in-out;
}
.fixed-promo::before,
.fixed-promo::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    transition: .6s linear;
}

.fixed-promo::before {
    background: linear-gradient(134deg, #e00003 0%, #060606 100%);
}
.fixed-promo::after {
    background: linear-gradient(134deg, #e00003 0%, #060606 100%);
    opacity: 0;
}
.fixed-promo.active {
    max-width: 157px;
}
.fixed-promo.active a {
    pointer-events: all;
}
.fixed-promo.active svg {
    transform: rotate(180deg);
}
.fixed-promo.active::before {
    opacity: 0;
}
.fixed-promo.active::after {
    opacity: 1;
}
.fixed-promo__timer,
.fixed-promo__head {
    width: 112px;
}
.fixed-promo__timer {
    display: flex;
    font-size: 18px;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .fixed-promo {
        top: 100px;
    }
}