.flex {
    display: flex;
}

.horizontal {
    flex-direction: row;    
}

.vertical {
    flex-direction: column;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-evenly {
    justify-content: space-evenly;
}

.justify-between {
    justify-content: space-between;
}

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.no-wrap {
    white-space: nowrap;
    overflow: hidden;
}

.no-shrink {
    overflow: hidden;
    flex-shrink: 0;
}

.fullwidth {
    width: 100%;
}

.fullheight {
    height: 100%;
}

.overflow-scroll {
    overflow: scroll;
}

.overflow-hidden {
    overflow: hidden;
}

.top {
    top: 0;
}

.left {
    left: 0;
}

.bottom {
    bottom: 0;
}

.right {
    right: 0;
}

.absolute {
    position: absolute;
}

.hidden {
    visibility: hidden;
    opacity: 0;
}

.nodisplay {
    display: none;
}

.gap {
    gap: var(--GLOBAL-default-gap-small);
}

.border-radius {
    border-radius: var(--GLOBAL-default-border-radius-small);
}

.padding {
    padding: var(--GLOBAL-default-padding-small);
}

.no-pointer {
    pointer-events: none;
}

.margin {
    margin: var(--GLOBAL-default-margin-small);
}

.margin-top-auto {
    margin-top: auto;
}

.margin-right-auto {
    margin-right: auto;
}

.margin-bottom-auto {
    margin-bottom: auto;
}

.margin-left-auto {
    margin-left: auto;
}

.text-center {
    text-align: center;
}

.link:hover, .clickable:hover {
    cursor: pointer;
}

.no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.flex-grow {
    flex-grow: 1;
}