/* Buttons */
.buttons {
  width: 100%;
  height: 54px;
  border-radius: 40px;
  box-sizing: border-box;
  text-align: center;
  line-height: 54px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  background: linear-gradient(90deg, #ED1A5E 0%, #0027FF 100%);
  position: relative;
  color: #1F1F1F; }
  .buttons-value {
    position: relative;
    display: block;
    height: inherit; }
  .buttons:before {
    content: '';
    display: block;
    position: absolute;
    width: 99.4%;
    height: 52px;
    background-color: #fff;
    border-radius: 40px;
    top: 1px;
    left: 1px; }
  .buttons.active {
    border: none;
    color: #fff; }
    .buttons.active:before {
      display: none; }
  .buttons.small {
    height: 48px;
    line-height: 48px; }
    .buttons.small:before {
      height: 46px;
      width: 99%; }
  .buttons.circle {
    height: 60px;
    line-height: 60px;
    position: relative; }
    .buttons.circle:before {
      height: 58px;
      width: 97%; }
    .buttons.circle img {
      display: block;
      position: absolute;
      margin: auto;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
    .buttons.circle.bg:before {
      height: initial;
      width: initial;
      display: none; }
  .buttons.wt-icon {
    border: 1px solid #fff;
    color: #fff;
    height: 48px;
    background: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 24px 0 24px; }
    .buttons.wt-icon span {
      display: block; }
    .buttons.wt-icon:before {
      display: none; }
    .buttons.wt-icon .buttons-value {
      line-height: 46px; }
    .buttons.wt-icon .buttons-icon {
      line-height: 48px; }
  .buttons:hover {
    background: linear-gradient(45deg, #ED1A5E, #0027FF);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite; }

input[type="submit"] {
  width: 100%;
  height: 54px;
  border-radius: 40px;
  box-sizing: border-box;
  text-align: center;
  line-height: 54px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  background: linear-gradient(90deg, #ED1A5E 0%, #0027FF 100%);
  position: relative;
  border: none;
  outline: none;
  color: #fff; }
  input[type="submit"]:hover {
    background: linear-gradient(45deg, #ED1A5E, #0027FF);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite; }

@keyframes gradientShift {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
/* END Buttons */
/* Mobile Buttons */
@media only screen and (max-width: 544px) {
  .buttons {
    height: 54px;
    line-height: 54px; }
    .buttons.wt-icon {
      padding: 0 92px; } }
/* END Buttons Slider */

/*# sourceMappingURL=buttons.css.map */
