/* Font set */
@font-face {
  font-family: 'Amiri';
  font-style: normal;
  font-weight: 400;
  src: local("Amiri-Regular"), url("../fonts/Amiri/Amiri-Regular.ttf") format("ttf");
  font-display: swap;
}

.luxbar-default {
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.luxbar-static {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.luxbar-static .luxbar-checkbox:checked ~ .luxbar-menu {
  position: absolute;
}

.luxbar-fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.luxbar-fixed-bottom {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.luxbar-hamburger span, .luxbar-hamburger span::before, .luxbar-hamburger span::after {
  display: block;
  height: 2px;
  width: 26px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.luxbar-checkbox:checked ~ .luxbar-menu li .luxbar-hamburger span {
  background-color: transparent;
}

.luxbar-checkbox:checked ~ .luxbar-menu li .luxbar-hamburger span::before, .luxbar-checkbox:checked ~ .luxbar-menu li .luxbar-hamburger span::after {
  margin-top: 0;
}

.luxbar-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 72px;
}

.luxbar-menu-left .luxbar-navigation, .luxbar-menu-left .luxbar-header {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.luxbar-menu-right .luxbar-hamburger {
  margin-left: auto;
}

.luxbar-brand {
  font-size: 1.6em;
  padding: 18px 24px 18px 24px;
}

.luxbar-menu {
  min-height: 72px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  width: 100%;
}

.luxbar-navigation {
  width: 90%;
  font-family: 'Amiri', serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
}

.luxbar-menu a,
.luxbar-item a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.luxbar-item {
  height: 72px;
}

.luxbar-item a {
  padding: 28px 16px 24px 16px;
  display: block;
}

.luxbar-hamburger {
  padding: 24px 24px 24px 24px;
  position: relative;
  cursor: pointer;
}

.luxbar-hamburger span::before, .luxbar-hamburger span::after {
  content: '';
  position: absolute;
}

.luxbar-hamburger span::before {
  margin-top: -8px;
}

.luxbar-hamburger span::after {
  margin-top: 8px;
}

.luxbar-checkbox {
  display: none;
}

.luxbar-checkbox:not(:checked) ~ .luxbar-menu {
  overflow: hidden;
  height: 58px;
}

.luxbar-checkbox:checked ~ .luxbar-menu {
  -webkit-transition: height 0.6s ease;
  transition: height 0.6s ease;
  height: 100vh;
  overflow: auto;
}

.dropdown {
  position: relative;
  height: auto;
  min-height: 58px;
}

.dropdown:hover > ul {
  position: relative;
  display: block;
  min-width: 100%;
}

.dropdown > a::after {
  position: absolute;
  content: '';
  right: 10px;
  top: 25px;
  border-width: 5px 5px 0;
  border-color: transparent;
  border-style: solid;
}

.dropdown > ul {
  display: block;
  overflow-x: hidden;
  list-style: none;
  padding: 0;
}

.dropdown > ul .luxbar-item {
  min-width: 100%;
  height: 29px;
  padding: 5px 10px 5px 40px;
}

.dropdown > ul .luxbar-item a {
  min-height: 29px;
  line-height: 29px;
  padding: 0;
  border-bottom: solid 1px white;
}

@media screen and (min-width: 60em) {
  .luxbar-navigation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .luxbar-hamburger {
    display: none;
  }
  .luxbar-checkbox:not(:checked) ~ .luxbar-menu {
    overflow: visible;
  }
  .luxbar-checkbox:checked ~ .luxbar-menu {
    height: 58px;
  }
  .luxbar-menu .luxbar-item {
    border-top: 0;
  }
  .luxbar-menu-right .luxbar-header {
    margin-right: auto;
  }
  .dropdown {
    height: 58px;
  }
  .dropdown:hover > ul {
    position: absolute;
    left: 0;
    top: 58px;
    padding: 0;
  }
  .dropdown > ul {
    display: none;
  }
  .dropdown > ul .luxbar-item {
    padding: 5px 10px;
  }
  .dropdown > ul .luxbar-item a {
    white-space: nowrap;
  }
}

.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger-doublespin span::before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger-doublespin span::after {
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger-spin span::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger-spin span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/******* color variables *******/
/******* default dark *******/
.luxbar-menu-dark .luxbar-item:hover a {
  color: white;
}

.luxbar-menu-dark,
.luxbar-menu-dark .dropdown ul {
  background-color: rgba(15, 19, 26, 0.9);
  color: rgba(255, 254, 244, 1);
}

.luxbar-menu-dark .luxbar-hamburger span,
.luxbar-menu-dark .luxbar-hamburger span::before,
.luxbar-menu-dark .luxbar-hamburger span::after {
  background-color: rgba(255, 254, 244, 0.8);
}

/******* default light *******/
.luxbar-menu-light,
.luxbar-menu-light .dropdown ul {
  background-color: rgba(255, 254, 244, 0.8);
  color: rgba(15, 19, 26, 0.9);
}

.luxbar-menu-light .active,
.luxbar-menu-light .luxbar-item:hover {
  background-color: rgba(255, 254, 244, 0.8);
}

.luxbar-menu-light .luxbar-hamburger span,
.luxbar-menu-light .luxbar-hamburger span::before,
.luxbar-menu-light .luxbar-hamburger span::after {
  background-color: rgba(15, 19, 26, 0.9);
}

.luxbar-item {
  position: relative;
}

.luxbar-menu-dark .luxbar-item.active::after 
{
/*
  position: absolute;
    left: calc(10%);

  bottom: 13px;
  display: block;
  content: "";
  width: 80%;
  height: 6px;

  border-bottom:solid;
border-color:rgba(255, 254, 244, .9);
border-width:3px;  

  


  position: absolute;
  left: calc(50% - 4px);
  bottom: 13px;
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid rgba(255, 254, 244, 0.8);
  border-top: 1px solid rgba(255, 254, 244, 0.8);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  */
}

.luxbar-menu-light .luxbar-item.active::after {
  position: absolute;
  left: calc(50% - 4px);
  bottom: 13px;
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid rgba(15, 19, 26, 0.9);
  border-top: 1px solid rgba(15, 19, 26, 0.9);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 60em) {
  .luxbar-menu-dark .luxbar-item.active::after {
    position: absolute;
    left: 0;
    top: 30px;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1px solid rgba(255, 254, 244, 0.8);
    border-top: 1px solid rgba(255, 254, 244, 0.8);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .luxbar-menu-light .luxbar-item.active::after {
    position: absolute;
    left: 0;
    top: 30px;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1px solid rgba(15, 19, 26, 0.9);
    border-top: 1px solid rgba(15, 19, 26, 0.9);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .luxbar-item {
    padding-left: 10px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  }
}

img#brand_logo {
  display: block;
  width: auto;
  height: 48px;
  max-height: 48px;
  padding: 12px 29px 12px;
}
