.md-typeset__scrollwrap {
  /* Corrigir Scroll bar desnecessária ao usar tabelas dentro de admonitions (info-boxes) */
  margin: 0;
  margin-top: 1em;
}

/* Fade animation on opening collapse */
details[open] summary ~ * {
  animation: sweep 0.5s ease-in-out;
}
@keyframes sweep {
  0% {
    opacity: 0;
    margin-left: -10px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}

/* Ripple effect */
.btn:hover {
  background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%)
    center/15000%;
}

.btn:active {
  background-color: #6eb9f7;
  background-size: 100%;
  transition: background 0s;
}

.btn {
  color: white !important;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  padding: 5px 8px;
  cursor: pointer;
  color: white;
  background-color: #2196f3;
  box-shadow: 0 0 4px #999;
  outline: none;
  background-position: center;
  transition: background 0.8s !important;
}
