
/*GLOBAL*/

.shadow {
    box-shadow: 0px 2px 12px -3px rgba(0,0,0,0.3);
}

/*font size 7 (like bootstrap's fs-1 etc. heading sizing)*/
.fs-7 {
    font-size: 0.85rem;
}

.fs-8 {
    font-size: 0.75rem;
}


/*LOGIN/REGISTER */

    /*transparent background dark*/
.dark-bg-65 {
    background: rgb(33 37 41 / 65%);
}

    /*Background image*/
.bgimg {
    background-image: url(/assets/img/homepageskyline.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 80vh;
    height: 100%;
}

/*SIDE NAV*/

#sidebar-wrapper {
    max-height: calc(100vh - 40px)!important;
    min-height: calc(100vh - 40px)!important;
    box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.4);
    z-index: 10;
    border: none!important;
}

a.sidenav-header {
    text-align: center;
    font-weight: bold;
    border-radius: 8px!important;
    margin: 3px auto;
    width: 90%;
}
a.sidenav-item {
    background: transparent;
    color: #999;
    border: none;
    width: 90%;
    margin: 3px auto;
    padding: 6px 12px;
    border-radius: 8px!important;
}

.subnav {
	margin-left: 8px;
}

#topnav {
	border-bottom: none!important;
	box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.2);
}

/*STATUS BAR*/

.light-shadow-inset {
    box-shadow: inset 0 0 18px -5px rgba(255,255,255,0.2);
}

.status-icon {
    height: 1.3rem;
    /*fill: var(--bs-nav-link-color);*/
    fill: rgb(175 175 175 / 65%);
    transition: fill 0.3s ease;
}

.nav-link:hover .status-icon {
    fill: var(--bs-nav-link-hover-color);
}

    /*pulse the icon for inbox notifications*/
@keyframes inboxPulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

    /*inbox notification*/
.status-icon.notify {
  animation: inboxPulse 2s infinite;
  color: white;
}


/*MAIN BODY DIV */
#page-content-wrapper {
    height: calc(100vh - 40px);
}

.page-content {
    max-height: 85vh;
}

/*INBOX AND MESSAGING*/

.col-five-percent {
    width: 5%;
}

    /*unread message styles*/
.unread-message {
    font-weight: bold;
    background: rgb(255 255 255 / 8%);
}

    /*Unread message text colour*/
tr.unread-message > td > * {
    color: #ffffff;
}

tr.unread-message > td > *:hover {
    color: #e6e6e6;
}

     /*Read messages text colour*/
tr > td > * {
    color: #6c757d;
}

tr > td > *:hover {
    color: #fff;
}



    /*Inbox table row hover effect*/
tr.inbox-row:hover {
    background: #313131;
}

    /*inbox notification pulse dot*/
.pulse {
    display: inline-block;
    color: white;
    background: #F44336;
    border-radius: 100%;
    height: 0.4rem;
    width: 0.4rem;
    right: 16px;
    position: absolute;
    margin-top: 9px;
    box-shadow: 0 0 0 rgba(255,215,0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255,215,0, 0.4);
        box-shadow: 0 0 0 0 rgb(244 67 54);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(255,215,0, 0);
        box-shadow: 0 0 0 4px rgb(244 67 54 / 0%);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255,215,0, 0);
        box-shadow: 0 0 0 0 rgb(244 67 54 / 0%);
    }
}


/*ACCORDIONS*/

.accordion {
    --bs-accordion-btn-color: #dee2e6;
    --bs-accordion-btn-bg: #212529;
    --bs-accordion-active-color: #DEE2E6;
    --bs-accordion-active-bg: #000000;
}


.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
}

.accordion-button {
    color: var(--bs-accordion-btn-color);
    background-color: var(--bs-accordion-btn-bg);
}


