html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/*above came with project*/

/*for accessbility*/
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*required **/
label.requiredasterisk:after {
    content: '*';
    color: red;
    padding: 0 5px;
}

/*the OG public application has been using teal for buttons - 52,129,133 is the rgb for  #348185*/
.bgTransparentTeal {
    background-color: rgba(52,129,133,0.15);    
}

.tealFont {
    color: #348185 !important; /* the FWC teal*/
}

.tealBackground {
    background-color: #348185 !important; /* the FWC teal*/
}

.borderTeal {
    padding:10px;
    border-color: #348185 !important; /* the FWC teal*/
    border-width: 1px;
    border-style:solid;
    border-radius: 5px;
}


/*for spinner and backdrop on waits*/
.text-center {
    width: 100%;
    position: relative;
    height: 100%;
}

.spinner-border {
    display: block;
    position: fixed;
    top: calc(50% - (58px / 2));
    right: calc(50% - (58px / 2));
    color: black;
}

#BackDropSpinner {
    position: absolute;
    top: 0;
    /* width: 100vw;
    height: 100vh;*/
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(255,255,255,0.7);
    /*rgb(0,0,0,0.2);*/
}


/*
    font sizing sitewide
*/

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/*
    fwc sitewide theme (including a few bootstrap overrides)

    fwc colors you may incorporate into design (note that .btn-primary and .btn-secondary bootstrap classes are already fwc themed)

    primary colors

        lighter blue    #286DA8
        blue            #205786
        green           #488257
        beige           #ddd3b9
        teal            #348185
        darkest grey    #404040
        darker grey     #494B4C
        grey            #58595B

    accents colors

        yellow      #F7EBA7
        red         #B7473C
*/

body {
    margin: 0;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

.wrapper { /*important for footer*/
    min-height: calc(100vh - 100px);
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    color: #404040;
}

.btn-primary {
    color: #fff;
    background-color: #205786;
    border-color: #205786;
}

    .btn-primary:hover {
        background-color: #6289aa;
    }

.btn-secondary {
    color: #fff;
    background-color: #488257;
    border-color: #488257;
}

    .btn-secondary:hover {
        background-color: #7ea794;
    }

.bg-dark {
    background-color: #494B4C !important;
}

.bg-blue {
    background-color: #205786 !important;
}

/*
    header content
*/

h1.page-title {
    font-size: 26px;
    height: 85px !important;
    border-bottom: 1px solid #ddd3b9;
    border-top: 1px solid #ddd3b9;
    padding: 25px 0 0 0;
    background-image: url("../images/title-swoosh.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 55% 100%;
}

.app-name {
    margin-left: 125px;
}

.top-space {
    content: "";
    min-height: 20px !important;
}

.logo-placement {
    z-index: 999;
    margin: 22px 0 0 10px;
    position: absolute;
}

.logo-img {
    max-width: 99px;
    height: auto;
    width: auto;
    margin-top: -66px;
}

/* 
    footer content
*/

#fwc-footer {
    background-color: #58595b;
    color: #f8f4ea;
    margin-top: 30px;
    border-top: 6px solid #494b4c;
    border-bottom: 6px solid #494b4c;
    font-family: 'Raleway', sans-serif;
}

.footer-wrap {
    text-align: center;
    padding: 5px;
    margin: 5px 0 5px 0;
}


/*##BL change datatables.net default pagination colors */
/*non active page number*/
.dataTables_wrapper .page-link {
    color: #205786 !important;
    border: 1px solid #205786 !important;
    background-color: white !important;
}
/* active page number*/
.dataTables_wrapper .page-item.active .page-link {
    color: white !important;
    border: 1px solid #205786 !important;
    background-color: #205786 !important;
}

/*change default table header*/
table.dataTable thead tr {
    background-color: #58595B;
    color: white;
}

table.table-striped thead tr {
    background-color: #58595B;
    color: white;
}
