@media all and (min-width: 992px) {
  .collapse.navbar-collapse {
    justify-content: end;
  }

  .offcanvas-body {
    justify-content: end;
  }

  .dropdown-menu li {
    position: relative;
  }

  .dropdown-menu .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
  }

  .dropdown-menu .submenu-left {
    right: 100%;
    left: auto;
    border-radius: 8px;
  }

  .dropdown-menu>li:hover {
    background-color: #3d5c9d75;
  }

  .dropdown-menu>li:hover>.submenu {
    display: block;
  }
}

@media (max-width: 991px) {
  .dropdown-menu .dropdown-menu {
    margin-left: 0.7rem;
    margin-right: 0.7rem;
    margin-bottom: 0.5rem;
  }
}

.nav-link,
.dropdown-item {
  font-weight: 400;
  font-size: 1rem;
}

.nav .nav-link.active {
  color: orange;
}

a.navlink {
  text-decoration: none;
  color: black;
}

.navbar a:visited {
  color: unset;
}

/* .site-main a:visited {
  color: black;
} */

.dropdown-item.active {
  background-color: transparent;
  color: orange;
}

.dropdown-item:active {
  background-color: transparent;
  color: orange;
}


.depth_0 {
  left: -72px !important;
}

.dropdown-menu {
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.15);
  border: none;
}

@media screen and (max-width: 968px) {
  .dropdown-menu {
    box-shadow: none;

    border: none;
  }

  .dropdown-menu.depth_0 {
    border: 1px solid #eee;
  }
}

@media screen and (min-width: 968px) {
  .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .dropdown:hover>.dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .dropdown-menu.dropdown-menu-end {
    right: 0
  }
}

.dropdown-toggle::after {
  border: none !important;
  content: "\f107" !important;
  vertical-align: 0;
  font: normal normal normal 14px/1 FontAwesome;
}

@media screen and (max-width: 968px) {
  .dropdown-toggle::after {
    content: none !important;
  }

  .dropdown-toggle::before {
    font: normal normal normal 14px/1 FontAwesome;
    transform: rotate(-90deg);
    transform-origin: center;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
    display: inline-block;
    transition: transform 0.35s ease;
  }

  .dropdown-toggle.pseudo-rotate.show::before {
    transform: rotate(0deg) !important;
  }
}

.__snc_header {
  /* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
  /** {
  scrollbar-width: thin;
  scrollbar-color: #364D81 #DFE9EB;
}*/

  /* Chrome, Edge and Safari */
  *::-webkit-scrollbar {
    height: 4px;
    width: 4px;
  }

  *::-webkit-scrollbar-track {
    border-radius: 3px;
    background-color: #DFE9EB;
  }

  *::-webkit-scrollbar-track:hover {
    background-color: #B8C0C2;
  }

  *::-webkit-scrollbar-track:active {
    background-color: #B8C0C2;
  }

  *::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #364D81;
  }

  *::-webkit-scrollbar-thumb:hover {
    background-color: #374F83;
  }

  *::-webkit-scrollbar-thumb:active {
    background-color: #385085;
  }

}