@charset "UTF-8";

#article-336 .btn {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background-color: #3498db;
  border-radius: 0.4em;
  padding: 0.5em 1em;
  transition: 0.5s;
}

#article-336 .btn-hover:hover {
  background-color: #2980b9;
}

#article-336 .btn-border {
  border: 2px solid #3498db;
  color: #3498db;
  background-color: transparent;
}
#article-336 .btn-border:hover {
  background-color: #3498db;
  color: #fff;
}

#article-336 .btn-gradient {
  color: #fff;
  background: linear-gradient(45deg, #3498db, #9b59b6);
}

#article-336 .btn-shadow {
  color: #fff;
  background-color: #3498db;
  box-shadow: 0 4px 0 #2980b9;
}
#article-336 .btn-shadow:active {
  transform: translateY(4px);
  box-shadow: none;
}

#article-336 .btn-light {
  position: relative;
  overflow: hidden;
}
#article-336 .btn-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transition: 0.5s;
}
#article-336 .btn-light:hover::before {
  left: 100%;
}

#article-336 .btn-grow {
  transition: transform 0.3s;
}
#article-336 .btn-grow:hover {
  transform: scale(1.1);
}

#article-336 .btn-underline {
  position: relative;
  border-radius: 0;
}
#article-336 .btn-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #2980b9;
  transition: 0.3s;
}
#article-336 .btn-underline:hover::after {
  width: 100%;
}

#article-336 .btn-ripple {
  position: relative;
  overflow: hidden;
}
#article-336 .btn-ripple::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
}
#article-336 .btn-ripple:hover::after {
  transform: scale(2);
  opacity: 1;
  transition: 0.4s;
}

#article-336 .btn-round {
  color: #fff;
  background: #3498db;
  border-radius: 4em;
  padding: 10px 24px;
}

#article-336 .btn-ghost-wrap {
  background-color: #000;
  padding: min(20px, calc(20 / 640 * 100vw)) 0;
}
#article-336 .btn-ghost {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}

#article-336 .btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
#article-336 .btn-icon img {
  width: min(10px, calc(10 / 640 * 100vw));
}

#article-336 .btn-grad-hover {
  background: linear-gradient(45deg, #3498db, #9b59b6);
  color: #fff;
}
#article-336 .btn-grad-hover:hover {
  filter: brightness(1.2);
}

#article-336 .btn-border-anim {
  position: relative;
  color: #3498db;
  background-color: transparent;
}
#article-336 .btn-border-anim::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #3498db;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}
#article-336 .btn-border-anim:hover::before {
  transform: scaleX(1);
}

#article-336 .btn-glass-wrap {
  background-color: #000;
  padding: min(20px, calc(20 / 640 * 100vw)) 0;
}
#article-336 .btn-glass {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: #fff;
}

#article-336 .btn-neon-wrap {
  background-color: #000;
  padding: min(20px, calc(20 / 640 * 100vw)) 0;
}
#article-336 .btn-neon {
  color: #00ffff;
  background-color: transparent;
  border: 1px solid #00ffff;
  text-shadow: 0 0 5px #00ffff;
}

#article-336 .btn-slide {
  position: relative;
  color: #3498db;
  border: 2px solid #3498db;
  background-color: #fff;
  overflow: hidden;
  z-index: 1;
}
#article-336 .btn-slide:hover {
  color: #fff;
}
#article-336 .btn-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #3498db;
  transform: translateX(-100%);
  transition: 0.3s;
  z-index: -1;
}
#article-336 .btn-slide:hover::before {
  transform: translateX(0);
}

#article-336 .btn-rotate:hover {
  transform: rotate(3deg);
}

#article-336 .btn-press:active {
  transform: scale(0.95);
}

#article-336 .btn-flat {
  color: #333;
  background-color: #eee;
}