body {
  --button-border-radius: 7px;
  --button-bg: #000;
  --button-stroke: #4CAF50;
  --button-stroke-width: 2px;
  --button-text: #4CAF50;
  --button-bg-hover: #4CAF50;
  --button-stroke-hover: #4CAF50;
  --button-stroke-width-hover: 2px;
  --button-text-hover: #000;
  --cursor-stroke: #000;
  --cursor-fill: #000;
  --cursor-stroke-width: 2px;
}

.button-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  justify-content: normal;
  user-select: none;
  position: absolute;
  bottom: 0px;
  margin: 30px;
  right: 0px;
}

.ok-button-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  align-items: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 999999999;
}

.button-f {
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-width: var(--button-stroke-width);
  border-color: var(--button-stroke);
  border-style: solid;
  color: var(--button-text);
  background: var(--button-bg);
  border-radius: var(--button-border-radius);
  min-width: 95px;
  height: 48px;
  padding: 0;
  margin: 1rem;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.button-f:focus,
.button-f--hover {
  outline: none;
  border-width: var(--button-stroke-width-hover);
  border-color: var(--button-stroke-hover);
  color: var(--button-text-hover);
  background: var(--button-bg-hover);
}

.button-f__text,
.button-f__text-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=/button.da4f6d21.css.map */