/* **********************************
GLOBAL CSS VARIBLES/PROPERTIES
********************************** */

:root {
  --colLeft1: #fdc9b3; /* apricot */
  --colLeft2: #fed7c5;
  --colLeft3: #fee4d7;
  --colMid: #fdf2e9;
  --colMidLight1: #fef9f4;
  --colRight3: #b7cbc5;
  --colRight2: #70a5a2;
  --colRight1: #008080; /* teal_ */
  --fontwtBase: 300;
  --fontwtBold: 500;
  --fontwtExtraBold: 700;
  --fontclrBase: #333;
  --fontclrGray: #808080;
  --fontclrHeadline: #013220; /* dark_green*/
  --fontclrGreen: #008080; /* teal_ */
  --fontfamDefault: "Rubik", sans-serif, system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

/* other colors:
#edddee
*/

/* Ref: 
https://stackoverflow.com/a/45581552 
https://gka.github.io/palettes/#/7|d|fdc9b3,fdf2e9|fdf2e9,008080|1|1
*/


html {
  overflow-y: scroll;  /* Ref: https://stackoverflow.com/q/31716087/19095173  */
}

body {
  font-family: var(--fontfamDefault);
  line-height: 1;
  font-weight: var(--fontwtBase);
  color: var(--fontclrBase);
}

.container {
  max-width: 992px;
}

.breadcrumb {
  font-size: 0.9rem;
}

.breadcrumb-item a {
  /* color: var(--fontclrGreen); */
  color: #007373;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--fontclrGreen);
  
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
  color: var(--fontclrHeadline);
  border-bottom: 1px solid var(--fontclrHeadline);
}

.breadcrumb-item+.breadcrumb-item {
  padding-left: 0.3rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  padding-right: 0.3rem;
  content: ">";
}

/* **********************************
TOP NAVBAR & BS5 SIDEBAR
********************************** */

  /* TOP NAVBAR */
  .navbar-custom {
    font-family: var(--fontfamDefault) !important;
    padding-top: 7px;
    padding-bottom: 5px;
    background-color: var(--colMid);
  }

  .navbar-brand-custom {
    color: var(--fontclrBase) !important;
    font-weight: 500;
    font-size: 1.5rem;
  }

  .navbar-toggler-icon-custom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%2851, 51, 51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    /* https://stackoverflow.com/questions/42586729/how-can-i-change-the-bootstrap-4-navbar-button-icon-color */
  }

  /* FROM BS5 SIDEBAR EXAMPLE
  https://getbootstrap.com/docs/5.0/examples/sidebars/
  */

  .btn-toggle {
      display: inline-flex;
      align-items: center;
      padding: .25rem .5rem;
      font-weight: 600;
      font-size: 1.2rem; /* addition */
      color: rgba(0, 0, 0, .65);
      background-color: transparent;
      border: 0;
    }

    .btn-toggle:hover,
    .btn-toggle:focus {
      color: rgba(0, 0, 0, .85);
      background-color: var(--colMid);
    }

    .btn-toggle a {
    text-decoration: none;
    color: inherit;
    }

    .btn-toggle a:hover,
    .btn-toggle a:focus {
      text-decoration: none;
      color: inherit;
      }

    /* .btn-toggle a:hover,
    .btn-toggle a:focus {
      color: rgba(0, 0, 0, .85);
      background-color: var(--colMid);
    } */

    .btn-toggle::before {
      width: 1.25em;
      line-height: 0;
      content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
      transition: transform .35s ease;
      transform-origin: .5em 50%;
    }
    
    .btn-toggle[aria-expanded="true"] {
      color: rgba(0, 0, 0, .85);
    }
    .btn-toggle[aria-expanded="true"]::before {
      transform: rotate(90deg);
    }
    
    .btn-toggle-nav a {
      display: inline-flex;
      padding: .1875rem .5rem;
      margin-top: .125rem;
      margin-left: 1.25rem;
      text-decoration: none;
    }

    .btn-toggle-nav a:hover,
    .btn-toggle-nav a:focus {
      background-color: var(--colMid);
    }

  /* Adapted FROM BS5 SIDEBAR EXAMPLE for inner nav
  https://getbootstrap.com/docs/5.0/examples/sidebars/
  */
  .btn-toggle-inner {
    display: inline-flex;
    align-items: center;
    padding: .25rem .5rem;
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(0, 0, 0, .65);
    background-color: transparent;
    border: 0;
  }
  .btn-toggle-inner:hover,
  .btn-toggle-inner:focus {
    color: rgba(0, 0, 0, .85);
    background-color: var(--colMid);;
  }

  .btn-toggle-inner::before {
    width: 1.25em;
    line-height: 0;
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' transform='scale%280.85%29' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    transition: transform .35s ease;
    transform-origin: .5em 50%;
  }

  .btn-toggle-inner[aria-expanded="true"] {
    color: rgba(0, 0, 0, .85);
  }
  .btn-toggle-inner[aria-expanded="true"]::before {
    transform: rotate(90deg);
  }