.custom-floating-button {
position: fixed;
bottom: 2000px;
left: 20px;
transition: all ease-in-out 2000ms;
}
.custom-floating-button.active {
    position: fixed;
    bottom: 20px;
    left: 20px;
    }
.custom-floating-button a {
    position: relative;
    width: 100px;
    height: 120px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #d22055;
    padding:76px 5px 0 5px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    border: 0px solid #0090c5;
    transition: all .2s cubic-bezier(.25,.46,.45,.94);
    box-shadow: none;
    background: #0090c5;
    font-weight: bold;
    background: url(Gift-box.svg) no-repeat top 10px center;
    background-size: 80%;
}

.custom-floating-button a:hover {
    background-color: #0090c5;
    border-color: #0090c5;
    color: #ffffff;
}
