.anim-height {
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	height: auto;
	max-height: 200px;
  }

  .anim-height.open {
	max-height: 1000px;
  }

  .anim-height .screen {
	background: rgb(255, 255, 255);
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 2%, rgba(255, 255, 255, 0) 25%);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: opacity 0.3s ease-out;
	opacity: 1;
  }

  .anim-height .screen.hide {
	opacity: 0;
  }

  button {
	display: inline-block;
  }

  button.hide {
	display: none;
  }
  .icons{
	  display: flex;
	  gap: 10px;
  }
  .icons > span{
		display: flex;
		align-items: center;
		gap: 5px;
	}
  .icon {
	  height: 1em;
	  width: 1em;
  }
  .w-8{
	  font-size: .8em
  }
  .itemWrap{
	  margin-bottom: 20px;
  }
  .nopad{
	  padding: 0;
  }