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

body {
    height: 100%;
    background-color: rgb(214, 226, 214);
    color: var(--white);
}

body > .container-fluid {
    min-height: calc(100vh - 60px);
}

body > .container-fluid ~ footer {
    line-height: 59px;
    height: 59px;
    text-align: center;
    border-top: 1px solid var(--light);
}

.posts {
    padding: 12px;
}

.post {
    padding: 12px;
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.3);
    margin-top: 12px;
    margin-bottom: 12px;
}

.post .post-title {
    font-size: 18px;
}

.post .post-body {
    font-size: 12px;
}

section {border-bottom: 1px solid black;}

span.low{background-color: greenyellow;}
span.med{background-color: yellow;}
span.high{background-color:orange;}
span.vhigh{background-color:red;}

.btn-group label{
    background-color:rgb(212, 197, 58);
    color: black;
}

.btn-group label.active{
    background-color: #e43617 !important;
 }

 .alt-color{
    border-radius: 15px;
    margin-bottom: 7px;
    margin-top: 7px;
    &:nth-child(3n-1) {
        background-color: #faccb6 !important;
      }
      &:nth-child(3n-2) {
        background-color: #dfcd9c !important;
      }
      &:nth-child(3n-3) {
        background-color: rgb(232, 238, 181) !important;
      }
 }