/**
  * Coffee
  *
  * @author jh3y - jheytompkins.com
*/
@-webkit-keyframes coffee {
  100% {
    opacity: 0;
    -webkit-transform: translateY(-500%);
            transform: translateY(-500%); } }
@keyframes coffee {
  100% {
    opacity: 0;
    -webkit-transform: translateY(-500%);
            transform: translateY(-500%); } }

.plate{
    width: 29px;
    height: 5px;
    background: #6c3333;
    border-radius: 3px;
    margin-top: -3px;
}
.coffee {
    display: grid;
    border-radius: 4px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    width: 24px;
    padding: 2px;
    justify-items: center;
    position: relative;
    border-radius: 2px;
    border-top: 24px solid #6c3333;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    height: 0;
    margin-bottom: 0;
}
.coffee:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: '';
    height: 15px;
    width: 20px;
    border: 4px solid #6c3333;
    position: absolute;
    top: -150%;
    margin-top: -13px;
    margin-left: -10px;
    left: 100%;
    border-radius: 4px;
    z-index: 1;
}
.coffee:after {
    content: '';
    height: 4px;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: -21px;
    z-index: 2;
}
.coffee div {
    height: 17px;
    width: 4px;
    background: #6c3333;
    opacity: .3;
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
    -webkit-animation: coffee 2s infinite;
            animation: coffee 2s infinite; }
  .coffee div:nth-child(1) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s; }
  .coffee div:nth-child(2) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s; }
  .coffee div:nth-child(3) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
