.border-b {
    border-bottom-width: 1px;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.justify-center {
    -webkit-box-pack: center;
    justify-content: center;
}
.items-center {
    -webkit-box-align: center;
    align-items: center;
}
.flex-grow {
    -webkit-box-flex: 1;
    flex-grow: 1;
}
.flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}
.flex {
    display: -webkit-box;
    display: flex;
}
.self-end {
    align-self: flex-end;
}

.w-0 {
    width: 0;
}

.w-1 {
    width: 0.25rem;
}

.w-2 {
    width: 0.5rem;
}

.w-3 {
    width: 0.75rem;
}

.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-16 {
    width: 4rem;
}

.w-20 {
    width: 5rem;
}

.w-24 {
    width: 6rem;
}

.w-32 {
    width: 8rem;
}

.w-40 {
    width: 10rem;
}

.w-48 {
    width: 12rem;
}

.w-56 {
    width: 14rem;
}

.w-64 {
    width: 16rem;
}
.overflow-y-scroll {
    overflow-y: scroll;
}
