/*
    Created on : Mar 19, 2017, 7:45:09 PM
    Author     : Bob
*/

.container-fluid {
    padding: 0 3% 0 3%;
}
/* Keep buttons aligned in forms */
.row {
    margin: 0;
}

/*  These allow the logo to grow and shrink with the page size. */
img {
    max-width:100%;
}
.header img {
    /*	width:95%;
        max-width:800px;
        padding:10px 1% 0px 1%;*/
    width:100%;
    /*max-width:1000px;*/
    padding:15px 0 15px 0;;
}
/* navbar styling - combined several different Bootstrap css statements */
.navbar-inverse {
    background-color: #3d97d6;
    border-color: #080808;
}
.navbar-inverse .navbar-nav>li>a {
    color: #ddd;
}
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:focus, .navbar-inverse .navbar-nav>.open>a:hover {
    color: #fff;
    background-color: #1d77d6;
}

/* navbar dropdown menu styling */
ul.dropdown-menu {
    color: #ddd;
    background-color: #3d97d6;
    border-color: #080808;
}
ul.dropdown-menu>li>a {
    color:#ddd;
    /*background-color: #f00;*/
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    color: #fff;
    /*text-decoration: none;*/
    background-color: #3d97d6;
}

.userinfo {
    margin: 0px 20px 0 570px;
    padding: 6px 0px 6px 0px;
    font-size: 13px;
    color: #402e00;
    text-align: center;
    background-color: #ece5d4;
    border: 1px solid #080808;
}

.field-description {
    font-size: 11px;
}

.eye-field-description {
    font-size: 11px;
    color: red;
}

hr {
    /*margin-top: 40px;*/
    border: 1px solid #352000;
    /*border: 1px solid #352000 !important;*/
}

.copyright {
    font-size:85%;
}

ol li {
    margin-bottom: 20px;
}

table th {
    background: #e8dfd0;
    border: 1px solid #402d00;
    text-align: center;
}

table.delete-role td {
    border: 1px solid #402d00;
    padding: 5px;
    text-align: center;
}

input[type=radio].rating {
    display: block;
    margin: 0 auto;
}

label.rating{
    margin-top: 5px;
    margin-right: 28px;
    display: inline-block;
}

.dataTables_wrapper .dataTables_info {
    clear: none;
    float: left;
    padding-top: 0;
    padding-left: .6em;
}

.yellow-tooltip + .tooltip  > .tooltip-inner
{
    color:#000;
    background:#ff0;
}

.tooltip.in{
    opacity:1 !important;
    filter:alpha(opacity=100);
}

.panel {
    margin-bottom: 5px;
}

.panel-heading {
    padding: 5px 10px;
}

.input-sm {
    padding: 5px 0px 5px 4px;
}

.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5,
.col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
    padding-left: 4px;
    padding-right: 4px;
}

.banner {
    margin-top:10px;
    font-size:35px;
    background-color:#3d97d6;
    padding:10px 0px;
    border:1px solid;
    border-color: #080808;
    border-radius:4px;
    text-align:center;
}

.banner-test {
    font-size:20px;
    background-color:red;
    margin-right:50px;
    padding:10px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #bbb;
    opacity: 1; /* Firefox */
  }

  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #bbb;
  }

  ::-ms-input-placeholder { /* Microsoft Edge */
    color: #bbb;
  }

  /*   Alternate pw */

.pass_show{position: relative}
.pass_show .ptxt {
    position: absolute;
    top: 20%;
    right: 30px;
    z-index: 1;
    color: #ff0000;
    font-weight: bold;
    cursor: pointer;
    transition: .3s ease all;
}
.pass_show .ptxt:hover{color: #333333;}

/* Use class 'no-spinners' to hide up/down arrows in number type input */
.no-spinners::-webkit-inner-spin-button,
.no-spinners::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

th.dt-head-right.sorting {
    font-weight: 400;
}

@media print {
	.no-printme  {
		display: none;
	}
	.printme  {
        display: block;
	}
}

/*
https://stackoverflow.com/questions/14714621/prevent-text-from-wrapping-under-a-checkbox
*/
form#test label {
    margin-left:40px;
    font-weight:normal;
}

form#test label input[type='checkbox'] {
    margin-left:-20px !important;
}