.nav-tgl {
  display: none;
  cursor: pointer;
  z-index: 30000;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  padding: 0;
  background: none !important;
  /*box-shadow: 0px 4px 10px rgba(#000, 0.24);*/
  line-height: 0.6;
  text-align: center;
}
@media screen and (max-width: 1366px) {
  .nav-tgl {
    display: inline-block;
  }
}
.nav-tgl > span {
  display: inline-block;
  position: relative;
  height: 2px;
  width: 23px;
  border-radius: 1px;
  background: var(--secondary);
  vertical-align: middle;
}
.nav-tgl > span:before, .nav-tgl > span:after {
  display: inline-block;
  position: absolute;
  content: "";
  height: 2px;
  border-radius: 1px;
  background: var(--secondary);
  transition: all 200ms;
}
.nav-tgl > span:before {
  top: -8px;
  left: 0px;
  width: 15px;
}
.nav-tgl > span:after {
  top: 8px;
  left: 0px;
  width: 15px;
}
.nav-tgl:focus {
  outline: none;
}
.nav-tgl:hover > span:after, .nav-tgl:hover > span:before {
  width: 23px;
  left: 0;
}
.nav-tgl.active > span {
  height: 0;
}
.nav-tgl.active > span:after, .nav-tgl.active > span:before {
  top: 0px;
  left: 0;
  width: 23px;
}
.nav-tgl.active > span:after {
  transform: rotate(-45deg);
}
.nav-tgl.active > span:before {
  transform: rotate(45deg);
}
/* OFF CANVAS MENU */
.overlay__menu {
  margin-bottom: var(--space-xs);
}
.overlay__menu a {
  line-height: 1.2;
  color: var(--secondary);
  background-color: var(--shade-light-trans-20);
  border-radius: 10px;
  padding: var(--space-xs) var(--space-xs) !important;
  margin-bottom: var(--space-s);
  transition: all 0.3s ease-in-out;
}
.overlay__menu a:focus, .overlay__menu a:hover {
  color: var(--white);
  background-color: var(--secondary-trans-80);
}
#overlay .btn-siveo {
  width: 100%;
}
#overlay .cross-button {
  cursor: pointer;
}
