/* Misc Basic Styling */
.container{
    margin-top: 60px;
}

.content {
    margin-top: 0px;
}

.navbar {
    z-index: 800;
}

.navbar-brand {
    font-size: 1.4em !important;
}

.navbar-brand img {
    height: 100%;
    margin-right: 8px;
}

.navbar-brand, .navbar-brand:hover, .navbar-brand:focus {
    color: #555 !important;
}

/* Responsive Styling */

@media screen and (max-width: 768px) {
    .navbar-brand {
        white-space: nowrap;
    }
}

/* Toast Messages */

.toast-message {
    visibility: hidden;
    height: 50px;
    border: none;
    background-color: #0b8a8a;
    color: white;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px;
    font-size: 1.8rem;
}

.toast-message.show {
    visibility: visible;
    animation: fadeInDown 0.5s forwards, fadeout 0.5s 2.5s forwards;
}

.toast-message.error {
    background-color: #8a0b0b;
}

.toast-message.warning {
    background-color: #e86a1b;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 60px, 0);
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
        transform: translate3d(0, 60px, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }
}

.list-group-item
{
  overflow:hidden;  
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group{
    max-height: 200px;
    margin-bottom: 10px;
    overflow:scroll;
    -webkit-overflow-scrolling: touch;
}