﻿/*Styles for main section*/

/*BODY*/
body {
    background: linear-gradient(to right,rgb(127,127,213,0.1),rgb(134,168,231,0.1),rgb(145,234,228,0.1));
}
/* HEARDERS */
h3 {
    margin: 0;
}
    h3 .subtitle {
        text-align: center;
        font-size: 2em;
        padding: 45px;
        padding-left: 0;
        padding-right: 0;
        font-weight: 600;
    }

/*Styles for main section*/

#main-section {
    right: 0;
    margin-top: 90px;
}

main {
    min-height: 100vh;
    margin-bottom: 20px;
}

/* background color */
.background-lightgrey {
    padding-top: 0;
    padding-bottom: 0;
    background-color: #e9ecef;
}

/*Style for track path*/

.breadcrumb {
    padding-left: 0px !important;
}

li.breadcrumb-item a {
    color: #162E49;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #162E49;
}

.breadcrumb-item {
    color: #162E49;
}

/* Tables */

table.table-tracker {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
    border-radius: 1px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dee2e6;
    -webkit-box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.15);
    box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.15);
}

    table.table-tracker th {
        font-weight: 600px;
    }

    table.table-tracker td {
        font-size: 13px;
    }

    table.table-tracker th, td {
        padding: 1em;
        border-bottom: 2px solid white;
    }

    table.table-tracker thead {
        background-color: #5C88C7;
        color: #fff;
    }

    table.table-tracker tbody tr {
        background-color: transparent;
    }

        table.table-tracker tbody tr:nth-child(even) {
            background-color: #f5f5f5;
            color: #162e49;
        }

/* Footer */

footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 0 !important;
}

.footer {
    width: 100%;
    right: 0;
}

.icon-social-footer {
    font-size: 45px !important;
}

ul.list-inline i:hover {
    color: #5C88C7 !important;
}


h3.copyright {
    color: #5C88C7;
    font-size: 14px;
    padding-top: 25px;
}

/* */

.footer-list {
    padding-top: 10px;
}

    .footer-list li {
        padding-left: 10px;
        padding-right: 10px;
    }

        .footer-list li a {
            position: relative;
            font-size: 18px;
            font-weight: 500;
            color: #fff;
        }


            .footer-list li a:hover {
                color: #5C88C7;
            }

/* */

.footer-light-blue {
    background-color: #5C88C7;
}

    .footer-light-blue h3.footer-tracker-copyright {
        color: #162e49;
        font-size: 13px;
        font-weight: 600;
        padding-top: 10px;
        padding-bottom: 10px;
    }

/*  */

* {
    position: relative;
}

.footer-list li {
    position: relative;
    width: auto;
    line-height: 35px;
    font-size: 3rem;
    font-weight: normal;
    text-align: center;
}


    .footer-list li > a {
        text-decoration: none;
        z-index: 1;
        padding-bottom: 5px;
    }

        .footer-list li > a:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: 0;
            left: 0;
            background: #5C88C7;
            visibility: hidden;
            border-radius: 5px;
            transform: scaleX(0);
            transition: .25s linear;
        }

        .footer-list li > a:hover:before,
        .footer-list li > a:focus:before {
            visibility: visible;
            transform: scaleX(1);
        }