.psychedelic-type-container {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-bottom: 4rem;
}

.psychedelic-type-container .subheading {
  margin-bottom: 0;
}

.type-img {
  max-width: 32px;
  border-radius: 5px;
}

.create-first-container {
  display: none;
}

.create-first-container.show {
  display: block;
}

.create-first-text {
  margin: 0 0 1.6rem 0;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: justify;
}

@media (hover: hover) and (pointer: fine) {
  .hero-cta.create-first-cta:hover {
    background-color: #fff;
    color: #000;
    box-shadow: inset 0 0 0 2px #ff6f61;
  }
}

.filters-toggle.hidden {
  display: none;
}

.filters-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 44px;
  min-width: 44px;
  padding: 1rem;
  border: none;
  color: #555;
  background-color: #eef1ef;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.filters-toggle ion-icon {
  font-size: 2.8rem;
  color: #555;
}

.filters:has(.filters-panel:not(.hidden)) .filters-toggle {
  background-color: #ff6f61;
}

@media (hover: hover) and (pointer: fine) {
  .filters-toggle:hover {
    transform: scale(1.03);
    transition: all 0.3s;
  }
}

.filters-toggle:active {
  transform: scale(0.97);
  transition: all 0.3s;
}

.filters-count {
  font-family: inherit;
  font-size: 1.6rem;
  color: #555;
}

.filters-count:empty {
  display: none;
}

.filters-panel.hidden {
  max-height: 0;
}

.filters-panel {
  display: flex;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.filters-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2.4rem 0rem 2px 0rem;
}

.filter-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.filters-title {
  font-family: inherit;
  font-weight: 500;
  font-size: 1.8rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  gap: 1rem;
}

.btn-filter {
  display: inline;
  padding: 1rem 2rem;
  min-height: 44px;
  min-width: 80px;
  background-color: transparent;
  border: none;
  color: #555;
  border-radius: 9999px;
  box-shadow: inset 0 0 0 2px #ff6f61;
  font-family: inherit;
  font-size: 1.6rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn-filter.active {
  background-color: #ff6f61;
}

.btn-filter:active {
  transform: scale(0.97);
  transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .btn-filter:hover:not(.active) {
    background-color: #eef1ef;
  }
}

.filters-container > .filter-buttons:last-child {
  padding-top: 1.2rem;
}

.filter-apply,
.filter-clear {
  min-height: 44px;
  min-width: 80px;
  border: none;
  border-radius: 5px;
  background-color: #ff6f61;
  color: #555;
  box-shadow: inset 0 0 0 2px #ff6f61;
  font-family: inherit;
  font-weight: 500;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-apply:active,
.filter-clear:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .filter-apply:hover,
  .filter-clear:hover {
    background-color: #fff;
  }
}

.type-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  padding-top: 2.4rem;
}

.item-container {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #eef1ef;
  border-radius: 5px;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .item-container:hover {
    transform: scale(1.03);
    transition: all 0.3s;
  }
}

.item-container:active {
  transform: scale(0.97);
  transition: all 0.3s;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.4rem;
  margin-bottom: 4rem;
}

.header-title-container,
.header-rating-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.header-rating-container {
  gap: 2.4rem;
  flex-grow: 1;
}

.rating-image {
  max-width: 24px;
}

.rating-title,
.rating-value {
  font-size: 1.8rem;
}

.rating-value {
  white-space: nowrap;
}

.rating-indicator {
  appearance: none;
  height: 1.2rem;
  width: 100%;
  border-radius: 1.2rem;
  outline: none;
  opacity: 1;
  cursor: default;
  flex-grow: 1;
}

.rating-indicator::-webkit-slider-thumb {
  appearance: none;
  outline: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  width: 0;
  height: 0;
}

.rating-indicator::-moz-range-thumb {
  background: transparent;
  border: none;
  width: 0;
  height: 0;
}

.rating-indicator::-ms-thumb {
  background: transparent;
  border: none;
  width: 0;
  height: 0;
}

.rating-indicator::-moz-focus-outer {
  border: 0;
}

.body-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 1.4rem;
}

.body-entry-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.body-entry-title,
.body-entry-value {
  font-size: 1.6rem;
  line-height: 1.45;
}

.loading-type-spinner {
  width: 32px;
  height: 32px;
  border: 4px solid #eef1ef;
  border-top: 4px solid #ff6f61;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 3.2rem auto;
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.loading-type-spinner.show {
  display: block;
  opacity: 1;
}
