﻿
/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

ol.terms {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

li.terms {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

    li.terms:before {
        content: counters(item, ".") ". ";
        display: table-cell;
        padding-right: 0.6em;
    }

    li.terms li {
        margin: 0;
    }

        li.terms li:before {
            content: counters(item, ".") " ";
        }

.vertical-center {
    display: inline-block;
    vertical-align: middle !important;
    float: none;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

input[type=checkbox] {
    /*display: block;*/
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-appearance: none;
    outline: 0;
}

    input[type=checkbox]:checked {
        background-image: url('../images/Aggregator/yes-default.png');
    }

    input[type = checkbox]:not(:checked) {
        background-image: url('../images/Aggregator/normal.png');
    }

.font-bold {
font-weight: bold;}

/* Wrapping element */
/* Set some basic 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 
*/
/* Set widths on the form inputs since otherwise they're 100% wide */
/*input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="select"] {
    max-width: 280px;
}*/

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }
    .body-content {
        padding: 0;
    }
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.form-group.requiredafter .control-label:after { 
    content:" *";
    color:red;
}

.form-horizontal.requiredafter .control-label:after { 
    content:" *";
    color:red;
}

.horizontal.requiredafter .control-label:after { 
    content:" *";
    color:red;
}

.form-horizontal.requiredbefore .control-label:before { 
    content:"* ";
    color:red;
}
.form-group.requiredafter .control-label:after {
    content: " *";
    color: red;
}

.row.requiredafter .control-label:after {
    content: " *";
    color: red;
}
.row.requiredbefore .control-label:before {
    content: "* ";
    color: red;
}
/* CSS REQUIRED */
.state-icon {
    left: -5px;
}
.list-group-item-primary {
    color: rgb(255, 255, 255);
    background-color: rgb(66, 139, 202);
}

/* DEMO ONLY - REMOVES UNWANTED MARGIN */
.well .list-group {
    margin-bottom: 0px;
}
/*=============================================================================*/
/*CALLOUT*/
/*=============================================================================*/
.bs-callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}

    .bs-callout h4 {
        margin-top: 0;
        margin-bottom: 5px;
    }

    .bs-callout p:last-child {
        margin-bottom: 0;
    }

    .bs-callout code {
        border-radius: 3px;
    }

    .bs-callout + .bs-callout {
        margin-top: -5px;
    }

.bs-callout-default {
    border-left-color: #777;
}

    .bs-callout-default h4 {
        color: #777;
    }

.bs-callout-primary {
    border-left-color: #428bca;
}

    .bs-callout-primary h4 {
        color: #428bca;
    }

.bs-callout-success {
    border-left-color: #5cb85c;
}

    .bs-callout-success h4 {
        color: #5cb85c;
    }

.bs-callout-danger {
    border-left-color: #d9534f;
}

    .bs-callout-danger h4 {
        color: #d9534f;
    }

.bs-callout-warning {
    border-left-color: #f0ad4e;
}

    .bs-callout-warning h4 {
        color: #f0ad4e;
    }

.bs-callout-info {
    border-left-color: #5bc0de;
}

    .bs-callout-info h4 {
        color: #5bc0de;
    }
    /*Accordian*/
.bs-example {
    margin: 20px;
}

.panel-title .glyphicon {
    font-size: 14px;
}
/* ============================================================ */
/* ============================================================ */
/* ============================================================ */

/* Remove the navbar's default margin-bottom and rounded borders */ 
    /*.navbar {
      margin-bottom: 0;
      border-radius: 0;
    }*/
    
    /* Set height of the grid so .sidenav can be 100% (adjust as needed) */
    /*.row.content {height: 450px}*/
    
    /* Set gray background color and 100% height */
    .sidenav {
      padding-top: 20px;
      /*background-color: #f1f1f1;
      height: 100%;*/
    }
    
    /* Set black background color, white text and some padding */
    /*footer {
      background-color: #555;
      color: white;
      padding: 15px;
    }*/
    
    /* On small screens, set height to 'auto' for sidenav and grid */
    @media screen and (max-width: 767px) {
      .sidenav {
        height: auto;
        padding: 15px;
      }
      .row.content {height:auto;} 
    }
