@use "../abstracts" as vars;
@use "sass:color";

button {
    border: none;
    outline: none;
    cursor: pointer;
}

.theme__btn {
    position: relative;
    padding: 20px 34px;
    background-color: vars.$color-primary;
    color: vars.$color-white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: vars.$font-family-base;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2%;
    text-align: right;
    text-transform: uppercase;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;

    @media (max-width: 1399px) {
        padding: 15px 25px;
        font-size: 14px;
    }



    &-text {
        position: relative;
        z-index: 2;
    }

    i {
        position: relative;
        z-index: 2;
    }

    &-shape {
        position: absolute;
        top: -6px;
        right: 0;
        z-index: 0;
    }


    &:hover {
        background-color: vars.$color-secondary;
        color: vars.$color-white;
        text-decoration: none;
    }
}