.omni-button {
  align-items: center;
  box-sizing: border-box;
  border-color: #718399;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  display: inline-flex;
  font-size: 1em;
  justify-content: center;
  text-decoration: none;
  outline: none;
  vertical-align: middle;
  user-select: none;
}

.omni-button__label {
  color: #FFFFFF;
}

.omni-button_primary {
  background-color: #375B8D;

  &:hover {
    background-color: #4C5766;
  }
  &:active {
    background-color: #1C2126;
  }
  &.omni-button_disabled {
    background-color: #1C2126;
    border-color: #39424D;
    .omni-button__label {
      opacity: 0.3;
    }
  }
}
.omni-button_secondary {
  background-color: transparent;
  &:hover {
    background-color: rgba(0,0,0,0.30);
  }
  &:active {
    background-color: rgba(0,0,0,0.50);
  }
  &.omni-button_disabled {
    background-color: #000000;
    border-color: #39424D;
    .omni-button__label {
      opacity: 0.3;
    }
  }
}
.omni-button_danger {
  background-color: #A7392B;
  border-color: #C63B27;
  &:hover {
    background-color: #4C5766;
  }
  &:active {
    background-color: #1C2126;
  }
  &.omni-button_disabled {
    background-color: #1C2126;
    border-color: #39424D;
    .omni-button__label {
      opacity: 0.3;
    }
  }
}
.omni-button_medium {
  margin: 0.5em 2.25em;
  .omni-button__label {
    line-height: 1.67em;
  }
}
.omni-button_small {
  margin: 0.42em 1.8em;
  .omni-button__label {
    font-size: 0.83em;
    line-height: 1.33em;
  }
}
