.header {
  position: relative;
}
.header .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 10px 0;
  padding: 0 50px;
  gap: 25px;
}
.header .container .menu-item.search-button {
  display: none;
}
.header .btn-container {
  width: 100%;
  position: relative;
  background-color: transparent;
  padding: 10px;
  display: none;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  top: 65px;
  z-index: 9;
  order: 4;
  margin-top: -50px;
}
.header .btn-container .btn_primary {
  width: 100%;
  position: relative;
  padding: 0.7rem 1rem;
  text-align: center;
  font-size: 14px;
  box-shadow: 0px 12px 20px -14px #383838;
  z-index: 9999;
}
.header.fixed .child,
.header.fixed .container {
  position: fixed !important;
}
.header.fixed .child {
  box-shadow: 0px 10px 30px -25px #383838;
}
.header.fixed .slogan {
  display: none;
}
.header.mobile-header .child,
.header.mobile-header .container {
  position: relative;
}
.header.mobile-header .container {
  margin-bottom: 0 !important;
}
.header.fixed .child, .header.mobile-header .child {
  z-index: 100;
  background: #fff;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  top: 0;
  max-width: unset;
}
.header.fixed .container, .header.mobile-header .container {
  width: 100%;
  max-width: 1920px;
  top: 0;
  margin-top: 0;
  padding: 20px 50px;
  background: #fff;
}
.header.fixed #mobile-announce, .header.mobile-header #mobile-announce {
  display: none;
}

.slogan {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  color: #7b87a3;
  border-bottom: 1px solid #d9deea;
}

.logo {
  align-items: flex-start;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.logo .logo-img {
  width: 100%;
  height: auto;
  min-width: 180px;
  max-width: 220px;
}
.logo .logo-img img {
  width: 100% !important;
  max-width: 100%;
  height: 100%;
}
.logo .logo-phrase {
  font-size: 12px;
  color: #7b87a3;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.menu-items {
  display: flex;
  align-items: center;
  gap: 0 40px;
  margin: 13px 0;
}

.menu-item {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-item#hamburguer-button {
  font-weight: bold;
  color: #e83687;
}
.menu-item#hamburguer-button span {
  font-size: 18px;
}
.menu-item > a {
  display: flex;
  color: #333333;
  align-items: center;
  font-size: 18px;
}
.menu-item > span,
.menu-item > a > span {
  position: relative;
  font-size: 18px;
}
.menu-item:not(.menu-item-2) > span::after,
.menu-item:not(.menu-item-2) > a > span::after {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #e83687;
  left: 0;
  bottom: -5px;
  position: absolute;
  transform-origin: left;
  transition: width 0.5s ease-in-out;
}
.menu-item:not(.menu-item-2):hover > span::after,
.menu-item:not(.menu-item-2):hover > a > span::after {
  width: 100%;
}
.menu-item.menu-item-2 > span,
.menu-item.menu-item-2 > a > span {
  padding-right: 20px;
}
.menu-item.menu-item-2 > span::after,
.menu-item.menu-item-2 > a > span::after {
  border: 1px solid #333333;
  border-width: 2px 2px 0 0;
  content: "";
  height: 7px;
  pointer-events: none;
  position: absolute;
  right: 5px;
  top: 5px;
  transform: rotate(135deg);
  transition: all 0.8s;
  width: 7px;
}
.menu-item.menu-item-2:hover > span::after,
.menu-item.menu-item-2:hover > a > span::after {
  transform: rotate(-45deg);
  top: 9px;
}

.menu-icon {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.menu-icon > img {
  width: 30px;
  height: 30px;
}
.menu-icon .notification {
  width: -moz-min-content;
  width: min-content;
  height: 18px;
  display: flex;
  padding: 3px 5px;
  font-weight: bold;
  font-size: 12px;
  color: #ffffff;
  border-radius: 20px;
  align-items: center;
  line-height: 12px;
  justify-content: center;
  background-color: #e83687;
  top: 0;
  right: 0;
  position: absolute;
}

.menu-icon:not(.menu-icon.hamburguer) {
  margin: 0 10px 0 0;
}

/*Hamburguer Menu*/
.hamburguer {
  height: 28px;
}
.hamburguer .line {
  height: 4px;
  width: 28px;
  border-radius: 8px;
  position: relative;
  background-color: #e83687;
  transition: transform 0.5s ease, height 0.5s ease, width 0.5s ease;
}
.hamburguer .line::after, .hamburguer .line::before {
  height: inherit;
  width: inherit;
  border-radius: 8px;
  background-color: #e83687;
  position: absolute;
  transition: transform 0.5s ease, height 0.2s ease, width 0.2s ease;
}
.hamburguer .line::before {
  content: "";
  top: -8px;
}
.hamburguer .line::after {
  content: "";
  bottom: -8px;
}
.hamburguer.active .line {
  transform: rotate(45deg);
}
.hamburguer.active .line::before {
  content: "";
  top: 0px;
  transform: rotate(90deg);
}
.hamburguer.active .line::after {
  content: "";
  width: 0px;
  height: 0px;
  bottom: -8px;
}

#mobile-announce {
  display: none;
}

.filter-header {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  gap: 10px;
  width: 100%;
}
.filter-header .input-group {
  margin: 0;
  height: 100%;
}
.filter-header .input-group.togheter .input-wrapper:first-child input:not(input[type=checkbox]):not(input[type=radio]):not(input[type=range]):not(.options-searcher):not(.multi-select) {
  border-width: 1px 0px 1px 1px !important;
  border-radius: 4px 0 0 4px !important;
}
.filter-header .input-group:last-child {
  justify-content: center;
}
.filter-header .input-wrapper {
  width: 100%;
  margin: 0 !important;
}
.filter-header .special-input {
  width: 100%;
  max-width: 200px;
}
.filter-header .special-input::after {
  border: 1px solid #ffffff !important;
  border-width: 2px 2px 0 0 !important;
  content: "" !important;
  height: 8px !important;
  pointer-events: none !important;
  position: absolute !important;
  right: 8px !important;
  top: 8px !important;
  transform: rotate(135deg) !important;
  transition: all 0.8s ease-in-out !important;
  width: 8px !important;
}
.filter-header .special-input.active::after {
  transform: rotate(-45deg) !important;
  top: 12px !important;
}
.filter-header .special-input .custom-select {
  background-color: #e83687;
  color: #ffffff !important;
  border: none !important;
  padding: 4px 20px 4px 6px;
  width: 100%;
  text-align: center;
}
.filter-header .special-input .options-select {
  top: 28px;
  z-index: 9;
}
.filter-header #filter-button {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0 10px;
  border: 1px solid #7b87a3;
  border-width: 1px 1px 1px 0px;
  border-radius: 0px 4px 4px 0px;
}
.filter-header #filter-button-2 {
  width: 100%;
  max-width: 8rem;
  display: none;
  align-items: center;
  justify-content: center;
  height: auto;
}

@media screen and (max-width: 1250px) {
  .header .container {
    flex-wrap: wrap;
    align-items: center;
  }
  .header.fixed .container, .header.mobile-header .container {
    gap: 0;
  }
  .header.fixed .container .menu-item.search-button, .header.mobile-header .container .menu-item.search-button {
    display: flex;
  }
  .header.fixed .filter-header, .header.mobile-header .filter-header {
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s;
    height: auto;
    max-height: 0;
    margin-top: 0;
  }
  .header.fixed .filter-header.show, .header.mobile-header .filter-header.show {
    max-height: 300px;
    margin-top: 10px;
  }
  .logo {
    align-items: center;
    order: 0;
  }
  .-menu {
    order: 1;
    width: -moz-fit-content;
    width: fit-content;
  }
  .menu-items {
    gap: 0 10px;
    margin: 0;
  }
  #mobile-announce {
    order: 2;
  }
  .filter-header {
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .header .container {
    margin: 0;
    padding: 10px 50px;
    gap: 0;
  }
  .header .container .menu-item.search-button {
    display: flex;
  }
  .filter-header {
    overflow: hidden;
    max-height: 0;
    transition: all 0.5s;
  }
  .filter-header.show {
    max-height: 300px;
    margin-top: 10px;
  }
  .filter-header #filter-button {
    height: 56px;
  }
  .filter-header .button {
    width: 100%;
  }
  .filter-header .button #btn-submit-filter {
    width: 100%;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .filter-header > .input-group:not(.input-group.togheter) {
    flex-direction: row !important;
    flex-wrap: wrap;
  }
  .filter-header > .input-group:not(.input-group.togheter) .input-group {
    height: unset;
    width: calc(50% - 5px) !important;
  }
  .filter-header > .input-group:not(.input-group.togheter) .input-group.togheter {
    width: calc(50% - 5px) !important;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 640px) {
  .logo {
    max-width: 170px;
  }
  .logo .logo-img {
    min-width: unset;
  }
  .header .container {
    padding: 0 20px;
    gap: 0;
    justify-content: center;
  }
  .header.fixed .container, .header.mobile-header .container {
    padding: 5px 10px;
  }
  .header.fixed .btn-container {
    display: flex;
  }
  .filter-header {
    flex-direction: column;
    transition: all 0.5s;
    height: auto;
    max-height: 0;
    margin-top: 0;
  }
  .filter-header.show {
    max-height: 300px;
    margin-top: 10px;
  }
  .filter-header .button {
    width: 100%;
  }
  .filter-header .button #btn-submit-filter {
    width: 100%;
  }
  .filter-header .input-group:last-child:not(.input-group.togheter) {
    align-items: center;
    justify-content: center;
    height: -moz-fit-content;
    height: fit-content;
  }
  .-menu {
    display: flex;
    justify-content: flex-end;
    background-color: #fff;
    padding: 0.5rem 0 0.5rem 0.5rem;
    width: 100%;
    width: calc(100% - 170px);
    position: relative;
  }
  .-menu .menu-items {
    gap: 0 15px;
  }
  .-menu .menu-item > span,
  .-menu .menu-item > a > span {
    display: none;
  }
  .-menu .menu-icon {
    width: 25px;
  }
  .-menu .menu-icon:not(.menu-icon.hamburguer) {
    margin: 0;
  }
  .-menu .menu-icon img {
    width: 25px;
    height: 25px;
  }
  .-menu .menu-icon.hamburguer {
    width: 25px;
  }
  .-menu .menu-icon.hamburguer .line {
    width: 25px;
  }
  #hamburguer-button > span {
    display: none;
  }
  #mobile-announce {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .filter-header .input-group.input-group-container {
    flex-flow: row !important;
    flex-wrap: wrap !important;
    z-index: 99;
  }
  .filter-header .input-group .input-group {
    width: 100% !important;
    height: auto !important;
  }
  .filter-header .input-group .input-group.togheter {
    width: 100% !important;
    max-width: calc(100% - 8rem - 10px) !important;
    margin-right: 0 !important;
    flex-flow: row !important;
    flex-wrap: wrap !important;
  }
  .filter-header .input-group .input-group.togheter .input-wrapper:first-child input:not(input[type=checkbox]):not(input[type=radio]):not(input[type=range]):not(.options-searcher):not(.multi-select) {
    border-width: 1px !important;
    border-radius: 4px !important;
  }
  .filter-header #filter-button {
    display: none !important;
  }
  .filter-header .button {
    width: 100% !important;
    max-width: 8rem !important;
  }
  .filter-header #select-categorias-container label {
    display: none !important;
  }
  .filter-header #select-categorias-container .special-input {
    max-width: calc(100% - 8rem - 10px) !important;
  }
  .filter-header #select-categorias-container #filter-button-2 {
    display: flex !important;
  }
}
