@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

.sb-nav-fixed .sb-topnav {
  z-index: 1039;
}
.sb-nav-fixed #layoutSidenav #layoutSidenav_nav {
  width: 225px;
  height: 100vh;
  z-index: 1038;
}
.sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav {
  padding-top: 56px;
}
.sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav .sb-sidenav-menu {
  overflow-y: auto;
}
.sb-nav-fixed #layoutSidenav #layoutSidenav_content {
  padding-left: 225px;
  top: 56px;
}

#layoutError {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#layoutError #layoutError_content {
  min-width: 0;
  flex-grow: 1;
}
#layoutError #layoutError_footer {
  min-width: 0;
}

.img-error {
  max-width: 20rem;
}

.nav .nav-link .sb-nav-link-icon,
.sb-sidenav-menu .nav-link .sb-nav-link-icon {
  margin-right: 0.5rem;
}

.sb-topnav {
  padding-left: 0;
  height: 56px;
  z-index: 1039;
}
.sb-topnav .navbar-brand {
  width: 225px;
  margin: 0;
}
.sb-topnav.navbar-dark #sidebarToggle {
  color: rgba(255, 255, 255, 0.5);
}
.sb-topnav.navbar-light #sidebarToggle {
  color: #212529;
}

.max-heigh-500 {
  max-height: 500px;
  height: auto !important;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/static/Montserrat/static/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/static/Montserrat/static/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}
.content-wrapper {
    flex: 1;
}

:root {
    --navbar-height: 12vh;
    --bs-link-color: #302681;
    --bs-link-hover-color: #302681;
    --bs-blue: #302681;
    --bs-primary: #302681;
    --input-color: #302681;
    --bs-focus-ring-color: #302681;
    --bs-link-color-rgb: 48, 38, 129;
}

#navbar-man {
    height: var(--navbar-height);
}

#footer-man {
    height: var(--navbar-height);
}

.col-roller {
    max-height: 100vh);
    overflow-y: auto;
    height: 100vh;
}

.card-clickable {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.bg-purple {
    background-color:#180c30 !important;
    color: #ffffff;
    text-color: white;
}

.btn-outline-purple {
  --bs-btn-color: #180c30;
  --bs-btn-border-color: #180c30;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #180c30;
  --bs-btn-hover-border-color: #180c30;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #180c30;
  --bs-btn-active-border-color: #180c30;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #180c30;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #180c30;
  --bs-gradient: none;
}

.btn-outline-purple {
  color: var(--bs-btn-color);
  border-color: var(--bs-btn-border-color);
}

.btn-outline-purple:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-outline-purple:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
}

.btn-outline-purple:disabled {
  color: var(--bs-btn-disabled-color);
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
}

.link-purple {
    background-color: #180c30;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.link-purple:hover {
    background-color: #827BBD;
    color: #ffffff;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.link-purple.disabled,
.link-purple.disabled:hover {
    background-color: #c0c0c0;
    color: #ffffff;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}


.border-new {
    border-left-style: solid;
    border-left-width: 8px;
}

.border-new-blue {
    border-left-color: blue;
}

.border-new-green {
    border-left-color: #00FF00;
}

.border-new-red {
    border-left-color: red;
}

.border-new-yellow {
    border-left-color: yellow;
}

.text-purple {
  --bs-text-opacity: 1;
  color: #180c30 !important;
}

.col-0-5 {
    flex: 0 0 auto%;
    max-width: 5.5%;
}
