/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* FONTS ICONS */

@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');


.checkbox-div {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid #ccc;
  cursor: pointer;
  user-select: none;
  margin: 5px;
  text-align: center;
  font-size: 14px;
}

.checkbox-div.checked {
  background-color: #4CAF50;
  color: #fff;
  border-color: transparent;
}

#overlay {
  position: fixed; /* Sit on top of the page content */
  display: block; 
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height */
  top: 0; 
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black with a little transparency */
  z-index: 2; /* Specify a stack order in case you're worried about other elements */
  cursor: not-allowed; /* Change cursor to indicate not clickable */
}
#overlay.hidden {
  display: none;
}
#overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  /* Add any additional styling for content, like text or loading spinner */
}
/* Optional: Add a loading spinner or message */
#overlay-content::after {
  content: "Processing...";
  color: white;
  font-size: 2em;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

/*

*/

/* Reset Elementor Style */
body.page-id-5131 .elementor-column-gap-default>.elementor-column>.elementor-element-populated,
body.page-id-5136 .elementor-column-gap-default>.elementor-column>.elementor-element-populated,
body.page-id-5137 .elementor-column-gap-default>.elementor-column>.elementor-element-populated
{ padding: 0 !important;}

body.page-id-5131 .elementor-section.elementor-section-boxed > .elementor-container,
body.page-id-5136 .elementor-section.elementor-section-boxed > .elementor-container,
body.page-id-5137 .elementor-section.elementor-section-boxed > .elementor-container
{max-width:100% !important;} 

.training-header {
    width:auto!important;
}

.loginPageHeading1, .loginPageHeading2 {
    text-transform: uppercase;
    color: #57A145;
}
.loginPageHeading1 {
    font-size:25px;
    font-weight: 400px;
}
.loginPageHeading2 {
    font-size:50px;
    font-weight: 600;
    line-height: 48px;
}
#custom_loginform {
    margin-top:20px;
}
#custom_loginform label {
    display: block;
    line-height: 10px;
    text-transform: uppercase;
    font-size: 14px;
    color: #505050;
}
.login-submit input[type="submit"] {
    padding:5px 40px;
    font-family:Karla !important;
    font-size:14px !important;
    font-weight:400 !important;
    cursor: pointer;
    width:250px;
    text-align: center;
}
.login-reset, .forgot-reset {
    background-color: transparent;
    letter-spacing: 0.9px;
    color: #57A145;
    border:1px solid #57A145;
    border-radius: 2px 2px 2px 2px;
    
    display: block;
    text-transform: uppercase;
    padding:2px 20px;
    font-family:Karla !important;
    font-size:14px !important;
    font-weight:400 !important;
    cursor: pointer;
    width:250px;
    text-align: center;
}
.login-reset {
    margin-top:50px;
}



/* 3.31.2025 - No longer needed
.footer-width-fixer {display:none;} 
*/

/* Stylings */
.align--right { text-align: right; }

/* Flexbox */
.container { position: relative; max-width: 1440px; /*margin: 0 auto;*/ }
.flex-container { display: flex; margin: 0 auto; width: 100%; flex-wrap: wrap; } 

.col-20 { width: 20%;} 
.col-25 { width: 25%;}
.col-40 { width: 40%;}
.col-50 { width: 50%;}
.col-60 { width: 60%;}
.col-75 { width: 75%;}
.col-80 { width: 80%;}
    
/*
 .hcb_topbanner { background-color: #4E4E4E; padding: .5em 0; }
 .hcb_topbanner div { max-width: 1140px; margin: 0 auto; color: #ffffff96; }
*/

/* Base alert bar styles */
.alert-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
    text-align: center;
    padding: 15px 20px 10px 20px;
    font-size: 16px;
    font-weight: bold;
    z-index: 9999;
    display: none; /* Initially hidden */
}

/* Error (red) */
.alert-error {
    background-color: #ff4d4d;
}

/* Success (green) */
.alert-success {
    background-color: #28a745;
}

/* Close button */ 
a.arrow-upOFF {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.arrow-up:hover {
    color: #ccc;
}

/* Styling for the arrow */
.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #721c24;
    margin: 0 auto;
    color: white;

    cursor: pointer;
    margin-top:10px;
}

.circle-x {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #000; /* Circle background color */
    border-radius: 50%; /* Makes the div circular */
    position: relative;
    text-decoration: none;
  }
  .circle-x::before, .circle-x::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 2px;
    background-color: #fff; /* X color */
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .circle-x::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }


.hcb-topbanner { background-color: #242424; padding: .5em 0; }
.hcb-topbanner > div { max-width: 1440px; margin: 0 auto; color: #ffffff96; }


.hcb-header-section { background-color: #1D3252; padding: .8em 0; }
.hcb-impersonate-section { 
  background-color: rgba(236, 230, 230, 0.938);
  color: #0c5460;
  padding: .5em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}
.hcb-impersonate-section a.exit{
    background-color: transparent;
    color: #0c5460;
    border: 1px solid #0c5460;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    text-transform: capitalize;
}
.hcb-impersonate-section a.exit:hover {
    background-color: #0c5460;
    color: white;
}


.hcb-subheader-section { background-color: #EDEDED; padding: .4em 0; margin-bottom:30px; } 

.headerActiveSection { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* If you prefer, use height: 100vh; for full viewport height */
    height: 80px; 
    font-size: 1.1em;
    
    flex-grow: 1;
    width:auto;
}

#navTitle, #activeSection {text-transform: uppercase; font-weight: 600; }
#navTitle {color:#9b9a9a; }
#activeSection { color:#e9e9e9}

    .headerProfileSection { 
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        /* If you prefer, use height: 100vh; for full viewport height */
        height: 80px; 
        font-size: 1.1em;
    }

.headerProfileMainWrapper { 
    width: auto; /* Allow it to grow dynamically */
    flex-grow: 1; /* Fills available space */
    display: flex;
    justify-content: flex-end; /* Pushes everything inside to the right */    
}

.headerProfileWrapper { 
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 33%;
    gap: 30px; /* Adds spacing between ADMINISTRATOR and Justin Horn */
}

.admin-text {
    white-space: nowrap; /* Ensures ADMINISTRATOR stays in one line */
    margin-right: 10px;
}

.user-dropdown {
    flex-shrink: 0; 

}




 /* nav bar */
 .topnav, .subnav {
  overflow: hidden;
  /*background-color: #fff;*/
  text-align: right;
}


.topnav a {
  display: inline-flex;
  color: #D7D7D7;
  text-align: center;
  padding: .5em 1em;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
}

.topnav a.active, .dropdown .dropbtn.active {
  /*background-color: #57a145;*/
  border:1px solid #fff;
  color: white;
}

.topnav .icon {
  display: none;
}

.subnav a, .subnav button {
  display: inline-flex;
  background-color: #5E5E5E;
  color: #FFF;
  text-align: center;
  padding: .5em 1em;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
}

.subnav a.active {
  /*border:1px solid #FFF;*/
  background-color: #57A145;
  color: white;
}

.subnav a:hover {
  background-color: #3B771B;
  /*border:1px solid #3B771B;*/
    
  color: white;
}


.dropdown {
  overflow: hidden;
  display: inline-flex;
}

.dropdown .dropbtn {
  border: none;
  outline: none;
  color: #0D0D0D;
  padding: .5em 1em;
  background-color: #CCC;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  cursor:pointer;
}

.dropdown-content {
  /*display: none;*/
  position: absolute;
  background-color: #ababab;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  top: 60px;
  right:0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px); /* Start slightly above */
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}


.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
  border-bottom: 1px solid #ffffff38;
  text-transform: uppercase;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #ffffff1f; 
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #CCC;
  color: black;


}

.dropdown:hover .dropdown-content {
  /*display: block;*/
  
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Moves to normal position smoothly */    
}


@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn, .topnav a.active {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}






 .title-box {
   background: black;
   color: #FFF;
   width: 101%;
   padding: 1px;
   margin-bottom: 30px;
   margin-left: -10px;
   text-align: center;
}
.title-box h1 {font-size: 1.5em;}


.column1 {
  width: 260px;
  padding-left: 40px;
}
.column2 {
  width: 160px;
}
.column3 {
  width: 245px;
}
.column4 {
  width: 110px;
  text-align: right;
}
.column5 {
  width: 170px;
  text-align: right;
}
.column6 {
  width: 222px;
  text-align: right;
  padding-right: 62px;
}

@media(max-width:576px) { 
  .container-table100 {
  padding-left: 15px;
  padding-right: 15px;
}
}

/* FORM STYLINGS */
.form_container {
  padding: 0 0 1em;  
  /*margin: 0 auto 5em;*/
  position: relative;
}
 
.form_container input, .form_container textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form_wrapper {
  width: 100%;
  display: inline-flex;
  /*padding: 0 2em .5em;*/
  
}
.form_title, .dashboard_title {
  width: 100%;
  background: #1D3252;
  color: #fff;
  text-align: center;

}
.form_subtitle {
  width: 100%;
  padding: 2em 1.5em .5em;
  border-bottom: 1px solid #CCC;
}
.form_container :where(h3, h4), .dashboard_title h3  { 
  padding: .5em; 
  margin: 0; 
}

.form_label, .form_input {
  width: 100%;
  padding: .5em 0em;
  display: inline-flex;
}
.form_label { 
  text-transform: uppercase; 
  letter-spacing: .2px; 
  padding-bottom: 0;
  padding-right: 1em;
}
.form_input { 
  font-size: 1rem;
}

.form_input :where(select, input, textarea) {
  width: 95%;
  border: none;
  border-bottom: 2px solid #f4b900;
  font-size: 1rem;
  /*background-color: #f4f4f8;*/
  padding: 8px;
}

.form_input button{
  text-transform: uppercase;
  width: 48%;
  text-align: center;
  min-height: 40px;
  font-weight: 700;
  letter-spacing: .9px;
}

.form_col-2 {
  width: 50%;
}
.form_col-3 {
  width: 33.33%;
}


/* END OF FORM STYLINGS */


/* DASHBOARD STYLINGS */

.admin {
  --spacing: 1rem;
  display: flex;
  display: grid;
}

.admin__main {
  flex: 0;
  grid-area: main;
  padding: var(--spacing);
  -webkit-overflow-scrolling: touch;
  background-color: var(--bg-color);
}

@media screen and (min-width: 48rem) {
  .admin {
    --spacing: 2rem;
  }
}

.dashboard {
  --column-count: 2;
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--spacing) * -0.5);
  display: grid;
  grid-template-columns: repeat(var(--column-count), 1fr);
  grid-gap: var(--spacing);
}
.dashboard__item {
  flex: 1 1 50%;
  grid-column-end: span 2;
  padding: calc(var(--spacing) / 2);
}
.dashboard__item--full {
  flex-basis: 100%;
  grid-column: 1/-1;
}
.dashboard__item--col {
  flex-basis: calc(100% / var(--column-count));
  grid-column-end: span 1;
}
@media screen and (min-width: 48rem) {
  .dashboard {
    --column-count: 4;
  }
}
@supports (display: grid) {
  .dashboard {
    margin: 0;
  }
  .dashboard__item {
    padding: 0;
  }
}

a {
  color: #dc5a60;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.logo {
  display: flex;
  flex: 0 0 300px;
  height: 80px;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0;
  color: #fff;
  background-color: var(--bcn-orange);
  font-size: 1rem;
}
.logo h1 {
  margin: 0;
}

.toolbar {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--spacing);
}

.menu {
  list-style-type: none;
  padding: 0;
}
.menu__title {
  display: block;
  padding: 2rem 2rem 0.5rem;
  color: #76808f;
  font-weight: 700;
}
.menu__divider::before {
  content: "";
  display: block;
  width: calc(100% - 60px);
  height: 2px;
  margin: 30px 30px 40px;
  background-color: #76808f;
}
.menu__link {
  display: block;
  padding: 10px 30px;
  color: #76808f;
  text-decoration: none;
}
.menu__link.is-active {
  color: #fff;
  background-color: var(--bcn-orange-dark);
  border-left: 3px solid var(--bcn-orange);
}
.menu__link:hover, .menu__link:focus {
  color: currentcolor;
  background-color: var(--bcn-orange-light);
}

.card {
  height: 100%;
  font-weight: 300;
  background-color: #fff;
  border: 1px solid #e6eaee;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card__header {
  padding: 20px 30px;
  border-bottom: 1px solid #e6eaee;
  font-weight: 700;
}
.card__item {
  padding: 20px 30px;
}

.btn {
  display: inline-block;
  border-radius: 5em;
  border: 0;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.btn--primary {
  color: #fff;
  background-color: #56bf89;
}

.dashboard_icon { font-size: 75px; color: #1d3252; }

.align__center {text-align: center;}

/* Float four columns side by side */
.dashboard_column {
  float: left;
  width: 33%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding in columns */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.dashboard_row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the counter cards */
.dashboard_card {  
  padding: 16px;
  text-align: center;
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
  .dashboard_column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* END OF DASHBOARD STYLINGS */