@use "../../../../styles/abstracts/variables";

.link__button{
    background: transparent;
    border-radius: 10px;
    padding: .85rem 1.7rem;
    color: variables.$col-primary-btn;
    font-family: variables.$font;
    font-weight: 600;
    font-size: .98rem;
    display: flex;
    align-items: center;
    border: 1px solid variables.$col-primary-btn;
}

.link__button__primary{
    @extend .link__button;
    background: variables.$col-primary-btn;
    color: #000;
}

.link__button__dark{
    @extend .link__button;
    background: variables.$col-dark;
    color: #000;
}