﻿
.notify {
    height: calc(70vh - 60px);
    width: 450px;
    top: 60px !important;
    overflow: hidden !important;
    right: 0px !important;
    left: unset !important;
    font-family: 'Muli',sans-serif;
    outline: 1px solid #d3d3d3;
}

    .notify .popup-content {
        width: 100%
    }

    .notify .dropdown-item:active {
        background: #d3d3d3;
        color: var(--theme-mode-text);
    }

    .notify .notification-title {
        display: flex;
        height: 40px;
        border-bottom: 1px solid #d3d3d3;
    }

        .notify .notification-title .notification-title-tab {
            display: flex;
            height: 100%;
            width: 50%;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #898989;
        }

            .notify .notification-title .notification-title-tab.active {
                color: var(--theme-mode-text);
                font-weight: 600;
                position: relative;
            }

    .notify .notification-title-tab.active::before {
        content: "";
        position: absolute;
        width: 70%;
        height: 2px;
        bottom: 0px;
        border-bottom: 2px solid #8746f6;
    }

    .notify .notifi-select-step-view {
        width: 450px;
        overflow: hidden;
        height: calc(100% - 40px);
    }

    .notify .notifi-select-step {
        width: 900px;
        display: flex;
        transition: 0.4s;
        height: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
    }

        .notify .notifi-select-step .notifi-select-step-item {
            width: 450px;
            transition: 0.4s;
            height: 100%;
            overflow: auto;
        }

.notification-group {
    width: 100%;
    position: relative;
}

.notification-group-item {
    border-radius: 5px;
    height: 135px;
    padding: 10px;
    margin: 5px 10px;
    width: 420px;
    display: flex;
    border-left: 5px solid #8746f6;
    border-bottom: 1px solid #595959;
    border-right: 1px solid #b3b0b0;
    border-top: 1px solid #e3e3e3;
    background: white;
    z-index: 10;
    cursor:pointer;
}

.notification-group-item-chill {
    border-radius: 5px;
    height: 100px;
    padding: 10px;
    margin: 5px 10px 5px 80px;
    width: 350px;
    display: flex;
    border-left: 5px solid #8746f6;
    border-bottom: 1px solid #595959;
    border-right: 1px solid #b3b0b0;
    border-top: 1px solid #e3e3e3;
    background: white;
    z-index: 1;
}

.notification-group-item-left {
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-right: 1px solid #d3d3d3;
}

    .notification-group-item-left .date-book {
        color: #4a4a4a;
        font-size: 13px;
        font-weight: 700;
    }

    .notification-group-item-left .time-book {
        font-size: 17px;
        font-weight: 700;
    }

.notification-group-item-right {
    width: calc(100% - 140px);
    padding-left: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

    .notification-group-item-right .client-name {
        font-size: 14px;
        color: #303030;
        font-weight: 700;
        padding: 0 0 5px 10px;
    }

    .notification-group-item-right .services {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.notification-group-more {
    position: absolute;
    z-index: 20;
    right: 7%;
    top: 5px;
}

    .notification-group-more i {
        font-size: 22px;
        cursor: pointer;
        color: #414141;
    }

.notification-group .notification-group-collapse {
    position: absolute;
    top: 110px;
    width: 100%;
    text-align: center;
    z-index: 11;
    cursor: pointer;
}

.notification-group-item-listchill, .notification-group-item-chill {
    height: 0px;
    opacity: 0;
    transition: 0.5s;
}

    .notification-group-item-listchill.show {
        opacity: 1 !important;
        height: fit-content !important;
        transition: 0.5s;
    }

        .notification-group-item-listchill.show .notification-group-item-chill {
            height: 120px !important;
            transition: 0.5s;
            opacity: 1 !important;
        }

.row-today-text, .row-feature-text {
    padding: 5px 20px;
    font-size: 16px;
}

.notification-group-status {
    position: absolute;
    right: 7%;
    top: 95px;
    z-index:12;
}

    .notification-group-status i {
        font-size: 23px;
    }

.notifi-row-list-button {
    display: flex;
    grid-gap: 10px;
}

.notifi-row-button {
    cursor: pointer;
    border-radius: 5px;
    height: 30px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .notifi-row-button.confirm {
        border: 1px solid #00738b;
        color: #00a6c7;
        font-weight: 600;
    }

        .notifi-row-button.confirm:hover {
            background: #42bdd6;
            color: #ffffff;
            font-weight: 600;
        }

    .notifi-row-button.decline {
        border: 1px solid #f01056;
        color: #f01056;
        font-weight: 600;
    }

        .notifi-row-button.decline:hover {
            background: #f01056;
            color: #ffffff;
            font-weight: 600;
        }

.notifi-row-button-status {
    border-radius: 10px;
    height: 30px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .notifi-row-button-status.booking {
        border: 1px solid #42bdd6;
        color: #42bdd6;
    }

    .notifi-row-button-status.decline {
        border: 1px solid #f01056;
        color: #f01056;
    }

    .notifi-row-button-status.expired {
        border: 1px solid #f7c600;
        color: #f7c600;
    }

/*
.notification-group-more-detail {
    display: none;
    height: 80px;
    width: 120px;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    position: absolute;
    top: 0px;
    right: 0px;
    background: white;
}

.notification-group-more-option {
    height: 40px;
    width: 100%;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

    .notification-group-more-option:hover {
        background: #e3e3e3;
    }

    .notification-group-more-option:first-child {
        border-bottom: 1px solid #d3d3d3;
    }

.notification-group-more i:hover + .notification-group-more-detail, .notification-group-more-detail:hover {
    display: flex;
    flex-direction: column;
}

*/


.notifi-row {
    flex-wrap: nowrap;
    flex-direction: row;
    min-height: 100px;
    cursor: default !important;
    display: flex;
    border-bottom: 1px solid #e3e3e3;
}

    .notifi-row.noRead {
        background: #d9feff;
    }

.notifi-row-left {
    width: calc(100% - 90px);
}

.notifi-row-right {
    width: 90px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    padding: 10px 0;
    height: 100%;
    position: relative;
}

    .notifi-row-right i {
        cursor: pointer !important;
    }

.notifi-row-status {
    position: absolute;
    width: 100%;
    border: 1px solid black;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 10px;
    padding: 10px;
}

    .notifi-row-status.book {
        color: #39bbbf;
        border: 2px solid #39bbbf;
        border-radius: 5px;
    }

    .notifi-row-status.decline {
        color: #edab15;
        border: 2px solid #edab15;
        border-radius: 5px;
    }

.notifi-row-group {
    position: relative;
    height: 90px;
}

    .notifi-row-group:not(:last-child):after {
        width: 100%;
        border-bottom: 1px solid #d3d3d3;
        position: absolute;
        content: "";
        height: 1px;
    }

.notifi-row-list-button {
    display: flex;
    grid-gap: 10px;
}


.table-notifi-appointment-detail {
    width: 100%;
}

    .table-notifi-appointment-detail th {
        text-align: center;
        height: 40px;
        border-bottom: 1px solid #d3d3d3;
    }

.table-notifi-row-name {
    height: 40px;
    border-bottom: 2px dotted #a3a0a0;
    border-top: 1px solid #d3d3d3;
}

    .table-notifi-row-name td {
        justify-content: space-between;
        padding: 0 20px;
        align-items: center;
    }

        .table-notifi-row-name td p {
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.table-notifi-row-service td {
    text-align: center;
}



.noImage .backgr-name {
    display: flex;
}

.noImage img {
    display: none !important;
}

.notification-group .client-image:not(.noImage) img {
    display: block;
    width: 100%;
    height: 100%;
}

.backgr-name {
    font-size: 18px;
    font-weight: 800;
    background: #cde4ff;
    color: var(--main-color);
    height: 100%;
    width: 100%;
    border-radius: 100%;
    display: none;
    align-items: center;
    text-transform: uppercase;
    justify-content: center;
}

.notification-group .client-image {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid #d3d3d3;
}

    .notification-group .client-image img {
        border-radius: 50%;
        width: 80px;
        height: 80px;
    }
.client-image-box {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.row-no-ticket {
    width: 100%;
    text-align: center;
    padding: 30px;
    display: none;
}

.row-today.dis-none + .row-feature.dis-none + .row-no-ticket {
    display: block;
}