@keyframes btn-pisca {
    0% { opacity: 0; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.btn-pisca {
    /*background-color:#ce300c;*/
    /*color:#fff;*/
    /*padding: 0.6em 0.8em;*/
    display: inline-block;
    text-decoration: none;
    /*border-radius: 4px;*/
    -webkit-animation: btn-pisca .9s linear infinite;
    -moz-animation: btn-pisca .9s linear infinite;
    -ms-animation: btn-pisca .9s linear infinite;
    -o-animation: btn-pisca .9s linear infinite;
    animation: btn-pisca .9s linear infinite;
}

/* Definir o elemento que irá piscar */
.elemento-piscando {
    animation: piscar 1s infinite;
}

/* Definir a animação */
@keyframes piscar {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}


/*.page-wrapper .page-body-wrapper .page-body {*/
/*    min-height: calc(100vh - 95px);*/
/*    margin-top: 0px;*/
/*    padding: 0 30px;*/
/*    position: relative;*/
/*    background-color: #fdfeff;*/
/*    margin-left: 0px;*/
/*    -webkit-transition: .6s;*/
/*    transition: .6s;*/
/*    -webkit-animation: pagebody 1000ms ease-in-out;*/
/*    animation: pagebody 1000ms ease-in-out;*/
/*}*/



.float{
    transition: .5s, color .10s;
    -webkit-transition: .5s, color .10s;
    -moz-transition: .5s, color .10s;
}
.float:hover{
    box-shadow: 0 8px 8px 0 rgba(101, 44, 174, 0.78),0 8px 8px 0 rgba(117, 73, 171, 0.08);
    transform: translate(0px,5px);
    -webkit-transform: translate(0px,5px);
    -moz-transform:translate(0px,5px);
}

.float-banner {
    position: absolute;
    left: 16%;
    width: 200px;
    height: 200px;
    margin-top: 38px;
    margin-left: -200px;
}
