/* Reset and base styles - modificado para solo afectar dentro de pe-container */
.pe-container,
.pe-container *,
.pe-container *::before,
.pe-container *::after {
  box-sizing: border-box;
}

/* Container */
.pe-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
}

.pe-img-fluid{
  width: 100%;
}

@media (min-width: 576px) {
  .pe-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .pe-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .pe-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .pe-container {
    max-width: 1140px;
  }
}

.pe-container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Row and column system */
.pe-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 0px; 
}

.pe-no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.pe-no-gutters > .pe-col,
.pe-no-gutters > [class*="pe-col-"] {
  padding-right: 0;
  padding-left: 0;
}

.pe-col,
.pe-col-1,
.pe-col-2,
.pe-col-3,
.pe-col-4,
.pe-col-5,
.pe-col-6,
.pe-col-7,
.pe-col-8,
.pe-col-9,
.pe-col-10,
.pe-col-11,
.pe-col-12,
.pe-col-sm,
.pe-col-sm-1,
.pe-col-sm-2,
.pe-col-sm-3,
.pe-col-sm-4,
.pe-col-sm-5,
.pe-col-sm-6,
.pe-col-sm-7,
.pe-col-sm-8,
.pe-col-sm-9,
.pe-col-sm-10,
.pe-col-sm-11,
.pe-col-sm-12,
.pe-col-md,
.pe-col-md-1,
.pe-col-md-2,
.pe-col-md-3,
.pe-col-md-4,
.pe-col-md-5,
.pe-col-md-6,
.pe-col-md-7,
.pe-col-md-8,
.pe-col-md-9,
.pe-col-md-10,
.pe-col-md-11,
.pe-col-md-12,
.pe-col-lg,
.pe-col-lg-1,
.pe-col-lg-2,
.pe-col-lg-3,
.pe-col-lg-4,
.pe-col-lg-5,
.pe-col-lg-6,
.pe-col-lg-7,
.pe-col-lg-8,
.pe-col-lg-9,
.pe-col-lg-10,
.pe-col-lg-11,
.pe-col-lg-12,
.pe-col-xl,
.pe-col-xl-1,
.pe-col-xl-2,
.pe-col-xl-3,
.pe-col-xl-4,
.pe-col-xl-5,
.pe-col-xl-6,
.pe-col-xl-7,
.pe-col-xl-8,
.pe-col-xl-9,
.pe-col-xl-10,
.pe-col-xl-11,
.pe-col-xl-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.pe-col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.pe-col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.pe-col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.pe-col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.pe-col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.pe-col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.pe-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.pe-col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.pe-col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.pe-col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.pe-col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.pe-col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.pe-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .pe-col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .pe-col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .pe-col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .pe-col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .pe-col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .pe-col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .pe-col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pe-col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .pe-col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .pe-col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .pe-col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .pe-col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .pe-col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .pe-col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .pe-col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .pe-col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .pe-col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .pe-col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .pe-col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .pe-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pe-col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .pe-col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .pe-col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .pe-col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .pe-col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .pe-col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .pe-col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .pe-col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .pe-col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .pe-col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .pe-col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .pe-col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .pe-col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pe-col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .pe-col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .pe-col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .pe-col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .pe-col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .pe-col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .pe-col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .pe-col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .pe-col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .pe-col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .pe-col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .pe-col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .pe-col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pe-col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .pe-col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .pe-col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .pe-col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .pe-col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .pe-col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Typography */
.pe-container h1,
.pe-container h2,
.pe-container h3,
.pe-container h4,
.pe-container h5,
.pe-container h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.pe-container h1 {
  font-size: 2.5rem;
}
.pe-container h2 {
  font-size: 2rem;
}
.pe-container h3 {
  font-size: 1.75rem;
}
.pe-container h4 {
  font-size: 1.5rem;
}
.pe-container h5 {
  font-size: 1.25rem;
}
.pe-container h6 {
  font-size: 1rem;
}

.pe-lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.pe-display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}
.pe-display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.pe-display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.pe-display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.pe-container p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Text alignment */
.pe-text-left {
  text-align: left !important;
}
.pe-text-right {
  text-align: right !important;
}
.pe-text-center {
  text-align: center !important;
}
.pe-text-justify {
  text-align: justify !important;
}

/* Responsive text alignment */
@media (min-width: 576px) {
  .pe-text-sm-left {
    text-align: left !important;
  }
  .pe-text-sm-right {
    text-align: right !important;
  }
  .pe-text-sm-center {
    text-align: center !important;
  }
  .pe-text-sm-justify {
    text-align: justify !important;
  }
}

@media (min-width: 768px) {
  .pe-text-md-left {
    text-align: left !important;
  }
  .pe-text-md-right {
    text-align: right !important;
  }
  .pe-text-md-center {
    text-align: center !important;
  }
  .pe-text-md-justify {
    text-align: justify !important;
  }
}

@media (min-width: 992px) {
  .pe-text-lg-left {
    text-align: left !important;
  }
  .pe-text-lg-right {
    text-align: right !important;
  }
  .pe-text-lg-center {
    text-align: center !important;
  }
  .pe-text-lg-justify {
    text-align: justify !important;
  }
}

@media (min-width: 1200px) {
  .pe-text-xl-left {
    text-align: left !important;
  }
  .pe-text-xl-right {
    text-align: right !important;
  }
  .pe-text-xl-center {
    text-align: center !important;
  }
  .pe-text-xl-justify {
    text-align: justify !important;
  }
}

.pe-text-lowercase {
  text-transform: lowercase;
}
.pe-text-uppercase {
  text-transform: uppercase;
}
.pe-text-capitalize {
  text-transform: capitalize;
}

.pe-font-weight-light {
  font-weight: 300;
}
.pe-font-weight-normal {
  font-weight: 400;
}
.pe-font-weight-bold {
  font-weight: 700;
}

/* Buttons */
.pe-btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow
    0.15s ease-in-out;
}

.pe-btn:hover {
  text-decoration: none;
}

.pe-btn:focus,
.pe-btn.pe-focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.pe-btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.pe-btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.pe-btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.pe-btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.pe-btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.pe-btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.pe-btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.pe-btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.pe-btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.pe-btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.pe-btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.pe-btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.pe-btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.pe-btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.pe-btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.pe-btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

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

.pe-btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.pe-btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.pe-btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

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

/* Cards */
.pe-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.pe-card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.pe-card-title {
  margin-bottom: 0.75rem;
}

.pe-card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.pe-card-text:last-child {
  margin-bottom: 0;
}

.pe-card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.pe-card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

/* Forms */
.pe-form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.pe-form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.pe-form-group {
  margin-bottom: 1rem;
}

.pe-form-text {
  display: block;
  margin-top: 0.25rem;
}

.pe-form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.pe-form-row > .pe-col,
.pe-form-row > [class*="pe-col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.pe-form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.pe-form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.pe-form-check-label {
  margin-bottom: 0;
}

/* Alerts */
.pe-alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.pe-alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.pe-alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.pe-alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.pe-alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.pe-alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.pe-alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

/* Navbar */
.pe-navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.pe-navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.pe-navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.pe-navbar-nav .pe-nav-link {
  padding-right: 0;
  padding-left: 0;
}

.pe-navbar-nav .pe-dropdown-menu {
  position: static;
  float: none;
}

.pe-navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.pe-navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

@media (min-width: 992px) {
  .pe-navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .pe-navbar-expand-lg .pe-navbar-nav {
    flex-direction: row;
  }
  .pe-navbar-expand-lg .pe-navbar-nav .pe-dropdown-menu {
    position: absolute;
  }
  .pe-navbar-expand-lg .pe-navbar-nav .pe-nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .pe-navbar-expand-lg .pe-navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .pe-navbar-expand-lg .pe-navbar-toggler {
    display: none;
  }
}

.pe-navbar-light .pe-navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.pe-navbar-light .pe-navbar-nav .pe-nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.pe-navbar-light .pe-navbar-nav .pe-nav-link:hover,
.pe-navbar-light .pe-navbar-nav .pe-nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.pe-navbar-light .pe-navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.pe-navbar-dark .pe-navbar-brand {
  color: #fff;
}

.pe-navbar-dark .pe-navbar-nav .pe-nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.pe-navbar-dark .pe-navbar-nav .pe-nav-link:hover,
.pe-navbar-dark .pe-navbar-nav .pe-nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.pe-navbar-dark .pe-navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Utilities */
/* Margin and padding */
.pe-m-0 {
  margin: 0 !important;
}
.pe-mt-0 {
  margin-top: 0 !important;
}
.pe-mr-0 {
  margin-right: 0 !important;
}
.pe-mb-0 {
  margin-bottom: 0 !important;
}
.pe-ml-0 {
  margin-left: 0 !important;
}

.pe-m-1 {
  margin: 0.25rem !important;
}
.pe-mt-1 {
  margin-top: 0.25rem !important;
}
.pe-mr-1 {
  margin-right: 0.25rem !important;
}
.pe-mb-1 {
  margin-bottom: 0.25rem !important;
}
.pe-ml-1 {
  margin-left: 0.25rem !important;
}

.pe-m-2 {
  margin: 0.5rem !important;
}
.pe-mt-2 {
  margin-top: 0.5rem !important;
}
.pe-mr-2 {
  margin-right: 0.5rem !important;
}
.pe-mb-2 {
  margin-bottom: 0.5rem !important;
}
.pe-ml-2 {
  margin-left: 0.5rem !important;
}

.pe-m-3 {
  margin: 1rem !important;
}
.pe-mt-3 {
  margin-top: 1rem !important;
}
.pe-mr-3 {
  margin-right: 1rem !important;
}
.pe-mb-3 {
  margin-bottom: 1rem !important;
}
.pe-ml-3 {
  margin-left: 1rem !important;
}

.pe-m-4 {
  margin: 1.5rem !important;
}
.pe-mt-4 {
  margin-top: 1.5rem !important;
}

.pe-mr-4 {
  margin-right: 1.5rem !important;
}
.pe-mb-4 {
  margin-bottom: 1.5rem !important;
}
.pe-ml-4 {
  margin-left: 1.5rem !important;
}

.pe-m-5 {
  margin: 3rem !important;
}
.pe-mt-5 {
  margin-top: 3rem !important;
}
.pe-mr-5 {
  margin-right: 3rem !important;
}
.pe-mb-5 {
  margin-bottom: 3rem !important;
}
.pe-ml-5 {
  margin-left: 3rem !important;
}

.pe-p-0 {
  padding: 0 !important;
}
.pe-pt-0 {
  padding-top: 0 !important;
}
.pe-pr-0 {
  padding-right: 0 !important;
}
.pe-pb-0 {
  padding-bottom: 0 !important;
}
.pe-pl-0 {
  padding-left: 0 !important;
}

.pe-p-1 {
  padding: 0.25rem !important;
}
.pe-pt-1 {
  padding-top: 0.25rem !important;
}
.pe-pr-1 {
  padding-right: 0.25rem !important;
}
.pe-pb-1 {
  padding-bottom: 0.25rem !important;
}
.pe-pl-1 {
  padding-left: 0.25rem !important;
}

.pe-p-2 {
  padding: 0.5rem !important;
}
.pe-pt-2 {
  padding-top: 0.5rem !important;
}
.pe-pr-2 {
  padding-right: 0.5rem !important;
}
.pe-pb-2 {
  padding-bottom: 0.5rem !important;
}
.pe-pl-2 {
  padding-left: 0.5rem !important;
}

.pe-p-3 {
  padding: 1rem !important;
}
.pe-pt-3 {
  padding-top: 1rem !important;
}
.pe-pr-3 {
  padding-right: 1rem !important;
}
.pe-pb-3 {
  padding-bottom: 1rem !important;
}
.pe-pl-3 {
  padding-left: 1rem !important;
}

.pe-p-4 {
  padding: 1.5rem !important;
}
.pe-pt-4 {
  padding-top: 1.5rem !important;
}
.pe-pr-4 {
  padding-right: 1.5rem !important;
}
.pe-pb-4 {
  padding-bottom: 1.5rem !important;
}
.pe-pl-4 {
  padding-left: 1.5rem !important;
}

.pe-p-5 {
  padding: 3rem !important;
}
.pe-pt-5 {
  padding-top: 3rem !important;
}
.pe-pr-5 {
  padding-right: 3rem !important;
}
.pe-pb-5 {
  padding-bottom: 3rem !important;
}
.pe-pl-5 {
  padding-left: 3rem !important;
}

/* Colors */
.pe-text-primary {
  color: #007bff !important;
}
.pe-text-secondary {
  color: #6c757d !important;
}
.pe-text-success {
  color: #28a745 !important;
}
.pe-text-danger {
  color: #dc3545 !important;
}
.pe-text-warning {
  color: #ffc107 !important;
}
.pe-text-info {
  color: #17a2b8 !important;
}
.pe-text-light {
  color: #f8f9fa !important;
}
.pe-text-dark {
  color: #343a40 !important;
}
.pe-text-white {
  color: #fff !important;
}
.pe-text-muted {
  color: #6c757d !important;
}

.pe-bg-primary {
  background-color: #007bff !important;
}
.pe-bg-secondary {
  background-color: #6c757d !important;
}
.pe-bg-success {
  background-color: #28a745 !important;
}
.pe-bg-danger {
  background-color: #dc3545 !important;
}
.pe-bg-warning {
  background-color: #ffc107 !important;
}
.pe-bg-info {
  background-color: #17a2b8 !important;
}
.pe-bg-light {
  background-color: #f8f9fa !important;
}
.pe-bg-dark {
  background-color: #343a40 !important;
}
.pe-bg-white {
  background-color: #fff !important;
}
.pe-bg-transparent {
  background-color: transparent !important;
}

/* Display */
.pe-d-none {
  display: none !important;
}
.pe-d-inline {
  display: inline !important;
}
.pe-d-inline-block {
  display: inline-block !important;
}
.pe-d-block {
  display: block !important;
}
.pe-d-table {
  display: table !important;
}
.pe-d-table-row {
  display: table-row !important;
}
.pe-d-table-cell {
  display: table-cell !important;
}
.pe-d-flex {
  display: flex !important;
}
.pe-d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .pe-d-sm-none {
    display: none !important;
  }
  .pe-d-sm-inline {
    display: inline !important;
  }
  .pe-d-sm-inline-block {
    display: inline-block !important;
  }
  .pe-d-sm-block {
    display: block !important;
  }
  .pe-d-sm-table {
    display: table !important;
  }
  .pe-d-sm-table-row {
    display: table-row !important;
  }
  .pe-d-sm-table-cell {
    display: table-cell !important;
  }
  .pe-d-sm-flex {
    display: flex !important;
  }
  .pe-d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .pe-d-md-none {
    display: none !important;
  }
  .pe-d-md-inline {
    display: inline !important;
  }
  .pe-d-md-inline-block {
    display: inline-block !important;
  }
  .pe-d-md-block {
    display: block !important;
  }
  .pe-d-md-table {
    display: table !important;
  }
  .pe-d-md-table-row {
    display: table-row !important;
  }
  .pe-d-md-table-cell {
    display: table-cell !important;
  }
  .pe-d-md-flex {
    display: flex !important;
  }
  .pe-d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .pe-d-lg-none {
    display: none !important;
  }
  .pe-d-lg-inline {
    display: inline !important;
  }
  .pe-d-lg-inline-block {
    display: inline-block !important;
  }
  .pe-d-lg-block {
    display: block !important;
  }
  .pe-d-lg-table {
    display: table !important;
  }
  .pe-d-lg-table-row {
    display: table-row !important;
  }
  .pe-d-lg-table-cell {
    display: table-cell !important;
  }
  .pe-d-lg-flex {
    display: flex !important;
  }
  .pe-d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .pe-d-xl-none {
    display: none !important;
  }
  .pe-d-xl-inline {
    display: inline !important;
  }
  .pe-d-xl-inline-block {
    display: inline-block !important;
  }
  .pe-d-xl-block {
    display: block !important;
  }
  .pe-d-xl-table {
    display: table !important;
  }
  .pe-d-xl-table-row {
    display: table-row !important;
  }
  .pe-d-xl-table-cell {
    display: table-cell !important;
  }
  .pe-d-xl-flex {
    display: flex !important;
  }
  .pe-d-xl-inline-flex {
    display: inline-flex !important;
  }
}

/* Flex */
.pe-flex-row {
  flex-direction: row !important;
}
.pe-flex-column {
  flex-direction: column !important;
}
.pe-flex-wrap {
  flex-wrap: wrap !important;
}
.pe-flex-nowrap {
  flex-wrap: nowrap !important;
}
.pe-justify-content-start {
  justify-content: flex-start !important;
}
.pe-justify-content-end {
  justify-content: flex-end !important;
}
.pe-justify-content-center {
  justify-content: center !important;
}
.pe-justify-content-between {
  justify-content: space-between !important;
}
.pe-justify-content-around {
  justify-content: space-around !important;
}
.pe-align-items-start {
  align-items: flex-start !important;
}
.pe-align-items-end {
  align-items: flex-end !important;
}
.pe-align-items-center {
  align-items: center !important;
}
.pe-align-items-baseline {
  align-items: baseline !important;
}
.pe-align-items-stretch {
  align-items: stretch !important;
}

/* Order */
.pe-order-first {
  order: -1 !important;
}
.pe-order-0 {
  order: 0 !important;
}
.pe-order-1 {
  order: 1 !important;
}
.pe-order-2 {
  order: 2 !important;
}
.pe-order-3 {
  order: 3 !important;
}
.pe-order-4 {
  order: 4 !important;
}
.pe-order-5 {
  order: 5 !important;
}
.pe-order-last {
  order: 6 !important;
}

@media (min-width: 576px) {
  .pe-order-sm-first {
    order: -1 !important;
  }
  .pe-order-sm-0 {
    order: 0 !important;
  }
  .pe-order-sm-1 {
    order: 1 !important;
  }
  .pe-order-sm-2 {
    order: 2 !important;
  }
  .pe-order-sm-3 {
    order: 3 !important;
  }
  .pe-order-sm-4 {
    order: 4 !important;
  }
  .pe-order-sm-5 {
    order: 5 !important;
  }
  .pe-order-sm-last {
    order: 6 !important;
  }
}

@media (min-width: 768px) {
  .pe-order-md-first {
    order: -1 !important;
  }
  .pe-order-md-0 {
    order: 0 !important;
  }
  .pe-order-md-1 {
    order: 1 !important;
  }
  .pe-order-md-2 {
    order: 2 !important;
  }
  .pe-order-md-3 {
    order: 3 !important;
  }
  .pe-order-md-4 {
    order: 4 !important;
  }
  .pe-order-md-5 {
    order: 5 !important;
  }
  .pe-order-md-last {
    order: 6 !important;
  }
}

@media (min-width: 992px) {
  .pe-order-lg-first {
    order: -1 !important;
  }
  .pe-order-lg-0 {
    order: 0 !important;
  }
  .pe-order-lg-1 {
    order: 1 !important;
  }
  .pe-order-lg-2 {
    order: 2 !important;
  }
  .pe-order-lg-3 {
    order: 3 !important;
  }
  .pe-order-lg-4 {
    order: 4 !important;
  }
  .pe-order-lg-5 {
    order: 5 !important;
  }
  .pe-order-lg-last {
    order: 6 !important;
  }
}

@media (min-width: 1200px) {
  .pe-order-xl-first {
    order: -1 !important;
  }
  .pe-order-xl-0 {
    order: 0 !important;
  }
  .pe-order-xl-1 {
    order: 1 !important;
  }
  .pe-order-xl-2 {
    order: 2 !important;
  }
  .pe-order-xl-3 {
    order: 3 !important;
  }
  .pe-order-xl-4 {
    order: 4 !important;
  }
  .pe-order-xl-5 {
    order: 5 !important;
  }
  .pe-order-xl-last {
    order: 6 !important;
  }
}

/* Borders */
.pe-border {
  border: 1px solid #dee2e6 !important;
}
.pe-border-top {
  border-top: 1px solid #dee2e6 !important;
}
.pe-border-right {
  border-right: 1px solid #dee2e6 !important;
}
.pe-border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.pe-border-left {
  border-left: 1px solid #dee2e6 !important;
}
.pe-border-0 {
  border: 0 !important;
}
.pe-border-top-0 {
  border-top: 0 !important;
}
.pe-border-right-0 {
  border-right: 0 !important;
}
.pe-border-bottom-0 {
  border-bottom: 0 !important;
}
.pe-border-left-0 {
  border-left: 0 !important;
}
.pe-border-primary {
  border-color: #007bff !important;
}
.pe-border-secondary {
  border-color: #6c757d !important;
}
.pe-border-success {
  border-color: #28a745 !important;
}
.pe-border-danger {
  border-color: #dc3545 !important;
}
.pe-border-warning {
  border-color: #ffc107 !important;
}
.pe-border-info {
  border-color: #17a2b8 !important;
}
.pe-border-light {
  border-color: #f8f9fa !important;
}
.pe-border-dark {
  border-color: #343a40 !important;
}
.pe-border-white {
  border-color: #fff !important;
}
.pe-rounded {
  border-radius: 0.25rem !important;
}
.pe-rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.pe-rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.pe-rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.pe-rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.pe-rounded-circle {
  border-radius: 50% !important;
}
.pe-rounded-0 {
  border-radius: 0 !important;
}

/* Tables */
.pe-table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  border-collapse: collapse;
}

.pe-table th,
.pe-table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.pe-table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.pe-table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.pe-table-sm th,
.pe-table-sm td {
  padding: 0.3rem;
}

.pe-table-bordered {
  border: 1px solid #dee2e6;
}

.pe-table-bordered th,
.pe-table-bordered td {
  border: 1px solid #dee2e6;
}

.pe-table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.pe-table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

