.Icon {
  height: 14px;
  width: 14px;
  min-height: 24px;
  min-width: 24px;
  fill: white;
  margin-left: 7px;
}

.Button {
  height: 50px;
  width: 50px;
  overflow: hidden;
  background: rgb(50, 124, 247);
  background: linear-gradient(
    90deg,
    rgba(50, 124, 247, 1) 0%,
    rgba(50, 154, 247, 1) 75%,
    rgba(50, 144, 247, 0.8) 100%
  );
  border-radius: 50px;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin: 1px; /* space for focus outline */
  outline-color: #4d90fe; /* to prevent outline from transitioning from black */
}
.Button:hover {
  width: 113px;
}
.Button:focus {
  outline: 1px solid #4d90fe;
  /*border: 1px solid #4d90fe;*/
}

.ButtonLabel {
  font-size: 12px;
  font-weight: bold;
  color: white;
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  user-select: none;
}

.Button:hover .ButtonLabel {
  opacity: 1;
}
