@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root{
    --white:#fff;
    --gray-100:#f8f9fa;
    --gray-200:#e9ecef;
    --gray-300:#dee2e6;
    --gray-400:rgb(207, 212, 217);
    --gray-500:#adb5bd;
    --gray-600:#868e96;
    --gray-700:#495057;
    --gray-800:#343a40;
    --gray-900:#212529;
    --black:#000;
    --blue:#0073dd;
    --indigo:#6610f2;
    --purple:#6f42c1;
    --pink:#e83e8c;
    --red:#dc3545;
    --orange:rgb(252, 125, 20);
    --yellow:rgb(255, 193, 7);
    --green:rgb(40, 167, 69);
    --teal:rgb(32, 201, 151);
    --cyan:rgb(23, 162, 184);
    --active-tab:#ecf2fe;

}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.outer-frame{
    display: flex;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-container{
    flex-basis: 70%;
}
.image-container img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.logo{
    width: 200px;
}
.login-container{
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
}

.form-group{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* LOGIN MODAL */

.modal input{
    width: 18rem;
}
.modal-content{
    width: fit-content !important;
}
.modal-dialog-centered{
    justify-content: center;
}
.modal-body{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

label span{
    color: var(--red);
}
/* HOME CSS */
header{
    position: sticky;
    top: 0;
    z-index: 1;
}
.navbar{
    box-shadow: 0px 2px 5px var(--gray-300);
    background: white;
}

.navbar-brand{
    font-weight: bold;
}
.nav-item img{
    width: 22px;
}

.nav-link{
    display: flex !important;
    gap: 0.5rem !important;
    justify-content: center;
    align-items: center;
}
.active{
    background: var(--active-tab);
    border-radius: 5px;
    color: var(--blue) !important;

}
.navbar-nav{
    display: flex;
    gap: 1rem;
}
.navbar select{
    width: fit-content;
    border: none ;
    padding: 0.5rem;
}

.heading{
    font-weight: bold;
}
.link{
    text-decoration: none;
    width: fit-content !important;
}
.link:hover{
    color: inherit;
}

.main-container{
    padding: 2rem 3rem !important;   /*Orginal - padding: 3rem 9rem !important; change for DT*/
    background: var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.table-container{
    padding: 2rem 3rem !important;   /*Orginal - padding: 3rem 9rem !important; change for DT*/
    background: var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.division{
    border-bottom: 1px solid var(--gray-600);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.division h3{
    font-weight: 600;
    margin-bottom: 0;
    width: fit-content;
}
.division .link{
    color: var(--cyan);
    font-weight: 500;
    cursor: pointer;
}
.division-cards{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card{
    width: fit-content;
    border-radius: 10px !important;
    text-align: center;
    min-width: 10rem !important;
    max-width: fit-content !important;
    color: var(--white);
}
.card .Number{
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 0;
}
.status .card .status span{
    font-size: 1.2rem;
    font-weight: 500;
}
.status .card:nth-child(1) {
    background: var(--green);
}
.status .card:nth-child(2) {
    background: var(--cyan);
}
.status .card:nth-child(3) {
    background: var(--yellow);
}
.status .card:nth-child(4) {
    background: var(--red);
}
.status .card:nth-child(5) {
    background: var(--gray-700);
}
.project .card{
    background: var(--cyan);
    border-radius: 10px !important;
    min-width: 10rem !important;
    height: 5rem !important;
    max-width: 10rem !important;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}
.project .card p{
    margin-bottom: 0;
}

.subheading{
    font-weight: 700;
}

.tickets .icon{
    cursor: pointer;
    color: black;
}
.tickets .icon:hover{
    transform: scale(1.2);
    transition: ease-in-out;
    transition-duration: 0.2s;
}
.tickets .table td,.tickets .table th{
    text-align: center;
    padding: 1rem;
}
.project-name{
    color: var(--gray-600);
}
form .note{
    font-size: 0.8rem;
    font-weight: 700;
}
form button{
    width: fit-content !important;
    min-width: 8rem;
    padding: 0.5rem 2rem !important;
}
form .row{
    justify-content: center;
}
.file-upload{
    margin: 1rem 0 !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.chips{
    display: flex;
    flex-direction: column;
}
.chips ul{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--gray-300);
    background-color: white;
    border-radius: 10px;
    /* gap:0.5rem; */
}
.chips i:hover{
    cursor: pointer;
    color: var(--gray-900);
}

.chip{
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center ;
    background-color: var(--gray-400);
    width: fit-content;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin: 0.5rem;
}
.chip p{
    margin: 0;
    font-size: 0.8rem;
}
.chip .fa-circle-xmark{
    color: var(--gray-700);
}
/*Custom form border correction*/
.input.form-control {
     border: 1px solid #ced4da;
    }
/* ALL PROJECTS PAGE */
.back-arrow{
    background: var(--gray-400);
    width: 30px !important;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray-700);
}
.back-arrow:hover{
    cursor: pointer;
    transform: scale(1.2);
    transition: 0.5s ease-in-out;
}
.title-frame{
    display: flex;
    gap: 1rem;
}
.title-search-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.project-container .card{
    background: var(--cyan);
    border-radius: 10px !important;
    min-width: 15rem !important;
    height: 8rem;
    max-width: 15rem !important;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.project-container .card p{
    margin-bottom: 0;
}

/* ALL TICKETS PAGE */
.global-search{
    display: flex;
    position: relative;
}
.global-search i{
    position: absolute;
    left: 0.5rem;
    top: 0.6rem;
    font-size: 1.3rem;
    color: var(--gray-600);
    width: fit-content;
}
.global-search input{
    padding: 0.5rem 3.5rem;
    background: none;
    border:none;
    border-bottom: 1px solid var(--gray-500);
    border-radius: 0;
}
.global-search input:focus{
    box-shadow: none;
    background:none;
}
.filter{
    display: flex;
    justify-content: center;
    align-items: center;
}
.filter-chips{
    display: flex;
    flex-wrap: wrap;
}
.filter-chips a{
    width: fit-content;
}
.filters button:nth-child(1) {
    background: #ff0000bd;
    color: #fff;
    border: none;
}

.filters button:nth-child(2) {
    background: rgba(32, 201, 151,0.2);
    color: var(--teal);
    border: none;
}
.filters button:nth-child(3) {
    background: #0d6efdb3;
    color: #fff;
    border: none;
}
.filters button:nth-child(4) {
    background: #ffc107ad;
    color: #fff;
    border: none;
}
.filters button:nth-child(5) {
    background: #dc3545;
    color: #fff;
    border: none;
}
.filters button:nth-child(6) {
    background: #6c757d;
    color: #fff;
    border: none;
}

@media screen and (max-width:575px) {
    .navbar-collapse{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }
    .dropdown-menu[data-bs-popper] {
    left: -50% !important;
    }
}
@media screen and (max-width:768px) {
    .main-container{
        padding: 3rem 5rem !important;
    }
}

@media screen and (max-width:600px) {
    .main-container{
        padding: 3rem 3rem !important;
    }
    
}
/* REPORT PAGE */
.ticket-status .status-box{
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
.ticket-status p{
    font-size: 14px;
    margin: 0;
}
.completed{
    background-color: var(--red) !important;
}
.assigned{
    background: var(--cyan) !important;
}
.new{
    background: var(--green) !important;
}
.inProgress{
    background: var(--yellow) !important;
}
.closed{
    background: var(--gray-700) !important;
}
.bold-text{
    font-weight: bold;
    font-size: 13px;
}
.light-text{
    color: hsla(0,0%,50.2%,.68);
    font-weight: 400;
    font-size: 13px;
}
.normal-text{
    font-weight: 400;
    font-size: 13px;
}
.inProgress-text{
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 12px;
    background-color: rgba(255,193,7,.16);
    color: var(--yellow);
    text-align: center;
    margin: 0;
}
.assigned-text{
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 12px;
    background-color: rgba(186,235,255,.31);
    color: var(--cyan);
    text-align: center;
    margin: 0;
}
.completed-text{
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 12px;
    background-color: #ffe5e8;
    color: var(--red);
    text-align: center;
    margin: 0;
}
.new-text{
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 12px;
    background-color: rgba(40, 167, 69,.31);
    color: var(--green);
    text-align: center;
    margin: 0;
}
.closed-text{
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 12px;
    background-color: hsla(0,0%,83.5%,.31);
    color: var(--gray-700);
    text-align: center;
    margin: 0;
}
.sorting{
    font-weight: bold;
    font-size: 13px;
}

/*custom for link class menu */
.link_custom{
    text-decoration: none;
  /*  width: fit-content !important;*/
}
.link_custom:hover{
    color: inherit;
}
.nav-link_custom{
    display: flex !important;
    gap: 0.5rem !important;
    justify-content: center;
    align-items: center;
}
.division .link_custom{
    color: var(--cyan);
    font-weight: 500;
    cursor: pointer;
}


/* Loader CSS */
/* @-webkit-keyframes load { */
  /* 0% { -webkit-transform: rotate(0deg); } */
  /* 100% { -webkit-transform: rotate(360deg); } */
/* } */

/* @keyframes load { */
  /* 0% { transform: rotate(0deg); } */
  /* 100% { transform: rotate(360deg); } */
/* } */

/* #cover-load { */
    /* position:fixed; */
    /* width:100%; */
    /* left:0;right:0;top:0;bottom:0; */
    /* background-color: rgba(255,255,255,0.7); */
    /* z-index:9999; */
    /* display:none; */
/* } */

/* @-webkit-keyframes load { */
	/* from {-webkit-transform:rotate(0deg);} */
	/* to {-webkit-transform:rotate(360deg);} */
/* } */

/* @keyframes load { */
	/* from {transform:rotate(0deg);} */
	/* to {transform:rotate(360deg);} */
/* } */

/* #cover-load::after { */
    /* content:''; */
    /* display:block; */
    /* position:absolute; */
    /* left:47%;top:41%; */
    /* width:75px;height:75px; */
    /* border-style:dotted; */
    /* border-color:blue; */
    /* border-top-color:transparent; */
    /* border-width: 7px; */
    /* border-radius:70%; */
    /* -webkit-animation: load 1.2s linear infinite; */
    /* animation: load 1.6s linear infinite; */
/* } */
/* DataTable CSS */
/* table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before {
    display: none;
}
.dtr-hidden {
    display: table-cell !important;
}
@media only screen and (max-width: 480px) {
    table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before {
        display: block;
    }
    .dtr-hidden {
        display: none !important;
    }
} */





