﻿body {
    text-align: center;
    background: #ffffff;
font-size:14px;
}
.AshRowItem {
    border-bottom: 5px solid white;
}


.col-sm-4 {
    text-align: center;
    margin: 20px 0px;
}

.chip {
    display: inline-block;
    padding: 0 25px;
    height: 50px;
    min-width: 250px;
    font-size: 16px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #f2e8e8;
}

    .chip img {
        float: left;
        margin: 0 10px 0 -25px;
        height: 50px;
        width: 50px;
        border-radius: 10%;
        border: 0px solid #fff;
        background-color: #3c5f78;
        padding: 1px;
    }

input[type="checkbox"] {
    display: none;
}

    input[type="checkbox"] + label span {
        display: inline-block;
        width: 25px;
        height: 25px;
        vertical-align: middle;
        background: url(../Images/1c.png) left top no-repeat;
        background-size: 25px 25px;
        cursor: default;
        transition: background .15s ease-in-out;
        -moz-transition: background .15s ease-in-out;
        -webkit-transition: background .15s ease-in-out;
    }

    input[type="checkbox"]:checked + label span {
        background: url(../Images/1d.png) 0px top no-repeat;
        background-size: 25px 25px;
    }



th {
    font-size: 1em;
    background-color: #585e8e;
    color: white;
    border: 1px solid white;
}

#myTable {
    background-color: white;
    text-align: left;
}

#AshSearch {
    background-image: url('Images/Searchicon.png');
    background-size: 15px 15px;
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    width: 200px;
    margin: 5px 5px 5px 0px;
}
        /* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #222; /* Black background color */
    color: #ddd; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 10px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#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;
}

/* Animations 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;}
}
