.container {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1.5rem;
	box-sizing: border-box;
}

.grid {
	display: grid;
}

items-end {
  align-items: end;
}

.max-width-min-content {
  max-width: min-content;
}

.grid-3-columns {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;

  @media only screen and (min-width: 480px) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.items-centered {
  align-items: center;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.grid-2-columns {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;

  @media only screen and (min-width: 480px) {
 	 grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card-wrapper {
  max-height: 400px;
  overflow-y: auto;

  &::-webkit-scrollbar {
    width: 0px;
  }
}

.text-overflow {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.full-screen {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 50;
}

.centered-layout {
  display: flex;
  align-items: center;
  justify-content: center;
}
