_buttons.scss 1.13 KB
.btn_ {
  display: block;
  float: left;
  height: 46px;
  line-height: 46px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  min-width: 175px;
  border: 1px solid $orange-color;
  background: $orange-color;
  padding: 0 11px 0 11px;
  text-decoration: none;
  position: relative;
  border-radius: 46px;
  @include Transition(0.2);
  &:hover {
    text-decoration: none;
    background: $orange-color-hover;
    border: 1px solid $orange-color-hover;
    //color: $orange-color;
  }
  &:active {
    color: #fff;
    background: $orange-color-active;
    border: 1px solid $orange-color-active;
  }
}


.bye-link-wrapp {
  margin-top: 28px;
  text-align: center;
  .btn_ {
    display: inline-block;
    position: relative;
    float: none;
    &:before, &:after {
      position: absolute;
      width: 87px;
      height: 1px;
      background: #9e9e9e;
      top: 50%;
      margin-top: -1px;
    content: '';
    }
    &:before {
      left: -87px;
      margin-left: -20px;
    }
    &:after {
      right: -87px;
      margin-right: -20px;
    }
  }
}