/* light primary buttons */
.btn-light-primary {
    background: #FF4713;
    border-radius: 5px;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.02em;
    color: #131E29;
    border: none;
}

    .btn-light-primary:hover {
        background: #E42B00;
    }

    .btn-light-primary:active {
        border: 2px solid #E42B00;
    }

    .btn-light-primary:focus {
        border: 2px solid #95E1BF !important;
        outline: 2px solid #131E29 !important;
        outline-offset: 0px;
    }

    .btn-light-primary:disabled,
    .btn-light-primary[disabled] {
        background: #E7EBF3;
        color: #7F8FA1;
        user-select: none;
        border: none;
        outline: none;
    }

/* light secondry button */
.btn-light-secondary {
    border: 2px solid #FF4713;
    background: transparent !important;
    border-radius: 5px !important;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.02em;
    color: #131E29;
}

    .btn-light-secondary:hover {
        border: 2px solid #131E29;
    }

    .btn-light-secondary:active {
        border: 2px solid #E42B00;
    }

    .btn-light-secondary:focus {
        border: 4px solid #131E29;
    }

    .btn-light-secondary:disabled,
    .btn-light-secondary[disabled] {
        color: #7F8FA1;
        background: #E7EBF3;
        user-select: none;
        border: none;
    }


/* light Tertiary button */
.btn-light-tertiary {
    background: transparent;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: #E42B00;
    border-radius: 5px;
    padding:0px;
    border: none;
    position: relative;
}

    .btn-light-tertiary::after {
        content: "\f054";
        font-family: fontawesome;
        position: relative;
        left: 8px;
        top: auto;
        font-weight: 300;
        font-size: 12px;
    }

    .btn-light-tertiary:hover {
        text-decoration-line: underline;
        color: #FF4713;
    }

    .btn-light-tertiary:active {
        color: #E42B00;
    }

    .btn-light-tertiary:focus {
        color: #2E637A;
        border: 4px solid #131E29;
        border-radius: 5px;
    }

        .btn-light-tertiary:focus::after {
            content: "\f054";
            font-family: fontawesome;
            position: relative;
            left: 8px;
            top: auto;
            font-weight: 300;
            font-size: 12px;
        }

    .btn-light-tertiary:disabled,
    .btn-light-tertiary[disabled] {
        color: #7F8FA1;
    }

/* dark primary buttons */
.btn-dark-primary {
    background: #E2F5E9;
    border-radius: 5px;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.02em;
    color: #131E29;
    border: none;
}

    .btn-dark-primary:hover {
        background: #FFFFFF;
    }

    .btn-dark-primary:active {
        background: #FFFFFF;
        border: 2px solid #E2F5E9;
    }

    .btn-dark-primary:focus {
        background: #E2F5E9;
        border: 4px solid #FF4713;
        outline: none;
    }

    .btn-dark-primary:disabled,
    .btn-dark-primary[disabled] {
        background: #C5CFD9;
        color: #667980;
    }

/* dark secondry buttons */
.btn-dark-secondary {
    background: transparent;
    border-radius: 5px;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    border: 2px solid #E2F5E9;
}

    .btn-dark-secondary:hover {
        color: #E7EBF3;
        border: 2px solid #E7EBF3;
    }

    .btn-dark-secondary:active {
        color: #FFFFFF;
        border: 2px solid #E2F5E9;
    }

    .btn-dark-secondary:focus {
        border: 4px solid #FF4713;
        color: #FFFFFF;
        outline: none;
    }

    .btn-dark-secondary:disabled,
    .btn-dark-secondary[disabled] {
        background: #C5CFD9;
        color: #667980;
        border: none;
    }

/* dark Tertiary buttons */
.btn-dark-tertiary {
    background: transparent;
    border-radius: 5px;
    padding: 0px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: #E2F5E9;
    border: none;
    position: relative;
}

    .btn-dark-tertiary::after {
        content: "\f054";
        font-family: fontawesome;
        position: relative;
        left: 8px;
        top: auto;
        font-weight: 300;
        font-size: 12px;
    }

    .btn-dark-tertiary:hover {
        text-decoration-line: underline;
        color: #FFFFFF;
    }

    .btn-dark-tertiary:active {
        color: #FFFFFF;
    }

    .btn-dark-tertiary:focus {
        border: 4px solid #FF4713;
        border-radius: 5px;
        color: #E2F5E9;
        outline: none;
    }

        .btn-dark-tertiary:focus::after {
            content: "\f054";
            font-family: fontawesome;
            position: relative;
            left: 8px;
            top: auto;
            font-weight: 300;
            font-size: 12px;
        }

    .btn-dark-tertiary:disabled,
    .btn-dark-tertiary[disabled] {
        color: #7F8FA1;
    }
