/*!
 * Start Bootstrap - Small Business HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */
html {
	height: 100%;
}

 body {
    padding-top: 70px; /* Required padding for .navbar-fixed-top. Change if height of navigation changes. */
	height: 100%;
}

.navbar-fixed-top .nav {
    padding: 15px 0;
}

.navbar-fixed-top .navbar-brand {
    padding: 0 15px;
}

.wrapper {
	height:100%;
	margin: 0;
	padding: 0;
	overflow-y: hidden; /* Prevents cards from extending the page when they are created off-screen for transitions. */
}

body > .wrapper {
	height: auto;
	min-height: 100%;
	}
	
.content {
	padding-bottom: 3em;
}
footer {
	width:100%;
	height:3em;
	bottom:0;
	left:0;
	margin-top: -3em;
	line-height: 3em;
	text-align: center;
}

hr {
    border-top: 1px solid #B7B7B7;
}

.card {
    border-color: #B7B7B7;
    border-style: solid;
    border-top-width: 1px;
    border-left-width: 1px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    background-color: #fff;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px;

    animation-duration: 0.75s;
    animation-name: slidein;
    position: relative;
    z-index: 100; /* Ensure cards slide in over other objects on page. */
}

.card-line {
    margin-top: 5px;
    padding-top: 5px;
}

.message-card {
padding-top: 10pt;
font-size: 13pt;
font-weight: bold;
}

.first-line {
    margin-top: 10px;
}

select {
    height: 32px;
}

input[type="text"] {
   height: 30px;
}

h3 {
    border-bottom: 1px solid black;
    display: inline;
}

.no-padding {
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
}

.no-top-margin {
   margin-top: 0;
}

.landing-photo {
   margin-bottom: 20px;
}

.glyphicon{
font-size: 33px;
padding-bottom: 3px; /* Did this to center the glyphicon relative to the submit button */
vertical-align: middle;
}

.success {
color: green;
}

.fail{
color: red;
}

@media(min-width:768px) {
    body {
        padding-top: 100px; /* Required padding for .navbar-fixed-top. Change if height of navigation changes. */
    }

    .navbar-fixed-top .navbar-brand {
        padding: 15px 0;
    }
}

@keyframes slidein {
   from {
      transform: translate3d(0,500%,0) /* Second number appears to the the height of the object in question, so it will be created 5 heights below it's final position. */
   }
   to {
      transform: translate3d(0,0,0)
   }
}
