/*!********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./components/static/BurgerMenu/style.css ***!
  \********************************************************************************************************************************************************************************************/
/**
 * Custom Media Queries
 * Works like Custom Properties, except for media queries.
 *
 * @link: https://drafts.csswg.org/mediaqueries-5/#custom-mq
 * @link: https://github.com/postcss/postcss-custom-media
 **/

/* Min-Width */

/* Customize based on project */

/* Max-Width */

/* Customize based on project */

/* Min-Max-Width */

[name='BurgerMenu'] {
  width: 40px;
  height: 28px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}

@media screen and (width >= 1024px) {

[name='BurgerMenu'] {
    display: none;
}
  }

[name='BurgerMenu'] span {
    background-color: var(--clr-white);
    position: absolute;
    border-radius: 2px;
    transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
    width: 100%;
    height: 4px;
    transition-duration: 500ms;
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }

[name='BurgerMenu'] span:nth-child(1) {
    top: 0;
    left: 0;
  }

[name='BurgerMenu'] span:nth-child(2) {
    top: 12px;
    left: 0;
    opacity: 1;
  }

[name='BurgerMenu'] span:nth-child(3) {
    bottom: 0;
    left: 0;
  }

.open[name='BurgerMenu'] span {
    opacity: 0;
  }

.open[name='BurgerMenu'] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2729%27 height=%2729%27 viewBox=%270 0 29 29%27 fill=%27none%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.75531 22.178L11.1563 22.178L14.8643 18.5049L18.5724 22.178L23.9734 22.178H25.4586L18.4374 15.223L25.7287 8.00049H18.8425L14.8643 11.9411L10.8862 8.00049H4L11.2913 15.223L4.27005 22.178H5.75531Z%27 fill=%27white%27/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

.open[name='BurgerMenu'] span:nth-child(1) {
    transform: rotate(45deg);
    top: 13px;
  }

.open[name='BurgerMenu'] span:nth-child(2) {
    opacity: 0;
  }

.open[name='BurgerMenu'] span:nth-child(3) {
    transform: rotate(-45deg);
    top: 13px;
  }


/*# sourceMappingURL=style.min.css.map*/