.Button {
  font-weight: 600;
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border-radius: 99rem;
  transform: translateY(0rem); }

.Button, .Button:before {
  transition: 0.25s; }

.Button:before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  z-index: -1; }

.Button:focus {
  outline: none; }

.Button:focus:before {
  border: 1px solid currentColor; }

.Button--withDim:before {
  background-color: rgba(255, 255, 255, 0.1); }

.Button--withDim:hover:before {
  background-color: rgba(255, 255, 255, 0.2); }

.Button--withDim:active:before {
  background-color: rgba(255, 255, 255, 0.25); }

.Button--withTransition:hover {
  transform: translateY(-0.3rem); }

.Button--withTransition:active {
  transform: translateY(0rem); }

.Button--withTransition:hover:after {
  content: "";
  position: absolute;
  display: block;
  height: 0.5rem;
  top: 100%;
  width: 100%; }
