.button {
  font-family: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  position: relative;
  display: inline-grid;
  min-width: 200px;
  min-height: 60px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border: 0;
  border-radius: 30px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  background-color: rgb(203, 51, 59);
  transition: opacity 0.3s, color 0.3s, background-color 0.3s, border-color 0.3s;
  grid-auto-flow: column;
  column-gap: 10px;
  flex-shrink: 0;
  user-select: none;
  cursor: pointer;
}

@media (min-width: 991px) {
  .button {
    font-size: 16px;
  }
}

@media (min-width: 991px) {
  .button:not(:disabled):focus,
  .button:not(:disabled):hover {
    color: rgb(255, 255, 255) !important;
    background-color: rgb(166, 25, 46);
    text-decoration: none !important;
  }
}

.button:not(:disabled):active {
  opacity: 0.7;
}

.button:disabled {
  color: rgb(176, 176, 176);
  background-color: rgb(241, 241, 241);
  cursor: not-allowed;
}

.button svg {
  fill: currentcolor;
  stroke: currentcolor;
}