.show_button{
    border-radius: 4px;
    width: 115px;
    padding: 0;
    font-size: 16px;
    height: 55px;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: center;
    color: #fff;
    background: #d9002a;
    font-weight: 700;
    position: absolute;
    right: -114px;
    z-index: 1010;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.show_button:before {
    display: block;
    content: "";
    position: absolute;
    left: -10px;
    top: 14px;
    background: #d9002a;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    transform: rotate(135deg);
    z-index: -1;
}

.show_button:hover{
    opacity: 0.8;
}

@media(max-width: 992px){
    .show_button{
        display:  none !important;
    }
}