.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-no-wrap {
    flex-wrap: nowrap;
}

.flex-1 {
    flex: 1;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 12px;
}

.gap-3 {
    gap: 16px;
}

.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;
}

.mb-1 {
    margin-bottom: 40px;
}
.mb-2 {
    margin-bottom: 32px;
}
.mb-3 {
    margin-bottom: 24px;
}

.mt-1 {
    margin-top: 40px;
}
.mt-2 {
    margin-top: 32px;
}
.mt-3 {
    margin-top: 24px;
}

.text-underline {
    text-decoration: underline;
}

.nowrap {
    white-space: nowrap;
}

.cursor-pointer {
    cursor: pointer;
}

.external-link {
    color: #125FCA;
    font-weight: 600;
    text-decoration: underline;
}
