html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

.header {
    width: 100%;
}

body {
    margin-bottom: 60px;
}

footer {
    position: absolute;
    bottom: 0px;
    height: 3px;
    color: #808080;
    width: 100%;
    margin: 0 auto;
}

.footerstyle {
    text-decoration: none;
    color: #19a419;
}

a.footerstyle:hover {
    color: #347D2B !important;
}

.border-top {
    border-top: .5px solid thin #808080 !important;
}

/*Makes TopNav hoverable*/
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /*remove the gap so it doesn't close*/
}

.navbar-toggler {
    border: 0px solid transparent;
    margin-right: 10px;
}

    .navbar-toggler:focus {
        outline: 0;
        box-shadow: 0 0 0 0;
    }

@media print {
    .noprint {
        visibility: hidden;
    }

    .NavBarLines {
        visibility: hidden;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 1rem;
    }
}


@media screen (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Galaxy S8 -  Portrait and Landscape */
@media screen and (device-width: 360px) and (device-height: 740px) and (-webkit-device-pixel-ratio: 4) {
    .navbar-toggler {
        padding: .25rem .75rem;
    }
   /* .ClassDetails {
        font-size: 12px;
    }*/
}


/*Media Query for Mobile Menu*/
@media (min-width: 768px) {
    .mobileNav {
        display: none;
    }

    #ulMobile {
        display: none;
    }
}

.dropdown-item {
    cursor: pointer;
}

.GreenText {
    color: #19a419;
}

.GreenText:hover {
    color: #19a419;
}

/*input & dropdown elements will have green dropshadow*/ 
.form-control:focus {
    -webkit-box-shadow: inset 0 1px 1px #19a419, 0 0 8px #19a419;
    outline: -webkit-focus-ring-color #19a419 0px;
}
.form-select:focus {
    -webkit-box-shadow: inset 0 1px 1px #19a419, 0 0 8px #19a419;
    outline: -webkit-focus-ring-color #19a419 0px;
}