.icon {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: none;
}

.icon--arrow-left:before {
  content: "\f053";
}

.icon--menu:before {
  content: "\f0c9";
}

.icon--cross:before {
  content: "\f00d";
}

/* Menu styles */
.menu {
  position: fixed;
  top: 50px;
  left: 0;
  width: 300px;
  height: 100vh;
  background: #1c1d22;
  -webkit-transition: -webkit-transform 0.3s, width 0.3s;
  -webkit-transition: width 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, width 0.3s;
  transition: transform 0.3s, width 0.3s, -webkit-transform 0.3s;
  z-index: 200;
  -webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.menu__wrap {
  position: absolute;
  top: 3.5em;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  max-height: calc(100vh - 161px);
}

.menu__tools {
  position: absolute;
  bottom: 50px;
  overflow: hidden;
  width: 100%;
  height: 56px;
  background:black;
  display:flex;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}



.menu__tools__expanded{
  display:flex;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.menu__tools__expanded .verticle-devider{
  display:none;
}

.menu_popover_tools a{
    font-size: 20px;
}

.menu_popover_tools .verticle-devider{
  height: 20px;
  width: 2px;
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}
.menu_popover_tools .verticle-devider::before{
  content: '';
  border-top-width: 0;
  border-right-width: 1px;
  border-right-style: solid;
  height: 100%;
  width: 1px;
  top: 0;
  position: absolute;
  border-color: #cccccc;
}

.menu__level {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-y: scroll;
  width: calc(100% + 50px);
  height: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.menu__level:focus {
  outline: none;
}

.menu__level--current {
  visibility: visible;
}

.menu__item {
  display: inline-flex;
  width: calc(100% - 50px);
}

.menu__link, .menu__link_text {
  font-weight: 600;
  position: relative;
  display: block;
  padding: 1em 2.5em 1em 1.5em;
  color: #bdbdbd;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  flex-grow: 1;
}

.menu__link[data-submenu]::after {
  content: "\f141";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0;
  padding: 0.25em 1.25em;
  color: #2a2b30;
}

a.menu__link:hover,
a.menu__link:focus,
a.menu__link[data-submenu]:hover::after,
a.menu__link[data-submenu]:focus::after,
a.menu__link_text:hover,
a.menu__link_text:focus,
a.menu__link_text--current:hover,
a.menu__link_text--current:focus,
a.menu__link--current:hover,
a.menu__link--current:focus {
  color: #ff3636;
}

.menu__link--current{
  color: #ff3636;
}

.menu__link--current::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-size: 0.5em;
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 0.8em;
  height: 4px;
  color: #ff3636;
}

[class^="animate-"],
[class*=" animate-"] {
  visibility: visible;
}

.animate-outToRight .menu__item {
  -webkit-animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.animate-outToLeft .menu__item {
  -webkit-animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.animate-inFromLeft .menu__item {
  -webkit-animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate-inFromRight .menu__item {
  -webkit-animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.menu__breadcrumbs {
  font-size: 0.65em;
  line-height: 1.5;
  position: relative;
  padding: 2.5em 3.75em 1.5em 2.5em;
  transition: height 6s ease, width 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}

.menu__breadcrumbs a {
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff3636;
}

.menu__breadcrumbs a:last-child {
  pointer-events: none;
}

.menu__breadcrumbs a:hover,
.menu__breadcrumbs a:focus {
  color: #8182e0;
}

.menu__breadcrumbs a:not(:last-child)::after {
  content: "\f30b";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  padding: 0 0.5em;
  color: #33353e;
}

.menu__breadcrumbs a:not(:last-child):hover::after,
.menu__breadcrumbs a:not(:last-child):focus::after {
  color: #33353e;
}

.menu__back {
  font-size: 1.05em;
  position: absolute;
  z-index: 100;
  top: 0;
  right: 2.25em;
  margin: 0;
  padding: 1.365em 0.65em 0 0;
  cursor: pointer;
  color: #2a2b30;
  border: none;
  background: none;
}

.menu__back--hidden {
  pointer-events: none;
  opacity: 0;
}

.menu__back:hover,
.menu__back:focus {
  color: #fff;
  outline: none;
}

/* Open and close buttons */

.action {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  background: none;
}

.action:focus {
  outline: none;
}

.index-page .action--open {
  top: 1em;
  left: 1em;
}


.action--open {
  font-size: 1.6em;
  display: none;
  color: #fff;
  z-index: 1000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  vertical-align: center;
  cursor: pointer;
}

.action--close {
  font-size: 1.1em;
  top: 1.25em;
  right: 1em;
  display: none;
  color: #45464e;
}

.logo-image-mobile {
  display: none;
}

@media (max-width: 700px) {
  .action--open,
  .action--close {
    display: block;
  }
  .menu {
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .global-header-container {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .menu--open {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .index-page .logo-image-mobile {
    right: 1.5em;
    top: 1.5em;
  }
  .logo-image-mobile {
    display: block;
    z-index: 11;
  }
  .top-bar-container {
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0px;
    z-index: 1000;
    padding-left: 7px;
    padding-right: 7px;
    -webkit-transition: padding-right 0.3s;
    transition: padding-right 0.3s;
  }
  body:not(.index) .top-bar-container {
    background-color: #607d8b;
  }
  .menu__wrap{
    max-height: calc(100vh - 112px);
  }
  .menu__tools{
    bottom: 0px;
  }
  .btn-tools-collapsed{
    display:none;
  }
}

/* Menu Header */

.global-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-header-container {
  width: 300px;
  height: 50px;
  position: fixed;
  padding-left: 7px;
  padding-right: 20px;
  background-color: #607d8b;
  z-index: 1;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

@media (min-width: 701px) {
  .menu-header-container {
    display: none;
  }
}

.menu-header-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 50px;
  padding: 1em 0 0 0;
  text-align: center;
  color: #3b3d4a;
  background: #1c1d22;
}

.menu-header-heading, .menu-collapsed-heading {
  font-size: 0.75em;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.action--collapse,
.action--expand {
  font-size: 1.1em;
  color: white;
  position: relative !important;
}

@media (max-width: 700px) {
  .action--collapse,
  .action--expand,
  .menu-collapsed-heading {
    display: none;
  }
}

/* Header bar in menu header */

.header_bar__main {
  margin: 0 0 0 auto;
  /* padding: 2em 3em 0; */
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-content: flex-end;
}

.header-bar-tooltip:after {
  position: relative;
  top: -8px;
  left: -8px;
  display: inline-block;
  width: 0;
  height: 0;
}

.header-bar-tooltip:hover:before {
  content: attr(data-content);
  font-size: 110%;
  font-weight: 700;
  line-height: 1.2;
  position: absolute;
  top: 1.5em;
  right: 0;
  width: 50vw;
  padding: 0.8em 1em;
  text-align: right;
  text-indent: 0;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  background: #ff3636;
}

.header-bar-nav {
  margin: 0.5em 0 0 auto;
  text-align: right;
}

.header-bar-nav__item {
  position: relative;
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  margin: 0 0.1em;
  text-align: left;
  border-radius: 50%;
}

.header-bar-nav__item > span {
  display: none;
}

.header-bar-nav__item:hover:before {
  content: attr(data-info);
  font-size: 0.85em;
  font-weight: bold;
  position: absolute;
  top: 120%;
  right: 0;
  width: 600%;
  text-align: right;
  pointer-events: none;
  color: #595a5f;
}

.header-bar-nav__item:hover {
  background: #ff3636;
}

@media (min-width: 701px) {
  /* COLLAPSED CHANGES */

  .container-menu.collapsed .menu,
  .container-menu.collapsed .menu-header-container,
  .container-menu.collapsed .menu-header-logo {
    width: 90px;
  }

  .container-menu.collapsed .menu,
  .container-menu.collapsed .menu-header-container,
  .container-menu.collapsed .menu-header-logo {
    z-index: 200;
  }

  .container-menu.collapsed
    .menu__level--current
    a.menu__link::after,   
    .container-menu.collapsed
    .menu__level--current
    a.menu__link_text::after{
      content:attr(data-initials);
      font-size: 1rem;
      text-align: center;
      padding: 1em 2.5em 1em 1.5em;
      line-height: 3rem;
    }

  .container-menu.collapsed .menu__level--current a.menu__link, 
  .container-menu.collapsed .menu__level--current a.menu__link_text {
    /* visibility: hidden; */
    font-size: 0;
    white-space: nowrap;
    text-align: center;
    padding: 1em 2.5em 1em 1.5em;
    line-height: 3rem;
    max-width: 100%;

  }

  .container-menu.collapsed .menu__item {
    margin-left: 8px;
  }
  .container-menu.collapsed .menu-header-container {
    padding-right: 3px;
  }

  .container-menu.collapsed .menu__breadcrumbs > a:first-child {
    display: inline-block;
  }

  .container-menu.collapsed .menu__breadcrumbs > a:not(:first-child) {
    opacity: 0;
    pointer-events: none;
  }
  
  .container-menu .menu__breadcrumbs > a:not(:first-child) {
    transition-delay: 1s;
    transition: opacity 5s ease;
  }

  .container-menu.collapsed .menu__breadcrumbs {
    width: 50px;
    overflow: hidden;
    height: 42px;
  }

  /* hidden on collapsed */
  .container-menu.collapsed .menu__link[data-submenu]::after,
  .container-menu.collapsed .menu-header-heading,
  .container-menu.collapsed .action--collapse,
  .container-menu.collapsed
    .menu__breadcrumbs
    > a:first-child::after,
  .container-menu:not(.collapsed) .action--expand,
  .container-menu:not(.collapsed) .menu-collapsed-heading,
  .container-menu.collapsed .menu-logo, 
  .container-menu:not(.collapsed) .btn-tools-collapsed, .container-menu.collapsed .menu__tools__expanded{
    display: none;
  }
  /* fin hidden on collapsed */
}
