/**----------------------------------------------------------------------------
 file: $ISIP_WEB/templates/bootstrap/natus_eeg/natus_eeg.css

 revision history:
  20180521 (TE): initial version

 This file is the css stylesheet for all nsf dpath pages/subpages.
 
   1. navbar customization
   2. miscellaneous classes

 This stylesheet affects bootstrap classes and HTML tags. Any custom-made class
 will be denoted by nsf_dpath_xx.
----------------------------------------------------------------------------**/

/**------------------------ navbar customization ---------------------------**/
/**                                                                         **/

/** adjusts size and margins of logo in header **/
/**                                            **/
.nedc_logo {
    height: 1.25rem;
    width: auto;
    margin-right: .2rem;
    margin-left: .4rem;
    margin-top: -.1rem;
}

/** adjusts font size of link elements, color, padding **/
/**                                                    **/
.nsf-nav a {
    height: 100%;
    font-size: .8rem;
    box-sizing: border-box;
    color: #fff;
    padding: 0 .5rem 0 .5rem;
}

/** changes color of links/background when active **/
/**                                               **/
nav ul>.active>a,
nav ul>.active>a:hover,
nav ul>.active>a:focus,
nav ul>.active>.nsf-nav a {
    color: #005e63;
}

/** changes color of navbar links on hover **/
/**                                        **/
nav ul a:hover {
    color: #005e63;
    text-decoration: none;
}

/** removes li dots, changes background color of navbars **/
/**                                                      **/
header ul,
footer ul {
    list-style: none;
    background: #00aaa7;
}

/** first flexbox element of navbar **/
/**                                 **/
.nsf-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/** second flexbox element of navbar **/
/**                                  **/
#link_tabs {
    display: flex;
    flex-wrap: wrap;
}

/** adjusts space between links **/
/**                             **/
#link_tabs li {
    margin-right: .5rem;
}

/** adjusts padding of navbar **/
/**                           **/
.nsf-nav {
    padding-top: .3rem;
    padding-bottom: .3rem;
}

/** makes navbar perfectly centered in two rows when below breakpoint **/
/**                                                                   **/
@media(max-width: 768px) {
    .nsf-nav {
        flex-direction: column;
        align-items: center;
    }

    #link_tabs {
        width: 100%;
        justify-content: space-around;
        padding-right: 1.8rem;
    }
}


/** forces navbar to stay at the bottom of the page **/
/**                                                 **/
html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0 0 0px;
}

footer {
    background: white;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
}

/** fixes issue with whitespace underneath footer **/
/**                                               **/
.nsf-nav {
    margin: 0;
}

/** adds some margin between navbar and main content **/
/**                                                  **/
main {
    margin-top: .5rem;
    height: 100%;
}

/** creates background for acknowledgment of footer **/
/**                                                 **/
.nsf_acknowledgement {
    padding-top: .3rem;
    padding-bottom: .3rem;
    background: #9b9ea3;
    font-size: .5rem;
    width: 100vw;
    color: #fff;
}

/** adjusts fontsize and positioning of text in acknowledgment **/
/**                                                            **/
.nsf_acknowledgement p {
    font-size: .47rem;
    font-weight: bold;
    padding-left: 1.333rem;
    padding-right: 2rem;
    color: #434344;
    text-align: center;
    width: 85%;
    margin: auto;
}

/**----------------------------------misc-----------------------------------**/
/**                                                                         **/

/** makes all text under p helvetica **/
/** adjusts margins and alignment    **/
/**                                  **/
p {
    font-family: Helvetica, sans-serif;
    text-align: justify;
}

/** center aligns the h2 text and assures 0 margin at the top **/
/**                                                           **/
h2,
h3 {
    text-align: center;
    margin-top: 0px !important;
    margin-bottom: .5rem;
    font-size: 1.2rem;
    font-variant: small-caps;
}

/** makes main headings bigger than sub headings **/
/**                                              **/
h3 {
    font-size: 1.35rem;
}

/** makes subheadings smaller **/
/**                           **/
h4 {
    font-size: 1.05rem;
}

/** changes color of links **/
/**                        **/
main a {
    color: #C70039;
    text-decoration: underline;
}

/** changes color/style of links on hover **/
/**                                       **/
a:hover {
    text-decoration: none;
    color: #c6c6c6;
}

/** adjusts size, margin, and location of leica image in overview page **/
/**                                                                    **/
.leica_image {
    float: right;
    padding-left: 1rem;
    width: auto;
    height: 5.5rem;
}

/** adjusts size/margins of apperserver img on overview page **/
/**                                                          **/
.appserver_image {
    float: left;
    margin-right: 1rem;
    width: auto;
    height: 5.5rem;
}

/** adjusts size, margin, and location of hitachi image in overview page **/
/**                                                                      **/
.jbod_image {
    float: right;
    height: 5.5rem;
    width: auto;
    margin-left: 1rem;
    margin-bottom: .7rem;
    margin-top: 1rem;
}

/** adjusts size, margin, location of faculty images on about page **/
/**                                                                **/
#about_us img {
    float: left;
    width: 7rem;
}

/** uses flexbox to align about us bios **/
/**                                     **/
.nsf_dpath_about {
    display: flex;
    margin: auto;
    margin-bottom: 3rem;
    align-items: center;
}

/** second flexbox element **/
/**                        **/
.flex {
    width: 75%;
    margin: auto;
}

/** makes carousel controls black **/
/**                               **/
.carousel-control {
    color: black;
}

/** removes shadow from carousel **/
/**                              **/
.carousel-control.left,
.carousel-control.right {
    background-image: none;
}

/** makes carousel indicators black **/
/**                                 **/
.carousel-indicators li {
    border: none;
    background-color: #000;
}

/** moves carousel indicators closer to bottom of slideshow **/
/**                                                         **/
.carousel-indicators {
    bottom: .25rem;
}

/** changes size of indicator when it is on the active picture **/
/**                                                            **/
.carousel-indicators li.active {
    padding: .4rem;
    border: none;
    background-color: #000;
}

/** adjusts size, color, margin on read more button **/
/**                                                 **/
.btn-sm {
    font-size: .9rem;
    border-radius: 0;
    background: white;
    color: #17202A;
    border: .1rem solid #17202A;
    margin-bottom: 1rem;
}

/** adds margins to the read more button **/
/**                                      **/
center {
    margin-top: .8rem;
    margin-bottom: .6rem;
}

/** adjusts size, color, margin on read more button on hover **/
/**                                                          **/
.btn-sm:hover {
    background: #17202A;
    color: white;
    border: .1rem solid #17202A;
}

/** adds a padding to the news section above breakpoint **/
/**                                                     **/
@media (min-width: 768px) {
    #news {
        padding-right: 2rem;
    }
}

/** makes the font on what's new on main page slightly smaller **/
/**                                                            **/
#news p {
    text-align: center !important;
}

/** adjusts margin and padding of leica image on main page **/
/**                                                        **/
.nsf_dpath_scanner {
    padding-right: 2rem;
    margin-top: .5rem;
}

/** adjusts font size for the title **/
/**                                 **/
#title {
    font-size: 1.4rem;
}

/** stylizes the horizontal line **/
/**                              **/
hr {
    padding: 0;
    margin: auto;
    margin-top: .9rem;
    margin-bottom: 1.9rem;
}

/** adjusts size and location of "process" img on main page **/
/**                                                         **/
.nsf_dpath_process {
    width: 60%;
    float: right;
    margin-left: .4rem;
}

/** adjusts size and location of "leica" img on main page **/
/**                                                       **/
.nsf_leica_aperio {
    float: right;
    width: auto;
    height: 7.5rem;
    margin-left: .7rem;
    margin-top: .3rem;
}

/** stylizes hr specifically for the main page **/
/**                                            **/
#main_hr {
    border: .05rem solid black;
    width: 75%;
    margin: auto;
    margin-top: .8rem;
    margin-bottom: 1.2rem;
}

/** adjusts sizr and location of title logos **/
/**                                          **/
.nsf_logos {
    margin-top: -.5rem;
    width: 4rem;
    height: auto;
}

/** adjusts margin of logo on right/fixes overflow issue **/
/**                                                      **/
.pull-right {
    margin-right: 5rem;
}

.pull-left {
    margin-left: 5rem;
}


/** adjusts the font-size on the main page **/
/**                                        **/
#main_page p {
    font-size: .84rem;
}

input {
    margin: 1%;
    border-radius: 5px;
    border-width: 1px;
}

#submitButton {
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 3%;
    padding-right: 3%;
}


/** end of file **/
/**             **/