/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.hostTopContainer {
  z-index: 10010;
  position: fixed;
  top: 0;
}
.hostTopContainer header {
  height: 80px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-items: center;
  background-color: var(--primary);
}
.hostTopContainer nav {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-items: center;
  background-color: var(--primary-light);
  box-shadow: 0 0.25rem 0.625rem 0 rgba(46, 38, 61, 0.2);
}
.hostTopContainer li[data-menu-node-key=CreateAnnuncio] {
  margin-left: auto;
}
.hostTopContainer li[data-menu-node-key=HostDashboard] {
  margin-left: auto;
}

.hostHeaderContent {
  height: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 160px 300px 1fr;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .hostHeaderContent {
    grid-template-columns: max-content 300px 1fr;
  }
}
@media (max-width: 640px) {
  .hostHeaderContent {
    grid-template-columns: max-content 1fr min-content;
  }
}
@media (max-width: 375px) {
  .hostHeaderContent {
    display: flex;
    justify-content: space-between;
  }
}
.hostHeaderContent > div {
  display: flex;
  height: 3rem;
}
.hostHeaderContent > div:first-of-type {
  justify-self: start;
}
@media (max-width: 375px) {
  .hostHeaderContent > div:first-of-type {
    visibility: hidden;
    display: none;
  }
}
.hostHeaderContent > div:last-of-type {
  justify-self: end;
}
.hostHeaderContent__logoContainer, .hostHeaderContent__actionsContainer {
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--bg-light);
  border-radius: calc(infinity * 1px);
  padding: 0.5rem 1.5rem;
}
.hostHeaderContent__logoContainer {
  width: 100%;
}
.hostHeaderContent__actionsContainer {
  gap: 1rem;
}

@media (max-width: 375px) {
  .accountTopContainer .hostHeaderContent__logoContainer {
    visibility: visible !important;
    width: 70px;
  }
}
.hostNavbarContent {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  height: 50px;
}
.hostNavbarContent--mobile {
  display: none;
}
@media (max-width: 768px) {
  .hostNavbarContent--desktop {
    display: none;
  }
  .hostNavbarContent--mobile {
    display: flex;
  }
}
.hostNavbarContent .hostMenuSubMenuMobile {
  top: 0;
  left: calc(100% + 1.5rem);
}
@media (max-width: 375px) {
  .hostNavbarContent .hostMenuSubMenuMobile {
    top: 100%;
    min-width: 160px;
    left: 1rem;
    box-shadow: 0 0.375rem 1rem 0 rgba(46, 38, 61, 0.22);
  }
}
.hostNavbarContent .menuList__item__link {
  height: 50px;
}

.book {
  position: relative;
  height: 3rem;
}
@media (max-width: 640px) {
  .book {
    width: 100%;
  }
}
.book__btn {
  width: 100%;
  max-width: 400px;
  height: 100%;
  color: var(--fg);
  background-color: var(--bg-light);
  padding: 0.5rem 1.5rem;
  border-radius: calc(infinity * 1px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .book__btn {
    max-width: 300px;
  }
}
@media (max-width: 640px) {
  .book__btn {
    max-width: 200px;
  }
}
@media (max-width: 425px) {
  .book__btn {
    flex-grow: 1;
  }
}
.book__popUp {
  top: calc(100% + 0.5rem);
  width: 400px;
}
@media (max-width: 640px) {
  .book__popUp {
    position: fixed;
    width: auto;
    top: calc(80px + 0.5rem);
    left: 1rem;
    right: 1rem;
  }
}
.book__popUp ul {
  padding-inline: 1rem;
  min-height: unset;
  max-height: 225px;
  overflow-y: auto;
}

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