/* line 1, ../scss/buttons.scss */
body {
  font: 15px/1.5 "-apple-system", BlinkMacSystemFont, Arial, sans-serif;
}

/* line 5, ../scss/buttons.scss */
.button {
  color: #ffffff;
  font: bold 14px/1 Arial;
  text-align: center;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 18px;
  position: relative;
  border: 0;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
}
/* line 21, ../scss/buttons.scss */
.button:focus {
  outline: none;
}
/* line 25, ../scss/buttons.scss */
.button:hover {
  text-decoration: none;
}
/* line 29, ../scss/buttons.scss */
.button.size-small {
  font-size: 14px;
  height: 36px;
  line-height: 36px;
}
/* line 34, ../scss/buttons.scss */
.button.size-small[class*="bordered-"] {
  line-height: 30px;
}
/* line 39, ../scss/buttons.scss */
.button.size-medium {
  font-size: 14px;
  height: 44px;
  line-height: 44px;
}
/* line 45, ../scss/buttons.scss */
.button.filled-green {
  background-color: #15a863;
}
/* line 49, ../scss/buttons.scss */
.button.filled-white {
  border: 2px solid #fff;
  line-height: 36px;
  padding: 0 12px;
}
/* line 55, ../scss/buttons.scss */
.button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  display: block;
  left: 0;
  top: 0;
}
/* line 66, ../scss/buttons.scss */
.button:not(:disabled):hover::after {
  background: rgba(255, 255, 255, 0.2);
  height: 100%;
}
