/* components/s-hamburger/src/scss/s-hamburger.scss */
.burger {
  position: relative;
  width: 32px;
  height: 22px;
  background: transparent;
  cursor: pointer;
  display: block;
  z-index: 150;
  position: relative;
}
.burger input {
  display: none;
}
.burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.burger span:nth-of-type(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.burger span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.burger span:nth-of-type(3) {
  top: 100%;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.burger input:checked ~ span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
  background: #fff;
}
.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}
.burger input:checked ~ span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 22.5px;
  left: 5px;
  background: #fff;
}
.full-screen-menu {
  z-index: 100;
  position: absolute;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
  width: 50vw;
  top: 0;
  right: 0;
  background: var(--current-primary-color);
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.full-screen-menu > ul {
  list-style: none;
  padding-left: 0;
  width: 80%;
  margin: 0 auto;
  margin-top: 10%;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.full-screen-menu > ul > li {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #FFF;
}
.full-screen-menu > ul > li > a {
  display: inline-block;
  color: #fff;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  padding-bottom: 0.5rem;
}
.full-screen-menu > ul > li > ul {
  list-style: none;
  padding-left: 0;
}
.full-screen-menu > ul > li > ul > li > a {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
}
.full-screen-menu .full-screen-menu-bottom-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(100% - 4rem);
  padding: 0 2rem;
}
.full-screen-menu .full-screen-menu-bottom-bar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-left: 0;
  gap: 3rem;
}
.full-screen-menu .full-screen-menu-bottom-bar ul a {
  color: #fff;
  text-decoration: none;
}
.closed {
  -webkit-transform: translateX(100vw);
  transform: translateX(100vw);
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
body:has(#toolbar-administration) .full-screen-menu-bottom-bar {
  bottom: 120px;
}
body:has(#toolbar-administration) .full-screen-menu {
  min-height: calc(100vh - 53px);
}
@media (max-width: 1050px) {
  .full-screen-menu {
    width: 75%;
  }
}
@media (max-width: 550px) {
  .full-screen-menu {
    width: 100%;
  }
}
/*# sourceMappingURL=s-hamburger.css.map */
