.cube-pulse{
    position: absolute;
    right: 0;
    left: 0;
    top: -7%;
    bottom: 0;
    margin: auto;
    width: 170px;
    height: 170px;
    border: none;
    box-shadow: 0 0 0 0 rgb(210, 96, 21);
    border-radius: 0%;
    background-color: #d26015;
    background-size:111%;
    background-position:-5px -5px;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}