﻿body {
    padding-top: 100px;
    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;
}*/


@media (min-width: 1200px) {
    .container {
        /*width: 1400px !important;*/
    }
}


.navbar-inverse {
    background-color: #33353a !important;
}

.navbar {
    min-height: 84px !important;
}

    .navbar img {
        width: 43px;
        height: 32px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Avenir Next Pro","Avenir Next","Helvetica Neue",Helvetica,sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -1px;
}

h2, .h2 {
    font-size: 28px;
    line-height: 36px;
}

.table-no-border > tbody > tr > td {
    border-top: 0px;
}


/* cr check box */

.checkbox label:after,
.radio label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr,
.radio .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.radio .cr {
    border-radius: 50%;
}

    .checkbox .cr .cr-icon,
    .radio .cr .cr-icon {
        position: absolute;
        font-size: .8em;
        line-height: 0;
        top: 50%;
        left: 20%;
    }

    .radio .cr .cr-icon {
        margin-left: 0.04em;
    }

.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}

    .checkbox label input[type="checkbox"] + .cr > .cr-icon,
    .radio label input[type="radio"] + .cr > .cr-icon {
        transform: scale(3) rotateZ(-20deg);
        opacity: 0;
        transition: all .3s ease-in;
    }

    .checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
    .radio label input[type="radio"]:checked + .cr > .cr-icon {
        transform: scale(1) rotateZ(0deg);
        opacity: 1;
    }

    .checkbox label input[type="checkbox"]:disabled + .cr,
    .radio label input[type="radio"]:disabled + .cr {
        opacity: .5;
    }

/* cr checkbox end */



/* rounded  list style */

/* list */
.rounded-list ol {
    counter-reset: li; /* Initiate a counter */
    margin-left: 0; /* Remove the default left margin */
    padding-left: 0; /* Remove the default left padding */
}

    /* item  */
    .rounded-list ol > li {
        position: relative; /* Create a positioning context */
        list-style: none; /* Disable the normal item numbering */
        /*background: #f6f6f6;*/ /* Item background color */
        margin: 0; /* Give each list item a left margin to make room for the numbers */
        padding-left: 15px; /* Add some spacing around the content */
        padding-bottom: 0px;
        padding-top: 0px;
    }

        /* number  */
        .rounded-list ol > li p:before {
            content: counter(li);
            counter-increment: li;
            position: absolute;
            left: -1.3em;
            top: 10px;
            /* number background */
            /*background: #87ceeb; */
            background: #337ab7;
            height: 2em;
            width: 2em;
            margin-top: -1em;
            line-height: 1.5em;
            border: .3em solid #fff;
            text-align: center;
            font-weight: bold;
            border-radius: 2em;
            color: #fff;
        }

/* end rounded  list style */

/* Overlays */
.ui-widget-overlay {
    background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat !important;
    opacity: .4 !important;
    filter: Alpha(Opacity=40) !important;
    z-index: 250 !important;
}

.ui-dialog .ui-dialog-content {
    overflow:initial !important;
}