/*=========== Button CSS ==========*/









.boxed-btn {
    padding: 13px 30px;
    font-weight: 500;
    @extend %white-color;
    text-align: center;
    font-size: 18px;
    border: none;
    border-radius: 100px;
    position: relative;
    &:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 100px;
        border: 1px solid transparent;
        background: linear-gradient(
                45deg,
                #767676 20%,
                #EA1B1B 100%
            )
            border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
    }
    &:hover {
        @extend %white-color;
        @extend %primary-bg-color;
    }
    i{
        margin-left: 10px;
    }
}



// .complete-btn, .upload-btn {
//     background: #DCF9E9;
//     border: 0;
//     color: #019F50;
//     padding: 3px 8px;
//     border-radius: 100px;
// }
// .upload-btn {
//     background: #FFF7D8;
//     color: #E4B600;
// }