:root {
    --color-nice-blue       : #0f70af;
    --color-pale-olive-green: #a3cb93;
    --color-blue-grey       : #6b95b0;
    --color-light-grey-green: #afd69e;
    --color-light-grey      : #d9edd1;
    --color-turtle-green    : #6db74e;
    --color-faded-red       : #de444b;
    --color-white           : #ffffff;
    --color-steel           : #738896;
    --color-twilight-blue   : #084e7c;
    --color-box-shadow      : rgba(145, 147, 160, 0.25);
    --color-soft-olive-green: #ebf6e7;

    --font-300: 'Poppins-Light', sans-serif;
    --font-400: 'Poppins-Regular', sans-serif;
    --font-500: 'Poppins-Medium', sans-serif;
    --font-600: 'Poppins-SemiBold', sans-serif;
    --font-700: 'Poppins-Bold', sans-serif;
}

.custom-button {
    background-color: var(--color-turtle-green);
    text-decoration: none;
    color: var(--color-white);
    font-size: inherit;
    font-family: var(--font-500);
    font-weight: normal;
    border-radius: 30px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 4px 32px;
    border: none;
}

.custom-button.custom-button--text {
    background-color: var(--color-white);
    color: var(--color-turtle-green);
    min-height: initial;
    padding: 4px 8px;
}
.custom-button.custom-button--flat {
    background-color: transparent;
    color: var(--color-turtle-green);
    padding: 4px 12px;
}
.custom-button:disabled,
.custom-button.custom-button--outline {
    background-color: var(--color-white);
    color: var(--color-turtle-green);
    border: 1px solid var(--color-turtle-green);
}

.custom-button-filter{
    text-decoration: none;
    font-size: 14px;
    font-family: var(--font-500);
    font-weight: bold;
    letter-spacing: 0.5px !important;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 4px 18px;
    background-color: var(--color-white);
    color: var(--color-turtle-green);
    border: 1px solid var(--color-light-grey);
    min-height: 35px;
}

.custom-button:hover,
.custom-button:focus {
    box-shadow: 0 4px 15px var(--color-pale-olive-green);
}
.custom-button:disabled:hover,
.custom-button:disabled:focus {
    box-shadow: none;
    opacity: 1;
    cursor: not-allowed;
}
.custom-button--outline:hover,
.custom-button--outline:focus {
    box-shadow: 0 5px 10px var(--color-light-grey);
}
.custom-button--text:hover,
.custom-button--text:focus,
.custom-button--flat:hover,
.custom-button--flat:focus {
    box-shadow: none;
    opacity: 0.8;
}

/* FORCED STYLE */
a.custom-button:hover {
    color: var(--color-white);
    text-decoration: none;
}
a.custom-button.custom-button--text:hover,
a.custom-button.custom-button--flat:hover,
a.custom-button.custom-button--outline:hover {
    color: var(--color-turtle-green);
}
