﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom needs to match min-height of the footer */
  margin-bottom: 125px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 125px;
  white-space: nowrap;
}

/* Customized Bootstrap Styles */
.form-check-input-reverse {
    margin-left: 10px;
}

/* Twitter Typeahead Styles */

.twitter-typeahead{
    display: block !important;
}

.tt-query {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
    color: #999
}

.tt-menu { /* used to be tt-dropdown-menu in older versions */
    width: 100%;
    margin-top: 4px;
    padding: 4px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
    padding: 3px 20px;
    line-height: 24px;
}

    .tt-suggestion.tt-cursor, .tt-suggestion:hover {
        color: #fff;
        background-color: #0097cf;
    }

    .tt-suggestion p {
        margin: 0;
    }

.centeredImage {
    display: flex;
    justify-content: center;
}

/* This was needed to fix the style of the input group that contained a Type ahead */
.input-group > .twitter-typeahead {
    flex: 1 1 auto;
    width: auto;
}

/* Full Screen Modal OverLay */
.modal-full {
    min-width: 100%;
    margin: 0;
}

.modal-full .modal-content {
    display: block;
    min-height: 100vh;
    background-color: #505050;
    opacity: .6;
    text-align: center;
    padding-top: 10%;
}

.loadingOverlayOuter {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
}

.loadingOverlayInner {
    text-align: center;
    margin-top: 20%;
}

/* Added added a padding left to the typeahead empty template */
.tt-no-result {
    padding-left: 15px;
}

/* Session Expiration */
#sessExpirDiv {
    display: none; 
    border: none;
    background-color: #FF6666;
    color: #FFF;
    font-family: 'Lato', Arial;
    margin: 0px;
    font-size: 16px;
    line-height: 16px;
    position: fixed;
    width: 100%;
    height: 55px;
    text-align: center;
    vertical-align: middle;
    z-index: -999999;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  #sessExpirP {
    margin-top: 16px;
    padding: 0px;
  }