.wswg-button {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 0;
  user-select: none;
  text-transform: none;
  transition: opacity .2s;

  &::-moz-focus-inner {
    border: 0 !important;
  }

  &:hover,
  &:focus {
    text-decoration: none;
    opacity: .8;
  }

  &:focus {
    outline-color: $main-color-green;
  }

  &[disabled] {
    opacity: .65;
    user-select: none;
    box-shadow: none;
    cursor: not-allowed;
  }
}

.hidden {
  display: none !important;
}

.wswg-offset-bottom-sm {
  margin-bottom: 16px;
}

.wswg-offset-bottom-xs {
  margin-bottom: 8px;
}

.wswg-offset-right-xs {
  margin-right: 8px;
}

.wswg-link__dropdown__field {
  display: block;
  width: 100%;
  height: 35px;
  padding: 7px 10px;
  font-size: 14px;
  line-height: 1.43;
  border-radius: 0;
  box-shadow: none;
  text-overflow: ellipsis;
  border: $split-border;
  background-color: $white;
  color: #333;

  &:focus {
    outline-color: $main-color-green;
  }
}

.wswg-list--none {
  list-style: none;
  padding-left: 0;
}

// Modificators for button | Green color | succsess

.btn-green {
  background-color: $main-color-green;
  color: $white;
  border-color: rgba(0, 0, 0, .3);

  &:hover,
  &:focus,
  &:active {
    background-color: $main-color-green;
    color: $white;
  }
}

// Modificators for button | White color | cancel

.btn-white {
  background-color: $white;
  color: $grey;
  border-color: #CCC;

  &:hover,
  &:focus,
  &:active {
    background-color: $white;
    color: $grey;
  }
}

.button-md {
  padding: 10px 25px;
}

