.w-full {
    width: 100%;
}

.w-half {
    width: 50%;
}

.w-fit {
    width: fit-content;
}

.h-full {
    height: 100%;
}

.h-half {
    height: 50%;
}

.h-fit {
    height: fit-content;
}

.flex {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-nowrap {
    display: flex;
    flex-wrap: nowrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.flex-1 {
    flex: 1;
}

.inline-block {
    display: inline-block;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-wrap {
    white-space: prewrap;
    word-break: break-all;
}

.text-nowrap {
    white-space: nowrap;
    word-break: keep-all;
}

.text-ellipsis {
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-ellipsis-2 {
    white-space: pre-wrap;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.scroll-y {
    overflow: hidden;
    overflow-y: auto;
}

.scroll-x {
    overflow: hidden;
    overflow-x: auto;
}

.scroll-both {
    overflow: auto;
}

.scroll-none {
    overflow: hidden;
}

.border-box {
    box-sizing: border-box;
}

.content-box {
    box-sizing: content-box;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}
