.btn {
    cursor: pointer;
    color: $black;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 22px;
    display: inline-block;
    span {
        padding-top: 2px;
    }
    &.btn--round {
        min-width: 160px;
        border-radius: 23px;
        padding: 12px 30px;
        background: $black;
        color: $white;
        @media(max-width: $mobile) {
            margin-top: 20px;
        }
        &.btn--green {
            min-width: 110px;
            display: inline-flex;
            justify-content: center;
            transition: all .3s;
            background-color: $green;
            color: $white;
            position: relative;
            overflow: hidden;
            span {
                position: relative;
            }
        }
    }
    &.btn--green {
        color: $green;
        font-weight: bold;
        font-family: $poppins;
    }
    &.btn--mobile-round {
        @media(max-width: $mobile) {
            min-width: 110px;
            border-radius: 23px;
            padding: 12px 14px;
            background: $green;
            color: $white;
            text-align: center;
        }
    }
    &.btn--nav {
        //padding-bottom: 40px;
        &.btn--dropdown {
            padding-bottom: 0;
            font-family: $lato;
            font-size: 17px;
            font-weight: 300;
            line-height: 24px;
        }
    }
    &.btn--border {
        background: $white;
        color: $black;
        border: 1px solid $black;
        position: relative;
        &.btn--input {
            border: 0;
            padding: 0;
            label {
                background: $white;
                color: $black;
                border: 1px solid $black;
                position: relative;
                padding: 12px 14px 11px;
                border-radius: 23px;
                width: 100%;
                display: block;
                font-size: 12px;
                transition: all .3s;
            }
            input {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                margin: 0;
                z-index: 10;
                cursor: pointer;
                // &:checked + label {
                //     color: $black;
                //     border-color: $black;
                // }
            }
            &:hover {
                label {
                    color: $green;
                    border-color: $black;
                }
            }
        }
    }
    &.btn--enter {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    &.btn--filter {
        margin-bottom: 30px;
        display: none;
        @media(max-width: $mobile) {
            display: inline-block;
        }
    }
    &.btn--search {
        position: relative;
        z-index: 10;
        @media(max-width: 900px) {
            padding: 13px 10px;
        }
        svg {
            display: block;
            position: relative;
            z-index: 1;
            path {
                transition: all .3s;
            }
        }
        &:after {
            transition: all .3s;
            content: "";
            display: block;
            border-radius: 50%;
            background: $green;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
        }
        &:hover {
            svg {
                path {
                    fill: $white;
                }
            }
            &:after {
                width: 46px;
                height: 46px;
            }
        }
    }
}