@charset "UTF-8";
/*!
Plugin Name: PixelEnemy Core
Author: Aksile Media
Author URI: https://aksilemedia.com
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
*/
/*--------------------------------------------------------------------------------
TABLE OF CONTENTS:
----------------------------------------------------------------------------------
# Common
# Default Blocks
# Shortcodes
# Utilites
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
# Common
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
## Common -> Link Effects
--------------------------------------------------------------------------------*/
.le-1-p a,
.le-1, .le-2-p a,
.le-2, .le-3-p a,
.le-3, .le-4-p a,
.le-4, .le-5-p a,
.le-5, .le-6-p a,
.le-6, .le-7-p a,
.le-7, .le-8-p a,
.le-8, .content-area .entry-content a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn):not(.no-le) {
  position: relative;
  display: inline-block;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

/*--------------------------------------------------------------------------------
### Common -> Link Effects -> Link Effect 1 - Same Word Slide In
--------------------------------------------------------------------------------*/
/* This will not work if a tag has html inside & will strip out html */
.le-1-p a,
.le-1 {
  line-height: 1.1em;
  top: 0.22em;
  overflow: hidden;
}

.le-1-p a span,
.le-1 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: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.le-1-p a span::before,
.le-1 span::before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.le-1-p a:hover span, .le-1-p a:focus span,
.le-1:hover span,
.le-1:focus span {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.le-1-p h1 a,
h1 .le-1-p a,
h1 .le-1,
.le-1-p .h1 a,
.h1 .le-1-p a,
.h1 .le-1 {
  line-height: 1.2em;
  top: 0.24em;
}

.le-1-p h2 a,
h2 .le-1-p a,
h2 .le-1,
.le-1-p .h2 a,
.h2 .le-1-p a,
.h2 .le-1 {
  top: 0.24em;
}

.le-1-p h3 a,
h3 .le-1-p a,
h3 .le-1,
.le-1-p .h3 a,
.h3 .le-1-p a,
.h3 .le-1 {
  line-height: 1.2em;
  top: 0.28em;
}

.le-1-p h4 a,
h4 .le-1-p a,
h4 .le-1,
.le-1-p .h4 a,
.h4 .le-1-p a,
.h4 .le-1 {
  line-height: 1.3em;
  top: 0.2em;
}

.le-1-p h5 a,
h5 .le-1-p a,
h5 .le-1,
.le-1-p .h5 a,
.h5 .le-1-p a,
.h5 .le-1 {
  top: 0.2rem;
  line-height: 1.3em;
}

.le-1-p h6 a,
h6 .le-1-p a,
h6 .le-1,
.le-1-p .h6 a,
.h6 .le-1-p a,
.h6 .le-1 {
  line-height: 1.15em;
}

/*--------------------------------------------------------------------------------
### Common -> Link Effects -> Link Effect 2 - Text Fall Down
--------------------------------------------------------------------------------*/
.le-2-p a,
.le-2 {
  -webkit-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  -ms-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
}

.le-2-p a::before,
.le-2::before {
  content: attr(data-hover);
  position: absolute;
  opacity: 0;
  -webkit-transform: scale(1.1) translateX(0.6em) translateY(-0.6em) rotate(4deg);
  -ms-transform: scale(1.1) translateX(0.6em) translateY(-0.6em) rotate(4deg);
  transform: scale(1.1) translateX(0.6em) translateY(-0.6em) rotate(4deg);
  -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;
  pointer-events: none;
}

.le-2-p a:hover::before, .le-2-p a:focus::before,
.le-2:hover::before,
.le-2:focus::before {
  -webkit-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  -ms-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  opacity: 1;
}

/*--------------------------------------------------------------------------------
### Common -> Link Effects -> Link Effect 3 - Scale Down Text Reveal
--------------------------------------------------------------------------------*/
.le-3-p a::before,
.le-3::before {
  content: attr(data-hover);
  position: absolute;
  -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;
}

.le-3-p a:hover::before, .le-3-p a:focus::before,
.le-3:hover::before,
.le-3:focus::before {
  -webkit-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
  opacity: 0;
}

/*--------------------------------------------------------------------------------
### Common -> Link Effects -> Link Effect 4 - Bottom Line Push
--------------------------------------------------------------------------------*/
.le-4-p a,
.le-4 {
  line-height: 1.6em;
}

.le-4-p a::after,
.le-4::after {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  height: 0.15em;
  background: rgba(206, 0, 45, 0.8);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.le-4-p a:hover::after, .le-4-p a:focus::after,
.le-4:hover::after,
.le-4:focus::after {
  opacity: 1;
}

.le-4-p.le-4-btm-up a::after,
.le-4-btm-up::after {
  -webkit-transform: translateY(0.3em);
  -ms-transform: translateY(0.3em);
  transform: translateY(0.3em);
}

.le-4-p.le-4-btm-up a:hover::after, .le-4-p.le-4-btm-up a:focus::after,
.le-4-btm-up:hover::after,
.le-4-btm-up:focus::after {
  -webkit-transform: translateY(-0.15em);
  -ms-transform: translateY(-0.15em);
  transform: translateY(-0.15em);
}

.le-4-p.le-4-btm-down a::after,
.le-4-btm-down::after {
  -webkit-transform: translateY(-0.3em);
  -ms-transform: translateY(-0.3em);
  transform: translateY(-0.3em);
}

.le-4-p.le-4-btm-down a:hover::after, .le-4-p.le-4-btm-down a:focus::after,
.le-4-btm-down:hover::after,
.le-4-btm-down:focus::after {
  -webkit-transform: translateY(-0.15em);
  -ms-transform: translateY(-0.15em);
  transform: translateY(-0.15em);
}

.le-4-p.le-4-height a::after,
.le-4-height::after {
  height: 1px;
  -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: height 0.3s, opacity 0.3s, transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.le-4-p.le-4-height a:hover::after, .le-4-p.le-4-height a:focus::after,
.le-4-height:hover::after,
.le-4-height:focus::after {
  height: 0.15em;
}

.le-4-p h1 a,
h1 .le-4-p a,
h1 .le-4,
.le-4-p .h1 a,
.h1 .le-4-p a,
.h1 .le-4 {
  line-height: 1.5em;
}

.le-4-p h2 a,
h2 .le-4-p a,
h2 .le-4,
.le-4-p .h2 a,
.h2 .le-4-p a,
.h2 .le-4 {
  line-height: 1.5em;
}

.le-4-p h4 a,
h4 .le-4-p a,
h4 .le-4,
.le-4-p .h4 a,
.h4 .le-4-p a,
.h4 .le-4 {
  line-height: 1.7em;
}

.le-4-p h5 a,
h5 .le-4-p a,
h5 .le-4,
.le-4-p .h5 a,
.h5 .le-4-p a,
.h5 .le-4 {
  line-height: 1.7em;
}

.le-4-p.text-secondary a::after,
.text-secondary .le-4-p a::after,
.le-4-p .text-secondary a::after,
.text-secondary .le-4::after,
.text-secondary.le-4::after {
  background: rgba(0, 86, 179, 0.8);
}

.le-4-p.text-light a::after,
.text-light .le-4-p a::after,
.le-4-p .text-light a::after,
.text-light .le-4::after,
.text-light.le-4::after,
.dark-section .le-4::after {
  background: rgba(200, 200, 200, 0.8);
}

/*--------------------------------------------------------------------------------
### Common -> Link Effects -> Link Effect 5 - Bottom Line Push + Text Fill
--------------------------------------------------------------------------------*/
.le-5-p a,
.le-5 {
  line-height: 1.6em;
}

.le-5-p a::before,
.le-5::before {
  content: attr(data-hover);
  position: absolute;
  -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;
  pointer-events: none;
}

.le-5-p a::after,
.le-5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.15em;
  background: rgba(206, 0, 45, 0.8);
  opacity: 0;
  -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;
  pointer-events: none;
}

.le-5-p a:hover::before, .le-5-p a:focus::before,
.le-5:hover::before,
.le-5:focus::before {
  opacity: 0;
  -webkit-transform: translateY(-0.15em);
  -ms-transform: translateY(-0.15em);
  transform: translateY(-0.15em);
}

.le-5-p a:hover::after, .le-5-p a:focus::after,
.le-5:hover::after,
.le-5:focus::after {
  opacity: 1;
}

.le-5-p.le-5-btm-up a::after,
.le-5.le-5-btm-up::after {
  -webkit-transform: translateY(0.3em);
  -ms-transform: translateY(0.3em);
  transform: translateY(0.3em);
}

.le-5-p.le-5-btm-up a:hover::after, .le-5-p.le-5-btm-up a:focus::after,
.le-5.le-5-btm-up:hover::after,
.le-5.le-5-btm-up:focus::after {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.le-5-p.le-5-btm-down a::after,
.le-5.le-5-btm-down::after {
  -webkit-transform: translateY(-0.3em);
  -ms-transform: translateY(-0.3em);
  transform: translateY(-0.3em);
}

.le-5-p.le-5-btm-down a:hover::after, .le-5-p.le-5-btm-down a:focus::after,
.le-5.le-5-btm-down:hover::after,
.le-5.le-5-btm-down:focus::after {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.le-5-p.le-5-height a::after,
.le-5.le-5-height::after {
  height: 1px;
  -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: height 0.3s, opacity 0.3s, transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.le-5-p.le-5-height a:hover::after, .le-5-p.le-5-height a:focus::after,
.le-5.le-5-height:hover::after,
.le-5.le-5-height:focus::after {
  height: 0.15em;
}

.le-5-p h1 a,
h1 .le-5-p a,
h1 .le-5,
.le-5-p .h1 a,
.h1 .le-5-p a,
.h1 .le-5 {
  line-height: 1.5em;
}

.le-5-p h2 a,
h2 .le-5-p a,
h2 .le-5,
.le-5-p .h2 a,
.h2 .le-5-p a,
.h2 .le-5 {
  line-height: 1.5em;
}

.le-5-p h4 a,
h4 .le-5-p a,
h4 .le-5,
.le-5-p .h4 a,
.h4 .le-5-p a,
.h4 .le-5 {
  line-height: 1.7em;
}

.le-5-p h5 a,
h5 .le-5-p a,
h5 .le-5,
.le-5-p .h5 a,
.h5 .le-5-p a,
.h5 .le-5 {
  line-height: 1.7em;
}

.le-5-p.text-secondary a::after,
.text-secondary .le-5-p a::after,
.le-5-p .text-secondary a::after,
.text-secondary .le-5::after,
.text-secondary.le-5::after {
  background: rgba(0, 86, 179, 0.8);
}

.le-5-p.text-light a::after,
.text-light .le-5-p a::after,
.le-5-p .text-light a::after,
.text-light .le-5::after,
.text-light.le-5::after,
.dark-section .le-5::after {
  background: rgba(200, 200, 200, 0.8);
}

/*--------------------------------------------------------------------------------
### Common -> Link Effects -> Link Effect 6 - Text Fill + Border Slide
--------------------------------------------------------------------------------*/
/* This requires white-space to be nowrap */
.le-6-p a,
.le-6 {
  white-space: nowrap;
  line-height: 1.35em;
}

.le-6-p a::before,
.le-6::before {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  max-width: 0;
  border-bottom: 0.15em solid #ce002d;
  content: attr(data-hover);
  -webkit-transition: max-width 0.5s;
  -o-transition: max-width 0.5s;
  transition: max-width 0.5s;
}

.le-6-p a:hover::before, .le-6-p a:focus::before,
.le-6:hover::before,
.le-6:focus::before {
  max-width: 100%;
}

.le-6-p h3 a,
h3 .le-6-p a,
h3 .le-6,
.le-6-p .h3 a,
.h3 .le-6-p a,
.h3 .le-6 {
  line-height: 1.45em;
}

.le-6-p h4 a,
h4 .le-6-p a,
h4 .le-6,
.le-6-p .h4 a,
.h4 .le-6-p a,
.h4 .le-6 {
  line-height: 1.55em;
}

.le-6-p h5 a,
h5 .le-6-p a,
h5 .le-6,
.le-6-p .h5 a,
.h5 .le-6-p a,
.h5 .le-6 {
  line-height: 1.55em;
}

.le-6-p h6 a,
h6 .le-6-p a,
h6 .le-6,
.le-6-p .h6 a,
.h6 .le-6-p a,
.h6 .le-6 {
  line-height: 1.55em;
}

.le-6-p.text-secondary a::before,
.text-secondary .le-6-p a::before,
.le-6-p .text-secondary a::before,
.text-secondary .le-6::before,
.text-secondary.le-6::before {
  border-bottom-color: #0056b3;
}

.le-6-p.text-light a::before,
.text-light .le-6-p a::before,
.le-6-p .text-light a::before,
.text-light .le-6::before,
.text-light.le-6::before,
.dark-section .le-6::before {
  border-bottom-color: #c8c8c8;
}

/*--------------------------------------------------------------------------------
### Common -> Link Effects -> Link Effect 7 - Three Dots
--------------------------------------------------------------------------------*/
.le-7-p a,
.le-7 {
  line-height: 1.6em;
}

.le-7-p a::before,
.le-7::before {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  content: "•";
  text-shadow: 0 0 transparent;
  -webkit-transition: text-shadow 0.3s, color 0.3s;
  -o-transition: text-shadow 0.3s, color 0.3s;
  transition: text-shadow 0.3s, color 0.3s;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

.le-7-p a:hover::before, .le-7-p a:focus::before,
.le-7:hover::before,
.le-7:focus::before {
  color: #ce002d;
  text-shadow: 0.5em 0 #ce002d, -0.5em 0 #ce002d;
}

.le-7-p.text-secondary a:hover::before, .le-7-p.text-secondary a:focus::before,
.text-secondary .le-7-p a:hover::before,
.text-secondary .le-7-p a:focus::before,
.le-7-p .text-secondary a:hover::before,
.le-7-p .text-secondary a:focus::before,
.text-secondary .le-7:hover::before,
.text-secondary .le-7:focus::before,
.text-secondary.le-7:hover::before,
.text-secondary.le-7:focus::before {
  color: #0056b3;
  text-shadow: 0.5em 0 #0056b3, -0.5em 0 #0056b3;
}

.le-7-p.text-light a:hover::before, .le-7-p.text-light a:focus::before,
.text-light .le-7-p a:hover::before,
.text-light .le-7-p a:focus::before,
.le-7-p .text-light a:hover::before,
.le-7-p .text-light a:focus::before,
.text-light .le-7:hover::before,
.text-light .le-7:focus::before,
.text-light.le-7:hover::before,
.text-light.le-7:focus::before,
.dark-section .le-7:hover::before,
.dark-section .le-7:focus::before {
  color: #c8c8c8;
  text-shadow: 0.5em 0 #c8c8c8, -0.5em 0 #c8c8c8;
}

/*--------------------------------------------------------------------------------
### Common -> Link Effects -> Link Effect 8 - Border Switch
--------------------------------------------------------------------------------*/
.le-8-p a,
.le-8 {
  padding: 0 0.4em;
  height: 1.52em;
  line-height: 1.52em;
}

.le-8-p a::before, .le-8-p a::after,
.le-8::before,
.le-8::after {
  position: absolute;
  width: 1.52em;
  height: 2px;
  background: #ce002d;
  content: '';
  opacity: 0.2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}

.le-8-p a::before,
.le-8::before {
  top: -1px;
  left: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

.le-8-p a::after,
.le-8::after {
  right: -2px;
  bottom: -1px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.le-8-p a:hover::before, .le-8-p a:hover::after, .le-8-p a:focus::before, .le-8-p a:focus::after,
.le-8:hover::before,
.le-8:hover::after,
.le-8:focus::before,
.le-8:focus::after {
  opacity: 1;
}

.le-8-p a:hover::before, .le-8-p a:focus::before,
.le-8:hover::before,
.le-8:focus::before {
  left: 50%;
  -webkit-transform: rotate(0deg) translateX(-50%);
  -ms-transform: rotate(0deg) translateX(-50%);
  transform: rotate(0deg) translateX(-50%);
}

.le-8-p a:hover::after, .le-8-p a:focus::after,
.le-8:hover::after,
.le-8:focus::after {
  right: 50%;
  -webkit-transform: rotate(0deg) translateX(50%);
  -ms-transform: rotate(0deg) translateX(50%);
  transform: rotate(0deg) translateX(50%);
}

.le-8-p h1 a::before, .le-8-p h1 a::after,
h1 .le-8-p a::before,
h1 .le-8-p a::after,
h1 .le-8::before,
h1 .le-8::after,
.le-8-p .h1 a::before,
.le-8-p .h1 a::after,
.h1 .le-8-p a::before,
.h1 .le-8-p a::after,
.h1 .le-8::before,
.h1 .le-8::after {
  height: 6px;
}

.le-8-p h1 a::after,
h1 .le-8-p a::after,
h1 .le-8::after,
.le-8-p .h1 a::after,
.h1 .le-8-p a::after,
.h1 .le-8::after {
  bottom: -6px;
}

.le-8-p h2 a::before, .le-8-p h2 a::after,
h2 .le-8-p a::before,
h2 .le-8-p a::after,
h2 .le-8::before,
h2 .le-8::after,
.le-8-p .h2 a::before,
.le-8-p .h2 a::after,
.h2 .le-8-p a::before,
.h2 .le-8-p a::after,
.h2 .le-8::before,
.h2 .le-8::after {
  height: 4px;
}

.le-8-p h2 a::after,
h2 .le-8-p a::after,
h2 .le-8::after,
.le-8-p .h2 a::after,
.h2 .le-8-p a::after,
.h2 .le-8::after {
  bottom: -4px;
  right: -4px;
}

.le-8-p h2 a:hover::after, .le-8-p h2 a:focus::after,
h2 .le-8-p a:hover::after,
h2 .le-8-p a:focus::after,
h2 .le-8:hover::after,
h2 .le-8:focus::after,
.le-8-p .h2 a:hover::after,
.le-8-p .h2 a:focus::after,
.h2 .le-8-p a:hover::after,
.h2 .le-8-p a:focus::after,
.h2 .le-8:hover::after,
.h2 .le-8:focus::after {
  right: 50%;
  -webkit-transform: rotate(0deg) translateX(50%);
  -ms-transform: rotate(0deg) translateX(50%);
  transform: rotate(0deg) translateX(50%);
}

.le-8-p h3 a::before, .le-8-p h3 a::after,
h3 .le-8-p a::before,
h3 .le-8-p a::after,
h3 .le-8::before,
h3 .le-8::after,
.le-8-p .h3 a::before,
.le-8-p .h3 a::after,
.h3 .le-8-p a::before,
.h3 .le-8-p a::after,
.h3 .le-8::before,
.h3 .le-8::after {
  height: 3px;
}

.le-8-p h3 a::after,
h3 .le-8-p a::after,
h3 .le-8::after,
.le-8-p .h3 a::after,
.h3 .le-8-p a::after,
.h3 .le-8::after {
  bottom: -3px;
}

.le-8-p h5 a::after,
h5 .le-8-p a::after,
h5 .le-8::after,
.le-8-p .h5 a::after,
.h5 .le-8-p a::after,
.h5 .le-8::after {
  bottom: -2px;
}

.le-8-p h6 a::after,
h6 .le-8-p a::after,
h6 .le-8::after,
.le-8-p .h6 a::after,
.h6 .le-8-p a::after,
.h6 .le-8::after {
  bottom: -2px;
}

.le-8-p.text-secondary a::before, .le-8-p.text-secondary a::after,
.text-secondary .le-8-p a::before,
.text-secondary .le-8-p a::after,
.le-8-p .text-secondary a::before,
.le-8-p .text-secondary a::after,
.text-secondary .le-8::before,
.text-secondary .le-8::after,
.text-secondary.le-8::before,
.text-secondary.le-8::after {
  background: #0056b3;
}

.le-8-p.text-light a::before, .le-8-p.text-light a::after,
.text-light .le-8-p a::before,
.text-light .le-8-p a::after,
.le-8-p .text-light a::before,
.le-8-p .text-light a::after,
.text-light .le-8::before,
.text-light .le-8::after,
.text-light.le-8::before,
.text-light.le-8::after,
.dark-section .le-8::before,
.dark-section .le-8::after {
  background: #c8c8c8;
}

/*--------------------------------------------------------------------------------
### Common -> Link Effects -> Link Effect 9 - Content Appear
--------------------------------------------------------------------------------*/
.le-9-p a::before, .le-9-p a::after,
.le-9::before,
.le-9::after {
  display: inline-block;
  opacity: 0;
  -webkit-transition: opacity 0.201s, -webkit-transform 0.3s;
  transition: opacity 0.201s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, opacity 0.201s;
  transition: transform 0.3s, opacity 0.201s;
  transition: transform 0.3s, opacity 0.201s, -webkit-transform 0.3s;
}

.le-9-p a::before,
.le-9::before {
  margin-right: 5px;
  content: "[";
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

.le-9-p a::after,
.le-9::after {
  margin-left: 5px;
  content: "]";
  -webkit-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}

.le-9-p a:hover::before, .le-9-p a:hover::after, .le-9-p a:focus::before, .le-9-p a:focus::after,
.le-9:hover::before,
.le-9:hover::after,
.le-9:focus::before,
.le-9:focus::after {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}

/*--------------------------------------------------------------------------------
## Common -> Link Effects -> Default Link Effect (Link Effect 4)
--------------------------------------------------------------------------------*/
.content-area .entry-content a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn):not(.no-le) {
  line-height: 1.6em;
}

.content-area .entry-content a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn):not(.no-le)::after {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  height: 0.15em;
  background: rgba(206, 0, 45, 0.8);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.content-area .entry-content a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn):not(.no-le):hover::after, .content-area .entry-content a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn):not(.no-le):focus::after {
  opacity: 1;
}

.content-area .entry-content a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn):not(.no-le)::after {
  -webkit-transform: translateY(0.3em);
  -ms-transform: translateY(0.3em);
  transform: translateY(0.3em);
}

.content-area .entry-content a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn):not(.no-le):hover::after, .content-area .entry-content a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn):not(.no-le):focus::after {
  -webkit-transform: translateY(-0.15em);
  -ms-transform: translateY(-0.15em);
  transform: translateY(-0.15em);
}

.content-area .entry-content a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn):not(.no-le)::after {
  height: 1px;
  -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: height 0.3s, opacity 0.3s, transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.content-area .entry-content a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn):not(.no-le):hover::after, .content-area .entry-content a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn):not(.no-le):focus::after {
  height: 0.15em;
}

.content-area .entry-content h1 a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn),
.content-area .entry-content h2 a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn) {
  line-height: 1.5em;
}

.content-area .entry-content h3 a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn),
.content-area .entry-content h4 a:not([href$='#.']):not([href*='javascript:void(0)']):not([href*='javascript:void(0);']):not(.btn) {
  line-height: 1.7em;
}

/*--------------------------------------------------------------------------------
# Default Blocks
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
## Common -> Lists
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
### Common -> Lists -> List Icons
--------------------------------------------------------------------------------*/
.pe-list-icons {
  list-style: none;
  padding-left: 0 !important;
  /* For Admin */
}

.pe-list-icons ul {
  padding-left: 1.5em;
  list-style: none;
}

.pe-list-icons li:before,
.pe-list-icons.pe-list-action a:before {
  margin-right: 0.3rem;
  font-family: 'pe-icons';
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ea19";
  top: -0.125rem;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.pe-list-icons.pe-list-peicon-battlefield-5 li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-battlefield-5 a::before {
  content: "\ea01";
}

.pe-list-icons li.peicon-battlefield-5:before,
.pe-list-icons a.peicon-battlefield-5:before {
  content: "\ea01";
}

.pe-list-icons.pe-list-peicon-blockquote li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-blockquote a::before {
  content: "\ea03";
}

.pe-list-icons li.peicon-blockquote:before,
.pe-list-icons a.peicon-blockquote:before {
  content: "\ea03";
}

.pe-list-icons.pe-list-peicon-character li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-character a::before {
  content: "\ea02";
}

.pe-list-icons li.peicon-character:before,
.pe-list-icons a.peicon-character:before {
  content: "\ea02";
}

.pe-list-icons.pe-list-peicon-close li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-close a::before {
  content: "\ea04";
}

.pe-list-icons li.peicon-close:before,
.pe-list-icons a.peicon-close:before {
  content: "\ea04";
}

.pe-list-icons.pe-list-peicon-comment-profile li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-comment-profile a::before {
  content: "\ea05";
}

.pe-list-icons li.peicon-comment-profile:before,
.pe-list-icons a.peicon-comment-profile:before {
  content: "\ea05";
}

.pe-list-icons.pe-list-peicon-comment li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-comment a::before {
  content: "\ea06";
}

.pe-list-icons li.peicon-comment:before,
.pe-list-icons a.peicon-comment:before {
  content: "\ea06";
}

.pe-list-icons.pe-list-peicon-date li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-date a::before {
  content: "\ea07";
}

.pe-list-icons li.peicon-date:before,
.pe-list-icons a.peicon-date:before {
  content: "\ea07";
}

.pe-list-icons.pe-list-peicon-divider-mid-t li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-divider-mid-t a::before {
  content: "\ea08";
}

.pe-list-icons li.peicon-divider-mid-t:before,
.pe-list-icons a.peicon-divider-mid-t:before {
  content: "\ea08";
}

.pe-list-icons.pe-list-peicon-dropdown-active li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-dropdown-active a::before {
  content: "\ea09";
}

.pe-list-icons li.peicon-dropdown-active:before,
.pe-list-icons a.peicon-dropdown-active:before {
  content: "\ea09";
}

.pe-list-icons.pe-list-peicon-dropdown-inactive li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-dropdown-inactive a::before {
  content: "\ea0b";
}

.pe-list-icons li.peicon-dropdown-inactive:before,
.pe-list-icons a.peicon-dropdown-inactive:before {
  content: "\ea0b";
}

.pe-list-icons.pe-list-peicon-dropdown-left li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-dropdown-left a::before {
  content: "\ea0a";
}

.pe-list-icons li.peicon-dropdown-left:before,
.pe-list-icons a.peicon-dropdown-left:before {
  content: "\ea0a";
}

.pe-list-icons.pe-list-peicon-dropdown-up li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-dropdown-up a::before {
  content: "\ea0c";
}

.pe-list-icons li.peicon-dropdown-up:before,
.pe-list-icons a.peicon-dropdown-up:before {
  content: "\ea0c";
}

.pe-list-icons.pe-list-peicon-empty-square-box li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-empty-square-box a::before {
  content: "\ea0d";
}

.pe-list-icons li.peicon-empty-square-box:before,
.pe-list-icons a.peicon-empty-square-box:before {
  content: "\ea0d";
}

.pe-list-icons.pe-list-peicon-equipment li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-equipment a::before {
  content: "\ea0e";
}

.pe-list-icons li.peicon-equipment:before,
.pe-list-icons a.peicon-equipment:before {
  content: "\ea0e";
}

.pe-list-icons.pe-list-peicon-facebook li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-facebook a::before {
  content: "\ea0f";
}

.pe-list-icons li.peicon-facebook:before,
.pe-list-icons a.peicon-facebook:before {
  content: "\ea0f";
}

.pe-list-icons.pe-list-peicon-fallout-76 li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-fallout-76 a::before {
  content: "\ea10";
}

.pe-list-icons li.peicon-fallout-76:before,
.pe-list-icons a.peicon-fallout-76:before {
  content: "\ea10";
}

.pe-list-icons.pe-list-peicon-fortnite li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-fortnite a::before {
  content: "\ea11";
}

.pe-list-icons li.peicon-fortnite:before,
.pe-list-icons a.peicon-fortnite:before {
  content: "\ea11";
}

.pe-list-icons.pe-list-peicon-general li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-general a::before {
  content: "\ea12";
}

.pe-list-icons li.peicon-general:before,
.pe-list-icons a.peicon-general:before {
  content: "\ea12";
}

.pe-list-icons.pe-list-peicon-google li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-google a::before {
  content: "\ea13";
}

.pe-list-icons li.peicon-google:before,
.pe-list-icons a.peicon-google:before {
  content: "\ea13";
}

.pe-list-icons.pe-list-peicon-guides li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-guides a::before {
  content: "\ea14";
}

.pe-list-icons li.peicon-guides:before,
.pe-list-icons a.peicon-guides:before {
  content: "\ea14";
}

.pe-list-icons.pe-list-peicon-heading li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-heading a::before {
  content: "\ea15";
}

.pe-list-icons li.peicon-heading:before,
.pe-list-icons a.peicon-heading:before {
  content: "\ea15";
}

.pe-list-icons.pe-list-peicon-home li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-home a::before {
  content: "\ea16";
}

.pe-list-icons li.peicon-home:before,
.pe-list-icons a.peicon-home:before {
  content: "\ea16";
}

.pe-list-icons.pe-list-peicon-instagram li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-instagram a::before {
  content: "\ea17";
}

.pe-list-icons li.peicon-instagram:before,
.pe-list-icons a.peicon-instagram:before {
  content: "\ea17";
}

.pe-list-icons.pe-list-peicon-link li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-link a::before {
  content: "\ea18";
}

.pe-list-icons li.peicon-link:before,
.pe-list-icons a.peicon-link:before {
  content: "\ea18";
}

.pe-list-icons.pe-list-peicon-listing-icon li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-listing-icon a::before {
  content: "\ea19";
}

.pe-list-icons li.peicon-listing-icon:before,
.pe-list-icons a.peicon-listing-icon:before {
  content: "\ea19";
}

.pe-list-icons.pe-list-peicon-login li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-login a::before {
  content: "\ea1a";
}

.pe-list-icons li.peicon-login:before,
.pe-list-icons a.peicon-login:before {
  content: "\ea1a";
}

.pe-list-icons.pe-list-peicon-logout li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-logout a::before {
  content: "\ea1b";
}

.pe-list-icons li.peicon-logout:before,
.pe-list-icons a.peicon-logout:before {
  content: "\ea1b";
}

.pe-list-icons.pe-list-peicon-menu-1 li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-menu-1 a::before {
  content: "\ea1c";
}

.pe-list-icons li.peicon-menu-1:before,
.pe-list-icons a.peicon-menu-1:before {
  content: "\ea1c";
}

.pe-list-icons.pe-list-peicon-menu-2 li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-menu-2 a::before {
  content: "\ea1d";
}

.pe-list-icons li.peicon-menu-2:before,
.pe-list-icons a.peicon-menu-2:before {
  content: "\ea1d";
}

.pe-list-icons.pe-list-peicon-minus li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-minus a::before {
  content: "\ea1e";
}

.pe-list-icons li.peicon-minus:before,
.pe-list-icons a.peicon-minus:before {
  content: "\ea1e";
}

.pe-list-icons.pe-list-peicon-online li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-online a::before {
  content: "\ea1f";
}

.pe-list-icons li.peicon-online:before,
.pe-list-icons a.peicon-online:before {
  content: "\ea1f";
}

.pe-list-icons.pe-list-peicon-plus li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-plus a::before {
  content: "\ea20";
}

.pe-list-icons li.peicon-plus:before,
.pe-list-icons a.peicon-plus:before {
  content: "\ea20";
}

.pe-list-icons.pe-list-peicon-profile li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-profile a::before {
  content: "\ea21";
}

.pe-list-icons li.peicon-profile:before,
.pe-list-icons a.peicon-profile:before {
  content: "\ea21";
}

.pe-list-icons.pe-list-peicon-quote li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-quote a::before {
  content: "\ea22";
}

.pe-list-icons li.peicon-quote:before,
.pe-list-icons a.peicon-quote:before {
  content: "\ea22";
}

.pe-list-icons.pe-list-peicon-reply li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-reply a::before {
  content: "\ea23";
}

.pe-list-icons li.peicon-reply:before,
.pe-list-icons a.peicon-reply:before {
  content: "\ea23";
}

.pe-list-icons.pe-list-peicon-resident-evil-2 li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-resident-evil-2 a::before {
  content: "\ea24";
}

.pe-list-icons li.peicon-resident-evil-2:before,
.pe-list-icons a.peicon-resident-evil-2:before {
  content: "\ea24";
}

.pe-list-icons.pe-list-peicon-search li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-search a::before {
  content: "\ea26";
}

.pe-list-icons li.peicon-search:before,
.pe-list-icons a.peicon-search:before {
  content: "\ea26";
}

.pe-list-icons.pe-list-peicon-sorting-toggle li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-sorting-toggle a::before {
  content: "\ea25";
}

.pe-list-icons li.peicon-sorting-toggle:before,
.pe-list-icons a.peicon-sorting-toggle:before {
  content: "\ea25";
}

.pe-list-icons.pe-list-peicon-square-2 li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-square-2 a::before {
  content: "\ea27";
}

.pe-list-icons li.peicon-square-2:before,
.pe-list-icons a.peicon-square-2:before {
  content: "\ea27";
}

.pe-list-icons.pe-list-peicon-square-box li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-square-box a::before {
  content: "\ea28";
}

.pe-list-icons li.peicon-square-box:before,
.pe-list-icons a.peicon-square-box:before {
  content: "\ea28";
}

.pe-list-icons.pe-list-peicon-tools li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-tools a::before {
  content: "\ea29";
}

.pe-list-icons li.peicon-tools:before,
.pe-list-icons a.peicon-tools:before {
  content: "\ea29";
}

.pe-list-icons.pe-list-peicon-twitter li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-twitter a::before {
  content: "\ea2a";
}

.pe-list-icons li.peicon-twitter:before,
.pe-list-icons a.peicon-twitter:before {
  content: "\ea2a";
}

.pe-list-icons.pe-list-peicon-world-2 li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-world-2 a::before {
  content: "\ea2b";
}

.pe-list-icons li.peicon-world-2:before,
.pe-list-icons a.peicon-world-2:before {
  content: "\ea2b";
}

.pe-list-icons.pe-list-peicon-world-of-warcraft li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-world-of-warcraft a::before {
  content: "\ea2c";
}

.pe-list-icons li.peicon-world-of-warcraft:before,
.pe-list-icons a.peicon-world-of-warcraft:before {
  content: "\ea2c";
}

.pe-list-icons.pe-list-peicon-world li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-world a::before {
  content: "\ea2d";
}

.pe-list-icons li.peicon-world:before,
.pe-list-icons a.peicon-world:before {
  content: "\ea2d";
}

.pe-list-icons.pe-list-peicon-youtube li::before,
.pe-list-icons.pe-list-action.pe-list-peicon-youtube a::before {
  content: "\ea2e";
}

.pe-list-icons li.peicon-youtube:before,
.pe-list-icons a.peicon-youtube:before {
  content: "\ea2e";
}

/*--------------------------------------------------------------------------------
### Common -> Lists ->  List Groups
--------------------------------------------------------------------------------*/
.pe-list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  border: 0.125rem solid #dedede;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 2rem;
}

.pe-list-group li,
.pe-list-group.pe-list-action a {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  margin: 0;
  border: 0.0625rem solid #dedede;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
}

.pe-list-group li:last-child,
.pe-list-group.pe-list-action a:last-child {
  border-bottom-width: 0;
}

.pe-list-group li.disabled,
.pe-list-group.pe-list-action a.disabled {
  color: #cccccc;
  pointer-events: none;
}

.pe-list-group.pe-list-group-sm li,
.pe-list-group.pe-list-group-sm.pe-list-action a {
  padding: 0.4rem 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.pe-list-group.pe-list-zebra li:nth-child(even),
.pe-list-group.pe-list-zebra.pe-list-action a:nth-child(even) {
  background: #eeeeee;
}

.pe-list-group.pe-list-group-hoverable li:hover:not(.active),
.pe-list-group.pe-list-group-hoverable.pe-list-action a:hover:not(.active) {
  color: inherit;
  background: #e1e1e1;
  border-color: #e1e1e1;
}

.pe-list-group.pe-list-action a,
.pe-list-group.pe-list-action.pe-list-zebra a {
  color: inherit;
  width: 100%;
  text-align: inherit;
  -webkit-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.pe-list-group.pe-list-action a:hover, .pe-list-group.pe-list-action a:focus, .pe-list-group.pe-list-action a.active,
.pe-list-group.pe-list-action.pe-list-zebra a:hover,
.pe-list-group.pe-list-action.pe-list-zebra a:focus,
.pe-list-group.pe-list-action.pe-list-zebra a.active {
  color: #fff;
  background-color: #ff1b4d;
  border-color: #ff1b4d;
  text-decoration: none;
  -webkit-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.pe-list-group.pe-list-action a:active,
.pe-list-group.pe-list-action.pe-list-zebra a:active {
  color: #fff;
  background-color: #ce002d;
  border-color: #ce002d;
}

.pe-list-group.pe-list-group-flush {
  border-width: 0;
}

.pe-list-group.pe-list-group-flush.pe-list-group-btb li:first-child,
.pe-list-group.pe-list-group-flush.pe-list-group-btb.pe-list-action a:first-child {
  border-top-width: 0.0625rem;
}

.pe-list-group.pe-list-group-flush.pe-list-group-btb li:last-child,
.pe-list-group.pe-list-group-flush.pe-list-group-btb.pe-list-action a:last-child {
  border-bottom-width: 0.0625rem;
}

.pe-list-group.pe-list-group-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-width: 0;
}

.pe-list-group.pe-list-group-horizontal li,
.pe-list-group.pe-list-group-horizontal.pe-list-action a {
  border: 0.0625rem solid #dedede;
  margin-right: -0.125rem;
  border-top-width: 0.125rem;
  border-bottom-width: 0.125rem;
  text-align: center;
  width: 100%;
}

.pe-list-group.pe-list-group-horizontal li:first-child,
.pe-list-group.pe-list-group-horizontal.pe-list-action a:first-child {
  border-left-width: 0.125rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
}

.pe-list-group.pe-list-group-horizontal li:last-child,
.pe-list-group.pe-list-group-horizontal.pe-list-action a:last-child {
  margin-right: 0;
  border-right-width: 0.125rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.pe-list-group.pe-list-group-horizontal.pe-list-horizontal-auto li,
.pe-list-group.pe-list-group-horizontal.pe-list-horizontal-auto.pe-list-action a {
  width: auto;
  text-align: left;
}

.pe-list-group.pe-list-group-horizontal.pe-list-group-flush li,
.pe-list-group.pe-list-group-horizontal.pe-list-group-flush.pe-list-action a {
  border-top-width: 0;
  border-bottom-width: 0;
  border-left-width: 0.0625rem;
  border-right-width: 0.0625rem;
}

.pe-list-group.pe-list-group-horizontal.pe-list-group-flush li:first-child,
.pe-list-group.pe-list-group-horizontal.pe-list-group-flush.pe-list-action a:first-child {
  border-left-width: 0;
}

.pe-list-group.pe-list-group-horizontal.pe-list-group-flush li:last-child,
.pe-list-group.pe-list-group-horizontal.pe-list-group-flush.pe-list-action a:last-child {
  border-right-width: 0;
}

.pe-list-group.pe-list-group-horizontal.pe-list-group-flush.pe-list-group-btb {
  border-top-width: 0.0625rem;
  border-bottom-width: 0.0625rem;
}

.pe-list-group.pe-list-group-horizontal.pe-list-group-flush.pe-list-group-btb li:first-child,
.pe-list-group.pe-list-group-horizontal.pe-list-group-flush.pe-list-group-btb.pe-list-action a:first-child {
  border-top-width: 0;
}

.pe-list-group.pe-list-group-horizontal.pe-list-group-flush.pe-list-group-btb li:last-child,
.pe-list-group.pe-list-group-horizontal.pe-list-group-flush.pe-list-group-btb.pe-list-action a:last-child {
  border-bottom-width: 0;
}

@media (min-width: 576px) {
  .pe-list-group.pe-list-group-horizontal-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-sm li,
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-action a {
    border: 0.0625rem solid #dedede;
    margin-right: -0.125rem;
    border-top-width: 0.125rem;
    border-bottom-width: 0.125rem;
    text-align: center;
    width: 100%;
  }
  .pe-list-group.pe-list-group-horizontal-sm li:first-child,
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-action a:first-child {
    border-left-width: 0.125rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .pe-list-group.pe-list-group-horizontal-sm li:last-child,
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-action a:last-child {
    margin-right: 0;
    border-right-width: 0.125rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-horizontal-auto li,
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-horizontal-auto.pe-list-action a {
    width: auto;
    text-align: left;
  }
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-group-flush li,
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-group-flush.pe-list-action a {
    border-top-width: 0;
    border-bottom-width: 0;
    border-left-width: 0.0625rem;
    border-right-width: 0.0625rem;
  }
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-group-flush li:first-child,
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-group-flush.pe-list-action a:first-child {
    border-left-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-group-flush li:last-child,
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-group-flush.pe-list-action a:last-child {
    border-right-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-group-flush.pe-list-group-btb {
    border-top-width: 0.0625rem;
    border-bottom-width: 0.0625rem;
  }
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-group-flush.pe-list-group-btb li:first-child,
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-group-flush.pe-list-group-btb.pe-list-action a:first-child {
    border-top-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-group-flush.pe-list-group-btb li:last-child,
  .pe-list-group.pe-list-group-horizontal-sm.pe-list-group-flush.pe-list-group-btb.pe-list-action a:last-child {
    border-bottom-width: 0;
  }
}

@media (min-width: 768px) {
  .pe-list-group.pe-list-group-horizontal-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-md li,
  .pe-list-group.pe-list-group-horizontal-md.pe-list-action a {
    border: 0.0625rem solid #dedede;
    margin-right: -0.125rem;
    border-top-width: 0.125rem;
    border-bottom-width: 0.125rem;
    text-align: center;
    width: 100%;
  }
  .pe-list-group.pe-list-group-horizontal-md li:first-child,
  .pe-list-group.pe-list-group-horizontal-md.pe-list-action a:first-child {
    border-left-width: 0.125rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .pe-list-group.pe-list-group-horizontal-md li:last-child,
  .pe-list-group.pe-list-group-horizontal-md.pe-list-action a:last-child {
    margin-right: 0;
    border-right-width: 0.125rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .pe-list-group.pe-list-group-horizontal-md.pe-list-horizontal-auto li,
  .pe-list-group.pe-list-group-horizontal-md.pe-list-horizontal-auto.pe-list-action a {
    width: auto;
    text-align: left;
  }
  .pe-list-group.pe-list-group-horizontal-md.pe-list-group-flush li,
  .pe-list-group.pe-list-group-horizontal-md.pe-list-group-flush.pe-list-action a {
    border-top-width: 0;
    border-bottom-width: 0;
    border-left-width: 0.0625rem;
    border-right-width: 0.0625rem;
  }
  .pe-list-group.pe-list-group-horizontal-md.pe-list-group-flush li:first-child,
  .pe-list-group.pe-list-group-horizontal-md.pe-list-group-flush.pe-list-action a:first-child {
    border-left-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-md.pe-list-group-flush li:last-child,
  .pe-list-group.pe-list-group-horizontal-md.pe-list-group-flush.pe-list-action a:last-child {
    border-right-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-md.pe-list-group-flush.pe-list-group-btb {
    border-top-width: 0.0625rem;
    border-bottom-width: 0.0625rem;
  }
  .pe-list-group.pe-list-group-horizontal-md.pe-list-group-flush.pe-list-group-btb li:first-child,
  .pe-list-group.pe-list-group-horizontal-md.pe-list-group-flush.pe-list-group-btb.pe-list-action a:first-child {
    border-top-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-md.pe-list-group-flush.pe-list-group-btb li:last-child,
  .pe-list-group.pe-list-group-horizontal-md.pe-list-group-flush.pe-list-group-btb.pe-list-action a:last-child {
    border-bottom-width: 0;
  }
}

@media (min-width: 992px) {
  .pe-list-group.pe-list-group-horizontal-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-lg li,
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-action a {
    border: 0.0625rem solid #dedede;
    margin-right: -0.125rem;
    border-top-width: 0.125rem;
    border-bottom-width: 0.125rem;
    text-align: center;
    width: 100%;
  }
  .pe-list-group.pe-list-group-horizontal-lg li:first-child,
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-action a:first-child {
    border-left-width: 0.125rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .pe-list-group.pe-list-group-horizontal-lg li:last-child,
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-action a:last-child {
    margin-right: 0;
    border-right-width: 0.125rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-horizontal-auto li,
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-horizontal-auto.pe-list-action a {
    width: auto;
    text-align: left;
  }
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-group-flush li,
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-group-flush.pe-list-action a {
    border-top-width: 0;
    border-bottom-width: 0;
    border-left-width: 0.0625rem;
    border-right-width: 0.0625rem;
  }
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-group-flush li:first-child,
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-group-flush.pe-list-action a:first-child {
    border-left-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-group-flush li:last-child,
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-group-flush.pe-list-action a:last-child {
    border-right-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-group-flush.pe-list-group-btb {
    border-top-width: 0.0625rem;
    border-bottom-width: 0.0625rem;
  }
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-group-flush.pe-list-group-btb li:first-child,
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-group-flush.pe-list-group-btb.pe-list-action a:first-child {
    border-top-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-group-flush.pe-list-group-btb li:last-child,
  .pe-list-group.pe-list-group-horizontal-lg.pe-list-group-flush.pe-list-group-btb.pe-list-action a:last-child {
    border-bottom-width: 0;
  }
}

@media (min-width: 1360px) {
  .pe-list-group.pe-list-group-horizontal-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-xl li,
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-action a {
    border: 0.0625rem solid #dedede;
    margin-right: -0.125rem;
    border-top-width: 0.125rem;
    border-bottom-width: 0.125rem;
    text-align: center;
    width: 100%;
  }
  .pe-list-group.pe-list-group-horizontal-xl li:first-child,
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-action a:first-child {
    border-left-width: 0.125rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .pe-list-group.pe-list-group-horizontal-xl li:last-child,
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-action a:last-child {
    margin-right: 0;
    border-right-width: 0.125rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-horizontal-auto li,
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-horizontal-auto.pe-list-action a {
    width: auto;
    text-align: left;
  }
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-group-flush li,
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-group-flush.pe-list-action a {
    border-top-width: 0;
    border-bottom-width: 0;
    border-left-width: 0.0625rem;
    border-right-width: 0.0625rem;
  }
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-group-flush li:first-child,
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-group-flush.pe-list-action a:first-child {
    border-left-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-group-flush li:last-child,
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-group-flush.pe-list-action a:last-child {
    border-right-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-group-flush.pe-list-group-btb {
    border-top-width: 0.0625rem;
    border-bottom-width: 0.0625rem;
  }
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-group-flush.pe-list-group-btb li:first-child,
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-group-flush.pe-list-group-btb.pe-list-action a:first-child {
    border-top-width: 0;
  }
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-group-flush.pe-list-group-btb li:last-child,
  .pe-list-group.pe-list-group-horizontal-xl.pe-list-group-flush.pe-list-group-btb.pe-list-action a:last-child {
    border-bottom-width: 0;
  }
}

.pe-list-group li.pe-list-group-item-primary,
.pe-list-group.pe-list-action a.pe-list-group-item-primary {
  color: #850e28;
  background-color: #ffbfcd;
}

.pe-list-group.pe-list-action a.pe-list-group-item-primary {
  color: #850e28;
  background-color: #ffbfcd;
}

.pe-list-group.pe-list-action a.pe-list-group-item-primary:hover, .pe-list-group.pe-list-action a.pe-list-group-item-primary:focus {
  color: #850e28;
  background-color: #ff7391;
  border-color: #ff7391;
}

.pe-list-group.pe-list-action a.pe-list-group-item-primary:active {
  background-color: #ff597d;
  border-color: #ff597d;
}

.pe-list-group li.pe-list-group-item-secondary,
.pe-list-group.pe-list-action a.pe-list-group-item-secondary {
  color: #004085;
  background-color: #b8daff;
}

.pe-list-group.pe-list-action a.pe-list-group-item-secondary {
  color: #004085;
  background-color: #b8daff;
}

.pe-list-group.pe-list-action a.pe-list-group-item-secondary:hover, .pe-list-group.pe-list-action a.pe-list-group-item-secondary:focus {
  color: #004085;
  background-color: #6cb2ff;
  border-color: #6cb2ff;
}

.pe-list-group.pe-list-action a.pe-list-group-item-secondary:active {
  background-color: #52a5ff;
  border-color: #52a5ff;
}

.pe-list-group li.pe-list-group-item-success,
.pe-list-group.pe-list-action a.pe-list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.pe-list-group.pe-list-action a.pe-list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.pe-list-group.pe-list-action a.pe-list-group-item-success:hover, .pe-list-group.pe-list-action a.pe-list-group-item-success:focus {
  color: #155724;
  background-color: #8dd09c;
  border-color: #8dd09c;
}

.pe-list-group.pe-list-action a.pe-list-group-item-success:active {
  background-color: #7bc88d;
  border-color: #7bc88d;
}

.pe-list-group li.pe-list-group-item-info,
.pe-list-group.pe-list-action a.pe-list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.pe-list-group.pe-list-action a.pe-list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.pe-list-group.pe-list-action a.pe-list-group-item-info:hover, .pe-list-group.pe-list-action a.pe-list-group-item-info:focus {
  color: #0c5460;
  background-color: #84ced9;
  border-color: #84ced9;
}

.pe-list-group.pe-list-action a.pe-list-group-item-info:active {
  background-color: #70c6d3;
  border-color: #70c6d3;
}

.pe-list-group li.pe-list-group-item-warning,
.pe-list-group.pe-list-action a.pe-list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.pe-list-group.pe-list-action a.pe-list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.pe-list-group.pe-list-action a.pe-list-group-item-warning:hover, .pe-list-group.pe-list-action a.pe-list-group-item-warning:focus {
  color: #856404;
  background-color: #ffdb6e;
  border-color: #ffdb6e;
}

.pe-list-group.pe-list-action a.pe-list-group-item-warning:active {
  background-color: #ffd554;
  border-color: #ffd554;
}

.pe-list-group li.pe-list-group-item-danger,
.pe-list-group.pe-list-action a.pe-list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.pe-list-group.pe-list-action a.pe-list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.pe-list-group.pe-list-action a.pe-list-group-item-danger:hover, .pe-list-group.pe-list-action a.pe-list-group-item-danger:focus {
  color: #721c24;
  background-color: #ea8590;
  border-color: #ea8590;
}

.pe-list-group.pe-list-action a.pe-list-group-item-danger:active {
  background-color: #e66f7c;
  border-color: #e66f7c;
}

.pe-list-group li.pe-list-group-item-light,
.pe-list-group.pe-list-action a.pe-list-group-item-light {
  color: #7c7c7c;
  background-color: #fafafa;
}

.pe-list-group.pe-list-action a.pe-list-group-item-light {
  color: #7c7c7c;
  background-color: #fafafa;
}

.pe-list-group.pe-list-action a.pe-list-group-item-light:hover, .pe-list-group.pe-list-action a.pe-list-group-item-light:focus {
  color: #7c7c7c;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}

.pe-list-group.pe-list-action a.pe-list-group-item-light:active {
  background-color: #c7c7c7;
  border-color: #c7c7c7;
}

.pe-list-group li.pe-list-group-item-dark,
.pe-list-group.pe-list-action a.pe-list-group-item-dark {
  color: #121212;
  background-color: #c1c1c1;
}

.pe-list-group.pe-list-action a.pe-list-group-item-dark {
  color: #121212;
  background-color: #c1c1c1;
}

.pe-list-group.pe-list-action a.pe-list-group-item-dark:hover, .pe-list-group.pe-list-action a.pe-list-group-item-dark:focus {
  color: #121212;
  background-color: #9b9b9b;
  border-color: #9b9b9b;
}

.pe-list-group.pe-list-action a.pe-list-group-item-dark:active {
  background-color: #8e8e8e;
  border-color: #8e8e8e;
}

.pe-list-group.mb-0 {
  margin-bottom: 0;
}

/*--------------------------------------------------------------------------------
## Default Blocks -> Blockquote
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
### Default Blocks -> Blockquote -> Base
--------------------------------------------------------------------------------*/
.wp-block-quote {
  font-family: "SNMono", Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 1.375rem;
  border-left: 0.625rem solid #ffffff;
  background: #eeeeee;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  margin-top: 2.625rem;
  margin-bottom: 2rem;
  margin-left: 0;
  padding: 20px 20px 40px;
}

@media (min-width: 576px) {
  .wp-block-quote {
    padding: 28px 32px 50px;
  }
}

.wp-block-quote:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-top: 0.625rem solid #ff1b4d;
  border-left: 0.625rem solid #ff1b4d;
  position: absolute;
  left: -0.625rem;
  top: -0.625rem;
  z-index: -1;
}

.wp-block-quote:after {
  font-family: 'pe-icons';
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ea22";
  color: #ff1b4d;
  position: absolute;
  right: 0.6875rem;
  bottom: 0.6875rem;
}

.wp-block-quote p,
.wp-block-quote p:last-child {
  font-family: "SNMono", Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 1.375rem;
  line-height: 1.3;
  color: #171717;
}

.wp-block-quote p a,
.wp-block-quote p:last-child a {
  color: #ff1b4d;
}

.wp-block-quote cite {
  display: block;
  font-size: 1rem;
  color: #454545;
}

.wp-block-quote cite::before {
  content: '\2014\00A0';
}

.wp-block-quote.is-style-large {
  margin-top: 2.9375rem;
  margin-bottom: 2rem;
  border-left: 0.9375rem solid #ffffff;
  padding: 20px 20px 50px;
}

@media (min-width: 576px) {
  .wp-block-quote.is-style-large {
    padding: 28px 32px 50px;
  }
}

.wp-block-quote.is-style-large p,
.wp-block-quote.is-style-large p:last-child {
  font-size: 1.75rem;
  font-style: normal;
  line-height: 1.5;
}

.wp-block-quote.is-style-large:before {
  border-top-width: 0.9375rem;
  border-left-width: 0.9375rem;
  left: -0.9375rem;
  top: -0.9375rem;
}

.wp-block-quote.is-style-large:after {
  font-size: 1.75rem;
  right: 0.875rem;
  bottom: 0.875rem;
}

.wp-block-quote.is-style-large cite {
  text-align: left;
  font-size: 1.1rem;
}

.wp-block-pullquote {
  font-family: "SNMono", Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  background: #eeeeee;
  margin-bottom: 2rem;
  padding: 20px;
}

.wp-block-pullquote p {
  font-size: 1.375rem;
  line-height: 1.3;
}

.wp-block-pullquote blockquote {
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------------------------
# Shortcodes
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
## Shortcodes -> Accordions
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
### Shortcodes -> Accordions -> Base
--------------------------------------------------------------------------------*/
.pe-accordion {
  margin-bottom: 2rem;
}

.pe-accordion .pe-accordion-item {
  margin-bottom: 1rem;
}

.pe-accordion .pe-accordion-header button {
  display: block;
  width: 100%;
  text-align: left;
  font-family: "SNBody", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  line-height: 1.3;
  padding: 0.8rem 1rem 1rem;
  position: relative;
  color: #fff;
  background: #ff1b4d;
  border: 0.125rem solid #ff1b4d;
  margin: 0;
}

.pe-accordion .pe-accordion-header button .pe-icon:before,
.pe-accordion .pe-accordion-header button span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.pe-accordion .pe-accordion-header button .pe-icon:before {
  font-size: 1.2rem;
  margin-right: 0.3rem;
}

.pe-accordion .pe-accordion-header button:after {
  position: absolute;
  opacity: 0.7;
  right: 1rem;
  top: calc(50% - 0.625rem);
  font-family: 'pe-icons';
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ea1e";
}

.pe-accordion .pe-accordion-header button:hover {
  color: #fff;
  background: #ff0239;
  border-color: #ff0239;
}

.pe-accordion .pe-accordion-header button:focus, .pe-accordion .pe-accordion-header button:active {
  outline: 0;
}

.pe-accordion .pe-accordion-header button.collapsed {
  background: #f2f5f5;
  border-color: #dedede;
  color: #4d4d4d;
}

.pe-accordion .pe-accordion-header button.collapsed:after {
  content: "\ea20";
  opacity: 0.3;
}

.pe-accordion .pe-accordion-header button.collapsed:hover {
  color: #4d4d4d;
  background: #e4eaea;
}

.pe-accordion .pe-accordion-body {
  background: #fff;
  border: 0.125rem solid #dedede;
  border-top: 0;
}

.pe-accordion .pe-accordion-body .pe-accordion-content {
  padding: 1rem;
}

/*--------------------------------------------------------------------------------
### Shortcodes -> Accordions -> With Thumbs
--------------------------------------------------------------------------------*/
.pe-accordion.pe-accordion-with-thumbs .pe-accordion-header button {
  padding: 0.75rem;
}

.pe-accordion.pe-accordion-with-thumbs .pe-accordion-header button:after {
  right: 0.75rem;
  top: 1.75rem;
}

.pe-accordion.pe-accordion-with-thumbs .pe-accordion-header .pe-img-tp-thumbnail {
  margin-right: 0.5rem;
}

.pe-accordion.pe-accordion-with-thumbs .pe-accordion-header .pe-img-tp-thumbnail:after {
  background: #ff1b4d;
  border-color: #ff1b4d;
}

.pe-accordion.pe-accordion-with-thumbs .pe-accordion-header .pe-img-tp-thumbnail img {
  max-width: 3.125rem;
  max-height: 3.125rem;
}

/*--------------------------------------------------------------------------------
## Shortcodes -> Link Boxes
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
### Shortcodes -> Link Boxes -> Base
--------------------------------------------------------------------------------*/
.pe-link-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -0.9375rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.pe-link-boxes .pe-link-box {
  color: #333333;
  margin: 0.9375rem;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.pe-link-boxes .pe-link-box h1,
.pe-link-boxes .pe-link-box h2,
.pe-link-boxes .pe-link-box h3,
.pe-link-boxes .pe-link-box h4,
.pe-link-boxes .pe-link-box h5,
.pe-link-boxes .pe-link-box h6,
.pe-link-boxes .pe-link-box .h1,
.pe-link-boxes .pe-link-box .h2,
.pe-link-boxes .pe-link-box .h3,
.pe-link-boxes .pe-link-box .h4,
.pe-link-boxes .pe-link-box .h5,
.pe-link-boxes .pe-link-box .h6 {
  margin-bottom: 0;
}

.pe-link-boxes .pe-link-box:last-child {
  margin-right: 0;
}

.pe-link-boxes .pe-link-box:hover, .pe-link-boxes .pe-link-box:focus, .pe-link-boxes .pe-link-box:active {
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.pe-link-boxes .pe-link-box:hover, .pe-link-boxes .pe-link-box:focus {
  color: #ff1b4d;
}

.pe-link-boxes .pe-link-box:active {
  color: #ce002d;
}

.pe-link-boxes .pe-link-box.pe-secondary {
  color: inherit;
  border-color: #dedede;
}

.pe-link-boxes .pe-link-box.pe-secondary:hover, .pe-link-boxes .pe-link-box.pe-secondary:focus {
  color: #007bff;
  border-color: #007bff;
}

.pe-link-boxes .pe-link-box.pe-secondary:active {
  color: #0056b3;
  border-color: #0056b3;
}

.pe-link-boxes .pe-link-box .pe-img-thumbnail {
  margin-bottom: 0.46875rem;
}

.pe-link-boxes .pe-link-box.pe-card h1,
.pe-link-boxes .pe-link-box.pe-card h2,
.pe-link-boxes .pe-link-box.pe-card h3,
.pe-link-boxes .pe-link-box.pe-card h4,
.pe-link-boxes .pe-link-box.pe-card h5,
.pe-link-boxes .pe-link-box.pe-card h6,
.pe-link-boxes .pe-link-box.pe-card .h1,
.pe-link-boxes .pe-link-box.pe-card .h2,
.pe-link-boxes .pe-link-box.pe-card .h3,
.pe-link-boxes .pe-link-box.pe-card .h4,
.pe-link-boxes .pe-link-box.pe-card .h5,
.pe-link-boxes .pe-link-box.pe-card .h6 {
  margin: 0;
}

.pe-link-boxes .pe-link-box.pe-card .pe-card-body {
  padding: 0.5rem 1rem 0.75rem;
}

.pe-link-boxes .pe-link-box.pe-card .pe-card-body h6 {
  font-family: "SNBody", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 500;
  padding-top: 0.15rem;
}

.pe-link-boxes .pe-link-box.pe-card:hover, .pe-link-boxes .pe-link-box.pe-card:focus {
  background: #ff1b4d;
  color: #fff;
}

.pe-link-boxes .pe-link-box.pe-card:active {
  background: #ce002d;
  color: #ce002d;
}

.pe-link-boxes .pe-link-box.pe-card.pe-secondary:hover, .pe-link-boxes .pe-link-box.pe-card.pe-secondary:focus {
  background: #007bff;
  color: #fff;
}

.pe-link-boxes .pe-link-box.pe-card.pe-secondary:active {
  background: #0056b3;
  color: #0056b3;
}

@media (max-width: 575.98px) {
  .pe-link-boxes .pe-link-box {
    width: 100%;
    margin: 0 0 0.9375rem;
  }
}

/*--------------------------------------------------------------------------------
## Shortcodes -> Linkwall
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
### Shortcodes -> Linkwall -> Base
--------------------------------------------------------------------------------*/
.pe-card.pe-linkwall .pe-card-body {
  background: #fff;
}

/*--------------------------------------------------------------------------------
### Shortcodes -> Linkwall -> Collapsable
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
## Shortcodes -> Tabs
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
### Shortcodes -> Tabs -> Base
--------------------------------------------------------------------------------*/
.i-tabs {
  margin-bottom: 1.875rem;
}

.i-tabs nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.i-tabs nav a {
  display: block;
  font-size: 1rem;
  background: #f2f5f5;
  padding: 0.75rem 1.5rem;
  color: #333333;
}

.i-tabs nav a.icon::before {
  font-size: 1.2rem;
  margin-right: 0.3rem;
  top: -0.125rem;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.i-tabs nav a:hover, .i-tabs nav a:focus {
  color: #ff1b4d;
}

.i-tabs nav a.active {
  background: #ff1b4d;
  color: #fff;
}

.i-tabs .tabs-content section {
  display: none;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.i-tabs .tabs-content section p:last-child {
  margin-bottom: 0;
}

.i-tabs.bordered nav a {
  border: 0.125rem solid #dedede;
  border-bottom-width: 0;
  border-left-width: 0;
}

.i-tabs.bordered nav a:first-child {
  border-left-width: 0.125rem;
}

.i-tabs.bordered .tabs-content section {
  border: 0.125rem solid #dedede;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  background: #f2f5f5;
}

.i-tabs.justified nav a {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

@media (max-width: 1359px) {
  .i-tabs.icons-in-mobile nav a.icon span {
    display: none;
  }
  .i-tabs.icons-in-mobile nav a.icon:before {
    margin-right: 0;
  }
  .i-tabs.icons-in-mobile.justified.bordered nav {
    border: 0.125rem solid #dedede;
    border-left-width: 0.0625rem;
    border-right-width: 0.0625rem;
    border-bottom: 0;
  }
  .i-tabs.icons-in-mobile.justified.bordered nav a {
    border: 0.125rem solid #dedede;
    border-left-width: 0.0625rem;
    border-right-width: 0.0625rem;
    border-top: 0;
  }
  .i-tabs.icons-in-mobile.justified.bordered .tabs-content section {
    border-top: 0;
  }
}

.i-tabs.mobile-collapse .tabs-mobile-nav {
  padding: 0;
  background: #e4e4e4;
}

.i-tabs.mobile-collapse .tabs-mobile-nav .tabs-mobile-nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}

.i-tabs.mobile-collapse .tabs-mobile-nav .current-tab-title span {
  font-size: 1.1rem;
}

.i-tabs.mobile-collapse .tabs-mobile-nav .current-tab-title .icon:before {
  font-size: 1.2rem;
  margin-right: 0.3rem;
  top: -0.125rem;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.i-tabs.mobile-collapse .tabs-mobile-nav .navbar-toggler {
  background: #ff1b4d;
  color: #fff;
  font-size: 1rem;
  padding: 0.25rem 0.4rem;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  margin: 0;
}

.i-tabs.mobile-collapse .tabs-mobile-nav .navbar-toggler .icon {
  fill: currentColor;
  width: 1.5rem;
}

.i-tabs.mobile-collapse .tabs-mobile-nav .navbar-toggler .svg-menu-toggle .line {
  opacity: 1;
  -webkit-transform: rotate(0) translateY(0) translateX(0);
  -ms-transform: rotate(0) translateY(0) translateX(0);
  transform: rotate(0) translateY(0) translateX(0);
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.i-tabs.mobile-collapse .tabs-mobile-nav .navbar-toggler .svg-menu-toggle .line-1 {
  -webkit-transform-origin: 1em 2.3em;
  -ms-transform-origin: 1em 2.3em;
  transform-origin: 1em 2.3em;
}

.i-tabs.mobile-collapse .tabs-mobile-nav .navbar-toggler .svg-menu-toggle .line-3 {
  -webkit-transform-origin: 1em 3.9em;
  -ms-transform-origin: 1em 3.9em;
  transform-origin: 1em 3.9em;
}

.i-tabs.mobile-collapse .tabs-mobile-nav .navbar-toggler[aria-expanded='true'] .svg-menu-toggle .line-1 {
  -webkit-transform: rotate(45deg) translateY(0) translateX(0);
  -ms-transform: rotate(45deg) translateY(0) translateX(0);
  transform: rotate(45deg) translateY(0) translateX(0);
}

.i-tabs.mobile-collapse .tabs-mobile-nav .navbar-toggler[aria-expanded='true'] .svg-menu-toggle .line-2 {
  opacity: 0;
}

.i-tabs.mobile-collapse .tabs-mobile-nav .navbar-toggler[aria-expanded='true'] .svg-menu-toggle .line-3 {
  -webkit-transform: rotate(-45deg) translateY(0) translateX(0);
  -ms-transform: rotate(-45deg) translateY(0) translateX(0);
  transform: rotate(-45deg) translateY(0) translateX(0);
}

.i-tabs.mobile-collapse .tabs-mobile-nav .navbar-collapse nav {
  background: #fff;
}

.i-tabs.mobile-collapse .tabs-mobile-nav .navbar-collapse nav a {
  width: 100%;
  border: 0;
}

.i-tabs.mobile-collapse.bordered .tabs-mobile-nav {
  border: 0.125rem solid #dedede;
  border-bottom: 0;
}

.i-tabs.mobile-collapse.bordered .tabs-mobile-nav .navbar-collapse nav {
  border-top: 0.125rem solid #dedede;
}

.i-tabs.mobile-collapse .tabs-mobile-nav {
  display: none;
}

@media (max-width: 1359px) {
  .i-tabs.mobile-collapse .tabs-desktop-nav {
    display: none;
  }
  .i-tabs.mobile-collapse .tabs-mobile-nav {
    display: block;
  }
}

/*--------------------------------------------------------------------------------
### Shortcodes -> Tabs -> Pointer
--------------------------------------------------------------------------------*/
.i-tabs-pointer nav a.active {
  position: relative;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.i-tabs-pointer nav a.active::after {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.625rem;
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 0.625rem;
  border-top-color: #ff1b4d;
  content: '';
  pointer-events: none;
}

@media (max-width: 1359px) {
  .i-tabs-pointer nav a.active::after {
    display: none;
  }
}

.i-tabs-pointer .tabs-content section {
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}

/*--------------------------------------------------------------------------------
### Shortcodes -> Tabs -> Underline
--------------------------------------------------------------------------------*/
.i-tabs-underline nav a {
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  position: relative;
  overflow: hidden;
}

.i-tabs-underline nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #ff1b4d;
  content: '';
  -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: translate3d(0, 150%, 0);
  transform: translate3d(0, 150%, 0);
}

.i-tabs-underline nav a.active {
  background: #f2f5f5;
  color: #ff1b4d;
}

.i-tabs-underline nav a.active::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*--------------------------------------------------------------------------------
### Shortcodes -> Tabs -> Iconfall
--------------------------------------------------------------------------------*/
.i-tabs-iconfall {
  overflow: visible;
}

.i-tabs-iconfall nav a {
  position: relative;
  -webkit-transition: color 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  -o-transition: color 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: color 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}

.i-tabs-iconfall nav a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #ff1b4d;
  content: '';
  opacity: 0;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  -o-transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
}

.i-tabs-iconfall nav a.icon::before {
  display: block;
  margin: 0 0 0.3rem 0;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  -o-transition: transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
  pointer-events: none;
}

@media (min-width: 1360px) {
  .i-tabs-iconfall nav a.icon::before {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
}

.i-tabs-iconfall nav a span {
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
  font-size: 0.875rem;
}

.i-tabs-iconfall nav a.active, .i-tabs-iconfall nav a:hover, .i-tabs-iconfall nav a:focus {
  color: #ff1b4d;
}

.i-tabs-iconfall nav a.active {
  background: #f2f5f5;
}

.i-tabs-iconfall nav a.active::after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.i-tabs-iconfall nav a.active.icon::before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1359px) {
  .i-tabs-iconfall.mobile-collapse nav a::after, .i-tabs-iconfall.mobile-collapse nav a.icon::before {
    display: none;
  }
}

/*--------------------------------------------------------------------------------
### Shortcodes -> Tabs -> Linemove
--------------------------------------------------------------------------------*/
.i-tabs-linemove nav {
  position: relative;
}

.i-tabs-linemove nav a {
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  -o-transition: color 0.3s, transform 0.3s;
  transition: color 0.3s, transform 0.3s;
  transition: color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.i-tabs-linemove nav a span, .i-tabs-linemove nav a:before {
  display: inline-block;
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  -o-transition: color 0.3s, transform 0.3s;
  transition: color 0.3s, transform 0.3s;
  transition: color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.i-tabs-linemove nav a.active {
  background: #f2f5f5;
  color: #ff1b4d;
}

.i-tabs-linemove nav a.active span, .i-tabs-linemove nav a.active:before {
  -webkit-transform: translateY(0.1875rem);
  -ms-transform: translateY(0.1875rem);
  transform: translateY(0.1875rem);
}

.i-tabs-linemove nav .borderLine {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #ff1b4d;
  content: '';
  -webkit-transition: left 0.3s;
  -o-transition: left 0.3s;
  transition: left 0.3s;
}

/*--------------------------------------------------------------------------------
### Shortcodes -> Tabs -> Shape
--------------------------------------------------------------------------------*/
.i-tabs-shape nav {
  overflow: hidden;
}

.i-tabs-shape nav a:first-child,
.i-tabs-shape nav a:last-child {
  margin: 0;
}

.i-tabs-shape nav a.active {
  z-index: 100;
}

.i-tabs-shape nav a {
  overflow: visible;
  padding: 0;
  line-height: 2;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  background: transparent;
}

.i-tabs-shape nav a:after, .i-tabs-shape nav a:before {
  display: none;
}

.i-tabs-shape nav a svg {
  position: absolute;
  left: 100%;
  margin: 0 -1.5rem;
  width: 3rem;
  height: 100%;
  fill: #e4e4e4;
  -webkit-transform: translateX(-0.125rem);
  -ms-transform: translateX(-0.125rem);
  transform: translateX(-0.125rem);
}

.i-tabs-shape nav a svg svg {
  pointer-events: none;
}

.i-tabs-shape nav a svg use {
  pointer-events: auto;
}

.i-tabs-shape nav a span {
  display: block;
  overflow: hidden;
  padding: 0.75rem 0 0.75rem;
  background-color: #e4e4e4;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 1.875rem 1.875rem 0 0;
}

.i-tabs-shape nav a span .icon:before {
  margin-right: 0.3rem;
  font-size: 1.2rem;
  top: -0.125rem;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.i-tabs-shape nav a:hover span {
  background-color: #ff1b4d;
  color: #fff;
}

.i-tabs-shape nav a:hover svg {
  fill: #ff1b4d;
}

.i-tabs-shape nav a:first-child span,
.i-tabs-shape nav a:last-child span {
  border-radius: 1.875rem 1.875rem 0 0;
}

.i-tabs-shape nav a svg:nth-child(2),
.i-tabs-shape nav a:last-child svg {
  right: 100%;
  left: auto;
  -webkit-transform: scale3d(-1, 1, 1);
  transform: scale3d(-1, 1, 1);
}

.i-tabs-shape nav a.active {
  background: transparent;
}

.i-tabs-shape nav a.active span,
.i-tabs-shape nav a.active svg {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.i-tabs-shape nav a.active span {
  color: #ff1b4d;
  background: #f2f5f5;
}

.i-tabs-shape nav a.active svg {
  fill: #f2f5f5;
}

.i-tabs-shape .tabs-content section {
  background: #f2f5f5;
  padding: 1.5rem 1.5rem;
  margin-top: -0.125rem;
  position: relative;
}

@media (max-width: 1359px) {
  .i-tabs-shape.mobile-collapse nav a {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    text-align: left;
    padding: 0.225rem 1.5rem 0.45rem;
    background: #f2f5f5;
  }
  .i-tabs-shape.mobile-collapse nav a span {
    padding: 0;
    border-radius: 0;
    background: none;
  }
  .i-tabs-shape.mobile-collapse nav a svg {
    display: none;
  }
  .i-tabs-shape.mobile-collapse nav a:hover span,
  .i-tabs-shape.mobile-collapse nav a:hover .icon, .i-tabs-shape.mobile-collapse nav a:focus span,
  .i-tabs-shape.mobile-collapse nav a:focus .icon {
    color: #ff1b4d;
  }
  .i-tabs-shape.mobile-collapse nav a.active {
    background: #ff1b4d;
  }
  .i-tabs-shape.mobile-collapse nav a.active span,
  .i-tabs-shape.mobile-collapse nav a.active .icon {
    color: #fff;
  }
  .i-tabs-shape.mobile-collapse .tabs-content section {
    background: #f2f5f5;
  }
}

@media (max-width: 991.98px) {
  .i-tabs-shape.fullwidth-in-mobile {
    display: block;
  }
  .i-tabs-shape.fullwidth-in-mobile a {
    display: block;
    margin: -1.25rem 0 0;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }
  .i-tabs-shape.fullwidth-in-mobile a svg {
    display: none;
  }
  .i-tabs-shape.fullwidth-in-mobile a span {
    padding: 1rem 0 2rem;
    border-radius: 1.875rem 1.875rem 0 0;
    -webkit-box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1;
  }
  .i-tabs-shape.fullwidth-in-mobile a:last-child span {
    margin: -1.25rem 0 0;
    padding: 1rem 0;
  }
  .i-tabs-shape.fullwidth-in-mobile a.active {
    z-index: 0;
  }
}

/*--------------------------------------------------------------------------------
### Shortcodes -> Tabs -> Flip
--------------------------------------------------------------------------------*/
.i-tabs-flip nav a {
  background: transparent;
  position: relative;
}

.i-tabs-flip nav a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #f2f5f5;
  content: '';
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, background-color 0.3s;
  transition: transform 0.3s, background-color 0.3s;
  transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  -webkit-transform: perspective(900px) rotate3d(1, 0, 0, 90deg);
  transform: perspective(900px) rotate3d(1, 0, 0, 90deg);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-perspective-origin: 50% 100%;
  perspective-origin: 50% 100%;
}

.i-tabs-flip nav a.active, .i-tabs-flip nav a:hover, .i-tabs-flip nav a:focus {
  color: #ff1b4d;
}

.i-tabs-flip nav a.active {
  background: transparent;
}

.i-tabs-flip nav a.active::after {
  background-color: #f2f5f5;
  -webkit-transform: perspective(900px) rotate3d(1, 0, 0, 0deg);
  transform: perspective(900px) rotate3d(1, 0, 0, 0deg);
}

.i-tabs-flip .tabs-content section {
  background: #f2f5f5;
  padding: 2.5rem 1.5rem;
}

/*--------------------------------------------------------------------------------
### Shortcodes -> Tabs -> Tzoid
--------------------------------------------------------------------------------*/
.i-tabs-tzoid nav {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.i-tabs-tzoid nav a {
  padding: 0.75rem 3rem 0.75rem 1.5rem;
  color: #9b0022;
  background: transparent;
  position: relative;
}

.i-tabs-tzoid nav a:hover, .i-tabs-tzoid nav a:focus {
  color: #fff;
}

.i-tabs-tzoid nav a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 0.625rem 0.625rem 0 0;
  background: #ff1b4d;
  content: '';
  -webkit-transform: perspective(0.3125rem) rotateX(0.93deg) translateZ(-0.0625rem);
  transform: perspective(0.3125rem) rotateX(0.93deg) translateZ(-0.0625rem);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.i-tabs-tzoid nav a.active {
  color: #ff1b4d;
  background: transparent;
}

.i-tabs-tzoid nav a.active::after {
  background: #f2f5f5;
}

.i-tabs-tzoid .tabs-content section {
  background: #f2f5f5;
  padding: 2.5rem 1.5rem;
  margin-top: -0.125rem;
}

@media (max-width: 1359px) {
  .i-tabs-tzoid.mobile-collapse nav a {
    color: #333333;
  }
  .i-tabs-tzoid.mobile-collapse nav a:after {
    display: none;
  }
  .i-tabs-tzoid.mobile-collapse nav a.active, .i-tabs-tzoid.mobile-collapse nav a:hover, .i-tabs-tzoid.mobile-collapse nav a:focus {
    color: #ff1b4d;
  }
}

/*--------------------------------------------------------------------------------
## Shortcodes -> WP Media
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
### Shortcodes -> WP Media -> Base
--------------------------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------------------------
### Shortcodes -> WP Media -> Captions
--------------------------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*='wp-image-'] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------------------------
### Shortcodes -> WP Media -> Galleries
--------------------------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------------------------
# Utilities
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
## Utilities -> Text
--------------------------------------------------------------------------------*/
.text-white {
  color: #fff;
}

.text-primary {
  color: #ff1b4d;
}

a.text-primary:hover, a.text-primary:focus {
  color: #ce002d;
}

.text-secondary {
  color: #007bff;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #0056b3;
}

.text-success {
  color: #28a745;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c;
}

.text-info {
  color: #17a2b8;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674;
}

.text-warning {
  color: #ffc107;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00;
}

.text-danger {
  color: #dc3545;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a;
}

.text-light {
  color: #eeeeee;
}

a.text-light:hover, a.text-light:focus {
  color: #c8c8c8;
}

.text-dark {
  color: #232323;
}

a.text-dark:hover, a.text-dark:focus {
  color: black;
}

.text-body {
  color: #333333;
}

.text-muted {
  color: #cccccc;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}
