body{
    background-color: #f3f3f3;
}
.jumbotron {
    background-color: #2d3e4a;
    color: aliceblue;
    padding: 0;
    padding-top: 20px;
    padding-bottom: 0px;
}
.jumbotron .lead {
    font-weight: 100;
    color: lightslategray;
}
.dateHeader{
    text-align: right;
    padding: 10px 10px;
    color: lightslategray;
    font-weight: 300;
    font-size: 14px;
}
.list-group{
    margin-left: 20px;
    margin-right: 20px;
}.list-group-item{
    background-color: #fff;
    margin-bottom: 10px;
}
.arrow {
    color: #9c9c9c;
    font-size: x-large;
    line-height: 5;
}
.title{
    color: #4BA2DA;
    font-weight: 100;
    font-size: 12px;
}
.sec{
    color: lightslategray;
    font-weight: 100;
    font-size: 10px;
}
.date{
    color: lightslategray;
    font-weight: 100;
    font-size: 8px;
    margin-top: -10;
}
.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    margin-left: 20px;
    font-size: 15px;
    margin-bottom: 20px;
}
.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    margin-left: 20px;
    font-size: 15px;
    margin-bottom: 20px;
}
.spinner {
    margin: 200px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
  }
  
.spinner > div {
    background-color: #fff;
    height: 100%;
    width: 6px;
    display: inline-block;

    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
  
.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
    20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
    }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
    }
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}
