﻿html, body, h1 {
    color: #595959;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
    font-weight: normal;
}

.panel-heading h3, .card-body h3, h3, .h3 {
    font-weight: normal;
    color: #FF885B;
}

bold, .bold, strong, .strong, b, .b {
    font-weight:500;
}



/*--------------- Radio & Checkbok spacing fix ---------------*/


input[type="checkbox"], input[type=radio] {
    margin-left:15px;
    margin-right: 7px;
    margin-bottom: 4px; /* Tweaks vertical position relative to label. -BO */
    /*top: .8rem;*/ /* Makes boxes/circles Larger. -BO */
    width: 1.25rem; /* Makes boxes/circles Larger. -BO */
    height: 1.25rem; /* Makes boxes/circles Larger. -BO */
    vertical-align: middle; /* Fixes vertical alignment due to increasing width and height. -BO */
}

input[type="checkbox"]:first-child, input[type=radio]:first-child {
    margin-left:5px;

}



/*--------------- Pagination ---------------*/


.pagination-custom {
    /*display: inline-block;*/
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

    .pagination-custom table > tbody > tr > td {
        display: inline;
    }

        .pagination-custom table > tbody > tr > td > a,
        .pagination-custom table > tbody > tr > td > span {
            position: relative;
            float: left;
            padding: 8px 12px;
            line-height: 1.42857143;
            text-decoration: none;
            color: #666666;
            background-color: #ffffff;
            border: 1px solid #dddddd;
            margin-left: -1px;
        }

        .pagination-custom table > tbody > tr > td > span {
            position: relative;
            float: left;
            padding: 8px 12px;
            line-height: 1.42857143;
            text-decoration: none;
            margin-left: -1px;
            z-index: 2;
            color: #aea79f;
            background-color: #f5f5f5;
            border-color: #dddddd;
            cursor: default;
        }

        .pagination-custom table > tbody > tr > td:first-child > a,
        .pagination-custom table > tbody > tr > td:first-child > span {
            margin-left: 0;
            border-bottom-left-radius: 4px;
            border-top-left-radius: 4px;
        }

        .pagination-custom table > tbody > tr > td:last-child > a,
        .pagination-custom table > tbody > tr > td:last-child > span {
            border-bottom-right-radius: 4px;
            border-top-right-radius: 4px;
        }

        .pagination-custom table > tbody > tr > td > a:hover,
        .pagination-custom table > tbody > tr > td > span:hover,
        .pagination-custom table > tbody > tr > td > a:focus,
        .pagination-custom table > tbody > tr > td > span:focus {
            color: #595959;
            background-color: #eeeeee;
            border-color: #dddddd;
        }