body {
  padding-bottom: 40px;
  background-color: #eee;
}

a {
    color: #337ab7;
    text-decoration: none;
}

/* DASHBOARD HEADERS */

.bannerheader {
    margin:5px 0 20px 0;
    height:25px;
    width:100%;
    background-color: #3f85c1;
}
.bannerheader h1{
    font-size: 18px;
    line-height: 25px;
    color: #ecf0f1;
    text-align: center;
}

/* TEXTBOXES */

.textbox {
    /*height: 300px;*/
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.05);
    margin: 10px 0px;
    padding: 10px;
    font-size: 12px;
    word-wrap: break-word;
    overflow: hidden;
}
.textbox h1, .textbox h2, .textbox h3{
    color: #3f85c1;
    text-align: center;
    margin-top: 0px;
}
.textbox ul{
    padding-left:15px;
}
.textbox li{
    margin-bottom:5px;
}
.textbox label{
    font-weight: normal;
    display: inline;
}
.insidetextbox {
    border-radius: 4px;
    margin-bottom:10px;
    padding: 5px;
    word-wrap: break-word;
}


/* BOOTSTRAP NAVBAR OVERRIDES */

.bg-navbar {
    background-color: #3f85c1;
    border-color: #5A9BD3;
    border: 0;
}
.bg-navbar .navbar-brand {
    color: #ecf0f1;
    padding: 5px;
    display: flex;
    align-items: center;
}
.bg-navbar .navbar-brand>img {
    /*border: #5A9BD3 1px solid;
    border-radius: 5px;*/
    margin-right: 10px;
}
.bg-navbar .nav-link {
    color: #ecf0f1;
}
.bg-navbar .navbar-nav .nav-link {
    color: #ecf0f1;
}
.bg-navbar .navbar-nav .nav-link:hover {
    color: #ecf0f1;
}


/* BOOTSTRAP TOOLTIP OVERRIDES */

.tooltip {
    font-size: 10px;
}
.tooltip-inner {
    text-align: left;
    max-width: 225px;
}
.tooltip ul{
    padding-left: 15px;
}

/* BOOTSTRAP BUTTON OVERRIDE */

.btn-primary {
    color: #fff;
    background-color: #5A9BD3;
    border-color: #2e6da4;
}

.btn-danger {
    color: #fff;
    background-color: #FF6D6D;
    border-color: #d43f3a;
}

/* FORMS */

.form-custom {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}
.form-custom h2 {
  margin-top: 0px;
  text-align: center;
}
.form-custom h3 {
  margin-top: 20px;
  font-style: italic;
  text-align: center;
}

.form-custom .form-upload-heading,
.form-custom .checkbox {
  margin-bottom: 10px;
}
.form-custom .checkbox {
  font-weight: normal;
}
.form-custom .form-control {
  position: relative;
  font-size: 16px;
  height: auto;
  padding: 10px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.form-custom .form-control:focus {
  z-index: 2;
}
.form-custom input[type="text"]{
  margin-bottom: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form-custom input[type="password"] {
  margin-bottom: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-custom input[type="file"] {
  margin-bottom: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-custom .btn {
  margin-bottom: 10px;
}


/* TABLES */

.cardlist {
    font-size: 15px;
}

.cardlist tr{
}

.cardlist td{
    border-bottom: 2px solid black;
}

.cardlist .cbox {
    width:15px;
}

/* Show images on hover */

.hover_img a {
    position:relative;
}
.hover_img a span {
    position:absolute;
    display:none;
    z-index:99;
}
.hover_img a:hover span {
    display:block;
}
