@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;1,300&display=swap');
body {
    font-family: 'Nunito', sans-serif;
}

main>.container-fluid {
    padding: 75px 15px 0;
}

.fa-btn {
    margin-right: 6px;
}

.card-header a:after {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: right;
    color: grey;
}

.card-header a.collapsed:after {
    content: "\e080";
}

.footer {
    background-color: #efefef;
}

.box {
    background-color: white;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 2px;
    border: 0;
}

.box-shadow {
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .05);
}

.navbar-brand,
.navbar-nav li a {
    line-height: 50px;
    height: 50px;
    padding-top: 0px;
}

.flash {
    background: transparent;
    animation: flash 0.5s forwards linear infinite;
}

@keyframes flash {
    0% {
        background: transparent;
    }
    25% {
        background: navajowhite;
    }
    100% {
        background: mistyrose;
    }
}