.primary_btn{
    --padding: 12px 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--accent-clr);
    border-radius: var(--border-radius, 8px);
    padding: var(--padding);

    font-family: "Inter", sans-serif;

    font-size: var(--m-fs);
    font-weight: var(--n-fw);
    color: var(--white-clr);
    line-height: 1;

    cursor: pointer;

    height: fit-content;
    width: fit-content;

    outline: none;
    border: none;

    &.bold{
        font-weight: var(--b-fw);
    }

    &.outline{
        background: #fff;
        border: 1px solid var(--accent-clr);
        color: var(--accent-clr);
    }

    &:hover{
        background-color: var(--accent-lighter-clr);
        &.outline{
            background: var(--accent-clr);
            color: var(--white-clr);
        }
    }

    &:active{
        box-shadow: 0 0 2px var(--accent-clr);
        /*&.outline{
            background: var(--accent-darker-clr);
        }*/
    }

    &[disabled]{
        background-color: var(--grey-clr);
        color: var(--white-clr);
        cursor: not-allowed;
    }
}

.secondary_btn{
    --padding: 12px 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--grey-clr);
    border-radius: var(--border-radius, 8px);
    padding: var(--padding);

    font-family: "Inter", sans-serif;

    font-size: var(--m-fs);
    font-weight: var(--n-fw);
    color: var(--black-clr);
    line-height: 1;

    cursor: pointer;

    height: fit-content;
    width: fit-content;

    outline: none;
    border: none;

    &.bold{
        font-weight: var(--b-fw);
    }

    &.outline{
        background: #fff;
        border: 1px solid var(--grey-clr);
        color: var(--black-clr);
    }

    &:hover{
        background-color: var(--accent-lighter-clr);
        &.outline{
            background: #f1f1f1;
        }
    }

    &:active{
        box-shadow: 0 0 2px var(--accent-clr);
        /*&.outline{
            background: var(--accent-darker-clr);
        }*/
    }

    &[disabled]{
        background-color: var(--grey-clr);
        color: var(--white-clr);
        cursor: not-allowed;
    }
}