@media (max-width: 1100px) {
  .top-menu .menu {
    display: none;
  }
}

.mob-menu__header-wrap {
  background-color: #00abbd;
  color: #fff;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  height: 42px;
}
@media (max-width: 1100px) {
  .mob-menu__header-wrap {
    display: flex;
  }
}
.mob-menu__header-txt {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 400;
}
.mob-menu__gamburger {
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.mob-menu__gamburger div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  transition: transform 0.2s;
}
.mob-menu__gamburger div:nth-child(2) {
  top: 7px;
}
.mob-menu__gamburger div:nth-child(3) {
  top: 14px;
}
.show .mob-menu__gamburger div {
  top: -10px;
}
.show .mob-menu__gamburger div:nth-child(2) {
  transform: rotate(45deg);
  top: 9px;
}
.show .mob-menu__gamburger div:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}
.mob-menu__menu-wrap {
  background-color: #606060;
  color: #fff;
  display: none;
}
@media (min-width: 1101px) {
  .mob-menu__menu-wrap {
    display: none !important;
  }
}
.mob-menu__menu-wrap a {
  color: #fff !important;
  font-size: 16px;
  display: flex;
  align-items: center;
  height: 50px;
  padding-inline: 13px;
}
.mob-menu .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0px 5px 10px;
  border-color: transparent transparent transparent #ffffff;
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.mob-menu__btn {
  display: none;
  cursor: pointer;
  position: relative;
}
.mob-menu__btn::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  top: 0;
  height: calc(100% - 1px);
  background-color: #fff;
}
.mob-menu__btn.open .triangle {
  transform: rotate(90deg);
}
.mob-menu li {
  position: relative;
}
.mob-menu li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background-color: #fff;
}
.mob-menu li > ul li {
  padding-left: 46px;
}
.mob-menu li > ul li ul li::before {
  left: -46px;
}
.mob-menu li.menu-item-has-children > div {
  display: flex;
  align-items: center;
}
.mob-menu li.menu-item-has-children > div .mob-menu__btn {
  display: block;
  width: 46px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-menu .sub-menu {
  display: none;
}

/*# sourceMappingURL=mobile-menu.css.map */
