/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.hostContent {
  padding-top: 130px;
  min-height: calc(100svh - 60px);
}

.mainContainer {
  height: 100%;
  width: 100%;
  /*padding: $spacing * 2;

  @include breakpoint("xs") {
  	padding: 0;
  }*/
}

.detailContainer {
  width: 60svw;
  position: fixed;
  height: 100vh;
  top: 0;
  right: 0;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  background-color: var(--bg);
  z-index: 10030;
  box-shadow: 0 0.25rem 0.625rem 0 rgba(46, 38, 61, 0.2);
  transform: translateX(100%);
  transition: transform 0.5s ease;
  overflow: hidden;
  overflow-y: auto;
}
.detailContainer.open {
  transform: translateX(0);
}
.detailContainer__title {
  display: flex;
}
.detailContainer--small {
  width: 33svw;
}
.detailContainer--medium {
  width: 66svw;
}
@media (max-width: 1280px) {
  .detailContainer--medium {
    width: 75svw;
  }
}
@media (max-width: 1024px) {
  .detailContainer--medium {
    width: 90svw;
  }
}
@media (max-width: 768px) {
  .detailContainer--medium {
    width: 100svw;
    border-radius: 0 !important;
  }
}
.detailContainer--large {
  width: 90svw;
}
@media (max-width: 768px) {
  .detailContainer--large {
    width: 100svw;
    border-radius: 0 !important;
  }
}

.backgroundContainer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 0;
  left: 0;
  z-index: 10020;
  background-color: transparent;
  opacity: 0;
  transition: background-color 0.5s ease;
}
.backgroundContainer.active {
  background-color: black;
  width: 100%;
  opacity: 0.2;
}

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