﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    /*padding-top: 50px;
    padding-bottom: 20px;*/
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
/*input,
select,
textarea {
    max-width: 280px;
}*/

.modalWindow
{
    left: 0; top: 0; bottom: 0; right: 0;
    margin: auto; 
    background-color: white; 
    text-align: left;  
    width: 550px;
    height: 200px;
    background: white;
    border: 2px solid #15431f;
    box-shadow: 3px 3px 6px 7px rgba(0,0,0,.4);
    position: absolute;
    border-radius: 6px;
    transition: all 1s ease-in-out 0s;
    display: inline;
}
.modalBack
{
    z-index:1; width: 100%; height: 100%;
    background-color: rgba(50,50,50,.5);
    text-align: center; vertical-align: middle; 
    margin: 0 auto; top: 0px; left: 0px;
    position: absolute;
    display: block;
}


/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}

.hideMe {
    display: none;
}

