.fx-pipes-3d-brasil{
  position:fixed;
  left:0;
  top:0;
  width:100%;
  pointer-events:none;
  z-index:999999;
  --fx-br-pipe-height:2px;
  --fx-br-top-desktop:0px;
  --fx-br-top-mobile:0px;
}
.fx-br-pipe{
  position:absolute;
  left:0;
  width:100%;
  height:var(--fx-br-pipe-height);
  border-radius:4px;
  text-align:center;
  font-weight:bold;
  font-size:14px;
  line-height:var(--fx-br-pipe-height);
  box-shadow:
    inset 0 2px 3px 0 rgba(255,255,255,.30),
    inset 0 -3px 6px 0 rgba(0,0,0,.20),
    0 3px 2px 0 rgba(0,0,0,.20);
  overflow:hidden;
  transform:translateY(-160%);
  animation:fxBrasilPipeIn .45s cubic-bezier(.18,.82,.24,1) forwards;
}
.fx-br-pipe::after{
  content:"";
  position:absolute;
  top:-35%;
  left:-35%;
  width:28%;
  height:170%;
  transform:skewX(-28deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.78),transparent);
  opacity:.72;
  animation:fxBrasilPipeShine 2.6s ease-in-out infinite;
  animation-delay:.55s;
}
.fx-br-pipe-green{
  top:var(--fx-br-top-desktop);
  color:#fff;
  border:1px solid #009739;
  background-color:#009739;
  background-image:linear-gradient(to bottom,#00B84A,#009739 80%);
}
.fx-br-pipe-yellow{
  top:calc(var(--fx-br-top-desktop) + var(--fx-br-pipe-height) + 2px);
  color:#000;
  border:1px solid #FFDF00;
  background-color:#FFDF00;
  background-image:linear-gradient(to bottom,#FFF176,#FFDF00 80%);
  animation-delay:.08s;
}
@media (max-width: 782px){
  .fx-br-pipe-green{
    top:var(--fx-br-top-mobile);
  }
  .fx-br-pipe-yellow{
    top:calc(var(--fx-br-top-mobile) + var(--fx-br-pipe-height) + 2px);
  }
}
@keyframes fxBrasilPipeIn{
  to{transform:translateY(0);}
}
@keyframes fxBrasilPipeShine{
  0%,28%{left:-35%;opacity:0;}
  42%{opacity:.75;}
  72%{left:108%;opacity:0;}
  100%{left:108%;opacity:0;}
}
