.btn {
  display: inline-block;
  box-sizing: border-box;
  background-color: #d3d3d3;
  border: none;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.428;
  text-align: center;
  color: #f3f3f3;
  text-decoration: none;
  cursor: pointer;
  background-image: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 0;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  text-decoration: none;
  outline: 0;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
}
.btn.disabled,
.btn[disabled] {
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.5;
}
.btn.btn-lg {
  padding: 6px 22px;
  font-size: 26px;
  line-height: 1.625;
  height: 56px;
  border-radius: 6px;
}
.btn.btn-md {
  padding: 5px 10px;
  font-size: 22px;
  line-height: 40px;
  height: 45px;
  border-radius: 3px;
}
.btn.btn-sm {
  padding: 3px 8px;
  font-size: 18px;
  line-height: 28px;
  height: 31px;
  border-radius: 2px;
}
.btn.btn-success {
  background-color: #95d704;
}
.btn.btn-success:hover,
.btn.btn-success:focus {
  background-color: #9fe604;
}
.btn.btn-danger {
  background-color: #ff6a67;
}
.btn.btn-danger:hover,
.btn.btn-danger:focus {
  background-color: #ff6a67;
}
