﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* Custom Radio/Check box */
.cr-styled {
    display: inline-block;
    margin: 0px 2px;
    line-height: 20px;
    font-weight: normal;
    cursor: pointer;
}

    .cr-styled i {
        display: inline-block;
        height: 18px;
        width: 18px;
        cursor: pointer;
        vertical-align: middle;
        border: 2px solid #2b90d9;
        border-radius: 3px;
        text-align: center;
        padding-top: 1px;
        font-family: 'FontAwesome';
        margin-top: -4px;
        margin-right: 3px;
        font-size: 12px;
    }

    .cr-styled input {
        visibility: hidden;
        display: none;
    }

        .cr-styled input[type=checkbox]:checked ~ i:before {
            content: "\f00c";
        }

        .cr-styled input[type=radio] + i {
            border-radius: 18px;
            font-size: 11px;
            line-height: 13px;
        }

        .cr-styled input[type=radio]:checked ~ i:before {
            content: "\f111";
        }

        .cr-styled input:checked ~ i {
            border-color: #2b90d9;
            color: #2b90d9;
        }

.trackerGeneralLabel {
    padding: 10px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    background-color: #2b90d9;
    color: white;
    border-radius: .25em;
}

#trackerTabs .nav-pills > li > a {
    border-radius: 4px 4px 0 0;
}