/* primary button color */
.btn.btn-primary {
    background-color: #18a234;
    color: #fff;
    border: #18a234 solid 1px;
}

.btn.btn-primary:hover  {
    background-color: #13832a;
    border-color: #13832a;
}

.btn.btn-primary:disabled {
    background-color: rgb(47, 137, 65);
    border-color: rgb(47, 137, 65);
}

.btn.btn-primary:active {
    background-color: rgb(19, 130, 42) !important;
    border-color: rgb(19, 130, 42);
    outline: none !important;
    box-shadow: none !important;
}

.btn.btn-primary:focus {
    background-color: rgb(19, 130, 42) !important;
    border-color: rgb(19, 130, 42);
    outline: none !important;
    box-shadow: none !important;
}

/* input */
.input:focus:not([disabled]),
textarea.text-area:focus:not([disabled]),
.ui-inputtext:focus:not([disabled])
{
    outline: none;
    border: solid 1px  #6ad04e;
    -webkit-box-shadow: 0 0 0 1px #6ad04e;
    box-shadow: 0 0 0 1px #6ad04e;
}

/* link */
a,
a:hover,
.link-color
{
    color: #18a234 !important;
}

a:active
{
    color: rgb(19, 130, 42); !important;
}
