﻿.btn-bgw-txt--red {
    border-radius: 40px;
    border: 1px transparent solid;
    background-color: white;
    text-decoration: none;
    color: var(--color-red-txt--primary);
    font-weight: bold;
}

    .btn-bgw-txt--red:hover {
        color: white;
        border: 1px black solid;
        background-color: var(--color-red-txt--primary);
    }

.btn-bgr-txt--white {
    border-radius: 40px;
    border: 1px transparent solid;
    background-color: var(--color-red-txt--primary);
    text-decoration: none;
    color: white;
    font-weight: 900;
}

    .btn-bgr-txt--white:hover {
        color: var(--color-red-txt--primary);
        border: 1px black solid;
        background-color: white;
    }

.btn-bgw-txt--green {
    background-color: white;
    padding: 15px 30px;
    border-radius: 40px;
    border: 2px solid var(--color-green-whats--primary);
    color: var(--color-green-whats--primary);
}
