/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");
:root {
  /* PediClub Branding Colors - Argentina Theme */
  --bs-primary: #43A1D5;
  /* Celeste Protagonista */
  --bs-primary-dark: #2D9CDB;
  --bs-primary-rgb: 67, 161, 213;
  --bs-font-sans-serif: 'Poppins', sans-serif;
  --header-height: 3.5rem;
  --nav-width: 68px;
  /* Colors */
  --first-color: #43A1D5;
  /* Azul AFA - Text & Dark Elements */
  --first-color-light: #F7F6FB;
  --white-color: #FFFFFF;
  --body-bg-color: #F4F7F6;
  /* Blanco Hielo - Background */
  --bs-link-hover: #43A1D5;
  /* Table */
  --bs-table-striped-bg: #E3F8FF;
  --bs-table-active-bg: #43A1D5;
  --bs-table-hover-bg: #BBEBFA;
  /* Alert - List group */
  --bs-alert-primary: #43A1D5;
  --bs-alert-primary-link: #2D9CDB;
  --bs-btn-bg-hover: #2D9CDB;
  --bs-btn-primary-border: #43A1D5;
  --normal-font-size: 0.95rem;
  --z-fixed: 100;
}
*,
::before,
::after {
  box-sizing: border-box
}
body {
  font-family: var(--bs-font-sans-serif);
  position: relative;
  margin: var(--header-height) 0 0 0;
  padding: 0 1rem;
  font-size: var(--normal-font-size);
  transition: .5s;
  background-color: var(--body-bg-color);
  /* Blanco Hielo */
  color: var(--first-color);
  /* Azul AFA */
}
a {
  text-decoration: none
}
.header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background-color: var(--white-color);
  z-index: var(--z-fixed);
  transition: .5s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.header_toggle {
  color: var(--first-color);
  font-size: 1.5rem;
  cursor: pointer
}
.header_img {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden
}
.header_img img {
  width: 40px
}
/* Sidebar Navigation */
.l-navbar {
  position: fixed;
  top: 0;
  left: -100%;
  /* Off-canvas completely (Mobile Default) */
  width: var(--nav-width);
  /* Default collapsed width */
  height: 100vh;
  background-color: #43A1D5 !important;
  /* Forces Celeste */
  background-color: var(--bs-primary) !important;
  padding: .5rem 1rem 0 0;
  transition: .5s;
  z-index: 2005 !important;
  /* Force Top above Overlay */
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  overflow: visible;
  /* Allow button to protrude */
}
/* Overlay Backdrop */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black */
  z-index: 2000 !important;
  /* Just below menu */
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}
.nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  /* Keep content scrollable restricted to nav */
  position: relative;
}
/* Nav Toggle Icon (Internal) */
.nav_toggle_icon {
  position: absolute;
  top: 1.2rem;
  right: -12px;
  /* Protrude slightly */
  background: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  /* High z-index */
  transition: .3s;
}
/* Rotate icon when active */
.l-navbar.show_menu .nav_toggle_icon {
  transform: rotate(180deg);
}
.nav_logo,
.nav_link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 1rem;
  padding: .5rem 0 .5rem 1.5rem;
}
.nav_logo {
  margin-bottom: 2rem;
  padding-left: 1rem !important;
}
.nav_logo-icon {
  width: 40px;
}
.nav_logo-name {
  color: var(--white-color);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.nav_link {
  position: relative;
  color: #E3F8FF;
  /* Light blue/white for non-active */
  transition: .3s
}
.nav_link:hover {
  color: #FFFFFF;
  /* Pure white on hover */
}
.nav_icon {
  font-size: 1.25rem
}
.show {
  left: 0
}
.body-pd {
  padding-left: calc(var(--nav-width) + 1rem);
}
.active {
  color: var(--white-color)
}
.active::before {
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  height: 32px;
  background-color: var(--white-color)
}
.height-100 {
  height: 100vh
}
@media screen and (min-width: 768px) {
  body {
    margin: calc(var(--header-height) + 1rem) 0 0 0;
    padding-left: calc(var(--nav-width) + 2rem)
  }
  .header {
    height: calc(var(--header-height) + 1rem);
    padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
  }
  .header_img {
    width: 40px;
    height: 40px
  }
  .header_img img {
    width: 45px
  }
  .l-navbar {
    left: 0;
    padding: 1rem .4rem 0 0
  }
  .show_menu {
    width: calc(var(--nav-width) + 200px)
  }
  .body-pd {
    padding-left: calc(var(--nav-width) + 210px)
  }
}
@media screen and (max-width: 768px) {
  body {
    margin: calc(var(--header-height) + 1rem) 0 0 0;
    padding-left: calc(var(--nav-width) -50px)
  }
  .header_img {
    width: 40px;
    height: 40px
  }
  .header_img img {
    width: 45px
  }
  /* Force Mobile Visibility Rules - Maximum Specificity */
  #nav-bar.l-navbar.show_menu {
    left: 0 !important;
    /* Force Slide in */
    width: 85% !important;
    max-width: 300px !important;
    display: block !important;
  }
  /* On mobile, even collapsed state might need defining if we want it hidden */
  .l-navbar {
    width: 85%;
    max-width: 300px;
    left: -100% !important;
    /* Force Hidden Default */
    visibility: visible;
    /* Ensure it's not simply hidden */
  }
  .show {
    width: calc(var(--nav-width) + 200px)
  }
  .body-pd {
    padding-left: calc(var(--nav-width) + 210px)
  }
  .nav-item {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.font-size-21 {
  font-size: 1.16em;
}
.font-size-18 {
  font-size: 1em;
}
.form-check-input:checked {
  background-color: var(--bs-alert-primary);
  border-color: var(--white-color);
}
.loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.loader {
  left: 50%;
  margin-left: -4em;
  font-size: 10px;
  border: .8em solid rgba(218, 219, 223, 1);
  border-left: .8em solid rgba(58, 166, 165, 1);
  animation: spin 1.1s infinite linear;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 8em;
  height: 8em;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -4.05em;
}
@keyframes spin {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.text-verde {
  color: #afd528 !important;
}
/* HAMBURGER MENU STYLES */
.hamburger {
  padding: 10px 10px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--first-color);
}
.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: var(--first-color);
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 8px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 16px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}