.pptmui-button {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin: 0;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  border: none;
}
.pptmui-button:focus {
  outline: none;
}
.pptmui-button--default {
  color: #82cf3a;
  background: transparent;
  border: 1px solid #82cf3a;
}
.pptmui-button--default.pptmui-button--active {
  color: #6fc128;
  background: transparent;
  border: 1px solid #6fc128;
}
.pptmui-button--default.pptmui-button--shadow {
  box-shadow: 0 5px 10px 3px rgba(122, 207, 47, 0.3);
}
.pptmui-button--default.pptmui-button--active.pptmui-button--default.pptmui-button--shadow {
  box-shadow: 0 5px 10px 3px rgba(111, 193, 40, 0.3);
}
.pptmui-button--success {
  color: #fff;
  background: #82cf3a;
  border: 1px solid #82cf3a;
}
.pptmui-button--success.pptmui-button--active {
  color: #fff;
  background: #6fc128;
  border: 1px solid #6fc128;
}
.pptmui-button--success.pptmui-button--shadow {
  box-shadow: 0 5px 10px 3px rgba(122, 207, 47, 0.3);
}
.pptmui-button--success.pptmui-button--active.pptmui-button--success.pptmui-button--shadow {
  box-shadow: 0 5px 10px 3px rgba(111, 193, 40, 0.3);
}
.pptmui-button--orange {
  color: #fff;
  background: -webkit-linear-gradient(bottom, #f85700, #fa9222);
  background: linear-gradient(0deg, #f85700, #fa9222);
}
.pptmui-button--orange.pptmui-button--active {
  color: #fff;
  background: #f85700;
}
.pptmui-button--blue {
  color: #fff;
  background: -webkit-linear-gradient(bottom, #1dd5e6, #46aef7);
  background: linear-gradient(0deg, #1dd5e6, #46aef7);
}
.pptmui-button--blue.pptmui-button--active {
  color: #fff;
  background: #46aef7;
}
.pptmui-button--disabled {
  opacity: 0.5;
  box-shadow: none;
  cursor: not-allowed;
}
.pptmui-button--medium {
  height: 32px;
  font-size: 14px;
  padding: 0 12px;
}
.pptmui-button--medium.pptmui-button--round {
  border-radius: 32px;
}
.pptmui-button--small {
  height: 24px;
  font-size: 10px;
  padding: 0 8px;
}
.pptmui-button--small.pptmui-button--round {
  border-radius: 24px;
}
.pptmui-button--large {
  height: 55px;
  font-size: 17px;
  padding: 0 32px;
}
.pptmui-button--large.pptmui-button--round {
  border-radius: 55px;
}
.pptmui-button--block {
  display: block;
  width: 100%;
  height: 50px;
  font-size: 16px;
}
.pptmui-button--block.pptmui-button--round {
  border-radius: 50px;
}
.pptmui-button__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  height: 100%;
}
.pptmui-button__content::before {
  content: ' ';
}
