/* ===================================================================================

* Theme Name: Nerko Child
* Theme URI: https://www.themegenix.net/wp/nerko/
* Author: ThemeGenix
* Author URI: https://themeforest.net/user/themegenix/
* Description: Nerko - NFT Portfolio WordPress Theme
* Version: 1.3
* Template: nerko
* License: GNU General Public License version 3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Tags: one-column, right-sidebar, left-sidebar, custom-menu, featured-images, post-formats, sticky-post, translation-ready

* We encourage you to create Child theme for any modifications you will want to do.

* Why use Child theme?

* Because of future updates we may provide for this theme that will overwrite your
* modifications and all your custom work.

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
* http://wp.tutsplus.com/tutorials/theme-development/child-themes-basics-and-creating-child-themes-in-wordpress/

====================================================================================== */


input.wpcf7-submit {
    user-select: none;
    -moz-user-select: none;
    background: var(--tg-theme-primary) none repeat scroll 0 0;
    border: none;
    @include border-radius(50px);
    color: var(--tg-common-color-white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: var(--tg-fw-bold);
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 0;
    padding: 14px 24px;
    text-align: center;
    text-transform: inherit;
    touch-action: manipulation;
    @include transition(.3s);
    vertical-align: middle;
    white-space: nowrap;
    &:hover {
        background: var(--tg-theme-secondary);
        color: var(--tg-common-color-white);
    }
    & i {
        font-size: 24px;
        line-height: 1;
        margin-left: 8px;
        font-weight: var(--tg-fw-bold);
    }
}
.gradient-btn {
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    &::after {
        content: "";
        position: absolute;
        @include border-radius(50px);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        transition: .3s ease;
        background-color: var(--tg-theme-primary);
        background-image: linear-gradient(25deg, var(--tg-gradient-1), var(--tg-gradient-2));
    }
    &-2 {
        font-size: 18px;
        padding: 21px 40px;
    }
    &:hover {
        &::after {
            opacity: .85;
        }
    }
}
