/* ************************************************************************ CUSTOM STYLES (ALL APP) *********************************************************************** */

/* ************************************************** Glogal styles - set default styles ************************************************** */

/* Body - All */
* {
  font-family: dejavusans-condensed;
  margin: 0px;
  padding: 0px;
}
body {
  min-height: 100vh;
}

/* Headers */
header {
  font-family: dejavusans-condensed-bold;
}
header.header {
  margin-bottom: 100px;
}
.navbar-nav > .nav-item > ul > li > .dropdown-item {
  font-family: dejavusans-condensed;
  color: var(--p-color-primary);
}
.navbar-nav > .nav-item > ul > li > .dropdown-item:hover {
  background-color: var(--p-color-secondary-light-1);
}
.nav-item.dropdown > .dropdown-menu.dropdown-derecha {
  left: auto;
  right: 0;
}
.nav-item.dropdown > .dropdown-menu.dropdown-derecha > .dropdown-menu-titulo {
  width: 100%;
  white-space: nowrap;
  font-size: 0.95rem;
  color: var(--p-color-primary);
  padding: 0.25rem 1.5rem;
  padding-bottom: 0.25rem;
  margin: 0px;
  padding-bottom: 0px;
}
.nav-item.dropdown
  > .dropdown-menu.dropdown-derecha
  > .dropdown-menu-subtitulo {
  width: 100%;
  white-space: nowrap;
  font-size: 0.9rem;
  font-family: dejavusans;
  color: var(--p-color-primary);
  padding: 0.25rem 1.5rem;
  padding-bottom: 0.25rem;
  margin: 0px;
  padding-bottom: 0px;
}
.nav-item.dropdown
  > .dropdown-menu.dropdown-derecha
  > .dropdown-menu-descripcion {
  width: 100%;
  white-space: nowrap;
  font-size: 0.8rem;
  font-family: dejavusans;
  color: var(--p-color-primary);
  padding: 0.25rem 1.5rem;
  padding-bottom: 0.25rem;
  margin: 0px;
  padding-bottom: 0px;
  display: inline-block;
}

/* ****************************************************************************************************************************************** */

/* ************************************************************** Custom Colors ************************************************************** */

/* ************************************** Background Colors ************************************** */

/* Background - Secondary */
.p-bg-primary-light-1 {
  background-color: var(--p-color-primary-ligth-1);
}
.p-bg-primary {
  background-color: var(--p-color-primary);
}
.p-bg-primary-dark-1 {
  background-color: var(--p-color-primary-dark-1);
}

/* Background - Secondary */
.p-bg-secondary-light-1 {
  background-color: var(--p-color-secondary-light-1);
}
.p-bg-secondary {
  background-color: var(--p-color-secondary);
}
.p-bg-secondary-dark-1 {
  background-color: var(--p-color-secondary-dark-1);
}

/* Background - Auxiliar */
.p-bg-danger {
  background-color: var(--p-color-danger);
}
.p-bg-success {
  background-color: var(--p-color-success);
}
.p-bg-warning {
  background-color: var(--p-color-warning);
}
.p-bg-info {
  background-color: var(--p-color-info);
}

/* ********************************************************************************************** */

/* ************************************** Border Colors ************************************** */

/* Border - Secondary */
.p-border-primary-light-1 {
  border-color: var(--p-color-primary-ligth-1);
}
.p-border-primary {
  border-color: var(--p-color-primary);
}
.p-border-primary-dark-1 {
  border-color: var(--p-color-primary-dark-1);
}

/* Border - Secondary */
.p-border-secondary-light-1 {
  border-color: var(--p-color-secondary-light-1);
}
.p-border-secondary {
  border-color: var(--p-color-secondary);
}
.p-border-secondary-dark-1 {
  border-color: var(--p-color-secondary-dark-1);
}

/* Border - Auxiliar */
.p-border-danger {
  border-color: var(--p-color-danger);
}
.p-border-success {
  border-color: var(--p-color-success);
}
.p-border-warning {
  border-color: var(--p-color-warning);
}
.p-border-info {
  border-color: var(--p-color-info);
}

/* ********************************************************************************************** */

/* **************************************** Font Colors **************************************** */

/* Font Colors - Primary */
.p-text-primary-light-1 {
  color: var(--p-color-primary-ligth-1);
}
.p-text-primary {
  color: var(--p-color-primary);
}
.p-text-primary--dark-1 {
  color: var(--p-color-primary-dark-1);
}

/* Font Colors - Secondary */
.p-text-secondary-light-1 {
  color: var(--p-color-secondary-light-1);
}
.p-text-secondary {
  color: var(--p-color-secondary) !important;
}
.p-text-secondary-dar-1 {
  color: var(--p-color-secondary-dark-1);
}

/* Font Colors - Auxiliar */
.p-text-danger {
  color: var(--p-color-danger);
}
.p-text-success {
  color: var(--p-color-success);
}
.p-text-warning {
  color: var(--p-color-warning);
}
.p-text-info {
  color: var(--p-color-info);
}

/* ********************************************************************************************** */

/* ******************************************************************************************************************************************* */

/* ************************************************************** Custom styles ************************************************************** */

/* ******************************************* Cursors ******************************************* */

.p-cursor-pointer {
  cursor: pointer;
}

/* *********************************************************************************************** */

/* ******************************************** Boxs ******************************************** */

/* Border radius */
.p-border-radius-0 {
  border-radius: 0px;
}
.p-border-radius-5 {
  border-radius: 5px;
}
.p-border-radius-10 {
  border-radius: 10px;
}
.p-border-radius-15 {
  border-radius: 15px;
}
.p-border-radius-20 {
  border-radius: 20px;
}
.p-border-radius-30 {
  border-radius: 30px;
}
.p-border-radius-40 {
  border-radius: 40px;
}
.p-border-radius-50 {
  border-radius: 50px;
}

/* Margins */
.p-margin-0 {
  margin: 0px !important;
}
.p-margin-top-0 {
  margin-top: 0px !important;
}
.p-margin-bottom-0 {
  margin-bottom: 0px !important;
}
.p-margin-left-0 {
  margin-left: 0px !important;
}
.p-margin-right-0 {
  margin-right: 0px !important;
}
.p-margin-bottom-20 {
  margin-bottom: 20px !important;
}
.p-margin-top-20 {
  margin-top: 20px !important;
}

/* Paddings */
.p-padding-0 {
  padding: 0px 0px 0px 0px !important;
}
.p-padding-top-0 {
  padding-top: 0px !important;
}
.p-padding-bottom-0 {
  padding-bottom: 0px !important;
}
.p-padding-left-0 {
  padding-left: 0px !important;
}
.p-padding-right-0 {
  padding-right: 0px !important;
}

/* *********************************************************************************************** */

/* ******************************************** Texts ******************************************** */

/* Títulos y párrafos - h. , p */
.p-h1 {
  font-size: 48px;
}
.p-h2 {
  font-size: 40px;
}
.p-h3 {
  font-size: 32px;
}
.p-h4 {
  font-size: 24px;
}
.p-h5 {
  font-size: 20px;
}
.p-h5 {
  font-size: 14px;
}
.p-p {
  font-size: 14px;
}

/* Texts - Font Sizes */
.p-font-size-5 {
  font-size: 5px !important;
}
.p-font-size-6 {
  font-size: 6px !important;
}
.p-font-size-7 {
  font-size: 7px !important;
}
.p-font-size-8 {
  font-size: 8px !important;
}
.p-font-size-9 {
  font-size: 9px !important;
}
.p-font-size-10 {
  font-size: 10px !important;
}
.p-font-size-11 {
  font-size: 11px !important;
}
.p-font-size-12 {
  font-size: 12px !important;
}
.p-font-size-13 {
  font-size: 13px !important;
}
.p-font-size-14 {
  font-size: 14px !important;
}
.p-font-size-15 {
  font-size: 15px !important;
}
.p-font-size-16 {
  font-size: 16px !important;
}
.p-font-size-17 {
  font-size: 17px !important;
}
.p-font-size-18 {
  font-size: 18px !important;
}
.p-font-size-19 {
  font-size: 19px !important;
}
.p-font-size-20 {
  font-size: 20px !important;
}
.p-font-size-25 {
  font-size: 25px !important;
}
.p-font-size-30 {
  font-size: 30px !important;
}
.p-font-size-35 {
  font-size: 35px !important;
}
.p-font-size-40 {
  font-size: 40px !important;
}
.p-font-size-45 {
  font-size: 45px !important;
}
.p-font-size-50 {
  font-size: 50px !important;
}

/* Texts - line-height */
.p-line-height-10 {
  line-height: 10px;
}
.p-line-height-20 {
  line-height: 20px;
}
.p-line-height-30 {
  line-height: 30px;
}
.p-line-height-40 {
  line-height: 40px;
}
.p-line-height-50 {
  line-height: 50px;
}

/* Texts - case */
.p-text-upper {
  text-transform: uppercase;
}
.p-text-lower {
  text-transform: lowercase;
}

/* *********************************************************************************************** */

/* ***************************************************************************************************************************************** */

/* *************************************************************** Components *************************************************************** */

/* ******************************************* Buttons ******************************************* */

/* Buuttons - standar */
.p-btn-xs {
  padding: 2px 4px;
  margin: 2px 0px !important;
  font-size: 11px;
}
.p-btn-flat-transparent {
  background-color: transparent; /* Blue background */
  border: none; /* Remove borders */
  color: white; /* White text */
  padding: 0px 0px; /* Some padding */
  cursor: pointer; /* Mouse pointer on hover */
}

/* Links */
.p-link-active {
  color: #f9941d !important;
}

/* *********************************************************************************************** */

/* ******************************************* Images ******************************************** */

/* Images */
.p-image-responsive-cropped {
  object-fit: cover;
  width: 100%;
  min-height: 600px;
  height: 600px;
}

/* *********************************************************************************************** */

/* ******************************************* Alerts ******************************************* */

.p-alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 0.25rem;
}

.p-alert-danger {
  color: var(--p-color-danger-text);
  background-color: var(--p-color-danger);
  border-color: var(--p-color-danger-dark-1);
}
.p-alert-success {
  color: var(--p-color-success-text);
  background-color: var(--p-color-success);
  border-color: var(--p-color-success-dark-1);
}
.p-alert-warning {
  color: var(--p-color-warning-text);
  background-color: var(--p-color-warning);
  border-color: var(--p-color-warning-dark-1);
}
.p-alert-info {
  color: var(--p-color-info-text);
  background-color: var(--p-color-info);
  border-color: var(--p-color-info-dark-1);
}

.p-alert-heading {
  color: inherit;
}

.p-alert-success .p-alert-link {
  color: var(--p-color-success-dark-7);
}
.p-alert-warning .p-alert-link {
  color: var(--p-color-warning-dark-7);
}
.p-alert-danger .p-alert-link {
  color: var(--p-color-danger-dark-7);
}

[class^="p-alert"] > hr {
  background-color: currentColor;
  border: 10;
  opacity: 0.25;
}

/* Alert - XS */
.p-alert.p-alert-xs {
  display: inline-block;
  max-width: 20rem;
  margin-bottom: 0rem;
  padding: 0.1rem 0.1rem;
  font-size: 0.7rem;
}
.p-alert.p-alert-xs > .p-alert-heading {
  margin-bottom: 0.1rem;
  font-size: 0.8rem;
}
.p-alert-xs > hr {
  margin: 0rem 0rem 0rem 0rem;
  margin: 0.1rem 0;
}
.p-alert-xs > .p-alert-body {
  margin-bottom: 0rem;
  display: inline-block;
  font-size: 0.7rem;
}

/* Alert - SM */
.p-alert-sm {
  padding: 0.4rem 0.5rem;
  margin-bottom: 0rem;
  display: inline-block;
}
.p-alert-sm > .p-alert-heading {
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}
.p-alert-sm > hr {
  margin: 0.1rem;
}
.p-alert-sm > .p-alert-body {
  margin-bottom: 0rem;
  font-size: 0.8rem;
}

/* Alert - MD */
.p-alert-md {
  padding: 0.6rem 0.7rem;
  margin-bottom: 0rem;
  display: inline-block;
}
.p-alert-md > .p-alert-heading {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.p-alert-md > hr {
  margin: 0.2rem;
}
.p-alert-md > .p-alert-body {
  margin-bottom: 0rem;
  font-size: 1rem;
}

/* Alert - LG */
.p-alert-lg {
  padding: 0.8rem 0.9rem;
  margin-bottom: 0rem;
  display: inline-block;
}
.p-alert-lg > .p-alert-heading {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.p-alert-lg > hr {
  margin: 0.3rem;
}
.p-alert-lg > .p-alert-body {
  margin-bottom: 0rem;
  font-size: 1.3rem;
}

/* Alert - XL */
.p-alert-xl {
  padding: 1rem 1.1rem;
  margin-bottom: 0rem;
  display: inline-block;
}
.p-alert-xl > .p-alert-heading {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}
.p-alert-xl > hr {
  margin: 0.5rem;
}
.p-alert-xl > .p-alert-body {
  margin-bottom: 0rem;
  font-size: 1.6rem;
}

/* *********************************************************************************************** */

/* ******************************************* Loaders ******************************************* */

/* Loader - Spinner Border (sm, md, lg y xl) */
.spinner-border.p-spinner-border-sm {
  width: 4rem;
  height: 4rem;
}
.spinner-border.p-spinner-border-md {
  width: 6rem;
  height: 6rem;
}
.spinner-border.p-spinner-border-lg {
  width: 10rem;
  height: 10rem;
}
.spinner-border.p-spinner-border-xl {
  width: 20rem;
  height: 20rem;
}

/* Loader - Spinner Border (1-9) */
.spinner-border.p-spinner-border-1 {
  width: 1rem;
  height: 1rem;
  border-width: 0.2rem;
}
.spinner-border.p-spinner-border-2 {
  width: 2rem;
  height: 2rem;
  border-width: 0.35rem;
}
.spinner-border.p-spinner-border-3 {
  width: 3rem;
  height: 3rem;
  border-width: 0.4rem;
}
.spinner-border.p-spinner-border-4 {
  width: 4rem;
  height: 4rem;
  border-width: 0.55rem;
}
.spinner-border.p-spinner-border-5 {
  width: 6rem;
  height: 6rem;
  border-width: 0.65rem;
}
.spinner-border.p-spinner-border-6 {
  width: 8rem;
  height: 8rem;
  border-width: 0.75rem;
}
.spinner-border.p-spinner-border-7 {
  width: 10rem;
  height: 10rem;
  border-width: 0.85rem;
}
.spinner-border.p-spinner-border-8 {
  width: 15rem;
  height: 15rem;
  border-width: 0.95rem;
}
.spinner-border.p-spinner-border-9 {
  width: 20rem;
  height: 20rem;
  border-width: 1.2rem;
}

/* Loader - Spinner Grow (sm, md, lg y xl) */
.spinner-grow.p-spinner-grow-sm {
  width: 4rem;
  height: 4rem;
}
.spinner-grow.p-spinner-grow-md {
  width: 6rem;
  height: 6rem;
}
.spinner-grow.p-spinner-grow-lg {
  width: 10rem;
  height: 10rem;
}
.spinner-grow.p-spinner-grow-xl {
  width: 20rem;
  height: 20rem;
}

/* Loader - Spinner Grow (1-9) */
.spinner-grow.p-spinner-grow-1 {
  width: 1rem;
  height: 1rem;
}
.spinner-grow.p-spinner-grow-2 {
  width: 2rem;
  height: 2rem;
}
.spinner-grow.p-spinner-grow-3 {
  width: 3rem;
  height: 3rem;
}
.spinner-grow.p-spinner-grow-4 {
  width: 4rem;
  height: 4rem;
}
.spinner-grow.p-spinner-grow-5 {
  width: 6rem;
  height: 6rem;
}
.spinner-grow.p-spinner-grow-6 {
  width: 8rem;
  height: 8rem;
}
.spinner-grow.p-spinner-grow-7 {
  width: 10rem;
  height: 10rem;
}
.spinner-grow.p-spinner-grow-8 {
  width: 15rem;
  height: 15rem;
}
.spinner-grow.p-spinner-grow-9 {
  width: 20rem;
  height: 20rem;
}

/* *********************************************************************************************** */

/* ***************************************************************************************************************************************** */

/* ******************************************************************************************************************************************************************************** */
