.catalog_item.stock{
    position: relative;
}
.stick-stock {
    left: -70px;
    top: -20px;
}
.stick-stock {
    background: red;
    color: #fff;
    font-size: 2.5em;
    line-height: 1.1;
    width: 170px;
    height: 50px;
    text-align: center;
    transform: rotate(-20deg);
    border-radius: 10px;
    position: absolute;
    left: -30px;
    text-transform: uppercase;
}
.btn_order{
    display: block;
    text-decoration: none;
    padding: 20px;
    background: linear-gradient(45deg, #fd2c8e, #077bc4);
    color: white;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 12px;
    transition: all .5s;
    &:hover{
        transition: all .5s;
        background: linear-gradient(-45deg, #fd2c8e, #077bc4);
    }
}