/* Mobile first layout SmartMenus Core CSS (it's not recommended editing these rules)
   You need this once per page no matter how many menu trees or different themes you use.
-------------------------------------------------------------------------------------------*/

.sm {
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.sm,
.sm ul,
.sm li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  direction: ltr;
  text-align: left;
}

.sm-rtl,
.sm-rtl ul,
.sm-rtl li {
  direction: rtl;
  text-align: right;
}

.sm > li > h1,
.sm > li > h2,
.sm > li > h3,
.sm > li > h4,
.sm > li > h5,
.sm > li > h6 {
  margin: 0;
  padding: 0;
}

.sm ul {
  display: none;
}

.sm li,
.sm a {
  position: relative;
}

.sm a {
  display: block;
}

.sm a.disabled {
  cursor: default;
}

.sm::after {
  content: "";
  display: block;
  height: 0;
  font: 0px/0 serif;
  clear: both;
  overflow: hidden;
}

.sm *,
.sm *::before,
.sm *::after {
  box-sizing: inherit;
}

.sm-custom {
  background: transparent;
}

.sm-custom a {
  font-family: var(--font-Roboto);
  font-weight: var(--weight-Medium);
  padding: 10px 20px;
  padding-right: 58px;
  font-size: 1rem;
  line-height: 24px;
  text-decoration: none;
}

.sm-custom li a .sub-arrow i {
  display: none;
}

.sm-custom a.current {
  font-weight: 800;
}

.sm-custom a.disabled {
  color: #a1d1e8;
}

.sm-custom a .sub-arrow {
  position: absolute;
  top: 50%;
  margin-top: -17px;
  left: auto;
  right: 4px;
  width: 34px;
  height: 34px;
  overflow: hidden;
  font: bold 16px/34px monospace !important;
  text-align: center;
  text-shadow: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.sm-custom a .sub-arrow::before {
  content: "+";
}

.sm-custom a.highlighted .sub-arrow::before {
  content: "-";
}

.sm-custom > li:last-child > a.highlighted,
.sm-custom > li:last-child > *:not(ul) a.highlighted,
.sm-custom > li:last-child > ul > li:last-child > a.highlighted,
.sm-custom > li:last-child > ul > li:last-child > *:not(ul) a.highlighted,
.sm-custom
  > li:last-child
  > ul
  > li:last-child
  > ul
  > li:last-child
  > a.highlighted,
.sm-custom
  > li:last-child
  > ul
  > li:last-child
  > ul
  > li:last-child
  > *:not(ul)
  a.highlighted,
.sm-custom
  > li:last-child
  > ul
  > li:last-child
  > ul
  > li:last-child
  > ul
  > li:last-child
  > a.highlighted,
.sm-custom
  > li:last-child
  > ul
  > li:last-child
  > ul
  > li:last-child
  > ul
  > li:last-child
  > *:not(ul)
  a.highlighted,
.sm-custom
  > li:last-child
  > ul
  > li:last-child
  > ul
  > li:last-child
  > ul
  > li:last-child
  > ul
  > li:last-child
  > a.highlighted,
.sm-custom
  > li:last-child
  > ul
  > li:last-child
  > ul
  > li:last-child
  > ul
  > li:last-child
  > ul
  > li:last-child
  > *:not(ul)
  a.highlighted {
  border-radius: 0;
}

.sm-custom ul {
  background: #fff;
}

.sm-custom ul ul {
  background: rgba(102, 102, 102, 0.1);
}

.sm-custom ul a,
.sm-custom ul a:hover,
.sm-custom ul a:focus,
.sm-custom ul a:active {
  background: transparent;
  color: #121010;
  font-size: 16px;
  text-shadow: none;
  text-transform: none;
  border-left: 8px solid transparent;
}
.sm-custom ul a:hover,
.sm-custom ul a:focus,
.sm-custom ul a:active {
  background: var(--gray-700);
  color: var(--black);
}

.sm-custom ul a.current {
  background: #006892;
  color: #fff;
}

.sm-custom ul a.disabled {
  color: #b3b3b3;
}

.sm-custom ul ul a,
.sm-custom ul ul a:hover,
.sm-custom ul ul a:focus,
.sm-custom ul ul a:active {
  border-left: 16px solid transparent;
}

.sm-custom ul ul ul a,
.sm-custom ul ul ul a:hover,
.sm-custom ul ul ul a:focus,
.sm-custom ul ul ul a:active {
  border-left: 24px solid transparent;
}

.sm-custom ul ul ul ul a,
.sm-custom ul ul ul ul a:hover,
.sm-custom ul ul ul ul a:focus,
.sm-custom ul ul ul ul a:active {
  border-left: 32px solid transparent;
}

.sm-custom ul ul ul ul ul a,
.sm-custom ul ul ul ul ul a:hover,
.sm-custom ul ul ul ul ul a:focus,
.sm-custom ul ul ul ul ul a:active {
  border-left: 40px solid transparent;
}

.sm-custom ul li {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.sm-custom ul li:first-child {
  border-top: 0;
}

.sm-custom li.mega-menu {
  position: static;
}

@media (min-width: 767px) {
  /* Switch to desktop layout
  -----------------------------------------------
     These transform the menu tree from
     collapsible to desktop (navbar + dropdowns)
  -----------------------------------------------*/
  /* start... (it's not recommended editing these rules) */
  .sm-custom {
    display: inline-block;
    vertical-align: top;
  }
  .sm-custom ul {
    position: absolute;
    width: 12em;
  }
  .sm-custom > li > ul {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .sm-custom > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .sm-custom li {
    float: left;
  }
  .sm-custom > li {
    margin: 0 10px;
  }
  .sm-custom.sm-rtl li {
    float: right;
  }
  .sm-custom ul li,
  .sm-custom.sm-rtl ul li,
  .sm-custom.sm-vertical li {
    float: none;
  }
  .sm-custom a {
    white-space: nowrap;
  }
  .sm-custom ul a,
  .sm-custom.sm-vertical a {
    white-space: normal;
  }
  .sm-custom .sm-nowrap > li > a,
  .sm-custom .sm-nowrap > li > :not(ul) a {
    white-space: nowrap;
  }
  /* ...end */
  .sm-custom > li > a {
    position: relative;
    color: var(--black);
    padding: 46px 0;
  }
  .sm-custom > li > a:hover {
    color: var(--gray-700);
  }
  .sm-custom > li > a > .sub-arrow {
    display: block;
  }
  .sm-custom > li > a > .sub-arrow i {
    display: block;
  }
  /* .sm-custom > li > a:hover:before,
  .sm-custom > li > a.mPS2id-clicked.mPS2id-highlight::before,
  .sm-custom > li.current-menu-item > a::before {
    background-color: var(--blue-500);
  } */
  .sm-custom > li.current-menu-item > a {
    color: var(--gray-700);
  }
  .sm-custom a.current {
    color: #f58221;
  }
  .sm-custom a.disabled {
    background: #3092c0;
    color: #a1d1e8;
  }
  .sm-custom a .sub-arrow {
    top: 42px;
    margin-top: 0;
    margin-left: 0;
    right: -16px;
    width: 15px;
    height: 23px;
    border-radius: 0;
    background-color: transparent;
  }
  .sm-custom a .sub-arrow::before {
    content: "";
  }
  .sm-custom a.highlighted .sub-arrow::before {
    content: "";
  }
  .sm-custom > li > a > .sub-arrow::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f107";
    color: var(--gray-700);
  }
  .sm-custom > li > a.highlighted > .sub-arrow::before {
    content: "\f107";
  }
  .sm-custom > li > a .sub-arrow {
  }
  .sm-custom ul {
    padding: 0 0;
    background: var(--gray-700);
    border-radius: 0 !important;
  }
  .sm-custom ul ul {
    border-radius: 0 !important;
    background: var(--gray-700);
  }
  
  .sm-custom ul a,
  .sm-custom ul a:hover,
  .sm-custom ul a:focus,
  .sm-custom ul a:active,
  .sm-custom ul a.highlighted {
    border: 0 !important;
    padding: 9px 23px;
    background: transparent;
    color: #fff;
    border-radius: 0 !important;
  }
  .sm-custom ul a{
    color: var(--black);
  }
  .sm-custom ul a:hover,
  .sm-custom ul a:focus,
  .sm-custom ul a:active,
  .sm-custom ul a.highlighted {
    background: var(--black);
    color: var(--white);
  }
  .sm-custom ul a.current {
    background: var(--gray-700);
    color: var(--white);
  }
  .sm-custom ul a.disabled {
    background: #fff;
    color: #b3b3b3;
  }
  .sm-custom ul a .sub-arrow {
    display: flex;
    top: 50%;
    margin-top: -5px;
    bottom: auto;
    left: auto;
    margin-left: 0;
    right: 10px;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #121010;
  }
  .sm-custom ul li:hover .sub-arrow {
    border-color: transparent transparent transparent #081526;
  }
  .sm-custom ul li {
    border: 0;
  }
  .sm-custom .scroll-up,
  .sm-custom .scroll-down {
    position: absolute;
    display: none;
    visibility: hidden;
    overflow: hidden;
    background: #fff;
    height: 20px;
  }
  .sm-custom .scroll-up-arrow,
  .sm-custom .scroll-down-arrow {
    position: absolute;
    top: -2px;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 8px;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #2b82ac transparent;
  }
  .sm-custom .scroll-down-arrow {
    top: 6px;
    border-style: solid dashed dashed dashed;
    border-color: #2b82ac transparent transparent transparent;
  }
  .sm-custom.sm-rtl.sm-vertical a .sub-arrow {
    right: auto;
    left: 10px;
    border-style: dashed solid dashed dashed;
    border-color: transparent #a1d1e8 transparent transparent;
  }
  .sm-custom.sm-rtl > li:first-child > a,
  .sm-custom.sm-rtl > li:first-child > :not(ul) a {
    border-radius: 0 8px 8px 0;
  }
  .sm-custom.sm-rtl > li:last-child > a,
  .sm-custom.sm-rtl > li:last-child > :not(ul) a {
    border-radius: 8px 0 0 8px !important;
  }
  .sm-custom.sm-rtl > li:first-child {
    border-left: 1px solid #2b82ac;
  }
  .sm-custom.sm-rtl > li:last-child {
    border-left: 0;
  }
  .sm-custom.sm-rtl ul a .sub-arrow {
    right: auto;
    left: 10px;
    border-style: dashed solid dashed dashed;
    border-color: transparent #a1d1e8 transparent transparent;
  }
  .sm-custom.sm-vertical {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  }
  .sm-custom.sm-vertical a {
    padding: 9px 23px;
  }
  .sm-custom.sm-vertical a .sub-arrow {
    top: 50%;
    margin-top: -5px;
    bottom: auto;
    left: auto;
    margin-left: 0;
    right: 10px;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #a1d1e8;
  }
  .sm-custom.sm-vertical > li:first-child > a,
  .sm-custom.sm-vertical > li:first-child > :not(ul) a {
    border-radius: 8px 8px 0 0;
  }
  .sm-custom.sm-vertical > li:last-child > a,
  .sm-custom.sm-vertical > li:last-child > :not(ul) a {
    border-radius: 0 0 8px 8px !important;
  }
  .sm-custom.sm-vertical > li {
    border-left: 0 !important;
  }
  .sm-custom.sm-vertical ul {
    border-radius: 4px !important;
  }
  .sm-custom.sm-vertical ul a {
    padding: 9px 23px;
  }
}

@media (min-width: 1129px) {
  .sm-custom > li {
    margin: 0 9px;
  }
}

@media (min-width: 1229px) {
  .sm-custom > li {
    margin: 0 12px;
  }
  .sm-custom a .sub-arrow {
    right: -17px;
  }
}

@media (min-width: 1300px) {
  .sm-custom > li {
    margin: 0 18px;
  }
}
@media (min-width: 1500px) {
  .sm-custom > li {
    margin: 0 23px;
  }
}
