// Placeholder for adding common transition
%transition-all-3s-ease {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

// Placeholder for adding box shadow cubic bezier on buttons
%buttons-box-shadow-cubic-bezier {
  -webkit-transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1);
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1);
}

// Placeholder for removing box shadow
%buttons-box-shadow-none {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

// Placeholder for inputs compatibility
%forms-inputs-styling {
  @include forms-background-gradient($color-primary);
  @extend %buttons-box-shadow-none;
  float: none;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center bottom, center -webkit-calc(100% - 1px);
  background-position: center bottom, center calc(100% - 1px);
  background-size: 0 2px, 100% 1px;
  font-weight: 400;
  -webkit-transition: background 0s ease-out;
  transition: background 0s ease-out;
}

// Placeholder for inputs compatibility on focus
%forms-inputs-styling-on-focus {
  @include forms-background-gradient($color-primary);
  @extend %buttons-box-shadow-none;
  outline: none;
  background-size: 100% 2px,100% 1px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}