/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/*# sourceMappingURL=user.css.map */

.logo {
  width: auto;
  max-height: 50px;
}

/* Media query for large screens */
@media (min-width: 768px) {
  .logo {
    width: auto;
    max-height: 50px;
  }
}

.responsive-logo {
  width: auto;
  max-height: 120px;
}

@media (min-width: 1200px) {
  .responsive-logo {
    width: auto;
    max-height: 150px;
  }
}



.text-brand {
    color: #1C2D35;
}

.bg-brand {
    background-color:  #1C2D35;
    color: #ffffff;
}

.bg-brand-2 {
  background-color:  #1C2D35;
  color: #ffffff;
}

.bg-gradient-brand{
  background: linear-gradient(to right, #1C2D35, #f8f8f8);
}

.bg-gradient-brand-reverse{
  background: linear-gradient(to right, #f8f8f8, #1C2D35);
}

.bg-dark {
  background-color:  #343434;
  color: #ffffff;
}

.text-brand-secondary {
    color: #f8f8f8;
}

.bg-brand-secondary {
    background-color: #f8f8f8;
}

.btn-brand {
    background-color: #1C2D35;
    border-color:  #1C2D35;
    color: #ffffff;

}

.btn-outline-brand {
  background-color: transparent;
  border-color:  #1C2D35;
  color: #1C2D35;

}

.btn-outline-brand:hover {
  background-color: #1C2D35;
  border-color:  #1C2D35;
  color: #ffffff;

}

.btn-no-outline-brand {
  background-color: transparent;
  color: #1C2D35;

}

.btn-no-outline-brand:hover {
  background-color: #1C2D35;
  color: #ffffff;

}

.btn-brand-bordered {
  background-color: #1C2D35;
  border-color:  #ffffff;
  color: #ffffff;

}

.vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  height: 100%; /* Ensure the container takes up full height */
}

.btn-brand:hover {
    background-color: #ffffff;
    border-color:  #1C2D35;
    color: #1C2D35;
}

.btn-brand-outline {
    background-color: transparent;
    border-color:  #1C2D35;
    color: #1C2D35;

}

.btn-brand-outline:hover {
    background-color: #1C2D35;
    border-color:  #1C2D35;
    color: #ffffff;

}

.col-6-on-mobile {
  flex: 0 0 50%;
  max-width: 50%;
}

.hover-bg-200:hover {
  background-color: #f8f9fa !important; /* light gray Bootstrap-like */
  transition: background-color 0.3s ease;
}

.circular-button {
  border-radius: 50%; /* Makes the button circular */
  width: 50px; /* Set the width and height to create a circle */
  height: 50px;
}


.border .border-brand{
    border-color:  #1C2D35;
    
}

/* Apply to scrollable content */
.scrollable-content {
  flex-grow: 1;
  overflow-y: auto; /* Enable vertical scrolling */
  overflow-x: hidden; /* Hide horizontal scrolling */
  max-height: calc(100vh - 60px);
  padding: 10px;
  white-space: normal;
}

/* Custom Scrollbar for Webkit Browsers (Chrome, Edge, Safari) */
.scrollable-content::-webkit-scrollbar {
  width: 8px; /* Adjust width */
}

.scrollable-content::-webkit-scrollbar-track {
  background: #f1f1f1; /* Light grey background */
  border-radius: 10px; /* Rounded edges */
}

.scrollable-content::-webkit-scrollbar-thumb {
  background: #888; /* Darker scrollbar */
  border-radius: 10px; /* Rounded edges */
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
  background: #555; /* Slightly darker on hover */
}

/* Scrollbar for Firefox */
.scrollable-content {
  scrollbar-width: thin; /* Thin scrollbar */
  scrollbar-color: #888 #f1f1f1; /* Thumb & Track */
}




.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 0;
    list-style: none;
    background-color: "transparent";
  }
  
  .breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
    color: #1C2D35;
  }
  .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #1C2D35;
    content: var(--falcon-breadcrumb-divider, "/") /* rtl: var(--falcon-breadcrumb-divider, "/") */;
  }
  .breadcrumb-item.active {
    color: #1C2D35;
  }

  .pointer-cursor {
    cursor: pointer;
  }


  .dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #fff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

/* Multi-level Menu */


.nav-tabs .nav-link.active {
  color:  #1C2D35;
  border-color: #1C2D35;
}


.preserve-whitespace {
  white-space: pre-wrap; /* Preserves whitespace and line breaks */
  overflow-wrap: break-word; /* Ensures long words break correctly */
}