:root {
    --stz-blue: #0d6efd;
    --stz-indigo: #6610f2;
    --stz-purple: #6f42c1;
    --stz-pink: #d63384;
    --stz-red: #dc3545;
    --stz-orange: #fd7e14;
    --stz-yellow: #ffc107;
    --stz-green: #198754;
    --stz-teal: #20c997;
    --stz-cyan: #0dcaf0;
    --stz-white: #fff;
    --stz-gray: #6c757d;
    --stz-gray-dark: #343a40;
    --stz-primary: #0d6efd;
    --stz-secondary: #6c757d;
    --stz-success: #198754;
    --stz-info: #0dcaf0;
    --stz-warning: #ffc107;
    --stz-danger: #dc3545;
    --stz-light: #f8f9fa;
    --stz-dark: #212529;
}

/* bg  */
.stz-bg-info {
    background-color: var(--stz-info);
}

.stz-bg-success {
    background-color: var(--stz-success);
}

.stz-bg-danger {
    background-color: var(--stz-danger);
}

.stz-bg-warning {
    background-color: var(--stz-warning);
}

.stz-bg-light {
    background-color: var(--stz-light);
}

.stz-bg-dark {
    background-color: var(--stz-dark);
}

/* text-color */
.stz-text-info {
    color: var(--stz-info);
}

.stz-text-success {
    color: var(--stz-success);
}

.stz-text-danger {
    color: var(--stz-danger);
}

.stz-text-warning {
    color: var(--stz-warning);
}

.stz-text-light {
    color: var(--stz-light);
}

.stz-text-dark {
    color: var(--stz-dark);
}

/* // page item  */
.stz-page-item{
    width: fit-content;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
}

.stz-page-item:active,.stz-page-item:hover{
    outline: none;
    border: none;
}

/* // page link  */
.stz-page-link{
    color: white;
    padding: 10px;
    text-decoration: none;
}

/* // table  */
.stz-table{
    width: 100%;
}
.stz-table thead,tbody {
    max-width: 100%;
}

.stz-table tr {
    display: grid;
    grid-auto-flow: column;
    padding: 15px;
}

.stz-table thead tr {
    border-bottom: 1px solid gray;
}
.stz-table thead th {
    border-left: 1px solid gray;
}
/* font  */
.stz-fs-sm {
    font-size: 0.6rem;
}

.stz-fs-md {
    font-size: 0.8rem;
}

.stz-fs-lg {
    font-size: 1rem;
}



/* border-color */
.stz-bc-info {
    border-color: var(--stz-info);
}

.stz-bc-success {
    border-color: var(--stz-success);
}

.stz-bc-danger {
    border-color: var(--stz-danger);
}

.stz-bc-warning {
    border-color: var(--stz-warning);
}

.stz-bc-light {
    border-color: var(--stz-light);
}

.stz-bc-dark {
    border-color: var(--stz-dark);
}


/* m */
.stz-m-1 {
    margin: 0.5rem;
}

.stz-m-2 {
    margin: 1rem;
}

.stz-m-3 {
    margin: 1.5rem;
}

/* mt */
.stz-mt-0-5 {
    margin-top: 0.25rem;
}

.stz-mt-1 {
    margin-top: 0.5rem;
}

.stz-mt-2 {
    margin-top: 1rem;
}

/* mb */
.stz-mb-1 {
    margin-bottom: 0.5rem;
}

.stz-mb-2 {
    margin-bottom: 1rem;
}

/* ml  */
.stz-ml-1 {
    margin-left: 0.5rem;
}

.stz-ml-2 {
    margin-left: 1rem;
}

/* mr */
.stz-mr-1 {
    margin-right: 0.5rem;
}

.stz-mr-2 {
    margin-right: 1rem;
}

/* flex  */
.stz-flex {
    display: flex;
}

.stz-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stz-flex-row {
    flex-direction: row;
}

.stz-flex-column {
    flex-direction: column;
}

.stz-flex-wrap {
    flex-wrap: wrap;
}

.stz-justify-content-center {
    justify-content: center;
}

.stz-justify-content-start {
    justify-content: start;
}

.stz-justify-content-end {
    justify-content: end;
}

.stz-align-items-center {
    align-items: center;
}

.stz-align-items-start {
    align-items: start;
}

.stz-align-items-end {
    align-items: end;
}



/* font weight */
.stz-fw-bold {
    font-weight: 800;
}



/* spinner sm */
.stz-spinner-sm {
    width: 1rem;
    height: 1rem;
    border-radius: 50rem;
    border: 1px solid transparent;
    border-bottom: 1px solid #fff;
    animation: spinner 0.8s infinite;
}

/* spinner lg */
.stz-spinner-lg {
    width: 2rem;
    height: 2rem;
    border-radius: 50rem;
    border: 1px solid transparent;
    border-bottom: 1px solid #fff;
    animation: spinner 0.8s infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}