/*=================================================================

ESTILOS FONTJUSTICIA

===================================================================*/
.remove-bar:before {
  content: none;
}

/**  TAMANIOS RELATIVOS **/
.fj-2xs {
  font-size: 0.625em;
}

.fj-xs {
  font-size: 0.75em;
}

.fj-sm {
  font-size: 0.875em;
}

.fj-lg {
  font-size: 1.25em;
}

.fj-xl {
  font-size: 1.5em;
}

.fj-2xl {
  font-size: 2em;
}

/**  TAMANIOS LITERALES **/
.fj-1x {
  font-size: 1em;
}

.fj-2x {
  font-size: 2em;
}

.fj-3x {
  font-size: 3em;
}

.fj-4x {
  font-size: 4em;
}

.fj-5x {
  font-size: 5em;
}

.fj-6x {
  font-size: 6em;
}

.fj-7x {
  font-size: 7em;
}

.fj-8x {
  font-size: 8em;
}

.fj-9x {
  font-size: 9em;
}

.fj-10x {
  font-size: 10em;
}

/**  ANCHO FIJO **/
.fj-wf {
  text-align: center;
  width: 1.25em;
}

/**  LISTAS CON ICONOS **/
.fj-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fj-ul > li {
  position: relative;
  display: list-item;
}

.fj-li {
  left: -1.75em;
  position: absolute;
  text-align: center;
  width: 1em;
  line-height: inherit;
  padding-top: 0.2em;
}

/**  ROTAR **/
.fj-rotate-90 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fj-rotate-180 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fj-rotate-270 {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fj-flip-horizontal {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.fj-flip-vertical {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.fj-flip-both,
.fj-flip-horizontal.fj-flip-vertical {
  -webkit-transform: scale(-1);
  transform: scale(-1);
}

/**  ANIMACIONES **/
.fj-beat {
  -webkit-animation-name: fj-beat;
  animation-name: fj-beat;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@keyframes fj-beat {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

.fj-beat-fade,
.fj-fade {
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.fj-fade {
  -webkit-animation-name: fj-fade;
  animation-name: fj-fade;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes fj-fade {
  50% {
    opacity: 0.4;
  }
}

.fj-beat-fade {
  -webkit-animation-name: fj-beat-fade;
  animation-name: fj-beat-fade;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes fj-beat-fade {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}

.fj-bounce {
  -webkit-animation-name: fj-bounce;
  animation-name: fj-bounce;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
}

@keyframes fj-bounce {
  10% {
    opacity: 0.4;
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    opacity: 0.4;
    transform: scale(0.9, 1.1) translateY(-0.5em);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    opacity: 0.4;
    transform: scale(1) translateY(-0.125em);
  }
  64% {
    opacity: 0.4;
    transform: scale(1) translateY(0);
  }
}

.fj-flip {
  -webkit-animation-name: fj-flip;
  animation-name: fj-flip;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@keyframes fj-flip {
  50% {
    transform: rotate3d(0, 1, 0, -180deg);
  }
}

.fj-shake,
.fj-spin {
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.fj-shake {
  -webkit-animation-name: fj-shake;
  animation-name: fj-shake;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes fj-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8% {
    transform: rotate(-18deg);
  }
  12% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  24% {
    transform: rotate(-18deg);
  }
  28% {
    transform: rotate(18deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.fj-spin {
  -webkit-animation-name: fj-spin;
  animation-name: fj-spin;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes fj-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}

/**  ICONOS CON BORDES Y ALINEADOS **/
.fj-pull-left {
  float: left;
  margin-right: 1.5em;
}

.fj-pull-right {
  float: right;
  margin-left: 1.5em;
}

.fj-border {
  border-radius: 0.3em;
  border: 0.08em solid #c7cacd;
  padding: 0.4em;
}

/**  SUPERPOSICION DE ICONOS **/
.fj-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fj-stack-1x {
  line-height: inherit;
}

.fj-stack-1x,
.fj-stack-2x,
.fj-stack-addon {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: auto;
}

.fj-stack-2x {
  font-size: 2em;
}

.fj-stack-addon {
  font-size: 0.65em;
  bottom: 17%;
  left: 15%;
}

/**  CAPAS DE TEXTO y CONTADORES **/
.fj-layers {
  display: inline-block;
  height: 1em;
  position: relative;
  text-align: center;
  vertical-align: -0.125em;
  width: 1em;
}

.fj-layers-counter {
  background-color: #ff253a;
  border-radius: 1em;
  box-sizing: border-box;
  color: #fff;
  line-height: 1;
  max-width: 5em;
  min-width: 1.5em;
  overflow: hidden;
  padding: 0.5em 0.75em;
  right: -0.4em;
  text-overflow: ellipsis;
  top: -0.1em;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: top right;
  transform-origin: top right;
}

.fj-layers-counter,
.fj-layers-text,
.fj-layers-text-doc {
  display: inline-block;
  position: absolute;
  text-align: center;
}

.fj-layers-text {
  left: 160%;
  top: 165%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  font-family: "FiraSans-Medium", sans-serif;
}

.fj-layers-text-doc {
  left: 125%;
  top: 155%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  font-family: "FiraSans-Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1.1em;
}

/**  DUOTONOS INVERTIDOS **/

.fj-swap-opacity:before {
  opacity: 1 !important;
}

.fj-swap-opacity:after {
  opacity: 0.4 !important;
}
