/*
    Styles used throughout the website.

    Author: Aaron Melhaff <amelhaff2@mail.greenriver.edu>
    Date:   08/23/2018
 */

* {
    -webkit-print-color-adjust: exact;
}

th, h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: "Arimo", sans-serif;
}
.tableC{
    background-color: #238d3d;
    color: #efefef;
}
.tableE{
    background-color: lightgray;
}
.clickable:hover {
    cursor: pointer;
}

.icon {
    display: inline-flex;
    align-self: center;
}

.icon svg {
    height:         1em;
    width:          1em;
    top:            .125em;
    position:       relative;
    display:        inline-block;
    vertical-align: middle;
    fill:           currentColor;
}

.input-color input[type="color"].form-control {
     height:         1.5em;
     width:          3em;
     position:       relative;
     display:        inline-block;
     vertical-align: middle;
}



/*
    The snackbar - position it at the top and in the middle of the screen
    found at https://www.w3schools.com/howto/howto_js_snackbar.asp
*/
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    width: 60vw; /* Set a default minimum width */
    margin-left: -30vw;
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 999999; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    top: 72px; /* 30px from the bottom */
}

#snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
   However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Anations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}im

 .hide{
    background-color: #00cc00;
 }
.tr:hover .hide{
    diplay:block;
}
/*no data message*/
.card-content
{
    padding: 5vh 5vw 5vw 5vh;
    background-color: #eeeeee;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    position: relative;
    top: 10vh;
    text-align: center;
}