/* 
    Addresses btn focus not meeting contrast requirements
    https://www.w3.org/WAI/WCAG21/Techniques/css/C40
    https://www.sarasoueidan.com/blog/focus-indicators/
*/

/* When the element receives focus that is not keyboard focus, undo all the :focus styles */
*:focus:not(:focus-visible) {
    outline: none !important;
}

/* Show focus styles on keyboard focus. */
*:focus-visible {
    /* inner indicator */
    outline: 2px #D9D8D6 solid !important;
    outline-offset: 0 !important;
    /* outer indicator */
    box-shadow: 0 0 0 4px #2D2A26, 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    /* override bootstrap styling */
    border: none !important;
}

/*Bootstrap 4 Line Height Utility Classes*/
.lh-0 {
    line-height: 1 !important;
}

.lh-1 {
    line-height: 1.5 !important;
}

.lh-2 {
    line-height: 2 !important;
}

.lh-3 {
    line-height: 2.5 !important;
}

.lh-4 {
    line-height: 3 !important;
}

.lh-5 {
    line-height: 3.5 !important;
}

/* 
     Extra small devices (portrait phones, less than 576px)
     No media query for `xs` since this is the default in Bootstrap
*/

/*
    Small devices (landscape phones, 576px and up)
*/
@media (min-width: 576px) {
}

/*
    Medium devices (tablets, 768px and up)
*/
@media (min-width: 768px) {
}

/*
    Large devices (desktops, 992px and up)
*/
@media (min-width: 992px) {
}

/*
    Extra large devices (large desktops, 1200px and up)
*/
@media (min-width: 1200px) {
}
