﻿/* 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;
}
input {
    height: 34px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.largeinput {
    max-width: 480px;
}

.myrow {
    width: 100% !important;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 10px !important;
}
.centerdiv {
    margin-left: 25%;
}

.bottomed  {
    margin-bottom: 10px;
}

.divmodalsmall {
    float: left;
    width: 340px;
    height: 530px;
    margin-left: -600px;
    margin-top: -80px;
    position: fixed;
    opacity: -1;
    z-index: 1002;
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-transition: 0.25s ease;
    transition: 0.25s ease;
    overflow:hidden;
}

#divinsert {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}
#divupdate {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

#divtesto {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}
.dark_overlay {
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
    -webkit-transition: 0.25s ease;
    transition: 0.25s ease;
}


/* Responsive: Portrait tablets and up */
@media screen and (max-width: 768px) {
    .centerdiv {
        margin-left: 0 ;
    }
    #divtablehead{
        display:none;
    }
}


    @media screen and (min-width: 768px) {
        .jumbotron {
            margin-top: 20px;
        }

        .body-content {
            padding: 0;
        }
    }



