:root {
    --stz-site-color: #f7ae44;
    --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: #ffff;
    --stz-dark: #212529;
    --stz-muted: #909090;
    --stz-nili: #262626;
}

/* height */
.stz-h-100 {
    height: 100% !important;
}

/* width  */
.stz-w-100 {
    width: 100% !important;
}

.stz-w-90 {
    width: 90% !important;
}

.stz-w-80 {
    width: 80% !important;
}

.stz-w-60 {
    width: 60% !important;
}

.stz-w-50 {
    width: 50% !important;
}

.stz-w-30 {
    width: 30% !important;
}

.stz-w-25 {
    width: 25% !important;
}

.stz-w-10 {
    width: 10% !important;
}

.stz-w-max-fit {
    width: max-content !important;
}

.stz-w-max {
    max-width: 50% !important;
}

.stz-w-min-fit {
    width: min-content !important;
}


/* bg  */
.stz-bg-info {
    background-color: var(--stz-info);
}

.stz-bg-site {
    background-color: var(--stz-site-color);
}
.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-nili {
    background-color: var(--stz-nili);
}

.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-site {
    color: var(--stz-site-color);
}
.stz-text-warning {
    color: var(--stz-warning);
}

.stz-text-light {
    color: var(--stz-light);
}

.stz-text-dark {
    color: var(--stz-dark);
}

.stz-text-muted {
    color: var(--stz-muted);
}

/* w & h img  */
.stz-img-full {
    width: 100%;
    height: 100%;
}

/* // text align  */
.stz-align-center {
    text-align: center;
}

/* // rounded  */
.stz-rounded {
    border-radius: 0.5rem;
}

.stz-rounded-top {
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
}

.stz-rounded-bottom {
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem
}

.stz-link-hover-dark {
    color: var(--stz-dark) !important;
}

.stz-link-hover-dark:hover {
    color: var(--stz-dark) !important;
}

/* // cursor */
.stz-cursor-pointer {
    cursor: pointer;
}

/* // grid  */

.stz-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 8px;
}

.stz-col {
    grid-column: span 6;
}

.stz-col-1 {
    grid-column: span 1;
}

.stz-col-2 {
    grid-column: span 2;
}

.stz-col-3 {
    grid-column: span 3;
}

.stz-col-4 {
    grid-column: span 4;
}

.stz-col-5 {
    grid-column: span 5;
}

.stz-col-6 {
    grid-column: span 6;
}

.stz-col-7 {
    grid-column: span 7;
}

.stz-col-8 {
    grid-column: span 8;
}

.stz-col-9 {
    grid-column: span 9;
}

.stz-col-10 {
    grid-column: span 10;
}

.stz-col-11 {
    grid-column: span 11;
}

.stz-col-12 {
    grid-column: span 12;
}


/* // 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;
}

.stz-fs-lg-x2 {
    font-size: 1.5rem;
}

.stz-fs-lg-x4 {
    font-size: 2rem;
}



/* border-color */

.stz-border {
    border: 1px solid;
}

.stz-border-bottom{
    border-bottom: 1px solid #e8e8e8;
}
.stz-border-right{
    border-right: 1px solid #fff;
}
.stz-border-right-dark{
    border-right: 2px solid #c7c7c7;
}

.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);
}

.stz-left {
    left: 0;
}

.stz-top {
    top: 0;
}

.stz-bottom {
    bottom: 0;
}

.stz-right {
    right: 0;
}


/* m */
.stz-m-1 {
    margin: 0.5rem;
}

.stz-m-2 {
    margin: 1rem;
}

.stz-m-3 {
    margin: 1.5rem;
}

/* p */
.stz-p-0-5 {
    padding: 0.3.5rem;
}

/* m */
.stz-p-1 {
    padding: 0.5rem;
}

.stz-p-2 {
    padding: 1rem;
}

.stz-p-3 {
    padding: 1.5rem;
}

/* mt */
.stz-mt-0-5 {
    margin-top: 0.25rem;
}

.stz-mt-1 {
    margin-top: 0.5rem;
}

.stz-mt-2 {
    margin-top: 1rem;
}

.stz-mt-3 {
    margin-top: 1.5rem;
}

.stz-mt-4 {
    margin-top: 2rem;
}

/* 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;
}

.stz-ml-3 {
    margin-left: 1.5rem;
}

.stz-ml-4 {
    margin-left: 2rem;
}

/* mr */
.stz-mr-1 {
    margin-right: 0.5rem;
}

.stz-mr-2 {
    margin-right: 1rem;
}

.stz-mr-3 {
    margin-right: 1.5rem;
}

.stz-mr-4 {
    margin-right: 2rem;
}


/* // position  */
.stz-position-relative {
    position: relative;
}

.stz-position-absolute {
    position: absolute;
}

.stz-position-absolute-rsp {
    position: absolute;
}

.stz-position-fixed {
    position: fixed;
}


/* 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-between {
    justify-content: space-between;
}

.stz-justify-content-evenly {
    justify-content: space-evenly;
}

.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;
}

.stz-fw-700 {
    font-weight: 700;
}

.stz-fw-800 {
    font-weight: 800;
}

/* // float */
.stz-ft-left {
    float: left;
}

.stz-ft-right {
    float: right;
}

/* 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 md */
.stz-spinner-md {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50rem;
    border: 3px solid transparent;
    border-bottom: 3px solid #fff;
    animation: spinner 1s 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);
    }

}



@media only screen and (max-width: 1240px) {
    .stz-position-absolute-rsp {
        position: relative;
    }
}

@media only screen and (max-width: 700px) {

    .stz-col-1,
    .stz-col-2,
    .stz-col-3,
    .stz-col-4,
    .stz-col-5,
    .stz-col-6,
    .stz-col-7,
    .stz-col-8,
    .stz-col-9,
    .stz-col-10,
    .stz-col-11,
    .stz-col-12 {
        /* grid-column: span 12; */
    }

    .stz-order-1 {
        order: 2;
    }

    .stz-rsp-justify-content-center {
        justify-content: center;
    }
}


@media only screen and (max-width: 500px) {
    .stz-flex-column-rsp {
        flex-direction: column-reverse;
    }
}