.red-btn {
    background-image: linear-gradient(180deg, #e44545 40%, #982e2e) !important;
}

.green-btn {
    background-image: linear-gradient(180deg, #5cc536 40%, #3e9219) !important;
}

.blue-btn {
    background-image: linear-gradient(180deg, #4572e4 40%, #2e4c98);
}


.colorfull-btn {
    background-image: linear-gradient(180deg, #4572e4 40%, #2e4c98);
    align-items: center;
    border: 0;
    border-radius: 6px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-family: poppins, sans-serif;
    font-size: 10px;
    font-weight: 700;
    height: 30px;
    justify-content: center;
    letter-spacing: .4px;
    line-height: 1;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    /* padding-top: 3px; */
    text-decoration: none;
    text-transform: uppercase;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

@media screen and (max-width: 991px) {
    
    .colorfull-btn {
        font-size: 15px;
        height: 50px;
    }

    .colorfull-btn {
        line-height: 50px;
    }
}

.colorfull-btn {
    transition: all 200ms;
}


/* button common animations */

/* button:not(.nav-link),
input[type=submit] {
    border-radius: 11px !important;
} */

button:not(.nav-link):active,
input[type=submit]:active,
.colorfull-btn:active {
    outline: 0;
    transform: scale(.9);
    opacity: .75;
}




