
.button {
  -webkit-font-smoothing: antialiased;
  background-color: #222;
  border: none;
  color: #fff;
  display: inline-block;
  font-family: 'Indie Flower', cursive;
  font-size: 1.4rem;
  font-weight: 100;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  letter-spacing: 1px;
  color: white;
  padding: 20px 40px;
  text-transform: uppercase;
  transition: all 0.1s ease-out;
}
@media only screen and (max-width: 655px)
{
  .button{
    font-size: 0.9rem;
    padding: 10px 5px;
  }
  .bubblebtn{
    position: abosolute;
    top: 50px !important;
    left: 120px !important;
  }
  
}
@media only screen and (width: 768px)
{
  
  .button{
    font-size: 1.2rem;
    padding: 15px 10px;
  }
  .bubblebtn{
    position: abosolute;
    top: 60px !important;
    left: 300px !important;
  }
  
}


@media only screen and (width: 1024px)
{
  
  .button{
    font-size: 1.2rem;
    padding: 15px 10px;
  }
  .bubblebtn{
    position: abosolute;
    top: 60px !important;
    left: 200px !important;
  }
  
}

/* @media only screen and (width: 768px) and (max-width:768)
{
  .button{
    font-size: 1.4rem;
    padding: 10px 5px;
  }
  .bubblebtn{
    position: abosolute;
    top: 80px !important;
    left: 300px !important;
  }
   */

@media only screen and (max-width: 323px)
{
  .button{
    font-size: 0.9rem;
    padding: 10px 5px;
  }
  .bubblebtn{
    position: abosolute;
    top: 50px !important;
    left: 100px !important;
  }
  
}
.button:hover {
  background-color: #febf4d !important;
  color: #fff;
}
.button:active {
  transform: scale(0.95);
}
.button--bubble {
  position: relative;
  z-index: 2;
  color: white;
  background: none;
}
.button--bubble:hover {
  background: none;
}
.button--bubble:hover + .button--bubble__effect-container .circle {
  background: #febf4d;
}
.button--bubble:hover + .button--bubble__effect-container .button {
  background: #febf4d;
}
.button--bubble:active + .button--bubble__effect-container {
  transform: scale(0.95);
}
.button--bubble__container {
  position: relative;
  display: inline-block;
}
.button--bubble__container .effect-button {
  position: absolute;
  width: 50%;
  height: 25%;
  top: 50%;
  left: 25%;
  z-index: 1;
  transform: translateY(-50%);
  background: #2881C0;
  transition: background 0.1s ease-out;
}

.button--bubble__effect-container {
  position: absolute;
  display: block;
  width: 200%;
  height: 400%;
  top: -150%;
  left: -50%;
  filter: url("#goo");
  transition: all 0.1s ease-out;
  pointer-events: none;
}
.button--bubble__effect-container .circle {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 15px;
  background: #222;
  transition: background 0.1s ease-out;
} 
.button--bubble__effect-container .circle.top-left {
  top: 40%;
  left: 27%;
} 
.button--bubble__effect-container .circle.bottom-right {
  bottom: 40%;
  right: 27%;
}

.goo { 
  position: absolute;
  visibility: hidden;
  width: 1px;
  height: 1px;
}

.button--bubble__container {
  top: 50%;
  margin-top: -25px;
}


