/*
  Created: 15-10-2018
  Edited:  06-02-2019
  Version: 1.01
*/
.button-block 
{
 display: inline-flex;
 justify-content: center;
 align-items: center;
 outline: 0;
 text-decoration: none;
 cursor: pointer;
 border: none;
}

.button-small 
{
 font-size: 0.75rem;
 height: 1.75rem;
 border-radius: 0.1875rem;
 padding: 0 0.5rem;
}

.button-standard 
{
 height: 2.215rem;
 border-radius: 0.1875rem;
 padding: 0 1rem;
}

.button-medium 
{
 height: 2.715rem;
 border-radius: 0.1875rem;
 padding: 0 1rem;
}

.button-large 
{
 height: 3.07225rem;
 border-radius: 0.3125rem;
 padding: 0 1rem;
}

.button-default 
{
 background-color: rgb(109, 110, 113);
 color: #FFF;
}

.button-dark 
{
 background-color: #000;
 color: #FFF;
}

.button-light 
{
 background-color: #FFF;
 color: #000;
}

.button-ok /* green */ 
{
 color: #fff;
 background-color: rgb(14, 93, 48);
}

.button-info /* blue */ 
{
 color: #fff;
 background-color: rgb(0, 130, 199);
}

.button-warning /* orange */ 
{
 color: #fff;
 background-color: rgb(218, 122, 40);
}

.button-hazard /* red */ 
{
 color: #fff;
 background-color: rgb(206, 78, 78);
}