﻿:root {
    --main-color: #1590E8;
    --main-hover: #3CA5ED;
    --main-active: #0F79C5;
    --main-light: #E8F4FD;
    --main-rgb: 21,144,232;
    --color_product: #ffecaa;
    --text-main-color: #ffb71b;
    --primary-color: var(--main-color);
    --bs-border-color: #c9cdcf;
}


/* BUTTON */

.btn-main {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--main-color);
    --bs-btn-border-color: var(--main-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--main-hover);
    --bs-btn-hover-border-color: var(--main-hover);
    --bs-btn-focus-shadow-rgb: var(--main-rgb);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--main-active);
    --bs-btn-active-border-color: var(--main-active);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--main-color);
    --bs-btn-disabled-border-color: var(--main-color);
}


/* TABLE */

.table-main {
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
}


    .table-main th,
    .table-main td {
        background-color: var(--main-color);
        color: #fff;
        border: 1px solid #fff;
    }


    .table-main tbody tr:hover td {
        background-color: var(--main-hover);
        color: #fff;
    }



.text-main {
    color: var(--main-color);
}


/* TABLE BORDER */

.table-borderd {
    border: 1px solid #6c757d;
}


/* HEADER CHUYEN NGANH */

.thchuyennganh {
    text-align: center;
    background: var(--main-active);
    color: white;
}




/* LOADING */

#circularG {
    position: relative;
    width: 143px;
    height: 143px;
    margin: auto;
}

.circularG {
    position: absolute;
    background-color: var(--main-color);
    width: 33px;
    height: 33px;
    border-radius: 21px;
    animation-name: bounce_circularG;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
}


/* Animation position giữ nguyên */

#circularG_1 {
    left: 0;
    top: 47px;
    animation-delay: 0.3s;
}

#circularG_2 {
    left: 14px;
    top: 14px;
    animation-delay: 0.5s;
}

#circularG_3 {
    top: 0;
    left: 57px;
    animation-delay: 0.7s;
}

#circularG_4 {
    right: 14px;
    top: 14px;
    animation-delay: 0.9s;
}

#circularG_5 {
    right: 0;
    top: 57px;
    animation-delay: 1.1s;
}

#circularG_6 {
    right: 14px;
    bottom: 14px;
    animation-delay: 1.3s;
}

#circularG_7 {
    left: 57px;
    bottom: 0;
    animation-delay: 1.5s;
}

#circularG_8 {
    left: 14px;
    bottom: 14px;
    animation-delay: 1.7s;
}



@keyframes bounce_circularG {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(.3);
    }
}



/*.tree, .tree ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .tree ul {
        margin-left: 1em;
        position: relative;
    }

        .tree ul:before {
            content: "";
            display: block;
            width: 0;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            border-left: 1px solid;
        }

    .tree li {
        margin: 0;
        padding-left: 10px;
        line-height: 2em;
        color: #1e1076;
        font-weight: 700;
        font-size: 13px;
        position: relative;
    }

    .tree ul li:before {
        content: "";
        display: block;
        width: 10px;
        height: 0;
        border-top: 1px solid;
        margin-top: -1px;
        position: absolute;
        top: 1em;
        left: 0;
    }

    .tree ul li:last-child:before {
        background: #fff;
        height: auto;
        top: 1em;
        bottom: 0;
    }

    .tree li a {
        text-decoration: none;
        color: #1e1076;
        margin-left: 5px;
    }

    .tree li button, .tree li button:active, .tree li button:focus {
        text-decoration: none;
        color: #1e1076;
        border: none;
        background: transparent;
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
        outline: 0;
    }*/
