/*--------------------------------------------------------------------------------
# PixelEnemy Core Buttons Block
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
TABLE OF CONTENTS:
----------------------------------------------------------------------------------
# General
# Common
# Button Effects
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
# General
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
# Common
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
## Common -> Buttons
--------------------------------------------------------------------------------*/
.btn {
  display: inline-block;
  font-weight: 500;
  color: #333333;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 0.125rem solid transparent;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0.005em;
  line-height: 1;
  margin: 0 0.3125rem 0.625rem 0;
  padding: 0.55rem 1.25rem 0.75rem;
  border-radius: 0;
  font-size: 1rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.btn:not(.btn-block).btn-with-icon i, .btn:not(.btn-block).btn-with-icon-right i {
  font-size: 1.375rem;
  top: 0.4625rem;
}

@media (max-width: 1200px) {
  .btn:not(.btn-block).btn-with-icon i, .btn:not(.btn-block).btn-with-icon-right i {
    font-size: calc(1.2625rem + 0.15vw) ;
  }
}

.btn:not(.btn-block).btn-with-icon {
  padding-left: 2.46875rem;
}

.btn:not(.btn-block).btn-with-icon i {
  left: 0.5625rem;
}

.btn:not(.btn-block).btn-with-icon-right {
  padding-right: 2.46875rem;
}

.btn:not(.btn-block).btn-with-icon-right i {
  left: unset;
  right: 0.5625rem;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.btn:hover {
  color: #333333;
  text-decoration: none;
}

.btn:focus, .btn.focus, .btn:active, .btn.active {
  outline: 0;
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

.btn.disabled,
fieldset:disabled .btn,
.btn:disabled {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background: #ff1b4d;
}

.btn-primary:hover {
  background: #ce002d;
}

.btn-primary:focus,
.btn-primary .focus {
  background: #b40027;
}

.btn-primary:hover, .btn-primary:focus,
.btn-primary.focus .btn-primary:active, .btn-primary.active {
  color: #fff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  background: #9b0022;
}

.btn-secondary {
  color: #fff;
  background: #007bff;
}

.btn-secondary:hover {
  background: #0056b3;
}

.btn-secondary:focus,
.btn-secondary .focus {
  background: #004a99;
}

.btn-secondary:hover, .btn-secondary:focus,
.btn-secondary.focus .btn-secondary:active, .btn-secondary.active {
  color: #fff;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  background: #003e80;
}

.btn-light {
  color: #4d4d4d;
  background: #eeeeee;
}

.btn-light:hover {
  background: #c8c8c8;
}

.btn-light:focus,
.btn-light .focus {
  background: #bbbbbb;
}

.btn-light:hover, .btn-light:focus,
.btn-light.focus .btn-light:active, .btn-light.active {
  color: #4d4d4d;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  background: #aeaeae;
}

.btn-dark {
  color: #fff;
  background: #232323;
}

.btn-dark:hover {
  background: black;
}

.btn-dark:focus,
.btn-dark .focus {
  background: black;
}

.btn-dark:hover, .btn-dark:focus,
.btn-dark.focus .btn-dark:active, .btn-dark.active {
  color: #fff;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  background: black;
}

.btn-white {
  color: #4d4d4d;
  background: #fff;
}

.btn-white:hover {
  background: #d9d9d9;
}

.btn-white:focus,
.btn-white .focus {
  background: #cccccc;
}

.btn-white:hover, .btn-white:focus,
.btn-white.focus .btn-white:active, .btn-white.active {
  color: #4d4d4d;
}

.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active,
.show > .btn-white.dropdown-toggle {
  background: #bfbfbf;
}

.btn-outline-primary {
  color: #ff1b4d;
  border-color: #ff1b4d;
}

.btn-outline-primary:hover {
  background: #ff1b4d;
  border-color: #ff1b4d;
}

.btn-outline-primary:focus,
.btn-outline-primary .focus {
  background: #ce002d;
  border-color: #ce002d;
}

.btn-outline-primary:hover, .btn-outline-primary:focus,
.btn-outline-primary.focus .btn-outline-primary:active, .btn-outline-primary.active {
  color: #fff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  background: #b40027;
  border-color: #b40027;
}

.btn-outline-secondary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-secondary:hover {
  background: #007bff;
  border-color: #007bff;
}

.btn-outline-secondary:focus,
.btn-outline-secondary .focus {
  background: #0056b3;
  border-color: #0056b3;
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus,
.btn-outline-secondary.focus .btn-outline-secondary:active, .btn-outline-secondary.active {
  color: #fff;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  background: #004a99;
  border-color: #004a99;
}

.btn-outline-light {
  color: #eeeeee;
  border-color: #eeeeee;
}

.btn-outline-light:hover {
  background: #eeeeee;
  border-color: #eeeeee;
}

.btn-outline-light:focus,
.btn-outline-light .focus {
  background: #c8c8c8;
  border-color: #c8c8c8;
}

.btn-outline-light:hover, .btn-outline-light:focus,
.btn-outline-light.focus .btn-outline-light:active, .btn-outline-light.active {
  color: #4d4d4d;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  background: #bbbbbb;
  border-color: #bbbbbb;
}

.btn-outline-dark {
  color: #232323;
  border-color: #232323;
}

.btn-outline-dark:hover {
  background: #232323;
  border-color: #232323;
}

.btn-outline-dark:focus,
.btn-outline-dark .focus {
  background: black;
  border-color: black;
}

.btn-outline-dark:hover, .btn-outline-dark:focus,
.btn-outline-dark.focus .btn-outline-dark:active, .btn-outline-dark.active {
  color: #fff;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  background: black;
  border-color: black;
}

.btn-outline-white {
  color: #fff;
  border-color: #fff;
}

.btn-outline-white:hover {
  background: #fff;
  border-color: #fff;
}

.btn-outline-white:focus,
.btn-outline-white .focus {
  background: #d9d9d9;
  border-color: #d9d9d9;
}

.btn-outline-white:hover, .btn-outline-white:focus,
.btn-outline-white.focus .btn-outline-white:active, .btn-outline-white.active {
  color: #4d4d4d;
}

.btn-outline-white:not(:disabled):not(.disabled):active, .btn-outline-white:not(:disabled):not(.disabled).active,
.show > .btn-outline-white.dropdown-toggle {
  background: #cccccc;
  border-color: #cccccc;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.75625rem 2.25rem 0.95625rem;
  border-radius: 0;
  font-size: 1.125rem;
}

.btn-lg:not(.btn-block).btn-with-icon i, .btn-group-lg > .btn:not(.btn-block).btn-with-icon i, .btn-lg:not(.btn-block).btn-with-icon-right i, .btn-group-lg > .btn:not(.btn-block).btn-with-icon-right i {
  font-size: 1.5rem;
  top: 0.66875rem;
}

@media (max-width: 1200px) {
  .btn-lg:not(.btn-block).btn-with-icon i, .btn-group-lg > .btn:not(.btn-block).btn-with-icon i, .btn-lg:not(.btn-block).btn-with-icon-right i, .btn-group-lg > .btn:not(.btn-block).btn-with-icon-right i {
    font-size: calc(1.275rem + 0.3vw) ;
  }
}

.btn-lg:not(.btn-block).btn-with-icon, .btn-group-lg > .btn:not(.btn-block).btn-with-icon {
  padding-left: 2.83125rem;
}

.btn-lg:not(.btn-block).btn-with-icon i, .btn-group-lg > .btn:not(.btn-block).btn-with-icon i {
  left: 0.71719rem;
}

.btn-lg:not(.btn-block).btn-with-icon-right, .btn-group-lg > .btn:not(.btn-block).btn-with-icon-right {
  padding-right: 2.83125rem;
}

.btn-lg:not(.btn-block).btn-with-icon-right i, .btn-group-lg > .btn:not(.btn-block).btn-with-icon-right i {
  left: unset;
  right: 0.71719rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.325rem 0.875rem 0.525rem;
  border-radius: 0;
  font-size: 0.875rem;
}

.btn-sm:not(.btn-block).btn-with-icon i, .btn-group-sm > .btn:not(.btn-block).btn-with-icon i, .btn-sm:not(.btn-block).btn-with-icon-right i, .btn-group-sm > .btn:not(.btn-block).btn-with-icon-right i {
  font-size: 1.0625rem;
  top: 0.33125rem;
}

.btn-sm:not(.btn-block).btn-with-icon, .btn-group-sm > .btn:not(.btn-block).btn-with-icon {
  padding-left: 1.85312rem;
}

.btn-sm:not(.btn-block).btn-with-icon i, .btn-group-sm > .btn:not(.btn-block).btn-with-icon i {
  left: 0.39375rem;
}

.btn-sm:not(.btn-block).btn-with-icon-right, .btn-group-sm > .btn:not(.btn-block).btn-with-icon-right {
  padding-right: 1.85312rem;
}

.btn-sm:not(.btn-block).btn-with-icon-right i, .btn-group-sm > .btn:not(.btn-block).btn-with-icon-right i {
  left: unset;
  right: 0.39375rem;
}

.btn-xs {
  padding: 0.20625rem 0.4875rem 0.40625rem;
  border-radius: 0;
  font-size: 0.8125rem;
}

.btn-xs:not(.btn-block).btn-with-icon i, .btn-xs:not(.btn-block).btn-with-icon-right i {
  font-size: 0.875rem;
  top: 0.275rem;
}

.btn-xs:not(.btn-block).btn-with-icon {
  padding-left: 1.5rem;
}

.btn-xs:not(.btn-block).btn-with-icon i {
  left: 0.30469rem;
}

.btn-xs:not(.btn-block).btn-with-icon-right {
  padding-right: 1.5rem;
}

.btn-xs:not(.btn-block).btn-with-icon-right i {
  left: unset;
  right: 0.30469rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

.btn-block i {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

input[type='submit'].btn-block,
input[type='reset'].btn-block,
input[type='button'].btn-block {
  width: 100%;
}

.btn-with-icon:not(.btn-block),
.btn-with-icon-right:not(.btn-block) {
  position: relative;
}

.btn-with-icon:not(.btn-block) i,
.btn-with-icon-right:not(.btn-block) i {
  position: absolute;
}

.pe-block-element.pe-block-element-button {
  display: inline-block;
}

/*--------------------------------------------------------------------------------
## Common -> Button Group
--------------------------------------------------------------------------------*/
.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -0.125rem;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.65625rem;
  padding-left: 0.65625rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 1.6875rem;
  padding-left: 1.6875rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -0.125rem;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type='radio'],
.btn-group-toggle > .btn input[type='checkbox'],
.btn-group-toggle > .btn-group > .btn input[type='radio'],
.btn-group-toggle > .btn-group > .btn input[type='checkbox'] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/*--------------------------------------------------------------------------------
# Button Effects
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
## Button Effects -> Button Effect 3D
--------------------------------------------------------------------------------*/
.csstransforms3d .btn.btn-effect-3d {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  border: 0;
  background: transparent;
  padding: 0;
}

.csstransforms3d .btn.btn-effect-3d span {
  position: relative;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.csstransforms3d .btn.btn-effect-3d span::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: attr(data-hover);
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}

.csstransforms3d .btn.btn-effect-3d span {
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.csstransforms3d .btn.btn-effect-3d span::before {
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.csstransforms3d .btn.btn-effect-3d.btn-primary {
  background: transparent;
}

.csstransforms3d .btn.btn-effect-3d.btn-primary span {
  background: #ff1b4d;
}

.csstransforms3d .btn.btn-effect-3d.btn-primary:hover span::before {
  background: #ce002d;
}

.csstransforms3d .btn.btn-effect-3d.btn-primary:focus span::before {
  background: #b40027;
}

.csstransforms3d .btn.btn-effect-3d.btn-primary:active span::before {
  background: #9b0022;
}

.csstransforms3d .btn.btn-effect-3d.btn-secondary {
  background: transparent;
}

.csstransforms3d .btn.btn-effect-3d.btn-secondary span {
  background: #007bff;
}

.csstransforms3d .btn.btn-effect-3d.btn-secondary:hover span::before {
  background: #0056b3;
}

.csstransforms3d .btn.btn-effect-3d.btn-secondary:focus span::before {
  background: #004a99;
}

.csstransforms3d .btn.btn-effect-3d.btn-secondary:active span::before {
  background: #003e80;
}

.csstransforms3d .btn.btn-effect-3d.btn-light {
  background: transparent;
}

.csstransforms3d .btn.btn-effect-3d.btn-light span {
  background: #eeeeee;
}

.csstransforms3d .btn.btn-effect-3d.btn-light:hover span::before {
  background: #c8c8c8;
}

.csstransforms3d .btn.btn-effect-3d.btn-light:focus span::before {
  background: #bbbbbb;
}

.csstransforms3d .btn.btn-effect-3d.btn-light:active span::before {
  background: #aeaeae;
}

.csstransforms3d .btn.btn-effect-3d.btn-dark {
  background: transparent;
}

.csstransforms3d .btn.btn-effect-3d.btn-dark span {
  background: #232323;
}

.csstransforms3d .btn.btn-effect-3d.btn-dark:hover span::before {
  background: black;
}

.csstransforms3d .btn.btn-effect-3d.btn-dark:focus span::before {
  background: black;
}

.csstransforms3d .btn.btn-effect-3d.btn-dark:active span::before {
  background: black;
}

.csstransforms3d .btn.btn-effect-3d.btn-white {
  background: transparent;
}

.csstransforms3d .btn.btn-effect-3d.btn-white span {
  background: #fff;
}

.csstransforms3d .btn.btn-effect-3d.btn-white:hover span::before {
  background: #d9d9d9;
}

.csstransforms3d .btn.btn-effect-3d.btn-white:focus span::before {
  background: #cccccc;
}

.csstransforms3d .btn.btn-effect-3d.btn-white:active span::before {
  background: #bfbfbf;
}

.csstransforms3d .btn.btn-effect-3d span,
.csstransforms3d .btn.btn-effect-3d span:before {
  padding: 0.675rem 1.25rem 0.875rem;
}

.csstransforms3d .btn.btn-effect-3d:hover span,
.csstransforms3d .btn.btn-effect-3d:focus span {
  -webkit-transform: rotateX(90deg) translateY(-0.3375rem);
  transform: rotateX(90deg) translateY(-0.3375rem);
}

.csstransforms3d .btn.btn-effect-3d.btn-lg span, .csstransforms3d .btn-group-lg > .btn.btn-effect-3d span,
.csstransforms3d .btn.btn-effect-3d.btn-lg span:before,
.csstransforms3d .btn-group-lg > .btn.btn-effect-3d span:before {
  padding: 0.88125rem 2.25rem 1.08125rem;
}

.csstransforms3d .btn.btn-effect-3d.btn-lg:hover span, .csstransforms3d .btn-group-lg > .btn.btn-effect-3d:hover span,
.csstransforms3d .btn.btn-effect-3d.btn-lg:focus span,
.csstransforms3d .btn-group-lg > .btn.btn-effect-3d:focus span {
  -webkit-transform: rotateX(90deg) translateY(-0.44062rem);
  transform: rotateX(90deg) translateY(-0.44062rem);
}

.csstransforms3d .btn.btn-effect-3d.btn-sm span, .csstransforms3d .btn-group-sm > .btn.btn-effect-3d span,
.csstransforms3d .btn.btn-effect-3d.btn-sm span:before,
.csstransforms3d .btn-group-sm > .btn.btn-effect-3d span:before {
  padding: 0.45rem 0.875rem 0.65rem;
}

.csstransforms3d .btn.btn-effect-3d.btn-sm:hover span, .csstransforms3d .btn-group-sm > .btn.btn-effect-3d:hover span,
.csstransforms3d .btn.btn-effect-3d.btn-sm:focus span,
.csstransforms3d .btn-group-sm > .btn.btn-effect-3d:focus span {
  -webkit-transform: rotateX(90deg) translateY(-0.225rem);
  transform: rotateX(90deg) translateY(-0.225rem);
}

.csstransforms3d .btn.btn-effect-3d.btn-xs span,
.csstransforms3d .btn.btn-effect-3d.btn-xs span:before {
  padding: 0.33125rem 0.4875rem 0.53125rem;
}

.csstransforms3d .btn.btn-effect-3d.btn-xs:hover span,
.csstransforms3d .btn.btn-effect-3d.btn-xs:focus span {
  -webkit-transform: rotateX(90deg) translateY(-0.16562rem);
  transform: rotateX(90deg) translateY(-0.16562rem);
}

/*--------------------------------------------------------------------------------
## Buttons Effects -> Button Effect Outline Reveal
--------------------------------------------------------------------------------*/
.btn.btn-effect-outline-reveal {
  position: relative;
  border: 0;
}

.btn.btn-effect-outline-reveal::before, .btn.btn-effect-outline-reveal::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.125rem solid;
  content: '';
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.btn.btn-effect-outline-reveal::after {
  opacity: 0;
  -webkit-transform: translateY(-5%) translateX(5%);
  -ms-transform: translateY(-5%) translateX(5%);
  transform: translateY(-5%) translateX(5%);
}

.btn.btn-effect-outline-reveal:hover, .btn.btn-effect-outline-reveal:focus, .btn.btn-effect-outline-reveal:active, .btn.btn-effect-outline-reveal:not(:disabled):not(.disabled):active {
  background: transparent;
}

.btn.btn-effect-outline-reveal:hover::before, .btn.btn-effect-outline-reveal:focus::before {
  opacity: 0;
  -webkit-transform: translateY(5%) translateX(-5%);
  -ms-transform: translateY(5%) translateX(-5%);
  transform: translateY(5%) translateX(-5%);
}

.btn.btn-effect-outline-reveal:hover::after, .btn.btn-effect-outline-reveal:focus::after {
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  -ms-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.btn.btn-effect-outline-reveal.btn-outline-primary::before, .btn.btn-effect-outline-reveal.btn-outline-primary::after {
  border-color: #ff1b4d;
}

.btn.btn-effect-outline-reveal.btn-outline-primary:hover {
  color: #ce002d;
}

.btn.btn-effect-outline-reveal.btn-outline-primary::after {
  border-color: #ce002d;
}

.btn.btn-effect-outline-reveal.btn-outline-primary:focus {
  color: #fff;
  background: #b40027;
}

.btn.btn-effect-outline-reveal.btn-outline-primary:focus::after {
  border-color: #b40027;
}

.btn.btn-effect-outline-reveal.btn-outline-primary:active, .btn.btn-effect-outline-reveal.btn-outline-primary:not(:disabled):not(.disabled):active {
  color: #fff;
  background: #9b0022;
}

.btn.btn-effect-outline-reveal.btn-outline-primary:active::after, .btn.btn-effect-outline-reveal.btn-outline-primary:not(:disabled):not(.disabled):active::after {
  border-color: #9b0022;
}

.btn.btn-effect-outline-reveal.btn-outline-secondary::before, .btn.btn-effect-outline-reveal.btn-outline-secondary::after {
  border-color: #007bff;
}

.btn.btn-effect-outline-reveal.btn-outline-secondary:hover {
  color: #0056b3;
}

.btn.btn-effect-outline-reveal.btn-outline-secondary::after {
  border-color: #0056b3;
}

.btn.btn-effect-outline-reveal.btn-outline-secondary:focus {
  color: #fff;
  background: #004a99;
}

.btn.btn-effect-outline-reveal.btn-outline-secondary:focus::after {
  border-color: #004a99;
}

.btn.btn-effect-outline-reveal.btn-outline-secondary:active, .btn.btn-effect-outline-reveal.btn-outline-secondary:not(:disabled):not(.disabled):active {
  color: #fff;
  background: #003e80;
}

.btn.btn-effect-outline-reveal.btn-outline-secondary:active::after, .btn.btn-effect-outline-reveal.btn-outline-secondary:not(:disabled):not(.disabled):active::after {
  border-color: #003e80;
}

.btn.btn-effect-outline-reveal.btn-outline-light::before, .btn.btn-effect-outline-reveal.btn-outline-light::after {
  border-color: #eeeeee;
}

.btn.btn-effect-outline-reveal.btn-outline-light:hover {
  color: #c8c8c8;
}

.btn.btn-effect-outline-reveal.btn-outline-light::after {
  border-color: #c8c8c8;
}

.btn.btn-effect-outline-reveal.btn-outline-light:focus {
  color: #4d4d4d;
  background: #bbbbbb;
}

.btn.btn-effect-outline-reveal.btn-outline-light:focus::after {
  border-color: #bbbbbb;
}

.btn.btn-effect-outline-reveal.btn-outline-light:active, .btn.btn-effect-outline-reveal.btn-outline-light:not(:disabled):not(.disabled):active {
  color: #4d4d4d;
  background: #aeaeae;
}

.btn.btn-effect-outline-reveal.btn-outline-light:active::after, .btn.btn-effect-outline-reveal.btn-outline-light:not(:disabled):not(.disabled):active::after {
  border-color: #aeaeae;
}

.btn.btn-effect-outline-reveal.btn-outline-dark::before, .btn.btn-effect-outline-reveal.btn-outline-dark::after {
  border-color: #232323;
}

.btn.btn-effect-outline-reveal.btn-outline-dark:hover {
  color: black;
}

.btn.btn-effect-outline-reveal.btn-outline-dark::after {
  border-color: black;
}

.btn.btn-effect-outline-reveal.btn-outline-dark:focus {
  color: #fff;
  background: black;
}

.btn.btn-effect-outline-reveal.btn-outline-dark:focus::after {
  border-color: black;
}

.btn.btn-effect-outline-reveal.btn-outline-dark:active, .btn.btn-effect-outline-reveal.btn-outline-dark:not(:disabled):not(.disabled):active {
  color: #fff;
  background: black;
}

.btn.btn-effect-outline-reveal.btn-outline-dark:active::after, .btn.btn-effect-outline-reveal.btn-outline-dark:not(:disabled):not(.disabled):active::after {
  border-color: black;
}

.btn.btn-effect-outline-reveal.btn-outline-white::before, .btn.btn-effect-outline-reveal.btn-outline-white::after {
  border-color: #fff;
}

.btn.btn-effect-outline-reveal.btn-outline-white:hover {
  color: #d9d9d9;
}

.btn.btn-effect-outline-reveal.btn-outline-white::after {
  border-color: #d9d9d9;
}

.btn.btn-effect-outline-reveal.btn-outline-white:focus {
  color: #4d4d4d;
  background: #cccccc;
}

.btn.btn-effect-outline-reveal.btn-outline-white:focus::after {
  border-color: #cccccc;
}

.btn.btn-effect-outline-reveal.btn-outline-white:active, .btn.btn-effect-outline-reveal.btn-outline-white:not(:disabled):not(.disabled):active {
  color: #4d4d4d;
  background: #bfbfbf;
}

.btn.btn-effect-outline-reveal.btn-outline-white:active::after, .btn.btn-effect-outline-reveal.btn-outline-white:not(:disabled):not(.disabled):active::after {
  border-color: #bfbfbf;
}

/*--------------------------------------------------------------------------------
## Buttons Effects -> Button Effect Fill Animatae
--------------------------------------------------------------------------------*/
.btn-effect-fill {
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.btn-effect-fill:after {
  content: '';
  top: 50%;
  left: 50%;
  opacity: 0;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 0;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.btn-effect-fill:hover, .btn-effect-fill:focus, .btn-effect-fill:active {
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.btn-effect-fill:hover:after, .btn-effect-fill:focus:after, .btn-effect-fill:active:after {
  height: 110%;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.btn-effect-fill.btn-outline-primary {
  background: transparent;
}

.btn-effect-fill.btn-outline-primary:after {
  background: #ff1b4d;
}

.btn-effect-fill.btn-outline-primary:focus {
  border-color: #ce002d;
}

.btn-effect-fill.btn-outline-primary:focus::after {
  background: #ce002d;
}

.btn-effect-fill.btn-outline-primary:active {
  border-color: #b40027;
}

.btn-effect-fill.btn-outline-primary:active::after {
  background: #b40027;
}

.btn-effect-fill.btn-outline-secondary {
  background: transparent;
}

.btn-effect-fill.btn-outline-secondary:after {
  background: #007bff;
}

.btn-effect-fill.btn-outline-secondary:focus {
  border-color: #0056b3;
}

.btn-effect-fill.btn-outline-secondary:focus::after {
  background: #0056b3;
}

.btn-effect-fill.btn-outline-secondary:active {
  border-color: #004a99;
}

.btn-effect-fill.btn-outline-secondary:active::after {
  background: #004a99;
}

.btn-effect-fill.btn-outline-light {
  background: transparent;
}

.btn-effect-fill.btn-outline-light:after {
  background: #eeeeee;
}

.btn-effect-fill.btn-outline-light:focus {
  border-color: #c8c8c8;
}

.btn-effect-fill.btn-outline-light:focus::after {
  background: #c8c8c8;
}

.btn-effect-fill.btn-outline-light:active {
  border-color: #bbbbbb;
}

.btn-effect-fill.btn-outline-light:active::after {
  background: #bbbbbb;
}

.btn-effect-fill.btn-outline-dark {
  background: transparent;
}

.btn-effect-fill.btn-outline-dark:after {
  background: #232323;
}

.btn-effect-fill.btn-outline-dark:focus {
  border-color: black;
}

.btn-effect-fill.btn-outline-dark:focus::after {
  background: black;
}

.btn-effect-fill.btn-outline-dark:active {
  border-color: black;
}

.btn-effect-fill.btn-outline-dark:active::after {
  background: black;
}

.btn-effect-fill.btn-outline-white {
  background: transparent;
}

.btn-effect-fill.btn-outline-white:after {
  background: #fff;
}

.btn-effect-fill.btn-outline-white:focus {
  border-color: #d9d9d9;
}

.btn-effect-fill.btn-outline-white:focus::after {
  background: #d9d9d9;
}

.btn-effect-fill.btn-outline-white:active {
  border-color: #cccccc;
}

.btn-effect-fill.btn-outline-white:active::after {
  background: #cccccc;
}

.btn-effect-fill.btn-primary {
  border: none;
}

.btn-effect-fill.btn-primary:hover, .btn-effect-fill.btn-primary:focus, .btn-effect-fill.btn-primary:active {
  background: #ff1b4d;
}

.btn-effect-fill.btn-primary:after {
  background: #ce002d;
}

.btn-effect-fill.btn-primary:focus::after {
  background: #b40027;
}

.btn-effect-fill.btn-primary:active::after {
  background: #9b0022;
}

.btn-effect-fill.btn-secondary {
  border: none;
}

.btn-effect-fill.btn-secondary:hover, .btn-effect-fill.btn-secondary:focus, .btn-effect-fill.btn-secondary:active {
  background: #007bff;
}

.btn-effect-fill.btn-secondary:after {
  background: #0056b3;
}

.btn-effect-fill.btn-secondary:focus::after {
  background: #004a99;
}

.btn-effect-fill.btn-secondary:active::after {
  background: #003e80;
}

.btn-effect-fill.btn-light {
  border: none;
}

.btn-effect-fill.btn-light:hover, .btn-effect-fill.btn-light:focus, .btn-effect-fill.btn-light:active {
  background: #eeeeee;
}

.btn-effect-fill.btn-light:after {
  background: #c8c8c8;
}

.btn-effect-fill.btn-light:focus::after {
  background: #bbbbbb;
}

.btn-effect-fill.btn-light:active::after {
  background: #aeaeae;
}

.btn-effect-fill.btn-dark {
  border: none;
}

.btn-effect-fill.btn-dark:hover, .btn-effect-fill.btn-dark:focus, .btn-effect-fill.btn-dark:active {
  background: #232323;
}

.btn-effect-fill.btn-dark:after {
  background: black;
}

.btn-effect-fill.btn-dark:focus::after {
  background: black;
}

.btn-effect-fill.btn-dark:active::after {
  background: black;
}

.btn-effect-fill.btn-white {
  border: none;
}

.btn-effect-fill.btn-white:hover, .btn-effect-fill.btn-white:focus, .btn-effect-fill.btn-white:active {
  background: #fff;
}

.btn-effect-fill.btn-white:after {
  background: #d9d9d9;
}

.btn-effect-fill.btn-white:focus::after {
  background: #cccccc;
}

.btn-effect-fill.btn-white:active::after {
  background: #bfbfbf;
}

/*--------------------------------------------------------------------------------
## Buttons Effects -> Button Effect Push
--------------------------------------------------------------------------------*/
.btn-effect-push {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  -webkit-transition: color 0.25s;
  -o-transition: color 0.25s;
  transition: color 0.25s;
  z-index: 1;
}

.btn-effect-push span {
  display: block;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  -o-transition: transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.btn-effect-push::before {
  position: absolute;
  content: attr(data-hover);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  -o-transition: transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.btn-effect-push:hover, .btn-effect-push:focus, .btn-effect-push:active, .btn-effect-push:not(:disabled):not(.disabled):active {
  border: 0;
  background: transparent;
  -webkit-transition: color 0.25s ease-in;
  -o-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}

.btn-effect-push:hover span, .btn-effect-push:hover::before, .btn-effect-push:focus span, .btn-effect-push:focus::before, .btn-effect-push:active span, .btn-effect-push:active::before, .btn-effect-push:not(:disabled):not(.disabled):active span, .btn-effect-push:not(:disabled):not(.disabled):active::before {
  -webkit-transition: -webkit-transform 0.25s ease-in;
  transition: -webkit-transform 0.25s ease-in;
  -o-transition: transform 0.25s ease-in;
  transition: transform 0.25s ease-in;
  transition: transform 0.25s ease-in, -webkit-transform 0.25s ease-in;
}

.btn-effect-push.btn-primary span {
  background: #ff1b4d;
}

.btn-effect-push.btn-primary::before {
  background: #ce002d;
}

.btn-effect-push.btn-primary:focus::before {
  background: #b40027;
}

.btn-effect-push.btn-primary:active::before {
  background: #9b0022;
}

.btn-effect-push.btn-secondary span {
  background: #007bff;
}

.btn-effect-push.btn-secondary::before {
  background: #0056b3;
}

.btn-effect-push.btn-secondary:focus::before {
  background: #004a99;
}

.btn-effect-push.btn-secondary:active::before {
  background: #003e80;
}

.btn-effect-push.btn-light span {
  background: #eeeeee;
}

.btn-effect-push.btn-light::before {
  background: #c8c8c8;
}

.btn-effect-push.btn-light:focus::before {
  background: #bbbbbb;
}

.btn-effect-push.btn-light:active::before {
  background: #aeaeae;
}

.btn-effect-push.btn-dark span {
  background: #232323;
}

.btn-effect-push.btn-dark::before {
  background: black;
}

.btn-effect-push.btn-dark:focus::before {
  background: black;
}

.btn-effect-push.btn-dark:active::before {
  background: black;
}

.btn-effect-push.btn-white span {
  background: #fff;
}

.btn-effect-push.btn-white::before {
  background: #d9d9d9;
}

.btn-effect-push.btn-white:focus::before {
  background: #cccccc;
}

.btn-effect-push.btn-white:active::before {
  background: #bfbfbf;
}

.btn-effect-push span, .btn-effect-push::before {
  padding: 0.675rem 1.25rem 0.875rem;
}

.btn-effect-push.btn-lg span, .btn-group-lg > .btn-effect-push.btn span, .btn-effect-push.btn-lg::before, .btn-group-lg > .btn-effect-push.btn::before {
  padding: 0.88125rem 2.25rem 1.08125rem;
}

.btn-effect-push.btn-sm span, .btn-group-sm > .btn-effect-push.btn span, .btn-effect-push.btn-sm::before, .btn-group-sm > .btn-effect-push.btn::before {
  padding: 0.45rem 0.875rem 0.65rem;
}

.btn-effect-push.btn-xs span, .btn-effect-push.btn-xs::before {
  padding: 0.33125rem 0.4875rem 0.53125rem;
}

.btn-effect-push.left::before {
  -webkit-transform: translate(25%, 0);
  -ms-transform: translate(25%, 0);
  transform: translate(25%, 0);
}

.btn-effect-push.left:hover span, .btn-effect-push.left:focus span {
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.btn-effect-push.left:hover::before, .btn-effect-push.left:focus::before {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.btn-effect-push.right::before {
  -webkit-transform: translate(-25%, 0);
  -ms-transform: translate(-25%, 0);
  transform: translate(-25%, 0);
}

.btn-effect-push.right:hover span, .btn-effect-push.right:focus span {
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

.btn-effect-push.right:hover::before, .btn-effect-push.right:focus::before {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.btn-effect-push.top::before {
  -webkit-transform: translate(0, 25%);
  -ms-transform: translate(0, 25%);
  transform: translate(0, 25%);
}

.btn-effect-push.top:hover span, .btn-effect-push.top:focus span {
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.btn-effect-push.top:hover::before, .btn-effect-push.top:focus::before {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.btn-effect-push.btm::before {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.btn-effect-push.btm:hover span, .btn-effect-push.btm:focus span {
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
}

.btn-effect-push.btm:hover::before, .btn-effect-push.btm:focus::before {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
