.btn-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.4em;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  overflow: hidden;
  border: none;
  border-radius: 0.5em;
  user-select: none;
  cursor: pointer;
  transition: padding 0.2s;
}
.btn > .borders {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  padding: 0.3em 0.6em;
  font-size: inherit;
  text-align: center;
  border: 0.5em solid;
  transition: padding 0.2s;
  position: relative;
}
.btn > .borders > span {
  color: #fff;
  font-size: inherit;
  line-height: 1.2em;
  text-transform: uppercase;
  font-weight: 700;
  /* white-space: nowrap; */
}
.btn > .borders > .icon {
  font-size: inherit;
  height: 1.3em;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
}
.btn:hover {
  padding: 0;
}
.btn:hover > .borders {
  padding: 0.7em 1em;
}
.btn[disabled] {
  opacity: 0.8;
  filter: contrast(0.8);
  cursor: no-drop;
  pointer-events: none;
}
.btn.center .borders {
  justify-content: center;
}

.btn.btn-xxs {
  font-size: 0.5rem;
}
.btn.btn-xs {
  font-size: 0.65rem;
}
.btn.btn-sm {
  font-size: 0.8rem;
}
.btn.btn-md {
  font-size: 1rem;
}
.btn.btn-lg {
  font-size: 1.2rem;
}

.btn.btn-red {
  background-color: #932828;
}
.btn.btn-red > .borders {
  background-color: #c83e3e;
  border-top-color: #ee6b6b;
  border-right-color: #d44c4c;
  border-bottom-color: #aa3030;
  border-left-color: #d44c4c;
}

.btn.btn-green {
  background-color: #6a8921;
}
.btn.btn-green > .borders {
  background-color: #9fce31;
  border-top-color: #b3d85a;
  border-right-color: #95c02e;
  border-bottom-color: #85ac28;
  border-left-color: #95c02e;
}
.btn.btn-green > .borders > .icon,
.btn.btn-green > .borders > span {
  color: #313131;
}

.btn.btn-blue {
  background-color: #107dab;
}
.btn.btn-blue > .borders {
  background-color: #4abff0;
  border-top-color: #7acff3;
  border-right-color: #34b6ed;
  border-bottom-color: #14a5e2;
  border-left-color: #34b6ed;
}
.btn.btn-blue > .borders > .icon,
.btn.btn-blue > .borders > span {
  color: #272727;
}

.btn.btn-yellow {
  background-color: #a78503;
}
.btn.btn-yellow > .borders {
  background-color: #fc0;
  border-top-color: #fedb4e;
  border-right-color: #e3b602;
  border-bottom-color: #caa202;
  border-left-color: #e3b602;
}
.btn.btn-yellow > .borders > .icon,
.btn.btn-yellow > .borders > span {
  color: #3e3e3e;
}

.btn.btn-violet {
  background-color: #583d65;
}
.btn.btn-violet > .borders {
  background-color: #835995;
  border-top-color: #9b75ac;
  border-right-color: #79538a;
  border-bottom-color: #624370;
  border-left-color: #79538a;
}
.btn.btn-violet > .borders > .icon,
.btn.btn-violet > .borders > span {
  color: #fff;
}

.btn.btn-grey {
  background-color: #777;
}
.btn.btn-grey > .borders {
  background-color: #ccc;
  border-top-color: #ddd;
  border-right-color: #bbb;
  border-bottom-color: #a6a6a6;
  border-left-color: #bbb;
}
.btn.btn-grey > .borders > .icon,
.btn.btn-grey > .borders > span {
  color: #333;
}
/* .btn svg {
    fill: currentColor;
    margin-right: 0.5em;
    line-height: 1em;
} */
