body::after {
  content: var(--bp, 'Phone');
  background-color: white;
  padding: 5px;
  text-transform: uppercase;
  font-weight: bold;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}

@media (min-width: 480px) {
  :root {
    --bp: 'Phone-Wide'
  }
}

@media (min-width: 560px) {
  :root {
    --bp: 'phablet'
  }
}

@media (min-width: 640px) {
  :root {
    --bp: 'tablet-small'
  }
}

@media (min-width: 768px) {
  :root {
    --bp: 'tablet'
  }
}

@media (min-width: 1024px) {
  :root {
    --bp: 'tablet-wide'
  }
}

@media (min-width: 1248px) {
  :root {
    --bp: 'desktop'
  }
}

@media (min-width: 1440px) {
  :root {
    --bp: 'desktop-wide'
  }
}

// For Testing Purposes
.test {
  font-weight: bold;
  color: white;
  background-color: black;
  padding: 5px; 
  // @include bounceIn();
}

.yellow {
  background-color: yellow !important;
  color: black !important; // @include bounceInRight();
}

.green {
  background-color: green !important;
  color: black !important; // @include bounceInRight();
}
