.btn{
    color: #fff;
    background: #ed1c24;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    font-weight: 100;
    text-transform: capitalize;
    border-radius: 0;
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.btn:focus{ color: #fff; }
.btn:hover{
    color: #fff;
    background: #ed1c24;
    border: none;
    box-shadow: 0 0 5px #5B86E5;
}
.btn i{
    margin-left: 5px;
    transition: all 1s ease 0s;
}
.btn:hover i{ transform: rotate(360deg); }
.btn:before{
    content: '';
    background: #5B86E5) right;
    height: 100%;
    width: 20%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    transition: all 0.3s ease 0s
}
.btn:hover:before{ width: 100%; }
@media only screen and (max-width: 767px){
    .btn{ margin-bottom: 20px; }
}