/** Login Name Display - Shows the button when a member is logged in */
#loginNameDisplay {
    color: white;
    font-size: 20px;
    margin-left: 20px;
}

.appStyle {
    font-family: "Poppins", sans-serif;
}

.fl-l {
    float: left;
}

.fl-r {
    float: right;
}

.menuIcon {
    transform: translate(0, -20%);
}

.hidden {
    display: none;
}

.depLogo {
    height: 20%;
    width: 20%;
}

/**
Tooltips
 */
[data-tooltip] {
    position: relative;
    cursor: pointer;
}
[data-tooltip]:before,
[data-tooltip]:after {
    line-height: 1;
    font-size: .9em;
    pointer-events: none;
    position: absolute;
    box-sizing: border-box;
    display: none;
    opacity: 0;
}
[data-tooltip]:before {
    content: "";
    border: 5px solid transparent;
    z-index: 100;
}
[data-tooltip]:after {
    content: attr(data-tooltip);
    text-align: center;
    min-width: 3em;
    max-width: 21em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 7px 9px;
    border-radius: 3px;
    background: #000000;
    color: #FFFFFF;
    z-index: 99;
    border-style: solid;
    border-width: 1px;
    border-color: #FFFFFF;
}
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    display: block;
    opacity: 1;
}
[data-tooltip]:not([data-flow])::before,
[data-tooltip][data-flow="top"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #000000;
}
[data-tooltip]:not([data-flow])::after,
[data-tooltip][data-flow="top"]::after {
    bottom: calc(100% + 5px);
}
[data-tooltip]:not([data-flow])::before, [tooltip]:not([data-flow])::after,
[data-tooltip][data-flow="top"]::before,
[data-tooltip][data-flow="top"]::after {
    left: 50%;
    -webkit-transform: translate(-50%, -4px);
    transform: translate(-50%, -4px);
}
[data-tooltip][data-flow="bottom"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #000000;
}
[data-tooltip][data-flow="bottom"]::after {
    top: calc(100% + 5px);
}
[data-tooltip][data-flow="bottom"]::before, [data-tooltip][data-flow="bottom"]::after {
    left: 50%;
    -webkit-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
}
[data-tooltip][data-flow="left"]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #000000;
    left: calc(0em - 5px);
    -webkit-transform: translate(-8px, -50%);
    transform: translate(-8px, -50%);
}
[data-tooltip][data-flow="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    -webkit-transform: translate(-8px, -50%);
    transform: translate(-8px, -50%);
}
[data-tooltip][data-flow="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #000000;
    right: calc(0em - 5px);
    -webkit-transform: translate(8px, -50%);
    transform: translate(8px, -50%);
}
[data-tooltip][data-flow="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    -webkit-transform: translate(8px, -50%);
    transform: translate(8px, -50%);
}
[data-tooltip=""]::after, [data-tooltip=""]::before {
    display: none !important;
}

.fc-button {
    background-color: #151723 !important;
}

.bgcolor {
    color:#d8d8d8 !important;
    background-color: rgba(216, 216, 216, 0.2) !important;
}

.growTextArea {
    resize: none;
    width: 400px;
    min-height: 50px;
    padding: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.JailedIcon {
    /*font-weight: 900;*/
    /*font-size: 1rem;*/
    background: url("../img/other/prisoner.png");
    background-size: cover;
    height: 17px;
    width: 17px;
    display: block;
}

.pcTitle {
    color: #ffffff;
    font-weight: 800;
}

.tinyMCECustomCSS td {
    border: 1px solid white;
}

.codeInputField {
    padding: 0.5rem;
    border: 1px solid #333;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 2rem;
    color: white;
}

.hideOnDuty {
    display: none;
}

.note-editable {
    background-color: #151723;
}

.note-toolbar {
    background-color: aliceblue;
}

.clear {
    clear: both;
}

.pageDividerBorder {
    border-right: 1px solid rgba(255,255,255,0.3);
}

.whitespace_normal {
    white-space: normal !important;
}

.swal2-icon {
    top: 20px;
}

.swal2-title {
    color: #545454 !important;
}

.redCircleCount {
    background: red;
    margin: auto;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    color: white;
    border-radius: 50%;
    font-weight: 600;
}

.note-editable {
    height: 70vh !important;
}

.damian_1000days {
    height: 90vh;
    background-image: url(../img/other/isaiah.jpg);
    position: absolute;
    width: 100vw;
    background-size: contain;
    background-repeat: no-repeat;
    margin: auto;
    left: 15%;
    display: none;
    z-index: 999;
}

/* HELPER FUNCTIONS */
@media (min-width: 640px) {
    .l-hide-small-up {
        display: none !important;
    }
}

@media (max-width: 639px) {
    .l-hide-small-down {
        display: none !important;
    }
}

body::-webkit-scrollbar {
    width: 5px;
}

/* Track */
body::-webkit-scrollbar-track {
    background: black;
}

/* Handle */
body::-webkit-scrollbar-thumb {
    background: #8e8e91;
}

body::-webkit-scrollbar-track
{
    background: #151723;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.mouse-point {
    cursor: pointer;
}

#pendingCallList,
#pendingCallUnits
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 10px;
}

#pendingCallList div,
#pendingCallUnits div
{
    border: 1px solid #272831;
    padding: 5px 10px;
    font-size: 0.812rem !important;
    font-family: "Open Sans", sans-serif !important;
    cursor: pointer;
    font-weight: 600;
}

#pendingCallInformationChild
{
    display: flex;
    flex-direction: row;
    width: 100%;
}

#pendingCallInformationChild div
{
    border: 1px solid #272831;
    padding: 5px 10px;
    font-size: 0.812rem !important;
    font-family: "Open Sans", sans-serif !important;
    cursor: pointer;
    font-weight: 600;
    white-space: normal !important;
}

.step-progress
{
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: column;
    row-gap: 50px;
}

.step-progress li {
    position: relative;
    list-style-type: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    float: left;
    text-align: center;
    height: 70px;
}

.step-progress li.active::before {
    background: #38ce3c;
    color: #fff;
}

.step-progress li::before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #393939;
    border-radius: 100px;
    margin: 0 auto 5px auto;
}

.step-progress li::after {
    content: "";
    position: relative;
    width: 2px;
    background-color: #393939;
    top: 2.5em;
    left: 117px;
    height: 35px;
    display: inline-block;
    float: left;
}

.step-progress li.passed::before {
    background: #38ce3c;
    color: #fff;
}

.step-progress li.passed::after {
    background-color: #38ce3c;
}

.notificationIcon {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    padding-right: 2px;
    position: relative;
    top: -10px;
    font-weight: 800;
    left: -20px;
}

th.vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    vertical-align: middle !important;
    cursor: default;
}

.border-bottom-white
{
    border-bottom: 1px solid white !important;
}

.stuckButton
{
    position: fixed;
    width: 170px;
    top: calc(100vh - 110px);
    right: 70px;
    box-shadow: 0 0 10px 0 black;
    z-index: 1;
}

.roster_td_div
{
    display: flex;
    justify-content: space-between;
    width: 50%;
}

.custom_scroll_bar::-webkit-scrollbar {
    width: 5px;
    z-index: 9999;
}

.custom_scroll_bar::-webkit-scrollbar-track
{
    background: black;
}

/* Vertical Handle */
.custom_scroll_bar::-webkit-scrollbar-thumb
{
    background: #8e8e91;
}

/* Horizontal Handle */
.custom_scroll_bar::-webkit-scrollbar-thumb:horizontal {
    background: #8e8e91;
    height: 5px; /* Set the height to 5 pixels */
}

.custom_scroll_bar::-webkit-scrollbar-track {
    background: #151723;
}

/* Handle on hover */
.custom_scroll_bar::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.dropdown-content-notif {
    max-height: 400px;
    overflow: auto;
    overflow-x: hidden;
}

i.fa-solid.fa-xmark.mouse-point.hover:hover {
    color: white;
}

.departmentSelector__list {
    max-height: 480px;
    overflow: auto;
}

@media (max-height: 800px) {
    height: 400px;
}

.with-particles {
    position: relative;
    z-index: auto;
}

#christmas-particles-js {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 11;
    top: 0;
    left: 0;
    pointer-events: none;
}

.badge-sm {
    min-width: 5rem;
}

.align-center {
    align-items: center;
}