/* here you can put your own css to customize and override the theme */
/***
Header and header elements.
***/
.header {
  padding: 0 !important;
  margin: 0 !important;
}
 
.header .brand {
  margin-top: -1px;
}

.coffee{
  
  height: 50px;
  width: 40px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background: 
  	linear-gradient(
    to bottom left,
    #f7941e,
    darken(#f7941e, 15%)
  );
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  &:before{
    position: absolute;
    content:"";
    right: -15px;
    top: 5px;
    height: 25px;
    width: 10px;
    background: transparent;
    border: 5px solid #F7941E;
    border-left: 5px solid transparent;
    border-bottom: 5px solid darken(#f7941e, 7.5%);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 1;
  }
  &:after{
    position: absolute;
    content:"";
    width: 5px;
    height: 30px; 
    background: #e1e1e1;
    border-radius: 4px;
    top: -30px;
    box-shadow: 35px 0px 0 #e1e1e1,
                17.5px -15px 0 #e1e1e1;
    animation: steam 3s ease infinite;
    opacity: 1;
  }
}

@keyframes steam{
  
  100%{
    top: -40px;
    background: #eeeeee;
    box-shadow: 35px 0px 0 #eeeeee,
                17.5px -15px 0 #eeeeee;
    opacity: 0.25;
  }
}