html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

table {
    border-collapse: collapse;
}

#brx-header {
    z-index: 100 !important;
}

#brxe-fpzteq {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: var(--main-menu-height);
}

.auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr);
}

.basis-1\/2 {
    flex-basis: 50%;
}

.basis-1\/3 {
    flex-basis: 33.333333%;
}

.basis-2\/3 {
    flex-basis: 66.666667%;
}

.bg-cwcs-blue {
    background-color: #002c5c;
}

.bg-cwcs-red {
    background-color: #ba1e1f;
}

.bg-stripe {
    background-color: #18ab95;
}

.flex {
    display: flex;
}

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

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

.gap-1 {
    gap: 1rem;
}

.gap-x-1 {
    column-gap: 1rem;
}

.gap-y-1 {
    row-gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.gap-x-2 {
    column-gap: 2rem;
}

.gap-y-2 {
    row-gap: 2rem;
}

.gap-3 {
    gap: 3rem;
}

.gap-x-3 {
    column-gap: 3rem;
}

.gap-y-3 {
    row-gap: 3rem;
}

.gap-4 {
    gap: 4rem;
}

.gap-x-4 {
    column-gap: 4rem;
}

.gap-y-4 {
    row-gap: 4rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grow {
    flex-grow: 1;
}

.grow-0 {
    flex-grow: 0;
}

.list-none {
    list-style-type: none;
}

.mt-8 {
    margin-top: 2rem;
}

.overflow-x-auto {
    overflow-x: auto;
}

.self-normal {
    align-self: normal;
}

.text-black {
    color: #000;
}

.text-cwcs-blue {
    color: #002c5c;
}

.text-cwcs-red {
    color: #ba1e1f;
}

.text-stripe {
    color: #18ab95;
}

.text-white {
    color: #fff;
}

.w-full {
    width: 100%;
}