body, html { padding: 0; margin: 0; }

.full-height {
    height: 100%;
}
.full-width {
    width: 100%;
}
.min-full-height--minus-navbar {
    min-height: calc(100% - 49px);
}
.max-full-height--minus-navbar {
    max-height: calc(100% - 49px);
}

.scroll-wrap {
    position: relative;
}

.scrollable {
    position: absolute;
    top: 0;
    bottom: 0;
    overflow-y: auto;
}

.flash-card {
    animation: flash 1s linear;
}

@keyframes flash {
    0% {background-color: white;}
    20% {background-color: #106cc8;}
    100% {background-color: white;}
}