/* Botão submit cor verde */
input.button
{
    border-radius: 15px;   /* para funcionar no Firefox*/
    -webkit-border-radius: 15px;   /* para funcionar no Chrome ou no Safari */
    font-size: 8pt !important;
    font-weight: 700 !important;
    font-family: 'Open Sans' !important;
    height: 32px;
    margin-left: 2px!important;
    text-transform: uppercase;
    cursor: pointer;
    padding-left: 15px;
    padding-right: 15px;
    outline: none;
}

input.button:disabled{
    background: #e6edf2 !important;
    border: 2px solid #c4cdd6 !important;
    color: #c4cdd6 !important;
    cursor: not-allowed !important;
}

/* Botão cor verde */
input.button-green{
    color: #319144;
    border: 2px solid #319144;
    background: #FFFFFF;
}

input.button-green:hover {
    border: 2px solid #157629;
    color: #157629;
}

input.button-green:active {
    border: 2px solid #157629;
    color: #272E31;
}

/* Botão cor padrão (borda cinza e letra preta) */
input.button-default{
    color: #272e31;
    border: 2px solid #c4cdd6;
    background: #FFFFFF;
}

input.button-default:hover {
    border: 2px solid #A0b3c6;
}

input.button-default:active {
    border: 2px solid #4580ab;
}

/* Botão cor vermelho */
input.button-red{
    color: #DE4F4F;
    border: 2px solid #DE4F4F;
    background: #FFFFFF;
}

input.button-red:hover {
    border: 2px solid #AE4040;
    color: #AE4040;
}

input.button-red:active {
    border: 2px solid #AE4040;
    color: #272E31;
}

/* Botão cor azul escuro */
input.button-dark-blue{
    color: #4580ab;
    border: 2px solid #4580ab;
    background: #144466;
}

input.button-dark-blue:hover {
    border: 2px solid #319144;
    color: #319144;
}

input.button-dark-blue:active {
    border: 2px solid #319144;
    color: #272E31;
}

/* Botão com estilo menor */
input.button-clean-filter {
    border-radius: 15px;   /* para funcionar no Firefox*/
    -webkit-border-radius: 15px;   /* para funcionar no Chrome ou no Safari */
    border: 2px solid #c4cdd6;
    background: #FFFFFF;
    font-size: 7pt;
    font-weight: 700;
    font-family: 'Open Sans';
    color: #272e31;
    height: 24px;
    margin-left: 2px;
    text-transform: uppercase;
    cursor: pointer;
    padding-left: 8px;
    padding-right: 8px;
    outline: none;
}

input.button-clean-filter:hover {
    border: 2px solid #8A9AA8;
    color: #272E31;
}

input.button-clean-filter:active {
    border: 2px solid #C4CDD6;
    color: #272E31;
}

input.button-clean-filter:disabled{
    background: #ffffff;
    border: 2px solid #E6EDF2;
    color: #E6EDF2;
    cursor: not-allowed;
}
