@keyframes dashLoader_tapit {
	0% {
	  stroke-dasharray: 1, 200;
	  stroke-dashoffset: 0;
	}
	50% {
	  stroke-dasharray: 89, 200;
	  stroke-dashoffset: -35px;
	}
	100% {
	  stroke-dasharray: 89, 200;
	  stroke-dashoffset: -124px;
	}
}

/* LOADER_tapit */
.loader-tapit {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;
    height: 100vh;
    background: black;
    /* background: transparent; */
    position: fixed;
    top: 0;
    left: 0;
    transition: all 1s ease;
    z-index: 99999; }
    .loader_tapit__container {
      width: 200px;
      margin: 0 auto;
      position: relative; }
    .loader_tapit__content {
      width: 100%;
      transform-origin: center;
      -webkit-animation: rotate 20s linear infinite;
              animation: rotate 20s linear infinite; }
    .loader_tapit__circular {
      stroke: #FFF;
      stroke-dasharray: 1, 200;
      stroke-dashoffset: 0;
      stroke-linecap: round;
      -webkit-animation: dashLoader_tapit 1.5s ease-in-out infinite;
              animation: dashLoader_tapit 1.5s ease-in-out infinite; }
      .loader_tapit__circular:nth-of-type(2) {
        -webkit-animation-delay: .3s;
                animation-delay: .3s; }
      .loader_tapit__circular:nth-of-type(3) {
        -webkit-animation-delay: .6s;
                animation-delay: .6s; }
    .loader_tapit--one .loader_tapit__circular:nth-child(n+2) {
      display: none; }
    .loader_tapit.hide .loader_tapit__content, .loader_tapit.hide .loader_tapit__circular {
      -webkit-animation-play-state: paused;
              animation-play-state: paused; }

.loader-tapit-hide{
    opacity: 0 !important;
	  pointer-events: none !important;
    transition: all 3 + s ease;
}

.loader-tapit__image{
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* Loader HertBeat*/
@keyframes heratbeat {
  from { transform: none; }
  50% { transform: scale(1.2); }
  to { transform: none; }
}


/* Loader HertBeat*/
@keyframes heratbeatopacity {
  from { opacity: 0; }
  50% { opacity: 1; }
  to { opacity: 0; }
}


.heart {
  width: 100%;
  display: inline-block;
  font-size: 150px;
  text-shadow: 0 0 10px #222,1px 1px  0 #450505;
  color: red;
  animation: heratbeatopacity 30s infinite;
  transform-origin: center;
}


 .glass{
  width: 5em;
  height: 8em;
  border: 5px solid lightgray;
  border-radius: 0.5em;
  position: relative;
}

.glass::after{
  content: '';
  width: 1em;
  height: 60%;
  border: 5px solid lightgray;
  border-radius: 0.5em;
  position: absolute;
  top: 15%;
  left: 100%;
}

.beer{
  position: absolute;
  background: linear-gradient(rgb(245, 245, 220), rgb(255, 221, 64) 50%);
  bottom: 5%;
  left: 5%;
  width: 90%;
  height: 105%;
  animation: load 3s infinite;
  transform-origin: center bottom;
}

@keyframes load{
  from{
    transform: scaleY(0);
  }
  50%, to{
    transform: scaleY(1);
    border-radius: 50% 50% 0 0/ 10%;
  }
}

.beer::before{
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 20%;
  height: 90%;
  border-radius: 10%;
  background-color: rgba(245, 245, 220, 0.4);
  animation: load2 3s infinite;
  transform-origin: center top;
}

@keyframes load2{
  from, 50%{
    transform: scaleY(0);
  }
  to{
    transform: scaleY(1);
    border-radius: 50% 50% 0 0/ 10%;
  }
}
