/* color */
.bg-white {
    background: white;
}

.text-white {
    color: white;
}

.bg-12ba6c {
    background: #12ba6c;
}

.bg-f04 {
    background: rgba(255, 255, 255, 0.4) !important;
}

.m-0 {
    margin: 0px !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mt-06 {
    margin-top: 0.6rem;
}

.my-3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.border-r-full {
    border-radius: 100%;
}

.mt-1 {
    margin-top: 1.5rem;
}

.mr-\[5px\] {
    margin-right: 5px;
}

.mr-\[10px\] {
    margin-right: 10px;
}

.font-bold {
    font-weight: 700;
}

/* Tailwind */
.w-100 {
    width: 100% !important;
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.d-none {
    display: none;
}

.flex-column {
    flex-direction: column;
}

.rtl {
    direction: rtl;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.items-center {
    align-items: center;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.h-100 {
    height: 100%;
}

.h-50 {
    height: 50%;
}

.w-\[25px\] {
    width: 25px;
}

.w-\[50px\] {
    width: 50px;
}

.w-\[235px\] {
    width: 235px;
}

.h-\[50px\] {
    height: 50px;
}

.h-\[45px\] {
    height: 45px;
}

.rounded-xl {
    border-radius: 0.75rem;
    /* 12px */
}

.select-none {
    user-select: none;
}

.cursor-pointer {
    cursor: pointer;
}

.overflow-hidden {
    overflow: hidden;
}

.text-sm {
    font-size: 0.9rem;
}

.text-lg {
    font-size: 1rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.tracking-wider {
    letter-spacing: 0.05em;
}