﻿.nurse-portal-page {
    height: 92%;
}

.clnm-nurse-portal-details-modal-half {
    overflow: hidden;
    border: dashed 1px black;
    padding: 8px;
    flex: 1;
}

#clnm-nurse-portal-details {
    height: 100%;
    width: 100%;
    background-color: white;
}

#clnm-nurse-portal-details-scheduler {
    background-color: white;
    max-height: 100%;
    width: 100%;
    overflow-y: auto;
    display: none;
}

#clnm-nurse-portal-snooze-button {
    display: inline-block;
    position: relative;
}

#clnm-nurse-portal-snooze-button-content {
    background-color: white;
    position: absolute;
    bottom: 100%;
    visibility: hidden;
    padding: 6px;
    border-radius: 2px 2px;
    border: solid 1px grey;
    box-shadow: 2px 2px grey;
    z-index: 1000;
}

.clnm-patient-details-tool-tip {
    position: absolute;
    bottom: 100%;
    right: 0;
    visibility: hidden;
    cursor: auto;
    background-color: white;
    font-size: 1em;
    border: solid 1px black;
    border-radius: 4px 4px;
    color: black;
    padding: 6px;
}

.clnm-patient-details-icon {
    position: relative;
    cursor: pointer;
}

.clnm-patient-details-icon:hover .clnm-patient-details-tool-tip {
    visibility: visible;
    z-index: 100000;
}

.rp_calender-cta .rp_pattern--dim-yellow.clnm-dim-yellow-chat-wrapper {
    width: 90px!important;
    display: inline-flex;
    align-items: center;
    color: white;
}

    .rp_calender-cta .rp_pattern--dim-yellow.clnm-dim-yellow-chat-wrapper i {
        width: 60px;
        text-align: center;
        font-size: 24px;
        color: white;
    }

    .rp_calender-cta .rp_pattern--dim-yellow.clnm-dim-yellow-chat-wrapper:hover {
        background: #ff931c;
        cursor: pointer;
    }

        .rp_calender-cta .rp_pattern--dim-yellow.clnm-dim-yellow-chat-wrapper:hover::before {
            border-right-color: #ff931c;
        }

    .rp_calender-cta .rp_pattern--dim-yellow.clnm-dim-yellow-chat-wrapper:hover i {
        color: #1C3658;
    }

.clnm-kanban-card-flashing {
    animation: clnm-flashing-card 1.2s infinite;
}

    .clnm-kanban-card-flashing .kanban-card-field-assignee {
        animation: clnm-flashing-assignee 1.2s infinite;
    }

@keyframes clnm-flashing-card {
    0% {
        border: 1px solid red;
        box-shadow: 2px 2px red;
    }

    49% {
        border: 1px solid red;
        box-shadow: 2px 2px red;
    }

    60% {
        border: 1px solid #DDDDDD;
        box-shadow: 2px 2px grey;
    }

    99% {
        border: 1px solid #DDDDDD;
        box-shadow: 2px 2px grey;
    }

    100% {
        border: 1px solid red;
        box-shadow: 2px 2px red;
    }
}

@keyframes clnm-flashing-assignee {
    0% {
        background-color: red;
    }

    49% {
        background-color: red;
    }

    60% {
        background-color: #1C3658;
    }

    99% {
        background-color: #1C3658;
    }

    100% {
        background-color: red;
    }
}