body,
html {
  background-color: #f8f9fe;
  overflow-x: hidden;
}

.container-fluid {
  padding: 0 3%;
}

/* Navbar Styling */
.navbar {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #189cd0;
  color: white;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-left {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
}

.navbar-middle {
  flex: 1;
  max-width: 582px;
}

.page-title {
  font-size: 16px;
  height: 46px;
  background: #ffffff;
  box-shadow: 0px 2px 6px rgba(30, 58, 112, 0.3);
  font-family: Lato, sans-serif;
  font-weight: 400;
  line-height: 46px;
  color: #1e3a70;
  padding: 0 20px;
  gap: 20px;
  text-align: left;
}
.page-title p {
  margin: 0;
}

.navbar-right {
  display: flex;
  align-items: center;
  height: 46px;
  gap: 10px;
  background: #ffffff;
  box-shadow: 0px 2px 6px rgba(30, 58, 112, 0.3);
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1e3a70;
  padding: 0 10px;
  width: 582px;
}

.dropdown {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px;
}
.dropdown p {
  margin: 0;
}

.space {
  height: 40px;
  overflow: hidden;
}

.organization-tree {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: white;
  height: fit-content;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.organization-tree .header {
  color: white;
  justify-content: space-between;
  display: flex;
  align-items: center;
  height: 40px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.organization-tree .header .label {
  background: #189cd0;
  border-top-left-radius: 8px;
  padding: 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
}
.organization-tree .header .search-box {
  height: 100%;
  display: flex;
  align-items: center;
  border-top-right-radius: 8px;
  background-color: white;
  padding: 0 10px;
  position: relative;
  border-bottom: 1px solid #cccccc;
}
.organization-tree .header .search-box input {
  border: none;
  padding: 5px 10px 5px 25px;
  outline: none;
  width: 100%;
  color: black;
}
.organization-tree .header .search-box input::placeholder {
  color: #cccccc !important;
}
.organization-tree .header .search-box .search-icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.organization-tree .tree {
  list-style: none;
  padding: 15px;
  margin: 0;
  gap: 6px;
  display: flex;
  flex-direction: column;
}
.organization-tree .tree li {
  position: relative;
}
.organization-tree .tree li label {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #1e3a70;
}
.organization-tree .tree li input[type=checkbox] {
  margin-right: 5px;
}
.organization-tree .tree li.has-children {
  display: flex;
  flex-direction: column;
}
.organization-tree .tree li.has-children .toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1e3a70;
  cursor: pointer;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.organization-tree .tree li.has-children.expanded .toggle {
  transform: rotate(90deg);
}
.organization-tree .tree li.has-children ul.subcategories {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin-top 0.3s ease-out;
}
.organization-tree .tree li.has-children.expanded ul.subcategories {
  max-height: 500px;
  opacity: 1;
  margin-top: 10px;
}

.risque-tree {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: white;
  height: fit-content;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.risque-tree .header {
  color: white;
  justify-content: space-between;
  display: flex;
  align-items: center;
  height: 40px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.risque-tree .header .label {
  background: #189cd0;
  border-top-left-radius: 8px;
  padding: 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
}
.risque-tree .header .search-box {
  height: 100%;
  display: flex;
  align-items: center;
  border-top-right-radius: 8px;
  background-color: white;
  padding: 0 10px;
  position: relative;
  border-bottom: 1px solid #cccccc;
}
.risque-tree .header .search-box input {
  border: none;
  padding: 5px 10px 5px 25px;
  outline: none;
  width: 100%;
  color: black;
}
.risque-tree .header .search-box input::placeholder {
  color: #cccccc !important;
}
.risque-tree .header .search-box .search-icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.risque-tree .g-18 {
  gap: 6px;
  flex-direction: column;
  padding: 15px;
}
.risque-tree .g-18 label {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #1e3a70;
}
.risque-tree .g-18 input[type=checkbox] {
  margin-right: 5px;
}

.processus {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: white;
  height: fit-content;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  min-height: 320px;
}
.processus .header {
  color: white;
  justify-content: space-between;
  display: flex;
  align-items: center;
  height: 40px;
  background: #189cd0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 0 10px;
}

.description-risque {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: white;
  height: fit-content;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  min-height: 320px;
}
.description-risque .header {
  color: white;
  justify-content: space-between;
  display: flex;
  align-items: center;
  height: 40px;
  background: #189cd0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 0 10px;
}
.description-risque textarea {
  height: 260px;
  width: 100%;
  padding: 30px;
  border: none;
  color: black;
}
.description-risque textarea::placeholder {
  color: #cccccc !important;
}

.consequences {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: white;
  height: fit-content;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  min-height: 320px;
  align-items: center;
  justify-content: center;
}
.consequences .header {
  color: white;
  justify-content: space-between;
  display: flex;
  align-items: center;
  height: 40px;
  background: #189cd0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 0 10px;
}
.consequences .container {
  gap: 40px;
  align-items: center;
  justify-content: center;
  height: 100%;
  display: flex;
  padding: 15px;
}
.consequences .container .item {
  height: 40px;
  align-items: center;
  justify-content: center;
}
.consequences .container .item .question {
  padding-left: 10px;
}
.consequences .container .label {
  color: #1e3a70;
  font-weight: 700;
  height: 100%;
  display: flex;
  align-items: center;
}
.consequences .container select {
  height: 100%;
  border: none;
  box-shadow: 0px 2px 4px 0px rgba(30, 58, 112, 0.3019607843);
  color: #cccccc;
}

.criticite {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: white;
  height: fit-content;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  min-height: 320px;
  align-items: center;
  justify-content: center;
}
.criticite .header {
  color: white;
  justify-content: space-between;
  display: flex;
  align-items: center;
  height: 40px;
  background: #189cd0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 0 10px;
}
.criticite .container {
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
  display: flex;
  padding: 15px;
}
.criticite .container .item {
  height: 40px;
  align-items: center;
  justify-content: center;
}
.criticite .container .item .question {
  padding-left: 10px;
}
.criticite .container .label {
  color: #1e3a70;
  font-weight: 700;
  height: 100%;
  display: flex;
  align-items: center;
}
.criticite .container select {
  height: 100%;
  border: none;
  box-shadow: 0px 2px 4px 0px rgba(30, 58, 112, 0.3019607843);
  color: #cccccc;
}

.hover-pointer:hover {
  cursor: pointer;
}

.button-nouveau {
  width: 131px;
  height: 36px;
  border-radius: 5px;
  opacity: 0px;
  background-color: #189cd0;
  box-shadow: 0px 4px 15px -3px #189cd0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-modifie {
  width: 131px;
  height: 36px;
  border-radius: 5px;
  opacity: 0px;
  background-color: #ca18d0;
  box-shadow: 0px 4px 15px -3px #ca18d0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-active {
  width: 131px;
  height: 36px;
  border-radius: 5px;
  opacity: 0px;
  background-color: #21a366;
  box-shadow: 0px 4px 15px -3px #21a366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-desactivite {
  width: 131px;
  height: 36px;
  border-radius: 5px;
  opacity: 0px;
  background-color: #e82525;
  box-shadow: 0px 4px 15px -3px #e82525;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-item {
  padding: 10px 15px;
  color: #3b82f6;
  cursor: pointer;
  transition: background 0.3s;
}

.dropdown-item:hover {
  background: rgba(59, 130, 246, 0.1);
}

body.menu-open {
  overflow: hidden;
}

.burger-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.burger-menu-container {
  width: 372px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -500px;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}
.burger-menu-container .burger-menu {
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 45.7%, 91% 48%, 91% 52%, 100% 54.3%, 100% 100%, 0 100%);
}
.burger-menu-container .burger-menu .list-items {
  gap: 20px;
}
.burger-menu-container .burger-menu .list-items .item {
  min-height: 50px;
  width: 100%;
  gap: 14px;
  align-items: center;
  padding: 0 40px;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}
.burger-menu-container .burger-menu .list-items .item .arrow {
  transition: all 0.3s ease-in-out;
}
.burger-menu-container .burger-menu .list-items .item .item-info {
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
  font-family: Lato, sans-serif;
  color: #1e3a70;
}
.burger-menu-container .burger-menu .list-items .item:hover {
  background-color: rgba(30, 58, 112, 0.1294117647);
  transition: all 0.1s ease-in-out;
}
.burger-menu-container .burger-menu .list-items .children {
  max-height: 0;
  overflow: hidden;
  display: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: Lato, sans-serif;
  color: #1e3a70;
}
.burger-menu-container .burger-menu .list-items .children .child-label {
  min-height: 30px;
  padding: 5px 10px;
  transition: background-color 0.2s ease-in-out;
  color: #1e3a70;
  text-decoration: none;
}
.burger-menu-container .burger-menu .list-items .children .child-label:hover {
  background-color: rgba(30, 58, 112, 0.1294117647);
}
.burger-menu-container .burger-menu .list-items .expanded {
  display: flex;
  flex-direction: column;
  max-height: fit-content;
  opacity: 1;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.burger-menu-container .burger-menu .box {
  padding: 20px 10px;
  box-shadow: 0px -4px 10px 0px rgba(30, 58, 112, 0.2);
  display: flex;
  bottom: 0;
  position: absolute;
  font-size: 15px;
}
.burger-menu-container .burger-menu .box .col-lg-6 {
  gap: 10px;
}
.burger-menu-container .close-button {
  clip-path: polygon(50% 0, 100% 30%, 100% 70%, 50% 100%, 0 70%, 0 30%);
  background-color: white;
  position: absolute;
  top: 50%;
  right: -29px;
  transform: translateY(-50%);
  z-index: 99999;
  cursor: pointer;
}
.burger-menu-container .rotate {
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}

.menu-open .burger-menu-overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
}

.menu-open .burger-menu-container {
  left: 0;
  transition: all 0.3s ease-in-out;
}

.risque-list {
  max-height: 300px;
  overflow: auto;
}

/*# sourceMappingURL=app.css.map */
.btn-orange {
    color:#fff;
    background-color:#F7924C;
}
.btn-green {
    color:#fff;
    background-color:#21A366;
}
