/* Element */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: unset;
  background: 0 0;
}

img {
  user-drag: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
}

.absolute-center,
.absolute-vertical {
  position: absolute;
}

.absolute-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.absolute-center-vertical {
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.overflow-visible {
  overflow: visible;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.display-block {
  display: block;
}

/* Display Flex */
.display-flex {
  display: flex;
}

.flex-direction-column {
  flex-direction: column;
}

.align-items-start {
  align-items: start;
}

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

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

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

.align-self-center {
  align-self: center;
}

.flex-auto {
  flex: auto;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow-1 {
  flex-grow: 1;
}

/* Margin */
.margin-auto {
  margin: auto;
}

.margin-0 {
  margin: 0 !important
}

.padding-0 {
  padding: 0 !important;
}

.margin-top-0 {
  margin-top: 0 !important;
}

.fit-content {
  width: fit-content;
}

.object-fit-cover {
  object-fit: cover;
}

.height-unset {
  height: unset !important;
}

.cursor-pointer {
  cursor: pointer;
}

.width-max {
  width: 100%;
}

.height-max {
  height: 100%;
}

/* Background */
.background-image {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.background-image.width {
  background-size: 100% auto;
}

.background-cover-center {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.background-black {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  background-color: black;
}

.background-gradient-bottom,
.background-gradient-left-right,
.background-gradient-top-bottom {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 2;
}

.background-gradient-bottom {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 50%);
}

.background-gradient-left-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
}

.background-gradient-top-bottom {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Truncation */
.truncate-1,
.truncate-2,
.truncate-3,
.truncate-4,
.truncate-5,
.truncate-6,
.truncate-8 {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.truncate-1 {
  -webkit-line-clamp: 1;
}

.truncate-2 {
  -webkit-line-clamp: 2;
}

.truncate-3 {
  -webkit-line-clamp: 3;
}

.truncate-4 {
  -webkit-line-clamp: 4;
}

.truncate-5 {
  -webkit-line-clamp: 5;
}

.truncate-6 {
  -webkit-line-clamp: 6;
}

.truncate-8 {
  -webkit-line-clamp: 8;
}