@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

body{

    background-color: rgb(247, 247, 247);
    width: auto;
    
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px; 
    border-top: 1px solid #ddd; 
    z-index: 2;
}

.footer_link{
    text-decoration: none;
    font-weight: bold;
}


/* LOGIN Component */

.headerContainer{
    padding-top: 3rem;
}

.login-body{

    box-shadow: -5px 4px 5px rgb(3, 3, 3);
    border-radius: 25px;
    width: 50%;
    position: relative; 
    left: 50%; 
    transform: translate(-50%, 0%);

}
.whole-container {
  background-image: url('/images/login/loginbg.jpg');
  background-size: cover;
  height: 100vh;
}



.notifications_container{
    max-height: 400px; 
    overflow-y: auto;
}



/* Portal Cards Elements */
.rfp-column :hover{

    transition: 0.3s ease;
    color: green;
    transform: scale(1.007);

}

.admin-column :hover{

    transition: 0.3s ease;
    color: rgba(122,0,4,1);
    transform: scale(1.007);

}

.supplies_column :hover{

    transition: 0.3s ease;
    color:#007a70;
    transform: scale(1.007);

}

.accounting-column :hover{

    transition: 0.3s ease;
    color: rgb(208, 90, 0);
    transform: scale(1.007);

}

.projects-column :hover{

    transition: 0.3s ease;
    color: rgb(4, 0, 123);
    transform: scale(1.007);

}

.helpDesk-column :hover{

    transition: 0.3s ease;
    color: rgb(0, 117, 150);
    transform: scale(1.007);

}

.assets-column :hover{

    transition: 0.3s ease;
    color: rgb(145, 104, 0);
    transform: scale(1.007);

}

.popover{
    max-height: 30rem !important;
    overflow-y: scroll;
}

.popover-header{
    background-color: rgb(4, 154, 84) !important;
    color: white !important;
}


/* Tables */
.table th, td{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}




/* card floating icons */
.card {
    position: relative; 
    box-shadow: -5px 5px 5px rgb(224, 224, 224);
}
  
.card-icon {
    position: absolute; 
    top: -20px; 
    left: 30px; 
    z-index: 1; 
    border-radius: 10px;
    padding: 10px; 
    box-shadow: -5px 5px 5px rgb(224, 224, 224); 
}

.sub-cards-icon{

    background: rgb(144,186,140);
    background: linear-gradient(29deg, rgba(144,186,140,1) 0%, rgba(0,122,16,1) 97%, rgba(0,122,16,1) 97%);
    padding: 10px;
    border-radius: 10px;
    box-shadow: -5px 5px 5px rgb(224, 224, 224); 


}


/* For the hovering of sub cards */
.subCards-columns :hover{

    transition: 0.3s ease;
    transform: scale(1.005);

}



/* For the Sub navlinks in sub nav cards */
.sub_navlinks{

    text-decoration: none;
    color: green;

}

/* 
For the notification classes in navbar */
.notification_dropdown{
    width: 20rem; 
    max-height: 20rem; 
    overflow-y: auto
}


.notification_items{
    padding: 1rem;
}

.notification_items :hover{
    background-color: rgb(245, 255, 237);
    border-radius: 10px;
}

.project_notification_items{
    padding: 1rem;
}

.project_notification_items :hover{
    background-color: rgb(245, 255, 237);
    border-radius: 10px;
}


.attachments_table{
    overflow-y:  scroll;
    max-height: 20rem;
}

.comments_data_list{
    overflow-y:  scroll;
    max-height: 20rem;
}

.chat_overview{
    height: 300px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
}

.chat-box{
    padding: 15px;
    border-radius: 20px;
    background-color: rgb(0, 153, 255);
    color: white;
}

.newMessageContainer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    background-color: rgb(0, 153, 255);
    padding: 15px;
    border-radius: 20px;
    color: white;
    z-index: 1;
}

.newMessageContainer.active {
    opacity: 1;
    visibility: visible;
}

.ticketNowClosedContainer{
    background-color:  rgb(0, 192, 77);
    color: white;
    padding: 10px;
    border-radius: 20px;
}

.ticketHasNoAssigneeContainer{
    background-color:  rgb(192, 22, 0);
    color: white;
    padding: 10px;
    border-radius: 20px;
}



#total_notification_counts{

   color: rgb(255, 255, 255);
   position: absolute;
   z-index: 5;
    bottom: 30px;
    animation: bounce 2s infinite;

}

@keyframes bounce {
    0%{
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0);
    }
}




/*  RFP NAV LINKS*/

.nav-item-active{
    color: white !important;
    background-color: rgb(0, 148, 94);
    border-radius: 2rem;
}

/* .notification_bell1 svg{
    animation: ring 2s infinite;
}

@keyframes ring {
  0% {
    transform: rotate(0deg) scale(1);
  }
  20% {
    transform: rotate(-10deg) scale(1.1);
  }
  40% {
    transform: rotate(10deg) scale(1.1);
  }
  60% {
    transform: rotate(-10deg) scale(1.1);
  }
  80% {
    transform: rotate(10deg) scale(1.1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
} */




/* Projects Styling */
.projects-navbar{
    border-right: 1px solid rgb(199, 199, 199);
    height: auto;
}

.main_project_board_container {
    overflow-x: auto;
    display: flex; 
}

.main_project_board_container .row {
    flex-wrap: nowrap; 
    height: 40rem;
}

.loader-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}



/* Project Calendar Styles */
.fc-col-header{
    text-decoration: none;
    background-color: rgb(0, 126, 171);
    color: white;
}

.fc-col-header a{
    text-decoration: none;
    color: white;
}


.fc .fc-daygrid-day-number{
    color: black;
    text-decoration: none;
}

.fc-daygrid-event-harness a{
    color: white;
    background-color: rgb(0, 126, 171);
}

.fc-daygrid-event-harness a:hover{
    color: white;
    background-color: rgb(0, 126, 171);
}


/* .fc-daygrid-event-dot{
    border-color: rgba(255, 0, 0, 0.947) !important;
} */



/*Admin credentials acknowledgement styling*/
.credentials_logo_goprime{
    width: 25rem;
}

.hr_signature{
    width: 10rem;
    position: absolute; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%)
}