* {
    box-sizing: border-box;
}

.responsive-flex-direction-row {
    flex-direction: row;
}

.responsive-flex-direction-row-inverse {
    flex-direction: row;
}

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

 

.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}
.flex-3 {
    flex: 3;
}

.gap {
    gap: 32px;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}

.gap-32 {
    gap: 32px;
}

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-items-center {
    justify-items: center;
}

.space-between {
    justify-content: space-between;
}

.space-evenly {
    justify-content: space-evenly;
}

.hv-centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-child-margins > * {
    margin: 0px;
}

.overflow-auto {
    overflow: auto;
}

.vertical-divider {
    
    width: 1px;
    height: auto;
    background-color: #c4c8cc;
    
}

.icon-32 {
    width: 32px;
    height: 32px;
}

.gap-64 {
    gap: 64px;
}

.desktop-only-flex {
    display: flex;
}

.mobile-only-flex {
    display: none;
}

@media (max-width: 640px) {
    .responsive-flex-direction-row {
        flex-direction: column;
    }

    .responsive-flex-direction-row-inverse {
        flex-direction: column-reverse;
    }

    .gap {
        gap: 16px;
    }

    .desktop-only-flex {
        display: none;
    }

    .mobile-only-flex {
        display: flex;
    }
}