﻿html {
        font-size: 16px;
}
body {
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: "Geogrotesque-Regular",sans-serif;
}

h1 {
    font-family: "Geogrotesque-Regular",sans-serif;
}

/* 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;
}

a.jdpa-red,a:hover.jdpa-red,a:focus.jdpa-red
{
    color: #e31837;
}
.jdpa-red {
    color: #e31837;
}

.jdpa-header {
        font-family: "Geogrotesque-Bold",sans-serif;
        font-size: 1.9rem;
        line-height: 0.5;
        margin: 0;
}

.navbar {
    -webkit-box-shadow: 0 8px 6px -6px #999;
    -moz-box-shadow: 0 8px 6px -6px #999;
    box-shadow: 0 8px 6px -6px #999;
    background-color: #fff;
    /* the rest of your styling */
}

.nav li {
  list-style: none;
  padding: 5px 10px;
}

.nav > li {
  float: left;
}

.nav .sub-menu {
  display: none;
}

.nav > li ul {
    display: none;
    padding: .5rem 0;
    position: absolute;
    width: 140px;
    background: #ddd;
    text-align: left;
    left: -1px;
    margin: 0;
}


@font-face {
font-family: 'Geogrotesque-Bold';
src: url('../fonts/Geogrotesque-Bold.eot');
src: url('../fonts/Geogrotesque-Bold.eot?#iefix') format('embedded-opentype'),
	 url('../fonts/Geogrotesque-Bold.woff') format('woff'),
	 url('../fonts/Geogrotesque-Bold.ttf') format('truetype');
	 font-weight:bold;font-style:normal;
}

@font-face {
font-family: 'Geogrotesque-Regular';
src: url('../fonts/Geogrotesque-Regular.eot');
src: url('../fonts/Geogrotesque-Regular.eot?#iefix') format('embedded-opentype'),
	 url('../fonts/Geogrotesque-Regular.woff') format('woff'),
	 url('../fonts/Geogrotesque-Regular.ttf') format('truetype');
	 font-weight:bold;font-style:normal;
}

.input-validation-error{
    border-color: #b94a48;
}

span.icon-bar{
    background-color: #E31837;
}

/**********Loading Spinner***********/

.overlay-loading {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(35, 34, 34, 0.9);
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
}

    .overlay-loading .loading-heading {
        position: absolute;
        top: 50%;
        right: 20px;
        left: 20px;
        margin-top: 25px;
        text-align: center;
        font-size: 20px;
        color: #ffffff;
        text-transform: none;
    }

.loading {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    border-radius: 50%;
    border-style: solid;
    border-color: transparent;
    border-top-color: #ffffff;
    border-right-color: #ffffff;
    border-left-color: #ffffff;
    -webkit-animation: load8 .6s infinite linear;
    -moz-animation: load8 .6s infinite linear;
    animation: load8 .6s infinite linear;
}

.loading-full {
    border-width: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 76px;
    height: 76px;
    margin-top: -95px;
    margin-left: -45px;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}