/** In App Notifications. Start  */
.InAppNotifications-icon {
    display: flex;
    align-items: center;
    height: 100%;
    color: #FFF;
    margin-left: auto;
    font-weight: bold;
    cursor: pointer;
    padding: inherit;
}

.icon-wrapper {
    position: relative;
    font-size: 12px;
}

.dot {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -6px;
    left: 9px;
    height: 16px;
    border-radius: 7px;
    padding: 0 5px;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 10px;
    line-height: 0.625rem;
}

    .dot.red {
        background: #ff0000;
    }

    .dot.grey {
        background: #6D6E70;
    }

    .dot.green {
        background: #02f902;
    }

.blink {
    animation: blinker 1s cubic-bezier(.5, 0, 1, 1);
}

@keyframes blinker {
    from, to {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.blink.off {
    animation-name: none;
}

.navigation-slide {
    width: 540px;
    color: #494949;
    background-color: #f7f7f7;
    z-index: 150000;
    box-shadow: 8px 0 8px -10px #000000, -8px 0 8px -10px #000000;
    position: fixed;
    top: 76px !important;
    right: 0;
    bottom: 0;
    z-index: 1999999999;
    text-align: left;
    height: 95vh !important;
}

.navigation-slide-title {
    color: #1B75BB;
    margin-left: 10px;
    font-weight: 100;
}

.card-container {
    overflow: auto;
    text-align: left;
    height: 91%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 10px;
    padding-bottom: 17px;
    align-items: center;
}

.card-container-clear {
    display: none;
    margin-left: 462px;
    color: #999B9D;
    cursor: pointer;
    margin-top: -17px;
    margin-bottom: 5px;
    margin-right: 0px;
}

.card {
    width: 90%;
    border: 1px solid #bdbdbd;
    padding: 14px 16px 10px 16px;
    position: relative;
    border-radius: 3px;
    background-color: #FFF;
    cursor: pointer;
}

    .card div[class^="card-"] {
        font-size: 1.1em;
    }

.opacity1 {
    opacity: 1 !important;
}

.card-header {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2px;
    gap: 6px;
}

.card-type {
    padding: 2px 5px 3px 5px;
    border-radius: 6px;
    background-color: #2fb914;
    font-size: 15px;
    color: #FFF;
}

.card-subtype {
    padding: 2px 5px 3px 5px;
    border-radius: 6px;
    background-color: #853494;
    color: #f7f7f7;
    font-size: 15px;
}

.card-controls {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.card-title {
    color: #007396;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card-content {
    padding-top: 15px;
}

.card-footer {
    color: #939393;
    font-size: 11px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left {
    white-space: nowrap;
}

.right a {
    position: relative;
    text-decoration: underline;
    margin-left: 5px;
    font-size: 13px;
    color: #00A8E8;
}

.right a:not(:first-child)::before {
    content: "|";
    margin-right: 5px;
    color: #939393;
}

/** In App Notifications. End  */
