.bonus-wrapper {
    padding: 0 10px;
}

.bonus {
    background-image: url(../../images/bonus.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 220px;
    padding: 30px;
    border-radius: 23px;
    margin-top: 80px;

    box-shadow: 0px -40px 60px -30px #ff361e;
}

.bonus-gift {
    display: flex;
    width: 72px;
    height: 72px;
    margin: -75px auto 0 auto;
}

.bonus-title {
    font-weight: 300;
    font-size: 34px;
    line-height: 106%;
    width: 67%;
    font-family: 'Steelfish';
    text-transform: uppercase;
    color: #fff;
}

.bonus-subTitle {
    font-weight: 600;
    font-size: 14px;
    line-height: 179%;
    text-transform: uppercase;
    color: #fff;
}

.bonus-text {
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 129%;
    color: #fff;
}

.bonus-gift {
    animation: shake 2s ease-in-out infinite;
}

@media(max-width: 400px) {
    .bonus-title {
        font-size: 30px;
        line-height: 106%;
    }

    .bonus-subTitle {
        font-weight: 700;
        font-size: 12px;
        line-height: 179%;
        padding-bottom: 7px;
    }

    .bonus-text {
        font-weight: 500;
        font-size: 12px;
        line-height: 129%;
    }
}

@media(max-width: 380px) {
    .bonus-title{
        font-size: 28px;
    }
    .bonus-text{
        font-size: 12px;
    }

    .bonus{
        min-height: 205px;
    }
}

@keyframes shake {

    0%,
    10%,
    100% {
        transform: translate(0, 0);
    }

    15% {
        transform: translate(-1px, 0);
    }

    20% {
        transform: translate(1px, 0);
    }

    25% {
        transform: translate(-1px, 0);
    }

    30% {
        transform: translate(1px, 0);
    }

    35% {
        transform: translate(-1px, 0);
    }

    40% {
        transform: translate(1px, 0);
    }

    45% {
        transform: translate(0, 0);
    }
}