@font-face {
  font-family: MontblancType;
  src: url("../fonts/MontblancType-Regular.woff") format("woff");
}

@font-face {
  font-family: MontblancType;
  src: url("../fonts/MontblancType-Bold.woff") format("woff");
  font-weight: 700;
}

.menulist-dropdown-wrapper {
  height: 2.5rem;
  position: relative;
}

.menulist-dropdown-wrapper:after {
  content: "";
  z-index: 2;
  background-color: rgba(0, 0, 0, .15);
  width: 100vw;
  height: 0;
  transition: background-color .24s linear .4s;
  display: block;
  position: fixed;
  top: 0;
}

.menulist-dropdown-wrapper.open:after {
  background-color: rgba(0, 0, 0, .15);
  height: 100vh;
}

.menulist-dropdown-wrapper.open .menulist-dropdown-toggle {
  background-image: url("../../../images/icons/up.svg");
  background-position: right 1.25rem center;
  background-repeat: no-repeat;
  background-size: .6875rem;
}

@media (min-width: 768px) {
  .menulist-dropdown-wrapper.open .menulist-dropdown-toggle {
    background-position: right 3.75rem center;
  }
}

.menulist-dropdown-wrapper .menulist-dropdown-toggle {
  z-index: 3;
  letter-spacing: .03125rem;
  text-align: left;
  color: #272727;
  background-color: #fff;
  background-image: url("../../../images/icons/down.svg");
  background-position: right 1.25rem center;
  background-repeat: no-repeat;
  background-size: .6875rem;
  border: none;
  border-bottom: 1px solid #f2f2f2;
  width: 100%;
  height: 2.5rem;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  line-height: 1.25rem;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 768px) {
  .menulist-dropdown-wrapper .menulist-dropdown-toggle {
    background-position: right 3.75rem center;
    padding: .625rem 3.75rem;
  }
}

@media (min-width: 1025px) {
  .menulist-dropdown-wrapper .menulist-dropdown-toggle {
    display: none;
  }
}

.menulist-dropdown-wrapper .menulist-dropdown-content-wrapper {
  z-index: 4;
  float: left;
  text-align: left;
  background-color: #fff;
  min-width: 100%;
  height: 0;
  list-style: none;
  transition: height 2s ease-in-out;
  position: absolute;
  top: 2.4rem;
  left: 0;
  overflow: hidden;
}

.menulist-dropdown-wrapper .menulist-dropdown-content-wrapper.show {
  height: auto;
  padding: 1.125rem 1.25rem 1.75rem;
}

@media (min-width: 768px) {
  .menulist-dropdown-wrapper .menulist-dropdown-content-wrapper.show {
    padding: 1.25rem 3.75rem;
  }
}

.menulist-dropdown-wrapper .menulist-dropdown-content-wrapper .menulist-title.active {
  font-weight: bold;
}

.menulist-dropdown-wrapper .menulist-dropdown-content-wrapper .submenulist-wrapper {
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
  margin-left: 1.875rem;
  display: none;
}

.menulist-dropdown-wrapper .menulist-dropdown-content-wrapper .submenulist-wrapper.show {
  display: block;
}

@media (min-width: 1025px) {
  .menulist-dropdown-wrapper .menulist-dropdown-content-wrapper {
    z-index: initial;
    top: unset;
    left: unset;
    background-color: rgba(0, 0, 0, 0);
    height: auto;
    display: block;
    position: relative;
  }
}

.menulist-dropdown-wrapper .menulist-dropdown-content-wrapper .menulist-item {
  flex-direction: column;
  gap: .625rem;
  display: flex;
}

.menulist-dropdown-wrapper a {
  letter-spacing: .03125rem;
  text-transform: capitalize;
  font-size: .875rem;
  font-style: normal;
  line-height: 1.25rem;
  text-decoration: none;
}

.menulist-dropdown-wrapper a.active {
  font-weight: 700;
}

@media (min-width: 1025px) {
  .menulist-dropdown-wrapper {
    margin: 0 3.75rem;
  }
}


/*# sourceMappingURL=menuListToDropdown.css.map*/