* {
  box-sizing: border-box;
}
#arbol_organigrama {
  font-size: 10px;
  width: 1400px;
}
.org_node {
  width: 120px;
  background-color: #f5f8fa;
  height: 70px;
  text-align: center;
  border: 1px solid black;
  padding-block: .3rem;
  padding-inline: .5rem;
  position: relative;
  display: grid;
  place-content: center;
  box-shadow: 1px 1px 5px rgba(0,0,0,.15);
  flex-shrink: 0;
  cursor: pointer;
}
.org_bold {
  font-weight: bold;
  font-size: 11px;
}
.org_node.oval_node {
  max-width: 130px;
  height: 60px;
  border-radius: 130px / 60px;
  display: grid;
  place-content: center;
}
.org_parent {
  margin-bottom: 9px;
}
.org_parent_30 {
  margin-bottom: 29px;
}
.org_child {
  margin-top: 9px;
}
.org_child_30 {
  margin-top: 29px;
}
.childrens_container {
  display: flex;
  gap: 10px;
}
.dotted_line {
  border: 1px dashed black ;
}
.double_line_container {
  display: flex;
  flex-direction: column;
  gap: 3px;
  transform: skewY(-30deg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 42%;
}
.single_line {
  width: 20px;
  border: 1px solid black;
}
.link_line {
  margin-right: 3px;
  height: 1px;
  background-color: black;
}
.salud_publica {
  position: absolute;
  top: 40px;
  left: 50px;
  width: 200px;
}
.border-x {
  border-left: 1px solid black;
  border-right: 1px solid black;
}
.pseudo_top_line::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background: black;
  right: 60px;
  top: -10px;
}
.pseudo_top_line_left::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background: black;
  right: -6px;
  top: 30px;
  transform: rotate(90deg);
}
.pseudo_horizontal_line::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100px;
  background: black;
  right: 60px;
  top: -30px;
}
.pseudo_bottom_line::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background: black;
  right: 60px;
  bottom: -10px;
}
.pseudo_bottom_line_30::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background: black;
  right: 60px;
  bottom: -30px;
}
.pseudo_bottom_line_150::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 150px;
  background: black;
  right: 60px;
  bottom: -150px;
}
.line_trough::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1300px;
  background: black;
  right: 60px;
  bottom: -1300px;
}

/* * BT Modal */

.modal {
  display: grid;
  place-content: center;
}
.modal-dialog {
  height: 100%;
  max-height: 700px;  
}
.modal-content {
  overflow-y: auto;
  max-height: 700px;  
}

/* * BT UTILS */

.mx-auto {
  margin-inline: auto;
}
.m-3 {
  margin: 1.5rem;
}
.my-3 {
  margin-block: 1.5rem;
}
.mr-2 {
  margin-right: 1rem;
}
.pl-3 {
  padding-left: 1.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mr-5 {
  margin-right: 2.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.px-3 {
  padding-inline: 1.5rem;
}
.px-2 {
  padding-inline: 1rem;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.d-flex {
  display: flex;
}
.w-100 {
  width: 100%
}
.align-items-center {
  align-items: center;
}
.align-items-start {
  align-items: start;
}
.bg-dark {
  background-color: #000;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-end {
  justify-content: end;
}
.justify-content-start {
  justify-content: start;
}
.justify-content-center {
  justify-content: center;
}
.flex-column {
  flex-direction: column;
}
.modal-header {
  box-shadow: 0 1px 20px rgba(0,0,0,0.10);
}
.modal_header_text {
  font-weight: bold;
}
.transparent_btn {
  outline: 0;
  border: 0;
  background-color: transparent;
  padding: .3rem .5rem;
  float: right;
  color: #fff;
  font-size: 1.1rem;
}
.legend_square {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: .3rem;
}
.blue_square {
  background-color: #005ec259;
}
.gray_square {
  background-color: #9e989859;
}
.node_square {
  width: 10px;
  height: 10px;
  right: 3px;
  top: 3px;
  position: absolute;
}
.oval_square {
  top: 12px;
  right: 15px;
}

/* * SIZES */

.max-sm {
  max-width: 678px;
}
.max-md {
  max-width: 800px;
}
.max-lg {
  max-width: 1024px;
}
.max-xl {
  max-width: 1200px;
}
.union_line {
  position: absolute;
  width: 16px;
  height: 82px;
  border-right: 1px solid black;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  right: 0px;
  top: 35px;
}

.last_square {
  position: absolute;
  right: 300px;
}