/*

    Buttons for What if Website
    
*/

.whatif-btn {
    border-radius: 10px;
    display: inline-block;
    justify-content: center;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 30px;
    font-weight: 600;
    border: 0px;
}

.whatif-btn-thin {
    line-height: 25px;
}


/* 
    Different Colours
*/
.whatif-btn-orange {
    background-color: rgb(225,147,0,1);
    color: white;
}

.whatif-btn-orange:hover {
    background-color: #ff9300;
    color: white;
}

/*#region Red*/

    .whatif-btn-red {
        background-color: rgb(217, 14, 7, 0.7);
        color: white;
    }

    .whatif-btn-red:hover {
        background-color: rgb(217, 14, 7);
        color: white;
    }

    .whatif-btn-red-outline {
        background-color: white;
        color: rgb(217, 14, 7, 0.7);
        border: 2px solid;
        border-color: rgb(217, 14, 7, 0.7);
    }

    .whatif-btn-red-outline:hover {
        background-color: rgb(217, 14, 7);
        color: white;
        border: 2px solid;
        border-color: rgb(217, 14, 7);
    }

/*#endregion*/




.whatif-btn-blue {
    background-color: rgb(0, 158, 255, 0.7);
    color: white;
}

.whatif-btn-blue:hover {
    background-color: rgb(0, 158, 255);
    color: white;
}



.whatif-btn-grey-outline {
    background-color: white;
    color: rgb(113, 113, 113);
    border: 2px solid;
    border-color: rgb(113, 113, 113);
}

.whatif-btn-grey-outline:hover {
    background-color: rgb(113, 113, 113);
    color: white
}




.whatif-btn-white-outline {
    background-color: rgb(0,0,0,0);
    color: white;
    border: 2px solid;
    border-color: white;
}

.whatif-btn-white-outline:hover {
    background-color: white;
    color: rgb(113, 113, 113);
    border: 2px solid;
    border-color: rgb(113, 113, 113);
}