.w-full {
    width: 100%;
}

.w-0 {
    width: 0px;
}

.h-full {
    height: 100%;
}

.h-0 {
    height: 0px;
}

.h-65px {
    height: 65px;
}

.h-90px {
    height: 90px;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-row {
    flex-direction: row;
}

.gap-1 {
    gap: 1px;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-grow-2 {
    flex-grow: 2;
}

.items-center {
    align-items: center;
}

.items-bottom {
    align-items: flex-end;
}

.grid-content-start {
    align-content: flex-start;
}

.grid-items-end {
    align-items: flex-end;
}

.flex-content-end {
    align-content: flex-end;
}

.flex-col {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.justify-left {
    justify-content: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.static {
    position: static;
}

.fixed {
    position: fixed;
}

.block {
    display: block;
}

.hidden {
    display: none;
}

.inline-block {
    display: inline-block;
}

.pointer {
    cursor: pointer;
}

.opacity-1 {
    opacity: 1;
}

.opacity-05 {
    opacity: 0.5;
}

.opacity-0 {
    opacity: 0;
}

.mb-0 {
    margin-bottom: 0px;
}

.break-all {
    word-break: break-all;
}

.ws-normal {
    white-space: normal;
}

.b-r-1 {
    border-right: 1px solid #000;
}

.b-1 {
    border: 1px solid #000;
}

.transition-200 {
    transition: 0.2s;
}

.transition-400 {
    transition: 0.4s;
}

.transition-2000 {
    transition: 2s;
}

.z-0 {
    z-index: 0;
}

.z-1 {
    z-index: 1;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}