@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto.ttf);
  font-weight: 700;
  font-style: normal;
}
* {
  font-family: Roboto;
}
.header_cont {
  display: flex;
  flex-wrap: wrap;
  height: 49px;
}
.header_cont-inner {
  display: flex;
  justify-content: space-between;
  -moz-box-align: center;
  align-items: center;
}

.header_cont-inner .burgerMenu {
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
}
.header_cont-inner .burgerMenu-wrap {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.header_cont-inner .burgerMenu-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
    .header_cont-inner .burgerMenu-wrap {
      margin-right: 4px;
    }

    .header_cont-inner .logo-wrapper {
      margin-left: -20px;
      margin-top: 5px;
    }
}

.header_cont-inner .logo-wrapper {
  width: 150px;
}

.header_cont-inner .logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header_cont-inner .right_cont {
  display: flex;
  gap: 8px;
}
.header_cont-inner .btn_tag {
  background: linear-gradient(90deg, #878787, #000);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.6875rem;
  line-height: 0.8125rem;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s;
  min-height: 24px;
  width: max-content;
  margin: auto;
  border: none;
  border-radius: 4px;
  height: 24px;
  min-height: 24px;
  min-width: 60px;
  margin: 0;
  padding: 0 2px;
  font-weight: 700;
  cursor: pointer;
}
.header_cont-inner .btn_tag span {
  padding-top: 2px;
  font-family: Roboto Condensed, Roboto, sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.046875rem;
  line-height: 1rem;
}
.header_cont-inner .btn_tag .btn_tag-wrap {
  -moz-box-align: center;
  align-items: center;
  display: flex;
  height: 17px;
  -moz-box-pack: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 48px;
}
.header_cont-inner .btn_tag.shop {
  background: linear-gradient(to top, #30B4A9 0%, #30B4A9 100%);
}
.header_cont-inner .btn_tag.shop svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.header_cont-inner .btn_tag.envivo {
  background: linear-gradient(to top, #323F5E 0%, #161B27 100%);
}
.header_cont-inner .btn_tag.envivo svg {
  width: 12px;
  height: 12px;
  margin-right: 0;
}
.header_cont-inner .btn_tag.vix {
  background: linear-gradient(120deg, #D42B5F 5%, #FF5900 50%, #F83B15 90%);
}
.header_cont-inner .btn_tag.vix svg {
  height: 32px;
  position: absolute;
  width: 32px;
}
@media (min-width: 1024px) {
  .header_cont-inner .btn_tag {
    font-size: 0.8125rem;
    line-height: 1rem;
    padding: 2px 4px;
    min-height: 28px;
  }
}
@media (max-width: 768px) {

  .header_cont-inner .btn_tag {
    min-width: 40px;
  }

  .header_cont-inner .btn_tag:not(.vix) svg {
    display: none;
  }
}
.header_menu {
  background: #2e2e2e;
}
.header_menu-inner {
  -moz-box-align: center;
  align-items: center;
  display: flex;
  height: 40px;
  -moz-box-pack: center;
  justify-content: center;
  overflow: hidden;
  padding: 0px;
  width: 100%;
}
.header_menu-inner .nav-menu {
  margin: 0 auto;
  display: flex;
}
.header_menu-inner .nav-menu .btn_header {
  text-decoration: none;
  background: #2e2e2e;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  font-family: "Roboto Condensed", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  height: 100%;
  opacity: 0.5;
  text-transform: uppercase;
  width: 93px;
  z-index: 121131;
  -moz-box-align: center;
  align-items: center;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  margin: auto;
  padding: 4px 8px;
}
.header_menu-inner .nav-menu .btn_header:hover {
  color: white;
  filter: brightness(85%);
  opacity: 1;
}
.header_menu-inner .nav-menu .item-inner {
  display: flex;
}
.header_menu-inner .nav-menu .item-link {
  background: transparent;
  text-decoration: none;
  color: white;
  display: block;
  font-size: 0.75rem;
  line-height: 2.5rem;
  opacity: 0.5;
  padding-left: 8px;
  padding-right: 8px;
  position: relative;
  text-transform: uppercase;
}
.header_menu-inner .nav-menu .item-link:hover {
  background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.14) 100%);
  opacity: 1;
}
.header_menu-inner .nav-menu .item-link:hover::before {
  content: "";
  background: #d2d2d2;
  bottom: 0px;
  height: 2px;
  left: 0px;
  position: absolute;
  width: 100%;
}
@media (max-width: 768px) {
  .header_menu-inner .nav-menu .btn_header {
    margin-right: 20px;
  }
  .header_menu-inner .nav-menu .item-inner {
    overflow-x: auto;
    max-width: 220px;
  }
  .header_menu-inner .nav-menu .item-link {
    line-height: 3.5;
    align-content: center;
    font-size: 0.75rem;
    padding: 0 4px;
  }
}

@media (max-width: 768px) {
  .mobile-hide {
    display: none;
  }
}