/* _content/Clevi.App.Components.Communications/ChatBots/ChatBotChatBox.razor.rz.scp.css */
@media screen and (max-width: 600px) {
    .cl-chatbox-setting_sidebar[b-g9tiwgi8in] {
        width: 250px !important;
    }
}

.cl-chatbox-setting_sidebar[b-g9tiwgi8in] {
    z-index: 10;
    position: absolute;
    right: 0;
    top:30px;
    height: calc(100vh - 200px);
    width: 300px;
    animation-name: chatbox-sidebar;
    -webkit-animation-name: chatbox-sidebar;
    animation-duration: .3s;
    -webkit-animation-duration: .3s;
    animation-timing-function:ease-in-out;
    background-color: #ffffff;
    color: #333333;
    padding: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.back-to-chatroom[b-g9tiwgi8in] {
    width: 24px;
    height: 24px;
}
.chatBotBox-wrap[b-g9tiwgi8in] {
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    height: 100%;
    position: relative;
}
.cl-chatbox--header[b-g9tiwgi8in]{
    padding-bottom: 5px;
}
.cl-chatbox--header-button[b-g9tiwgi8in] {
    display: flex;
    column-gap: 5px;
}
.cl-chatbox--header-button[b-g9tiwgi8in]  .clc-button{
    border-radius: 7px;
    -webkit-border-radius: 7px;
}
.cl-chatbox--header-button[b-g9tiwgi8in]  .clc-button:last-child{
    margin-right: 10px;
}
/* _content/Clevi.App.Components.Communications/ChatBots/ChatBotChatListSidebar.razor.rz.scp.css */
/*그룹 대화상대 추가페이지*/

.edit-chatsetting-wrap[b-v8om94tjin] {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    -webkit-flex-flow: column;
    align-content: space-between;
    -webkit-align-content: space-between;
}

.chatbot-box-sidebar[b-v8om94tjin] {
    padding: 15px;
    display: flex;
    flex-flow: column;
    -webkit-flex-flow: column;
}

.chatbot-box-header[b-v8om94tjin] {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    margin-bottom: 15px;
}

.chatbot-box-title[b-v8om94tjin] {
    font-size: 17px;
    font-weight: bold;
    margin: 0;
    color: #333333;
}

.chatbot-box-new-chat-button[b-v8om94tjin] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #333333;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
}

    .chatbot-box-new-chat-button:hover[b-v8om94tjin] {
        background-color: #505050;
    }

.chatbot-box-search[b-v8om94tjin] {
    background-color: #f0f0f0;
    color: #333333;
    border: 1px solid #cccccc;
    padding: 8px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    -webkit-transition: border-color 0.3s ease;
}

    .chatbot-box-search[b-v8om94tjin]::placeholder {
        color: #999999;
    }

    .chatbot-box-search:focus[b-v8om94tjin] {
        border-color: #666666;
        outline: none;
    }

.chatbot-box-sidebar-item[b-v8om94tjin] {
    margin-top: 12px;
    margin-bottom: 12px;
    padding-bottom: 15px;
    overflow-y: auto;
    height: calc(100vh - 400px);
}

    .chatbot-box-sidebar-item h3[b-v8om94tjin] {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 15px;
        color: #333333;
    }

    .chatbot-box-sidebar-item ul[b-v8om94tjin] {
        display: flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        list-style: none;
        padding: 0;
        margin: 0;
        row-gap: 5px;
    }

        .chatbot-box-sidebar-item ul li[b-v8om94tjin] {
            display: flex;
            justify-content: space-between;
            -webkit-justify-content: space-between;
            cursor: pointer;
            transition: color 0.2s ease;
            -webkit-transition: color 0.2s ease;
            padding: 10px 0; /* 모바일에서 터치 영역을 크게 하기 위해 패딩 추가 */
        }
            .chatbot-box-sidebar-item ul li span[b-v8om94tjin] {
                font-size: 15px;
                flex: 1;
                -webkit-flex: 1;
            }
            .chatbot-box-sidebar-item ul li img[b-v8om94tjin] {
                height: 13px;
                width: 13px;
            }

/* 모바일 친화적인 스타일링 */
@media screen and (max-width: 600px) {
    .chatbot-box-sidebar[b-v8om94tjin] {
        max-width: 100%;
        padding: 10px;
    }

    .chatbot-box-title[b-v8om94tjin] {
        font-size: 15px;
    }
    .chatbot-box-sidebar-item h3[b-v8om94tjin] {
        font-size: 13px;
    }

    .chatbot-box-new-chat-button[b-v8om94tjin],
    .chatbot-box-search[b-v8om94tjin] {
        font-size: 13px;
        padding: 10px;
    }

    .chatbot-box-sidebar-item[b-v8om94tjin]::-webkit-scrollbar {
        width: 10px;
    }
}

.popup-button_wrap[b-v8om94tjin] {
}

    .popup-button_wrap[b-v8om94tjin]  .clc-button {
        white-space: nowrap;
        padding: 0;
        border-radius: 0;
        width: 100%;
        color: #767676 !important;
    }
/* _content/Clevi.App.Components.Communications/ChatBots/ChatBotPocketSidebar.razor.rz.scp.css */
/*그룹 대화상대 추가페이지*/

.edit-chatsetting-wrap[b-fz67mnrl9j] {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    -webkit-flex-flow: column;
    align-content: space-between;
    -webkit-align-content: space-between;
}

.chatbot-box-sidebar[b-fz67mnrl9j] {
    padding: 15px;
}

.chatbot-box-header[b-fz67mnrl9j] {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    margin-bottom: 15px;
}

.chatbot-box-title[b-fz67mnrl9j] {
    font-size: 17px;
    font-weight: bold;
    margin: 0;
    color: #333333;
}

.chatbot-box-new-chat-button[b-fz67mnrl9j] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #333333;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
}

    .chatbot-box-new-chat-button:hover[b-fz67mnrl9j] {
        background-color: #505050;
    }

.chatbot-box-search[b-fz67mnrl9j] {
    background-color: #f0f0f0;
    color: #333333;
    border: 1px solid #cccccc;
    padding: 8px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    -webkit-transition: border-color 0.3s ease;
}

    .chatbot-box-search[b-fz67mnrl9j]::placeholder {
        color: #999999;
    }

    .chatbot-box-search:focus[b-fz67mnrl9j] {
        border-color: #666666;
        outline: none;
    }

.chatbot-box-sidebar-item[b-fz67mnrl9j] {
    margin-top: 12px;
    margin-bottom: 12px;
    padding-bottom: 15px;
    overflow-y: auto;
    height: calc(100vh - 400px);
}

    .chatbot-box-sidebar-item h3[b-fz67mnrl9j] {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 15px;
        color: #333333;
    }

    .chatbot-box-sidebar-item ul[b-fz67mnrl9j] {
        display: flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        list-style: none;
        padding: 0;
        margin: 0;
        row-gap: 5px;
    }

        .chatbot-box-sidebar-item ul li[b-fz67mnrl9j] {
            font-size: 16px;
            cursor: pointer;
            transition: color 0.2s ease;
            -webkit-transition: color 0.2s ease;
            padding: 10px 0; /* 모바일에서 터치 영역을 크게 하기 위해 패딩 추가 */
        }

            .chatbot-box-sidebar-item ul li:hover[b-fz67mnrl9j] {
                color: #666666;
            }

/* 모바일 친화적인 스타일링 */
@media screen and (max-width: 600px) {
    .chatbot-box-sidebar[b-fz67mnrl9j] {
        max-width: 100%;
        padding: 10px;
    }

    .chatbot-box-title[b-fz67mnrl9j] {
        font-size: 15px;
    }
    .chatbot-box-sidebar-item h3[b-fz67mnrl9j] {
        font-size: 13px;
    }
    .chatbot-box-new-chat-button[b-fz67mnrl9j],
    .chatbot-box-search[b-fz67mnrl9j] {
        font-size: 13px;
        padding: 10px;
    }

    .chatbot-box-sidebar-item[b-fz67mnrl9j]::-webkit-scrollbar {
        width: 10px;
    }

}
/* _content/Clevi.App.Components.Communications/ChatBots/ChatBotSettingsSidebar.razor.rz.scp.css */
/* 기존 스타일을 유지하며 디자인 수정 */

/* 공통 스타일 */
.edit-chatsetting-wrap[b-en56lyq4tj] {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    align-content: space-between;
    background-color: #ffffff; /* 흰색 배경 */
    /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */ /* 박스에 그림자 추가 */
    border-radius: 12px; /* 모서리를 둥글게 처리 */
}
.chatbot-box-sidebar[b-en56lyq4tj] {
    padding: 15px;
}

/* 헤더를 고정 */
.chatbot-box-header[b-en56lyq4tj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    position: sticky;
    top: 0;
    background-color: #ffffff; /* 배경색을 추가하여 고정 시 일관된 배경 유지 */
    z-index: 10;
}


.chatbot-box-title[b-en56lyq4tj] {
    font-size: 17px;
    font-weight: bold;
    margin: 0;
    color: #333333;
}

/* 모델 선택 목록 */
.chatbot-box-sidebar-item[b-en56lyq4tj] {
    overflow-y: auto; /* 목록을 스크롤 가능하게 설정 */
    padding-right: 10px;
    height: calc(100vh - 420px);
}
    .chatbot-box-sidebar-item h3[b-en56lyq4tj] {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 15px;
        color: #333333;
    }

    .chatbot-box-sidebar-item ul li[b-en56lyq4tj] {
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.2s ease, color 0.2s ease;
        padding: 12px 10px; /* 터치 영역을 넓히기 위해 패딩 추가 */
        border-radius: 8px; /* 모서리를 둥글게 */
        background-color: #f9f9f9; /* 리스트 항목 배경색 */
        margin-bottom: 10px; /* 항목 간격 조정 */
    }

        .chatbot-box-sidebar-item ul li:hover[b-en56lyq4tj] {
            background-color: #eaeaea; /* 호버 시 배경색 변경 */
            color: #333333;
        }

        .chatbot-box-sidebar-item ul li.selected[b-en56lyq4tj] {
            background-color: #e0e0e0; /* 선택된 항목 배경색 */
            color: #000000;
            font-weight: bold;
            border-left: 4px solid #333333; /* 선택된 항목 왼쪽에 테두리 */
        }

        .chatbot-box-sidebar-item ul li code[b-en56lyq4tj] {
            display: block;
            font-size: 12px;
            color: #777777; /* 코드명을 작은 크기와 옅은 색상으로 표시 */
            margin-top: 3px;
        }

/* 검색 필드와 버튼 스타일 */
.chatbot-box-search[b-en56lyq4tj] {
    background-color: #f0f0f0;
    color: #333333;
    border: 1px solid #cccccc;
    padding: 10px 15px;
    border-radius: 8px; /* 모서리를 둥글게 */
    font-size: 14px;
    width: 100%;
    margin-bottom: 20px;
}

.chatbot-box-new-chat-button[b-en56lyq4tj] {
    width: 100%;
    padding: 14px;
    background-color: #333333; /* 짙은 색 버튼 */
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px; /* 모서리를 둥글게 */
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px; /* 버튼 상단 간격 조정 */
    position: sticky;
    bottom: 0;
    z-index: 10;
}

    .chatbot-box-new-chat-button:hover[b-en56lyq4tj] {
        background-color: #505050; /* 호버 시 더 진한 색상 */
        transform: scale(1.02); /* 버튼에 살짝 확대 효과 */
    }

/* 모바일 친화적인 스타일링 */
@media screen and (max-width: 600px) {
    .chatbot-box-sidebar[b-en56lyq4tj] {
        max-width: 100%;
        padding: 10px;
    }

    .chatbot-box-title[b-en56lyq4tj] {
        font-size: 15px;
    }

    .chatbot-box-sidebar-item h3[b-en56lyq4tj] {
        font-size: 13px;
    }
    .chatbot-box-new-chat-button[b-en56lyq4tj],
    .chatbot-box-search[b-en56lyq4tj] {
        font-size: 13px;
        padding: 10px;
    }
    .chatbot-box-sidebar-item[b-en56lyq4tj]::-webkit-scrollbar {
        width: 10px;
    }
}
/* _content/Clevi.App.Components.Communications/ChatBox.razor.rz.scp.css */
.cl_chatbox-blackout[b-4n5685qes1] {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; /* Vertical center alignment */
    -webkit-align-items: center; /* Vertical center alignment */
    justify-content: center; /* Horizontal center alignment */
    -webkit-justify-content: center; /* Horizontal center alignment */
    background-color: rgba(0, 0, 0, 0.3); /* Adjusted for better readability */
}

.centered-content[b-4n5685qes1] {
    text-align: center; /* Center the text and any content inside the div */
    color: white;
    font-size: 19px;
}


.back-to-chatroom[b-4n5685qes1] {
    width: 24px;
    height: 24px;
}

/*.cl_chatbox-blackout{
    position:absolute;
    z-index:100;
    width:100%;
    height:100%;
    display:flex;
    background-color:#0000004d;
}
.cl_chatbox-blackout .speak_img{
    margin: auto auto 50px;
}

.cl_chatbox-blackout .speak_img video{
    width:50px;
    height:auto;
}*/

.cl-chatbox-setting_sidebar[b-4n5685qes1] {
    background-color: #FFF;
    z-index: 10;
    position: absolute;
    right: 0;
    bottom: 0;
    height: calc(100% - 45px);
    width: 250px;
    animation-name: chatbox-sidebar-b-4n5685qes1;
    -webkit-animation-name: chatbox-sidebar;
    animation-duration: .3s;
    -webkit-animation-duration: .3s;
}

@keyframes chatbox-sidebar-b-4n5685qes1 {
    from {
        transform: translateX(30px);
        -webkit-transform: translateX(30px);
    }

    to {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
}

.cl-chattings .cl-list--body[b-4n5685qes1] {
    padding: 0 20px;
}

    .cl-chattings .cl-list--body .cl-card[b-4n5685qes1] {
        margin-bottom: 8px;
        padding: 12px 16px;
        min-height: 76px;
    }

.cl-chattings .cl-list--preview[b-4n5685qes1] {
    display: grid;
    grid-template-columns: 52px 1fr;
}

    .cl-chattings .cl-list--preview .cl-img[b-4n5685qes1] {
        grid-row: 1/span 2;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
    }

        .cl-chattings .cl-list--preview .cl-img img[b-4n5685qes1] {
            display: block;
            width: 36px;
            height: 36px;
        }

    .cl-chattings .cl-list--preview .head[b-4n5685qes1] {
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: space-between;
        -webkit-justify-content: space-between;
    }

        .cl-chattings .cl-list--preview .head .time[b-4n5685qes1] {
            display: flex;
            align-items: center;
            -webkit-align-items: center;
            color: #6C757D;
            font-size: 10px;
            line-height: 16px;
            font-weight: 600;
            opacity: 0.8;
        }

            .cl-chattings .cl-list--preview .head .time .cl-icon[b-4n5685qes1] {
                margin-right: 2px;
            }

    .cl-chattings .cl-list--preview .cont[b-4n5685qes1] {
        grid-column: 2/span 3;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        margin-top: 4px;
        width: 100%;
    }

        .cl-chattings .cl-list--preview .cont .cl-list--message[b-4n5685qes1] {
            padding-right: 16px;
            color: #6C757D;
            font-size: 12px;
            line-height: 16px;
            font-weight: 500;
        }

.cl-chatbox[b-4n5685qes1] {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cl-chatbox--inner[b-4n5685qes1] {
    height: 100%;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
}

.cl-chatbox--header[b-4n5685qes1] {
    height: 45px;
    border: none;
    background-color: #fff;
}

.cl-chatbox--header-actions[b-4n5685qes1] {
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
}

.cl-chatbox--info[b-4n5685qes1] {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    border: none;
}

    .cl-chatbox--info .cl-icon[b-4n5685qes1] {
        margin-right: 16px;
    }

.cl-chatbox--status[b-4n5685qes1] {
    display: block;
    margin-right: 0px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #37CD4F;
}

.cl-chatbox--name[b-4n5685qes1] {
    display: block;
    color: #343A40;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}

.cl-chatbox--header-button[b-4n5685qes1] {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-right: 5px;
    column-gap: 5px;
    -webkit-column-gap: 5px;
}

.cl-chatbox--body[b-4n5685qes1] {
    position: relative;
    display: flex;
    flex-grow: 1;
    -webkit-flex-grow: 1;
    flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}

    .cl-chatbox--body .content[b-4n5685qes1] {
        height: 100%;
        width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        top: 0;
        position: absolute;
        -webkit-overflow-scrolling: touch;
    }

        .cl-chatbox--body .content[b-4n5685qes1]::-webkit-scrollbar {
            width: 15px;
            background: transparent;
            border-radius: 7px;
            -webkit-border-radius: 7px;
            background-clip: padding-box;
            -webkit-background-clip: padding-box;
        }

        .cl-chatbox--body .content[b-4n5685qes1]::-webkit-scrollbar-thumb {
            width: 15px;
            border-radius: 8px;
            -webkit-border-radius: 8px;
            background-color: rgba(115, 105, 133, 0.25);
        }

            .cl-chatbox--body .content[b-4n5685qes1]::-webkit-scrollbar-thumb:hover {
                width: 15px;
                border-radius: 8px;
                -webkit-border-radius: 8px;
                background-color: rgba(115, 105, 133, 0.4);
            }

            .cl-chatbox--body .content[b-4n5685qes1]::-webkit-scrollbar-thumb:active {
                border-radius: 8px;
                -webkit-border-radius: 8px;
                background: rgba(115, 105, 133, 0.6);
            }

        .cl-chatbox--body .content[b-4n5685qes1]::-webkit-scrollbar-track {
            background-color: rgba(164, 163, 186, 0);
            border-radius: 8px;
            -webkit-border-radius: 8px;
        }

@media screen and (max-width:768px) {

    .cl-chatbox--body .content[b-4n5685qes1]::-webkit-scrollbar {
        width: 10px !important;
    }

    .cl-chatbox--body .content[b-4n5685qes1]::-webkit-scrollbar-thumb {
        width: 10px !important;
    }

        .cl-chatbox--body .content[b-4n5685qes1]::-webkit-scrollbar-thumb:hover {
            width: 10px !important;
        }
}

.cl-chatbox--body .chat-null-message[b-4n5685qes1] {
    height: 100%;
    width: 100%;
    display: flex;
}

    .cl-chatbox--body .chat-null-message h1[b-4n5685qes1] {
        font-size: 15px;
        margin: auto;
        opacity: .6;
    }

.cl-chatbox--bubble[b-4n5685qes1] {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 16px;
}

    .cl-chatbox--bubble[b-4n5685qes1]:before {
        content: "";
        display: block;
        clear: both;
    }

    .cl-chatbox--bubble[b-4n5685qes1]:after {
        content: "";
        display: block;
        clear: both;
    }

.cl-chatbox--bubble--right[b-4n5685qes1] {
    position: relative;
    display: flex;
    justify-content: end;
    -webkit-justify-content: end;
}

    .cl-chatbox--bubble--right[b-4n5685qes1]:before {
        content: none;
    }

.cl-chatbox--bubble--right-span[b-4n5685qes1] {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #6C757D;
    font-size: 10px;
    line-height: 12px;
    font-weight: 400;
    margin: 0 15px 0 0;
}

.cl-chatbox--bubble--right-read[b-4n5685qes1] {
    position: absolute;
    bottom: 0;
    bottom: -3px;
    right: 120px;
    font-style: unset;
    font-size: 11px;
}

.cl-chatbox--bubble--right .cl-chatbox--text[b-4n5685qes1] {
    margin-bottom: 0px;
    padding: 10px 15px;
    color: #495057;
    line-height: 20px;
    font-weight: 600;
    border-radius: 16px 2px 16px 16px;
    -webkit-border-radius: 16px 2px 16px 16px;
    background-color: #E6EDFF;
    margin: 0 10px 0 20px;
    max-width: calc(100vw - 70px);
}
    .cl-chatbox--bubble--right .cl-chatbox--text[b-4n5685qes1]  .clc-chat-message {
        overflow-wrap: break-word;
        word-break:keep-all;
    }

.cl-chatbox--bubble--left[b-4n5685qes1] {
    position: relative;
    display: flex;
    justify-content: start;
    -webkit-justify-content: start;
}

    .cl-chatbox--bubble--left[b-4n5685qes1]::before {
        content: "";
        position: absolute;
        bottom: 7px;
        left: 0;
        width: 8px;
        height: 8px;
        border-bottom-right-radius: 10px;
        -webkit-border-bottom-right-radius: 10px;
    }

    .cl-chatbox--bubble--left .chatbot[b-4n5685qes1] {
        display: flex;
        /*        align-items: center;
        -webkit-align-items: center;*/
        justify-content: center;
        -webkit-justify-content: center;
        margin: 0 4px 0 2px;
    }

    .cl-chatbox--bubble--left .cl-chatbox--text[b-4n5685qes1] {
        padding: 15px;
        color: #343A40;
        line-height: 20px;
        font-weight: 400;
        border-radius: 2px 16px 16px 16px;
        -webkit-border-radius: 2px 16px 16px 16px;
        background-color: #f2f4f6;
        margin-right: 20px;
        margin-top: 20px;
        max-width: calc(100vw - 70px);
        display: flex;
    }
        .cl-chatbox--bubble--left .cl-chatbox--text[b-4n5685qes1]  .clc-chat-message {
            overflow-wrap: break-word;
            word-break: keep-all;
        }
        .cl-chatbox--bubble--left .cl-chatbox--text[b-4n5685qes1]  p:last-child {
            margin-bottom: 0;
        }

.cl-chatbox--bubble--left-span[b-4n5685qes1] {
    position: absolute;
    bottom: -3px;
    left: 44px;
    font-size: 10px;
}

.cl-chatbox--bubble--left-read[b-4n5685qes1] {
    position: absolute;
    bottom: 0;
    bottom: -4px;
    left: 150px;
    font-style: unset;
    font-size: 11px;
}

.cl-chatbox--userid[b-4n5685qes1] {
    position: absolute;
    left: 43px;
    top: -2px;
    font-size: 14px;
}



.cl-chatbox--sendbox[b-4n5685qes1] {
    flex: 1;
    -webkit-flex: 1;
    border-radius: 13px; /* 모서리 둥글게 설정 */
    -webkit-border-radius: 13px; /* 모서리 둥글게 설정 */
    border: none;
    outline: none;
    width: 100%; /* 남은 공간 모두 사용 */
    min-height: 30px; /* 최소 높이 설정 */
    max-height: 140px; /* 최대 높이 설정 */
    padding: 5px 0px 0px 5px; /* 안쪽 여백 설정 */
    resize: none; /* 크기 조절 기능 제거 */
    /*background-color: #F2F2F2;*/ /* 배경색 설정 */
    background-color: #fff; /* 배경색 설정 */
    overflow-y: auto; /* 내용이 넘칠 경우 스크롤바 표시 */
    border: none; /* 경계선 설정 */
    box-sizing: border-box; /* 박스 크기 계산 방법 border-box로 설정 */
    -webkit-box-sizing: border-box; /* 박스 크기 계산 방법 border-box로 설정 */
    font-size: 16px;
    margin: 0;
    line-height: 20px;
}


    .cl-chatbox--sendbox[b-4n5685qes1]::-webkit-scrollbar {
        width: 6px; /* 스크롤바의 너비 */
        background: rgba(115, 105, 133, 0.2);
        border-radius: 7px;
        -webkit-border-radius: 7px;
        background-clip: padding-box;
        -webkit-background-clip: padding-box;
    }

    .cl-chatbox--sendbox[b-4n5685qes1]::-webkit-scrollbar-track {
        background-color: rgba(164, 163, 186, 0);
        border-radius: 8px;
        -webkit-border-radius: 8px;
    }

    .cl-chatbox--sendbox[b-4n5685qes1]::-webkit-scrollbar-thumb {
        /*background: #888;*/ /* 스크롤바 핸들(썸)의 배경 색상 */
        background-color: rgba(115, 105, 133, 0.2);
        border-radius: 7px;
        -webkit-border-radius: 7px;
    }

        .cl-chatbox--sendbox[b-4n5685qes1]::-webkit-scrollbar-thumb:hover {
            width: 11px;
            border-radius: 8px;
            -webkit-border-radius: 8px;
            background-color: rgba(115, 105, 133, 0.3);
        }

.cl-chatbox--footer[b-4n5685qes1] {
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: center; /* 아이템들을 세로 중앙에 정렬 */
    -webkit-align-items: center; /* 아이템들을 세로 중앙에 정렬 */
    justify-content: space-around; /* 아이템들을 가로로 균등 배치 */
    -webkit-justify-content: space-around; /* 아이템들을 가로로 균등 배치 */
    border: none;
    z-index: 5;
    overflow: visible;
}

    .cl-chatbox--footer .input_wrap[b-4n5685qes1] {
        display: flex;
        flex-direction: row;
        -webkit-flex-direction: row;
        align-items: center; /* 아이템들을 세로 중앙에 정렬 */
        -webkit-align-items: center; /* 아이템들을 세로 중앙에 정렬 */
        justify-content: space-around; /* 아이템들을 가로로 균등 배치 */
        -webkit-justify-content: space-around; /* 아이템들을 가로로 균등 배치 */
        border: none;
        background-color: #fff;
        z-index: 1;
        overflow: visible;
        width: 100%;
        padding: 10px;
        border-top: 1px solid #f2f4f6;
    }

    .cl-chatbox--footer .upload_wrap[b-4n5685qes1] {
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
        align-self: end;
        width: fit-content;
        height: fit-content;
    }

        .cl-chatbox--footer .upload_wrap button img[b-4n5685qes1] {
            width: 17px;
            height: 17px;
            display: block; /* Ensures the image is rendered properly */
        }

        .cl-chatbox--footer .upload_wrap button img[b-4n5685qes1] {
            width: 17px;
            height: 17px;
        }

    .cl-chatbox--footer .cl-chatbox--btn-wrap[b-4n5685qes1] {
        display: inline-block; /* Ensure the button is inline-block */
        transform: translateZ(0); /* Force hardware acceleration */
        -webkit-transform: translateZ(0); /* Force hardware acceleration */
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
        width: fit-content;
        height: fit-content;
        align-self: end;
    }

    .cl-chatbox--footer .cl-chatbox--btn[b-4n5685qes1] {
        position: relative;
        outline: none;
        border: none;
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center;
        background-color: transparent;
        margin-right: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
    }

        .cl-chatbox--footer .cl-chatbox--btn span[b-4n5685qes1] {
            font-size: 20px;
            font-weight: 600;
            background: linear-gradient(to right top, #3d91ff, #f50ce5);
            color: transparent;
            -webkit-background-clip: text;
        }

        .cl-chatbox--footer .cl-chatbox--btn:last-child[b-4n5685qes1] {
            margin: 0;
        }

        .cl-chatbox--footer .cl-chatbox--btn.btn--file--upload[b-4n5685qes1] {
            margin-right: 5px;
            background-image: url("data:image/svg+xml,%0A%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='20' fill='%236C757D'/%3E%3Cmask id='mask0_1_2106' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='8' y='8' width='24' height='24'%3E%3Crect x='8' y='8' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1_2106)'%3E%3Cpath d='M12 28C11.45 28 10.9792 27.8042 10.5875 27.4125C10.1958 27.0208 10 26.55 10 26V14C10 13.45 10.1958 12.9792 10.5875 12.5875C10.9792 12.1958 11.45 12 12 12H17.175C17.4417 12 17.6958 12.05 17.9375 12.15C18.1792 12.25 18.3917 12.3917 18.575 12.575L20 14H28C28.55 14 29.0208 14.1958 29.4125 14.5875C29.8042 14.9792 30 15.45 30 16V26C30 26.55 29.8042 27.0208 29.4125 27.4125C29.0208 27.8042 28.55 28 28 28H12ZM20 25C20.2833 25 20.5208 24.9042 20.7125 24.7125C20.9042 24.5208 21 24.2833 21 24V20.8L21.9 21.7C22.0833 21.8833 22.3167 21.975 22.6 21.975C22.8833 21.975 23.1167 21.8833 23.3 21.7C23.4833 21.5167 23.575 21.2833 23.575 21C23.575 20.7167 23.4833 20.4833 23.3 20.3L20.7 17.7C20.5 17.5 20.2667 17.4 20 17.4C19.7333 17.4 19.5 17.5 19.3 17.7L16.7 20.3C16.5167 20.4833 16.425 20.7167 16.425 21C16.425 21.2833 16.5167 21.5167 16.7 21.7C16.8833 21.8833 17.1167 21.975 17.4 21.975C17.6833 21.975 17.9167 21.8833 18.1 21.7L19 20.8V24C19 24.2833 19.0958 24.5208 19.2875 24.7125C19.4792 24.9042 19.7167 25 20 25Z' fill='%23F8F9FA'/%3E%3C/g%3E%3C/svg%3E%0A");
        }

        .cl-chatbox--footer .cl-chatbox--btn.btn--send[b-4n5685qes1] {
            padding: 0 !important;
            /*background-image: url("data:image/svg+xml,%0A%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='20' fill='%234676F4'/%3E%3Cmask id='mask0_1_2112' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='8' y='8' width='24' height='24'%3E%3Crect x='8' y='8' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1_2112)'%3E%3Cpath d='M12.4 27.425C12.0667 27.5583 11.75 27.5292 11.45 27.3375C11.15 27.1458 11 26.8667 11 26.5V22L19 20L11 18V13.5C11 13.1333 11.15 12.8542 11.45 12.6625C11.75 12.4708 12.0667 12.4417 12.4 12.575L27.8 19.075C28.2167 19.2583 28.425 19.5667 28.425 20C28.425 20.4333 28.2167 20.7417 27.8 20.925L12.4 27.425Z' fill='white'/%3E%3C/g%3E%3C/svg%3E%0A");*/
        }

            .cl-chatbox--footer .cl-chatbox--btn.btn--send[b-4n5685qes1]::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                display: block;
                width: 100%;
                height: 100%;
                border-radius: 100%;
                -webkit-border-radius: 100%;
                box-shadow: none;
                -webkit-box-shadow: none;
                /* box-shadow: 0px 4px 20px -4px rgba(70, 118, 244, 0.4);
        -webkit-box-shadow: 0px 4px 20px -4px rgba(70, 118, 244, 0.4);*/
            }


.cl-chatbox--sendbox_wrap[b-4n5685qes1] {
    width: 100%;
    background-color: #fff;
    border-radius: 13px;
    -webkit-border-radius: 13px;
    border: none;
    padding: 0px 10px 0 0;
    height: fit-content;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

    .cl-chatbox--sendbox_wrap .cl-chatbox--btn-wrap[b-4n5685qes1]  .clc-button {
        -webkit-align-items: center !important;
        height: 25px !important;
        width: 25px !important;
        padding: 0 !important;
        min-height: fit-content !important;
    }



/*이미지 미리보기 디자인*/
.img_preview[b-4n5685qes1] {
    padding: 10px 0;
    width: 100%;
    /*position: sticky;*/
    /*bottom: 0;*/
    height: fit-content;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    background-color: #3f3f3f77;
}

    .img_preview .wrap[b-4n5685qes1] {
        width: 100%;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
    }

        .img_preview .wrap ul[b-4n5685qes1] {
            padding: 10px;
            display: flex;
            flex-wrap: nowrap;
            -webkit-flex-wrap: nowrap;
            flex-direction: row;
            -webkit-flex-direction: row;
            overflow-y: auto;
            column-gap: 30px;
            -webkit-column-gap: 30px;
        }

            .img_preview .wrap ul li[b-4n5685qes1] {
                position: relative;
                display: flex;
                align-items: center;
                -webkit-align-items: center;
                justify-content: center;
                -webkit-justify-content: center;
                flex-direction: column;
                -webkit-flex-direction: column;
            }

                .img_preview .wrap ul li .preview_img[b-4n5685qes1] {
                    width: auto;
                    height: 60px;
                }

                .img_preview .wrap ul li .close[b-4n5685qes1] {
                    width: 20px;
                    height: 20px;
                    position: absolute;
                    top: -3px;
                    right: -7px;
                }

                .img_preview .wrap ul li .file-extension[b-4n5685qes1] {
                    position: absolute;
                    top: -3px;
                    left: -2px;
                    background-color: rgba(0, 0, 0, 0.7);
                    color: white;
                    padding: 1px 3px;
                    border-radius: 3px;
                    -webkit-border-radius: 3px;
                    font-size: 10px;
                    z-index: 1; /* Ensure it appears above the image */
                }

                .img_preview .wrap ul li .file-name[b-4n5685qes1] {
                    font-size: 13px;
                    font-weight: 600;
                    color: white;
                    margin-top: 5px;
                }

/*파일 첨부*/
.cl_ivy-chat_upload-card[b-4n5685qes1] {
    max-height: 350px;
    min-height: 110px;
    width: 100%;
    max-width: 768px;
    overflow-y: auto;
}

.cl_ivy-chat_upload[b-4n5685qes1] {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

    .cl_ivy-chat_upload ul[b-4n5685qes1] {
        display: flex;
        row-gap: 15px;
        column-gap: 20px;
        -webkit-column-gap: 20px;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }

        .cl_ivy-chat_upload ul li[b-4n5685qes1] {
            display: flex;
            flex-direction: column;
            -webkit-flex-direction: column;
            align-items: center;
            -webkit-align-items: center;
        }

            .cl_ivy-chat_upload ul li img[b-4n5685qes1] {
                width: 45px;
                height: 45px;
            }

            .cl_ivy-chat_upload ul li span[b-4n5685qes1] {
                font-size: 13px;
                font-weight: 400;
            }

            .cl_ivy-chat_upload ul li[b-4n5685qes1]  .clc-fileupload-buttonbar {
                background-color: transparent;
                padding: 0;
            }

            .cl_ivy-chat_upload ul li[b-4n5685qes1]  .clc-fileupload-choose:not(.clc-state-disabled) {
                background-color: transparent;
                padding: 3px 0 0 0;
                border-radius: 0 !important;
                -webkit-border-radius: 0 !important;
                box-shadow: none;
                -webkit-box-shadow: none;
            }

                .cl_ivy-chat_upload ul li[b-4n5685qes1]  .clc-fileupload-choose:not(.clc-state-disabled) i {
                    display: none;
                }

                .cl_ivy-chat_upload ul li[b-4n5685qes1]  .clc-fileupload-choose:not(.clc-state-disabled) span {
                    font-size: 13px;
                    font-weight: 400;
                    margin-top: 8px;
                }


/*AI활용 관련 슬라이드*/
.chat_one-off[b-4n5685qes1] {
    padding: 20px;
    width: 100%;
    max-width: 425px;
    height: 100%;
    overflow-y: auto;
    padding-right: 15px;
}

    .chat_one-off .wrap[b-4n5685qes1] {
        padding-bottom: 10px;
        margin-bottom: 15px;
        border-bottom: 1px solid #D3D3D3;
    }

        .chat_one-off .wrap:last-child[b-4n5685qes1] {
            border-bottom: none;
        }

        .chat_one-off .wrap p[b-4n5685qes1] {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 10px
        }

        .chat_one-off .wrap .select[b-4n5685qes1] {
        }

            .chat_one-off .wrap .select .switch[b-4n5685qes1] {
                display: flex;
                justify-content: space-between;
                -webkit-justify-content: space-between;
                align-items: center;
                -webkit-align-items: center;
                margin-bottom: 5px;
            }

                .chat_one-off .wrap .select .switch span[b-4n5685qes1] {
                    font-size: 13px;
                }




.cl-chatbox--footer .cl-chatbox--write:focus[b-4n5685qes1] {
    color: black;
    border: none;
    outline: none;
}


.blackout[b-4n5685qes1] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    animation: blackoutAnimation-b-4n5685qes1 0.3s forwards;
    -webkit-animation: blackoutAnimation 0.3s forwards;
    z-index: 20;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

@keyframes blackoutAnimation-b-4n5685qes1 {
    from {
        background: #00000000;
    }

    to {
        background: #000000a0;
    }
}

/*채팅 이모티콘 사용관련*/
.cl-chatbox-emoticon[b-4n5685qes1] {
    width: 100%;
    max-width: 425px;
    height: 100%;
    padding: 20px;
}

    .cl-chatbox-emoticon .select[b-4n5685qes1] {
        margin-bottom: 15px;
        display: flex;
    }

        .cl-chatbox-emoticon .select li[b-4n5685qes1] {
            padding: 0 5px;
        }

            .cl-chatbox-emoticon .select li img[b-4n5685qes1] {
                width: 25px;
                height: 25px;
            }

    .cl-chatbox-emoticon .emo_wrap[b-4n5685qes1] {
        display: flex;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        align-items: baseline;
        -webkit-align-items: baseline;
    }

        .cl-chatbox-emoticon .emo_wrap li[b-4n5685qes1] {
            padding: 5px;
        }

            .cl-chatbox-emoticon .emo_wrap li img[b-4n5685qes1] {
                width: 50px;
                height: 50px;
            }
/* _content/Clevi.App.Components.Communications/ChatBoxSettings.razor.rz.scp.css */

/*그룹 대화상대 추가페이지*/

.edit-chatsetting-wrap[b-kslnc3pjpx] {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    -webkit-flex-flow: column;
    align-content: space-between;
    -webkit-align-content: space-between;
}


.top-bar[b-kslnc3pjpx] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    padding: 10px;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    cursor: pointer;
    flex-direction: column;
    -webkit-flex-direction: column;
}

.color-switch[b-kslnc3pjpx] {
    border: 1px solid transparent;
    background-color: transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.color-button-wrap[b-kslnc3pjpx] {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.color-select-btn[b-kslnc3pjpx] {
    border: solid 1px #f2f4f6;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    margin: 5px 10px;
}

.button_align[b-kslnc3pjpx] {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    height: 100%;
    width: 100%;
    margin-top: 10px;
    flex-direction: column;
    -webkit-flex-direction: column;
}

.top-bar .title[b-kslnc3pjpx] {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

    .top-bar .title span[b-kslnc3pjpx] {
        margin-top: 3px;
        text-indent: 5px;
    }

.edit-chatsetting-wrap .body[b-kslnc3pjpx] {
    padding: 0 10px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-grow: 1;
    -webkit-flex-grow: 1;
    align-items: center;
    -webkit-align-items: center;
    flex-direction: column;
    -webkit-flex-direction: column;
}

    .edit-chatsetting-wrap .body .edit-input[b-kslnc3pjpx] {
        width: 100%;
        margin: 0 auto;
        background-color: #F8F9FA;
        text-align: center;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        min-height: 35px;
        padding: 0 15px;
        margin: 5px 0 0 0;
        border: 1px solid #E8E8EC !important;
    }

.chatsetting-base-img[b-kslnc3pjpx] {
    width: 65px;
    height: 65px;
}

.add-people[b-kslnc3pjpx] {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.header[b-kslnc3pjpx] {
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

    .header p[b-kslnc3pjpx] {
        font-size: 13px;
        font-weight: 600;
    }

    .header span[b-kslnc3pjpx] {
        font-size: 15px;
    }

.people-img-chatsetting-add[b-kslnc3pjpx] {
    width: 35px;
    height: auto;
}

.add-people .people[b-kslnc3pjpx] {
    display: flex;
    width: 100%;
    align-items: center;
    -webkit-align-items: center;
}


    .add-people .people span[b-kslnc3pjpx] {
        margin-left: 8px;
        font-weight: 600;
    }



.text[b-kslnc3pjpx] {
    font-size: 15px;
    font-weight: 600;
}

.bottom[b-kslnc3pjpx] {
    background-color: #f2f2f2;
    width: 100%;
    height: 45px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

    .bottom .wrap[b-kslnc3pjpx] {
        width: 100%;
    }

        .bottom .wrap .out[b-kslnc3pjpx] {
            display: flex;
            align-items: center;
            -webkit-align-items: center;
        }

            .bottom .wrap .out p[b-kslnc3pjpx] {
                text-align: end;
                margin: auto 0 auto auto;
                cursor: pointer;
            }

                .bottom .wrap .out p img[b-kslnc3pjpx] {
                    width: 20px;
                    height: 20px;
                }



.company-wrap[b-kslnc3pjpx] {
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.custom-ivyprofile-top[b-kslnc3pjpx] {
    padding: 15px 12px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

    .custom-ivyprofile-top div[b-kslnc3pjpx] {
        display: flex;
        align-items: center;
        -webkit-align-items: center;
    }

.profile-save[b-kslnc3pjpx] {
    font-size: 13px;
    padding: 2px 14px !important;
    min-height: 30px !important;
}

.back-to-before[b-kslnc3pjpx] {
    width: 15px;
    height: 15px;
    margin: 0 10px 0 0px;
}

.custom-ivyprofile-top span[b-kslnc3pjpx] {
    color: #17171B;
    font-size: 15px;
}

.ivy-preset-btn[b-kslnc3pjpx] {
    color: #17171B;
    font-size: 12px;
    padding: 6px 8px;
}


.profile-input[b-kslnc3pjpx] {
    margin-top: 25px;
    width: 120px;
}

.company-wrap[b-kslnc3pjpx] {
    width: 100%;
    display: flex;
    justify-content: end;
    -webkit-justify-content: end;
}

    .company-wrap button[b-kslnc3pjpx] {
        padding: 5px 8px;
    }

.ivy-toggle-wrap[b-kslnc3pjpx] {
    width: 100%;
    padding:15px 0;
    margin: 10px 0 10px;
    border-top: 1px solid #f2f4f6;
    border-bottom: 1px solid #f2f4f6;
}
.ivy-toggle-wrap .header[b-kslnc3pjpx]{
    margin-bottom: 0 !important;
}


    .ivy-toggle-wrap .wrap[b-kslnc3pjpx] {
        padding: 10px 0;
        border-bottom: 1px solid #D3D3D3;
    }

        .ivy-toggle-wrap .wrap:last-child[b-kslnc3pjpx] {
            border-bottom: none;
        }

        .ivy-toggle-wrap .wrap .wrap-top[b-kslnc3pjpx] {
            display: flex;
            justify-content: space-between;
            -webkit-justify-content: space-between;
            margin-bottom: 10px;
        }

            .ivy-toggle-wrap .wrap .wrap-top span[b-kslnc3pjpx] {
                font-size: 15px;
                font-weight: 600;
            }


.ivy-toggle-wrap[b-kslnc3pjpx] {
}

    .ivy-toggle-wrap .wrap[b-kslnc3pjpx] {
        display: flex;
        flex-flow: column;
        -webkit-flex-flow: column;
    }

        .ivy-toggle-wrap .wrap .line[b-kslnc3pjpx] {
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            -webkit-justify-content: space-between;
            align-items: center;
            -webkit-align-items: center;
        }

            .ivy-toggle-wrap .wrap .line span[b-kslnc3pjpx] {
                font-size: 13px;
                margin-right: 5px;
                white-space: nowrap;
                text-align: start;
            }


.ivy-function-onoff[b-kslnc3pjpx] {
    background-color: #E5F0FE !important;
}


.cl_ivy-call_contacts .call[b-kslnc3pjpx] {
    background: none !important;
    color: #17171B !important;
    box-shadow: none;
    -webkit-box-shadow: none;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: column;
    -webkit-flex-direction: column;
    margin: 0 25px;
}

    .cl_ivy-call_contacts .call .box[b-kslnc3pjpx] {
        border-radius: 10px;
        -webkit-border-radius: 10px;
        background-color: #F5F5F5;
        padding: 15px;
        display: flex;
        justify-content: center;
        -webkit-justify-content: center;
        align-items: center;
        -webkit-align-items: center;
        margin-bottom: 10px;
    }

    .cl_ivy-call_contacts .call p[b-kslnc3pjpx] {
        font-size: 13px;
        font-weight: 600;
    }


.choose-pic-wrap[b-kslnc3pjpx] {
    margin-top: 20px;
    width: 100%;
}

    .choose-pic-wrap .upload_wrap[b-kslnc3pjpx] {
        margin-top: 15px;
        border: dashed 1px #9e9e9e;
        border-radius: 7px;
        -webkit-border-radius: 7px;
        display: flex;
        justify-content: center;
        -webkit-justify-content: center;
        align-items: center;
        -webkit-align-items: center;
    }

        .choose-pic-wrap .upload_wrap span[b-kslnc3pjpx] {
            color: #767676;
            font-size: 12px;
        }

.background-select-img[b-kslnc3pjpx] {
    width: 30px;
    height: 30px;
}

.select_file[b-kslnc3pjpx]{
}
.select_file li[b-kslnc3pjpx] {
    width:100%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}
.select_file li .img_wrap[b-kslnc3pjpx] {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

    .select_file li .img_wrap img[b-kslnc3pjpx] {
        width: 38px;
        height: 38px;
        border-radius: 7px;
        -webkit-border-radius: 7px;
        padding: 7px;
    }

    .select_file li .img_wrap span[b-kslnc3pjpx] {
        font-size: 15px;
        margin-left: 13px;
    }
.select_file .remove-btn[b-kslnc3pjpx] {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #888;
    font-size: 1.4em;
}
/* _content/Clevi.App.Components.Communications/ChatBoxSettingsPart.razor.rz.scp.css */
.thumb[b-2stiadsgpp] {
    display: flex;
    flex-flow: column;
    -webkit-flex-flow: column;
}

    .thumb .line[b-2stiadsgpp] {
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        align-items: center;
        -webkit-align-items: center;
    }

        .thumb .line span[b-2stiadsgpp] {
            font-size: 13px;
            margin-right: 5px;
            white-space: nowrap;
            text-align: start;
        }
/* _content/Clevi.App.Components.Communications/ChatMessage.razor.rz.scp.css */
/* _content/Clevi.App.Components.Communications/CleviChatWidget.razor.rz.scp.css */
*[b-6dvek5ujsf] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 150ms ease-in-out;
    -webkit-transition: all 150ms ease-in-out;
}

button[b-6dvek5ujsf] {
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

div.minimize[b-6dvek5ujsf] {
    height: 50px;
}

div.list--active[b-6dvek5ujsf] {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

@media (max-width: 500px) {
    div.list--active[b-6dvek5ujsf] {
        transform: translateX(50%);
        -webkit-transform: translateX(50%);
    }
}


.mask[b-6dvek5ujsf] {
    z-index: 999;
    width: 300px;
    height: 400px;
    padding: 4px;
    overflow: hidden;
    position: fixed;
    bottom: 0px;
    right: 0.5em;
    border: none;
    border-top-left-radius: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    animation: appear-b-6dvek5ujsf 1s ease-in 0s;
    -webkit-animation: appear 1s ease-in 0s;
    box-shadow: #7226ee 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    -webkit-box-shadow: #7226ee 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    transition: height 400ms cubic-bezier(0.65, 0.05, 0.36, 1);
    -webkit-transition: height 400ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media (max-width: 500px) {
    .mask[b-6dvek5ujsf] {
        right: 0;
        width: calc(100vw - (100vw - 100%));
        height: 90vh;
    }
}

.container[b-6dvek5ujsf] {
    width: 600px;
    height: 400px;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    transition: transform 400ms cubic-bezier(0.65, 0.05, 0.36, 1);
    -webkit-transition: transform 400ms cubic-bezier(0.65, 0.05, 0.36, 1);

}

@media (max-width: 500px) {
    .container[b-6dvek5ujsf] {
        width: 100%;
        height: 100%;
    }
}
.list[b-6dvek5ujsf]{
    margin-right:10px;
}
.list[b-6dvek5ujsf], .conversation[b-6dvek5ujsf] {
    width: 290px;
    height: 400px;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    border-radius:5px;
    -webkit-border-radius:5px;
}

@media (max-width: 500px) {
    .list[b-6dvek5ujsf], .conversation[b-6dvek5ujsf] {
        /*        width: calc(100vw - var(--clv-global-scrollbar-width));*/
        width: 99vw;
        height: 90vh;
        margin:auto;
    }
}

.list__header[b-6dvek5ujsf], .conversation__header[b-6dvek5ujsf] {
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    z-index: 1;
    min-height: 50px;
    border-bottom: 1px solid #ced4da;
}

.list__header-actions[b-6dvek5ujsf], .conversation__header-actions[b-6dvek5ujsf] {
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
}

.list__body[b-6dvek5ujsf], .conversation__body[b-6dvek5ujsf] {
    height: 100%;
    padding: 0.8rem;
    position: relative;
    overflow-y: auto;
    font-size: 14px;
}

.conversation__body[b-6dvek5ujsf] {
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
}

    .conversation__body[b-6dvek5ujsf]::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    .conversation__body[b-6dvek5ujsf]::-webkit-scrollbar-thumb {
        width: 11px;
        background: rgb(115 105 133 / 0.25) !important;
        border-radius: 7px;
        -webkit-border-radius: 7px;
        background-clip: padding-box;
        /* border: 2px solid transparent;*/
    }

        .conversation__body[b-6dvek5ujsf]::-webkit-scrollbar-thumb:hover {
            width: 11px;
            border-radius: 8px;
            -webkit-border-radius: 8px;
            background-color: rgb(115 105 133 / 0.4);
        }

        .conversation__body[b-6dvek5ujsf]::-webkit-scrollbar-thumb:active {
            border-radius: 8px;
            -webkit-border-radius: 8px;
            background: rgb(115 105 133 / 0.6) !important;
        }

    .conversation__body[b-6dvek5ujsf]::-webkit-scrollbar-track {
        background-color: rgba(164, 163, 186, 0);
        border-radius: 8px;
        -webkit-border-radius: 8px;
        /* box-shadow: inset 0px 0px 5px white;*/
    }

.conversation__bubble[b-6dvek5ujsf] {
    margin-bottom: 0.8rem;
    padding-bottom: 15px;
}
/*    .conversation__bubble:before, .conversation__bubble:after {
        content: '';
        display: block;
        clear: both;
    }*/

.conversation__text[b-6dvek5ujsf] {
    padding: 0.6rem;
    overflow-wrap: break-word;
    word-break: keep-all;
    word-wrap: break-word;
    max-width: 85%;
    margin: 0;
}

.conversation__bubble--left[b-6dvek5ujsf] {
    position: relative;
    display: flex;
    justify-content: start;
}

    .conversation__bubble--left .conversation__text[b-6dvek5ujsf] {
        color: #e0f3ff;
        background-color: #4867cb;
        border-radius: 5px 5px 5px 0;
        -webkit-border-radius: 5px 5px 5px 0;
    }

    .conversation__bubble--left span[b-6dvek5ujsf] {
        font-size: 12px;
        color: #9b9b9b;
        position: absolute;
        bottom: -2px;
        left: 12px;
    }

    .conversation__bubble--left[b-6dvek5ujsf]:before {
        content: '';
        position: absolute;
        bottom: 7px;
        left: 0;
        width: 8px;
        height: 8px;
        border-bottom-right-radius: 10px;
        -webkit-border-bottom-right-radius: 10px;
        background-color: #32488f;
    }

.conversation__bubble--right[b-6dvek5ujsf] {
    position: relative;
    display: flex;
    justify-content: end;
    -webkit-justify-content: end;
}

    .conversation__bubble--right .conversation__text[b-6dvek5ujsf] {
        color: #332400;
        background-color: #f0daed;
        border-radius: 5px 5px 0 5px;
        -webkit-border-radius: 5px 5px 0 5px;
    }

    .conversation__bubble--right span[b-6dvek5ujsf] {
        font-size: 12px;
        color: #9b9b9b;
        position: absolute;
        bottom: -2px;
        right: 12px;
    }

    .conversation__bubble--right[b-6dvek5ujsf]:before {
        content: '';
        position: absolute;
        bottom: 7px;
        right: 0;
        width: 8px;
        height: 8px;
        border-bottom-left-radius: 10px;
        -webkit-border-bottom-left-radius: 10px;
        background-color: #c28abb;
    }



.list .btn[b-6dvek5ujsf], .conversation .btn[b-6dvek5ujsf] {
    width: 40px;
    height: 40px;
}

    .list .btn svg[b-6dvek5ujsf], .conversation .btn svg[b-6dvek5ujsf] {
        color: #1f4cad;
    }

    .list .btn:hover[b-6dvek5ujsf], .conversation .btn:hover[b-6dvek5ujsf], .list .btn:focus[b-6dvek5ujsf], .conversation .btn:focus[b-6dvek5ujsf] {
        background-color: #1f4cad;
    }

        .list .btn:hover svg[b-6dvek5ujsf], .conversation .btn:hover svg[b-6dvek5ujsf], .list .btn:focus svg[b-6dvek5ujsf], .conversation .btn:focus svg[b-6dvek5ujsf] {
            color: white;
        }

.list__header[b-6dvek5ujsf] {
    padding: 0 0.8rem;
}

.list__chat[b-6dvek5ujsf] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    -webkit-flex-direction: row;
    -webkit-align-items: center;
    -webkit-justify-content: space-between;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #f5f7fa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    border: 1px solid transparent;
    cursor: pointer;
}

    .list__chat:hover[b-6dvek5ujsf], .list__chat:focus[b-6dvek5ujsf] {
        border: 1px solid #1f4cad;
        box-shadow: 0 0 3px #4867cb;
        -webkit-box-shadow: 0 0 3px #4867cb;
    }

.list__user[b-6dvek5ujsf] {
    margin-bottom: 0.3rem;
    font-size: 18px;
    word-break: keep-all;
}

.list__message[b-6dvek5ujsf] {
    display: inline-block;
    color: #484f56;
    width: 215px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list__message_info[b-6dvek5ujsf] {
    display: inline-block;
    color: #484f56;
    width: 215px;
}

@media (max-width: 500px) {
    .list__message[b-6dvek5ujsf] {
        width: 85%;
    }

    .list__message_info[b-6dvek5ujsf] {
        width: 85%;
    }
}

.list__sent[b-6dvek5ujsf] {
    display: inline-block;
    vertical-align: text-bottom;
}

    .list__sent svg[b-6dvek5ujsf] {
        width: 1rem;
        height: 1rem;
        stroke: #008500;
    }

        .list__sent svg:last-child[b-6dvek5ujsf] {
            margin-left: -0.7rem;
        }

.list__preview[b-6dvek5ujsf] {
    width: 100%;
}

.conversation__info[b-6dvek5ujsf] {
    display: inline-flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    align-items: center;
    -webkit-align-items: center;
    flex-grow: 1;
    -webkit-flex-direction: row;
    -webkit-align-items: center;
    -webkit-flex-grow: 1;
    padding-left: 0.8rem;
    color: #243366;
    border-left: 1px solid #ced4da;
}

.conversation__status[b-6dvek5ujsf] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #63de17;
    margin-right: 0.4rem;
}



.conversation__footer[b-6dvek5ujsf] {
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    z-index: 1;
    padding: 0.8rem;
    border-top: 1px solid #ced4da;
}

.conversation__write[b-6dvek5ujsf] {
    width: 90%;
    padding: 0.4rem;
    border: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #ced4da;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    resize: none;
}

    .conversation__write:focus[b-6dvek5ujsf] {
        border: 1px solid #4867cb;
        box-shadow: 0 0 3px #4867cb;
        -webkit-box-shadow: 0 0 3px #4867cb;
        outline: none;
    }

.conversation .btn--send[b-6dvek5ujsf] {
    border-radius: 3px;
    -webkit-border-radius: 3px;
}

@keyframes appear-b-6dvek5ujsf {
    1% {
        transform: translateY(30px);
        -webkit-transform: translateY(30px);
        opacity: 0;
    }

    25% {
        transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
    }

    65% {
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        opacity: 1;
    }

    80% {
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}
/* _content/Clevi.App.Components.Communications/Pages/ChatIndex.razor.rz.scp.css */

/*.cl-chat-info-card {
    border: 1px none gray;
    height: calc(100vh - 95px);
    background-color: lightgray;
    box-shadow: 1px 1px 5px gray;
    border-radius: 15px;
    overflow:hidden;
}

.info-card-header {
    display: flex;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    align-items:center;
    border-bottom:1px solid gray;
}

.clv-chat-msg {
    word-wrap: break-word;
}

.chat-card {*/
    /*height: 500px;*/
    /*border-radius: 15px;
    background-color: #faf8f5;
    box-shadow: 1px 1px 5px gray;
    height: calc(100vh - 95px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contacts_body {
    padding: 0.75rem 0 !important;
    overflow-y: auto;
    white-space: nowrap;
}

.msg_card_body {
    overflow: auto;
}

.card-header {
    border-radius: 15px 15px 0 0 !important;
    border-bottom: 0 !important;
}

.card-footer {
    border-radius: 0 0 15px 15px !important;
    border-top: 0 !important;
    position:static;
}

.container {
    align-content: center;
}

.search {
    border-radius: 15px 0 0 15px !important;
    background-color: rgba(0,0,0,0.3) !important;
    border: 0 !important;
    color: white !important;
}

    .search:focus {
        box-shadow: none !important;
        outline: 0px !important;
    }

.type_msg {
    background-color: whitesmoke !important;
    border: 0 !important;
    color: black !important;
    height: 30px !important;
    overflow-y: auto;
    resize:none;
}

    .type_msg:focus {
        box-shadow: none !important;
        outline: 0px !important;
    }

.attach_btn {
    border-radius: 15px 0 0 15px !important;
    background-color: whitesmoke !important;
    border: 0 !important;
    color: black !important;
    cursor: pointer;
    height:38px;
}

.send_btn {
    border-radius: 8px !important;
    background-color: #ae93ea !important;
    border: 0 !important;
    color: white !important;
    cursor: pointer;
    height:38px;
}

.search_btn {
    border-radius: 0 15px 15px 0 !important;
    background-color: rgba(0,0,0,0.3) !important;
    border: 0 !important;
    color: white !important;
    cursor: pointer;
}

.contacts {
    list-style: none;
    padding: 0;
}

    .contacts li {
        width: 100% !important;
        padding: 5px 10px;
        margin-bottom: 15px !important;
    }

.active {
    background-color: rgba(0,0,0,0.3);
}

.user_img {
    height: 70px;
    width: 70px;
    border: 1.5px solid #f5f6fa;
    background-color: #e2cc60;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}

.user_img_msg {
    height: 40px;
    width: 40px;
    border: 1.5px solid #f5f6fa;
    background-color: #f08bfb;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 27px;
    font-weight: 600;
}

.img_cont {
    position: relative;
    height: 70px;
    width: 70px;    
}

.img_cont_msg {
    height: 40px;
    width: 40px;
}

.online_icon {
    position: absolute;
    height: 15px;
    width: 15px;
    background-color: #4cd137;
    border-radius: 50%;
    bottom: 0.2em;
    right: 0.4em;
    border: 1.5px solid white;
}

.offline {
    background-color: #c23616 !important;
}

.user_info {
    margin-top:13px;
    margin-bottom: auto;
    margin-left: 17px;
}

    .user_info span {
        font-size: 23px;
        color: whitesmoke;
        font-weight:600;
        text-shadow:1px 1px 3px gray;
        letter-spacing:3px;
    }

    .user_info p {
        font-size: 13px;
        color: rgba(255,255,255,0.6);
    }

.video_cam {
    margin-left: 50px;
    margin-top: 5px;
}

    .video_cam span {
        color: white;
        font-size: 20px;
        cursor: pointer;
        margin-right: 20px;
    }

.msg_cotainer {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 10px;
    border-radius: 18px 18px 18px 3px;
    background-color: #f5f9ff;
    padding: 10px;
    position: relative;
    box-shadow: -1px 1px 3px lightgrey
}

.msg_cotainer_send {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px;
    border-radius: 18px 18px 3px 18px;
    background-color: #fff5fb;
    padding: 10px;
    position: relative;
    max-width: 500px;
    box-shadow: 1px 1px 3px lightgrey
}

.msg_user-id {
    position: absolute;
    left: 2px;
    top: -18px;
    color: white;
    font-size: 13px;
    min-width: 100px;
}

.msg_time {
    position: absolute;
    left: 0;
    bottom: -15px;
    color: white;
    font-size: 10px;
    min-width: 100px;
}

.msg_time_send {
    position: absolute;
    right: -5px;
    bottom: -15px;
    color: white;
    font-size: 10px;
    min-width:100px !important;
}

.msg_head {
    position: relative;
}

#action_menu_btn {
    position: absolute;
    right: 10px;
    top: 10px;
    color: white;
    cursor: pointer;
    font-size: 20px;
}

.action_menu {
    z-index: 1;
    position: absolute;
    padding: 15px 0;
    background-color: rgba(0,0,0,0.5);
    color: white;
    border-radius: 15px;
    top: 30px;
    right: 15px;
    display: none;
}

    .action_menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .action_menu ul li {
            width: 100%;
            padding: 10px 15px;
            margin-bottom: 5px;
        }

            .action_menu ul li i {
                padding-right: 10px;
            }

            .action_menu ul li:hover {
                cursor: pointer;
                background-color: rgba(0,0,0,0.2);
            }

@media(max-width: 576px) {
    .contacts_card {
        margin-bottom: 15px !important;
    }
}*/
/* _content/Clevi.App.Components.Communications/Pages/ChatLayout.razor.rz.scp.css */
.cl-chat-sidebar-header[b-drevugq36d] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1em;
}

.cl-chat-sidebar-wrap[b-drevugq36d] {
    overflow: auto;
    position: relative;
    display: block;
    padding-right:2em;
}




.cl-chat-fav[b-drevugq36d] {
    padding-left: 0.1em;
}

.cl-chat-fav-header[b-drevugq36d] {
    margin-top: 1em;
    flex-direction:row;
}

.fav-title[b-drevugq36d] {
    font-size: 15px;
}

.cl-chat-fav-list[b-drevugq36d] {
    display:flex;
}

.fav-icon[b-drevugq36d] {
    width: 40px;
    height: 40px;
}

.chat-mes[b-drevugq36d] {
    margin-top: 8px;
    padding-left: 1em;
    padding-right: 1em;
}

.cl-chat-mes[b-drevugq36d] {
    padding-top: 10px;
}


//
//
//
//
.chat[b-drevugq36d] {
    margin-top: auto;
    margin-bottom: auto;
}

.contacts_body[b-drevugq36d] {
    padding: 0.75rem 0 !important;
    overflow-y: auto;
    white-space: nowrap;
}

.msg_card_body[b-drevugq36d] {
    overflow-y: auto;
}

.card-footer[b-drevugq36d] {
    border-radius: 0 0 15px 15px !important;
    border-top: 0 !important;
}


.type_msg[b-drevugq36d] {
    background-color: rgba(0,0,0,0.3) !important;
    border: 0 !important;
    color: white !important;
    height: 60px !important;
    overflow-y: auto;
}

    .type_msg:focus[b-drevugq36d] {
        box-shadow: none !important;
        outline: 0px !important;
    }

.attach_btn[b-drevugq36d] {
    border-radius: 15px 0 0 15px !important;
    background-color: rgba(0,0,0,0.3) !important;
    border: 0 !important;
    color: white !important;
    cursor: pointer;
}

.send_btn[b-drevugq36d] {
    border-radius: 0 15px 15px 0 !important;
    background-color: rgba(0,0,0,0.3) !important;
    border: 0 !important;
    color: white !important;
    cursor: pointer;
}


.contacts[b-drevugq36d] {
    list-style: none;
    padding: 0;
}

    .contacts li[b-drevugq36d] {
        width: 100% !important;
        padding: 5px 10px;
        margin-bottom: 15px !important;
    }
    .contacts li:hover[b-drevugq36d] {
        background-color:rgba(128,128,128, 0.4);
        cursor:pointer;
    }
    .contacts li:active[b-drevugq36d] {
        background-color:rgba(128,128,128, 0.4);
    }


.user_img[b-drevugq36d] {
    height: 50px;
    width: 50px;
    border: 1.5px solid #f5f6fa;
    background-color: #F2F2F2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 27px;
    font-weight: 600;
    margin: 0;
}

.user_img_msg[b-drevugq36d] {
    height: 40px;
    width: 40px;
    border: 1.5px solid #f5f6fa;
}

.img_cont[b-drevugq36d] {
    position: relative;
    height: 50px;
    width: 50px;
}

.img_cont_msg[b-drevugq36d] {
    height: 40px;
    width: 40px;
}

.online_icon[b-drevugq36d] {
    position: absolute;
    height: 10px;
    width: 10px;
    background-color: #4cd137;
    border-radius: 50%;
    bottom: 0.2em;
    right: 0.4em;
    border: 0.5px solid white;
}

.offline[b-drevugq36d] {
    background-color: #c23616 !important;
}

.user_info[b-drevugq36d] {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 15px;
}

    .user_info span[b-drevugq36d] {
        font-size: 18px;
        color: black;
    }

    .user_info p[b-drevugq36d] {
        font-size: 15px;
        color: rgba(0,0,0,0.6);
    }

.video_cam[b-drevugq36d] {
    margin-left: 50px;
    margin-top: 5px;
}

    .video_cam span[b-drevugq36d] {
        color: white;
        font-size: 20px;
        cursor: pointer;
        margin-right: 20px;
    }

.msg_cotainer[b-drevugq36d] {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 10px;
    border-radius: 25px;
    background-color: #82ccdd;
    padding: 10px;
    position: relative;
}

.msg_cotainer_send[b-drevugq36d] {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px;
    border-radius: 25px;
    background-color: #78e08f;
    padding: 10px;
    position: relative;
}

.msg_time[b-drevugq36d] {
    position: absolute;
    left: 0;
    bottom: -15px;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
}

.msg_time_send[b-drevugq36d] {
    position: absolute;
    right: 0;
    bottom: -15px;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
}

.msg_head[b-drevugq36d] {
    position: relative;
}

#action_menu_btn[b-drevugq36d] {
    position: absolute;
    right: 10px;
    top: 10px;
    color: white;
    cursor: pointer;
    font-size: 20px;
}

.action_menu[b-drevugq36d] {
    z-index: 1;
    position: absolute;
    padding: 15px 0;
    background-color: rgba(0,0,0,0.5);
    color: white;
    border-radius: 15px;
    top: 30px;
    right: 15px;
    display: none;
}

    .action_menu ul[b-drevugq36d] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .action_menu ul li[b-drevugq36d] {
            width: 100%;
            padding: 10px 15px;
            margin-bottom: 5px;
        }

            .action_menu ul li i[b-drevugq36d] {
                padding-right: 10px;
            }

            .action_menu ul li:hover[b-drevugq36d] {
                cursor: pointer;
                background-color: rgba(0,0,0,0.2);
            }

@media(max-width: 576px) {
    .contacts_card[b-drevugq36d] {
        margin-bottom: 15px !important;
    }
}
/* _content/Clevi.App.Components.Communications/Pages/Contact/AddContactDialog.razor.rz.scp.css */
.hidden-xs[b-bramsvxfoh] {
    max-height: calc(100vh - 350px);
}

.cl_ivy-chatlist-room[b-bramsvxfoh] {
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
}

.cl-gc-card_top[b-bramsvxfoh] {
    box-shadow: none;
    -webkit-box-shadow: none;
    padding: 0 8px;
}

    .cl-gc-card_top .invite-top-bar[b-bramsvxfoh] {
        width: 100%;
        background: #FFF;
        display: flex;
        padding: 15px 10px 5px 10px;
        flex-direction: column;
        -webkit-flex-direction: column;
    }

        .cl-gc-card_top .invite-top-bar div[b-bramsvxfoh] {
            width: 100%;
            background: #FFF;
            display: flex;
            justify-content: space-between;
            -webkit-justify-content: space-between;
            margin: 0 0 7px 0;
        }

        .cl-gc-card_top .invite-top-bar .title[b-bramsvxfoh] {
            cursor: pointer;
            display: flex;
            justify-content: flex-start;
            -webkit-justify-content: flex-start;
            align-items: center;
            -webkit-align-items: center;
        }

            .cl-gc-card_top .invite-top-bar .title span[b-bramsvxfoh] {
                margin-top: 1px;
            }

        .cl-gc-card_top .invite-top-bar .text[b-bramsvxfoh] {
            font-size: 13px;
            font-weight: 600;
        }

        .cl-gc-card_top .invite-top-bar .button_align[b-bramsvxfoh] {
            display: flex;
            justify-content: end;
            -webkit-justify-content: end;
            align-items: center;
            -webkit-align-items: center;
        }

            .cl-gc-card_top .invite-top-bar .button_align .addgroup[b-bramsvxfoh] {
                box-shadow: none;
                -webkit-box-shadow: none;
                background-color: #F8F4FD !important;
                color: #17171B !important;
                font-size: 10px;
                min-height: 20px;
                min-width: 20px;
                border-radius: 15px;
                -webkit-border-radius: 15px;
                padding: 0px 15px;
                margin: 0 6px 0 0;
            }

            .cl-gc-card_top .invite-top-bar .button_align .addgroup[b-bramsvxfoh] {
                box-shadow: none;
                -webkit-box-shadow: none;
                background-color: #E5F0FE !important;
                color: #17171B !important;
                font-size: 10px;
                min-height: 20px;
                min-width: 20px;
                border-radius: 15px;
                -webkit-border-radius: 15px;
                padding: 0px 15px;
            }

.cl-gc-card_body[b-bramsvxfoh] {
    box-shadow: none;
    -webkit-box-shadow: none;
    padding: 15px 10px 0 8px;
}




    .cl-gc-card_body .cl_ivy-chattings[b-bramsvxfoh] {
        width: 100%;
    }

        .cl-gc-card_body .cl_ivy-chattings .list_box[b-bramsvxfoh] {
            width: 100%;
        }

            .cl-gc-card_body .cl_ivy-chattings .list_box .wrap[b-bramsvxfoh] {
                padding: 5px 0;
                display: flex;
                flex-wrap: wrap;
                -webkit-flex-wrap: wrap;
                flex-direction: column;
                -webkit-flex-direction: column;
            }

                .cl-gc-card_body .cl_ivy-chattings .list_box .wrap .line[b-bramsvxfoh] {
                    display: flex;
                    align-items: center;
                    -webkit-align-items: center;
                    margin-bottom: 5px;
                    text-decoration: none;
                    color: #000;
                    cursor: pointer;
                }

                    .cl-gc-card_body .cl_ivy-chattings .list_box .wrap .line .entry[b-bramsvxfoh] {
                        display: flex;
                        align-items: center;
                        -webkit-align-items: center;
                        justify-content: center;
                        -webkit-justify-content: center;
                        flex-wrap: wrap;
                        -webkit-flex-wrap: wrap;
                      /*  width: 60px;
                        height: 45px;
                        border-radius: 45%;
                        -webkit-border-radius: 45%;*/
                    }

                        .cl-gc-card_body .cl_ivy-chattings .list_box .wrap .line .entry img[b-bramsvxfoh] {
                            width: 40px;
                            height: 40px;
                        }

        .cl-gc-card_body .cl_ivy-chattings .line .info_wrap[b-bramsvxfoh] {
            display: flex;
            align-items: center;
            -webkit-align-items: center;
            justify-content: space-between;
            -webkit-justify-content: space-between;
            width: 100%;
            margin: 0 0 0 9px;
        }

            .cl-gc-card_body .cl_ivy-chattings .line .info_wrap .info[b-bramsvxfoh] {
                display: flex;
                flex-direction: column;
                -webkit-flex-direction: column;
                justify-content: center;
                -webkit-justify-content: center;
                flex-grow: 1;
                -webkit-flex-grow: 1;
                flex-wrap: wrap;
                -webkit-flex-wrap: wrap;
                white-space: pre-wrap;
            }

                .cl-gc-card_body .cl_ivy-chattings .line .info_wrap .info .title[b-bramsvxfoh] {
                    font-size: 12px;
                    font-weight: 500;
                }

                .cl-gc-card_body .cl_ivy-chattings .line .info_wrap .info .detail[b-bramsvxfoh] {
                    font-size: 12px;
                    margin: 3px 0 0 0;
                    color: #828282;
                }

            
.back-to-before[b-bramsvxfoh] {
    width: 13px;
    height: 13px;
    margin: 0 5px 0 0px;
}
/* _content/Clevi.App.Components.Communications/Pages/Contact/AddContactGroupMember.razor.rz.scp.css */

.add-project-people-wrap[b-yj96ovkp8d] {
    display: flex;
    -webkit-flex-direction: column;
    padding: 10px 20px;
}


.check-wrap[b-yj96ovkp8d] {
    --container_width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    background-color: #fff;
    color: #000000;
    width: var(--container_width);
    overflow: hidden;
    margin: 0 auto;
    padding: 10px 0;
    flex-wrap: wrap;
}

    .check-wrap input[b-yj96ovkp8d] {
        display: none;
    }

    .check-wrap label[b-yj96ovkp8d] {
        min-width: 30%;
        padding: 10px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
        font-weight: 600;
        letter-spacing: -1px;
        background-color: #F8F9FA;
        color: #696E74;
        padding: 10px 25px;
        /*border: 1px solid #E8EAEC;*/
        margin: 0 1.5% 15px 1.5%;
        border-radius: 5px;
        height: 43px;
    }

        .check-wrap label span[b-yj96ovkp8d] {
            font-size: 14px;
            font-weight: 600;
        }

.selection[b-yj96ovkp8d] {
    display: none;
    position: absolute;
    height: 100%;
    width: calc(var(--container_width) / 2);
    z-index: 0;
    left: 0;
    top: 0;
    /*transition: .15s ease-in;*/
}

.check-wrap label:has(input:checked)[b-yj96ovkp8d] {
    background-color: #E9F3FF;
    /*border: 1px solid #C6E0FF;*/
    color: #4676F4;
}

    .check-wrap label:has(input:checked) ~ .selection[b-yj96ovkp8d] {
        background-color: rgb(11 117 223);
        display: inline-block;
    }

    .check-wrap label:has(input:checked) ~ .selection[b-yj96ovkp8d] {
        background-color: rgb(11 117 223);
        display: inline-block;
    }

.check-wrap label:nth-child(1):has(input:checked) ~ .selection[b-yj96ovkp8d] {
    transform: translateX(calc(var(--container_width) * 0/2));
}

.check-wrap label:nth-child(2):has(input:checked) ~ .selection[b-yj96ovkp8d] {
    transform: translateX(calc(var(--container_width) * 1/2));
}



.add-project-people-wrap[b-yj96ovkp8d] {
    display: flex;
    -webkit-flex-direction: column;
    padding: 0px 20px;
}


    .add-project-people-wrap .head[b-yj96ovkp8d] {
        position: sticky;
        top: 0;
        z-index: 1;
        background: #fff;
    }

        .add-project-people-wrap .head .top[b-yj96ovkp8d] {
            display: flex;
            padding: 10px 0;
            -webkit-justify-content: space-between;
        }

            .add-project-people-wrap .head .top span[b-yj96ovkp8d] {
                font-size: 17px;
                font-weight: 500;
            }


            .add-project-people-wrap .head .top .empty-space[b-yj96ovkp8d] {
                width: 44px;
                height: 24px;
            }


            .add-project-people-wrap .head .top img[b-yj96ovkp8d] {
                width: 24px;
                height: 24px;
            }




.people-wrap[b-yj96ovkp8d] {
    position: relative;
    width: 48px;
    height: 55px;
    display: flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;
    margin: 0 9px;
}

.add-project-people-wrap .people-img[b-yj96ovkp8d] {
    width: 40px;
    height: 40px;
}


.added-people-wrap[b-yj96ovkp8d] {
    padding: 15px 0;
    display: flex;
    align-items: center;
    overflow: auto;
}

.people-wrap:nth-child(1)[b-yj96ovkp8d] {
    margin-left: 0px;
}

.add-people-line[b-yj96ovkp8d] {
    border-top: 1px solid #f2f4f6;
    margin: 15px 0;
}

.add-project-people-wrap .peoeple-name[b-yj96ovkp8d] {
    margin-top: 4px;
    font-size: 13px;
}



.part-wrap[b-yj96ovkp8d] {
    margin-top: 15px;
}


.btn-wrap[b-yj96ovkp8d] {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 5px 20px 15px 20px;
    background: #fff;
}
/* _content/Clevi.App.Components.Communications/Pages/Contact/AddContactMemberComponent.razor.rz.scp.css */

.member-profile[b-gt8quozmfj] {
    display: flex;
    -webkit-justify-content: space-between;
}

.checkbox-wrapper .cbx[b-gt8quozmfj] {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

    .checkbox-wrapper .cbx span[b-gt8quozmfj] {
        display: inline-block;
        vertical-align: middle;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }

        .checkbox-wrapper .cbx span:first-child[b-gt8quozmfj] {
            position: relative;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            transform: scale(1);
            -webkit-transform: scale(1);
            vertical-align: middle;
            border: 1px solid #B9B8C3;
            transition: all 0.2s ease;
            -webkit-transition: all 0.2s ease;
        }

            .checkbox-wrapper .cbx span:first-child svg[b-gt8quozmfj] {
                position: absolute;
                z-index: 1;
                top: 4px;
                left: 4px;
                fill: none;
                stroke: white;
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
                stroke-dasharray: 16px;
                stroke-dashoffset: 16px;
                transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                transition-delay: 0.1s;
                -webkit-transition-delay: 0.1s;
                transform: translate3d(0, 0, 0);
                -webkit-transform: translate3d(0, 0, 0);
            }

            .checkbox-wrapper .cbx span:first-child[b-gt8quozmfj]:before {
                content: "";
                width: 100%;
                height: 100%;
                background: #A9BCF5;
                display: block;
                transform: scale(0);
                -webkit-transform: scale(0);
                opacity: 1;
                border-radius: 50%;
                -webkit-border-radius: 50%;
                transition-delay: 0.2s;
                -webkit-transition-delay: 0.2s;
            }

        .checkbox-wrapper .cbx span:last-child[b-gt8quozmfj] {
            margin-left: 8px;
        }

            .checkbox-wrapper .cbx span:last-child[b-gt8quozmfj]:after {
                content: "";
                position: absolute;
                top: 8px;
                left: 0;
                height: 1px;
                width: 100%;
                background: #B9B8C3;
                transform-origin: 0 0;
                -webkit-transform-origin: 0 0;
                transform: scaleX(0);
                -webkit-transform: scaleX(0);
            }

    .checkbox-wrapper .cbx:hover span:first-child[b-gt8quozmfj] {
        border-color: #B9B8C3;
    }

.checkbox-wrapper .inp-cbx:checked + .cbx span:first-child[b-gt8quozmfj] {
    /*border-color: #3c53c7;*/
    border-color: #A9BCF5;
    background: #A9BCF5;
    animation: check-15 0.6s ease;
    -webkit-animation: check-15 0.6s ease;
}

.checkbox-wrapper .inp-cbx[b-gt8quozmfj] {
    display: none;
}

    .checkbox-wrapper .inp-cbx:checked + .cbx span:first-child svg[b-gt8quozmfj] {
        stroke-dashoffset: 0;
    }

    .checkbox-wrapper .inp-cbx:checked + .cbx span:first-child[b-gt8quozmfj]:before {
        transform: scale(2.2);
        -webkit-transform: scale(2.2);
        opacity: 0;
        transition: all 0.6s ease;
        -webkit-transition: all 0.6s ease;
    }


.member-profile[b-gt8quozmfj] {
    display: flex;
    -webkit-align-items: center;
    padding: 10px 5px;
}

    .member-profile .user img[b-gt8quozmfj] {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .member-profile .user[b-gt8quozmfj] {
        display: flex;
        align-items: center;
    }

.project-component-wrap[b-gt8quozmfj] {
    margin: 10px 0 15px 0;
    padding: 7px 0;
    height: calc(100vh - 300px);
    overflow:auto;
}

.user span[b-gt8quozmfj] {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
/* _content/Clevi.App.Components.Communications/Pages/Contact/BlockedContactDialog.razor.rz.scp.css */
.background[b-6ln2bh9uje] {
    display: flex;
    flex-direction: column;
}

.cl-gc-card_top[b-6ln2bh9uje] {
    box-shadow: none;
    -webkit-box-shadow: none;
    padding: 0 8px;
}

    .cl-gc-card_top .invite-top-bar[b-6ln2bh9uje] {
        width: 100%;
        background: #FFF;
        display: flex;
        padding: 15px 10px 5px 10px;
        flex-direction: column;
    }

        .cl-gc-card_top .invite-top-bar div[b-6ln2bh9uje] {
            width: 100%;
            background: #FFF;
            display: flex;
            justify-content: space-between;
            -webkit-justify-content: space-between;
            margin: 0 0 7px 0;
        }

        .cl-gc-card_top .invite-top-bar .title[b-6ln2bh9uje] {
            cursor: pointer;
            display: flex;
            justify-content: flex-start;
            -webkit-justify-content: flex-start;
            align-items: center;
            -webkit-align-items: center;
        }

            .cl-gc-card_top .invite-top-bar .title span[b-6ln2bh9uje] {
                margin-top: 1px;
            }

        .cl-gc-card_top .invite-top-bar .text[b-6ln2bh9uje] {
            font-size: 13px;
            font-weight: 600;
        }

        .cl-gc-card_top .invite-top-bar .button_align[b-6ln2bh9uje] {
            display: flex;
            justify-content: end;
            -webkit-justify-content: end;
            align-items: center;
            -webkit-align-items: center;
        }

            .cl-gc-card_top .invite-top-bar .button_align .addgroup[b-6ln2bh9uje] {
                box-shadow: none;
                -webkit-box-shadow: none;
                background-color: #F8F4FD !important;
                color: #17171B !important;
                font-size: 10px;
                min-height: 20px;
                min-width: 20px;
                border-radius: 15px;
                -webkit-border-radius: 15px;
                padding: 0px 15px;
                margin: 0 6px 0 0;
            }

            .cl-gc-card_top .invite-top-bar .button_align .addgroup[b-6ln2bh9uje] {
                box-shadow: none;
                -webkit-box-shadow: none;
                background-color: #E5F0FE !important;
                color: #17171B !important;
                font-size: 10px;
                min-height: 20px;
                min-width: 20px;
                border-radius: 15px;
                -webkit-border-radius: 15px;
                padding: 0px 15px;
            }

.cl-gc-card_body[b-6ln2bh9uje] {
    box-shadow: none;
    -webkit-box-shadow: none;
    padding: 15px 10px 0 8px;
}




    .cl-gc-card_body .cl_ivy-chattings[b-6ln2bh9uje] {
        width: 100%;
    }

        .cl-gc-card_body .cl_ivy-chattings .list_box[b-6ln2bh9uje] {
            width: 100%;
        }

            .cl-gc-card_body .cl_ivy-chattings .list_box .wrap[b-6ln2bh9uje] {
                padding: 5px 0px 5px 0px;
                display: flex;
                flex-wrap: wrap;
                -webkit-flex-wrap: wrap;
                flex-direction: column;
                -webkit-flex-direction: column;
            }

                .cl-gc-card_body .cl_ivy-chattings .list_box .wrap .line[b-6ln2bh9uje] {
                    display: flex;
                    align-items: center;
                    -webkit-align-items: center;
                    margin-bottom: 10px;
                    text-decoration: none;
                    color: #000;
                    cursor: pointer;
                }

                    .cl-gc-card_body .cl_ivy-chattings .list_box .wrap .line .entry[b-6ln2bh9uje] {
                        display: flex;
                        align-items: center;
                        -webkit-align-items: center;
                        justify-content: center;
                        -webkit-justify-content: center;
                        flex-wrap: wrap;
                        -webkit-flex-wrap: wrap;
                        width: 60px;
                        height: 45px;
                        border-radius: 45%;
                        -webkit-border-radius: 45%;
                    }

                        .cl-gc-card_body .cl_ivy-chattings .list_box .wrap .line .entry img[b-6ln2bh9uje] {
                            width: 45px;
                            height: 45px;
                        }

        .cl-gc-card_body .cl_ivy-chattings .line .info_wrap[b-6ln2bh9uje] {
            display: flex;
            justify-content: space-between;
            -webkit-justify-content: space-between;
            width: 100%;
            margin: 0 0 0 9px;
        }

            .cl-gc-card_body .cl_ivy-chattings .line .info_wrap .info[b-6ln2bh9uje] {
                display: flex;
                flex-direction: column;
                -webkit-flex-direction: column;
                justify-content: center;
                -webkit-justify-content: center;
            }

                .cl-gc-card_body .cl_ivy-chattings .line .info_wrap .info .title[b-6ln2bh9uje] {
                    font-size: 11.5px;
                }

                .cl-gc-card_body .cl_ivy-chattings .line .info_wrap .info .detail[b-6ln2bh9uje] {
                    font-size: 11px;
                    margin: 3px 0 0 0;
                    color: #828282;
                }

            .cl-gc-card_body .cl_ivy-chattings .line .info_wrap .date_wrap[b-6ln2bh9uje] {
                display: flex;
                align-items: flex-start;
                -webkit-align-items: flex-start;
                justify-content: center;
                -webkit-justify-content: center;
                height: 100%;
            }

                .cl-gc-card_body .cl_ivy-chattings .line .info_wrap .date_wrap .date[b-6ln2bh9uje] {
                    display: flex;
                    align-items: center;
                    -webkit-align-items: center;
                    justify-content: center;
                    -webkit-justify-content: center;
                    margin-right: 5px;
                }

                    .cl-gc-card_body .cl_ivy-chattings .line .info_wrap .date_wrap .date span[b-6ln2bh9uje] {
                        font-size: 10px;
                    }


.back-to-before[b-6ln2bh9uje] {
    width: 13px;
    height: 13px;
    margin: 0 5px 0 0px;
}
/* _content/Clevi.App.Components.Communications/Pages/Contact/ContactComponent.razor.rz.scp.css */


.background[b-pojzf0kr2w] {
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
}

.cl-gc-card_top[b-pojzf0kr2w] {
    box-shadow: none;
    -webkit-box-shadow: none;
    padding: 0 8px;
}

    .cl-gc-card_top .invite-top-bar[b-pojzf0kr2w] {
        width: 100%;
        background: #FFF;
        display: flex;
        padding: 15px 10px 5px 10px;
        flex-direction: column;
        -webkit-flex-direction: column;
    }

        .cl-gc-card_top .invite-top-bar div[b-pojzf0kr2w] {
            width: 100%;
            background: #FFF;
            display: flex;
            justify-content: space-between;
            -webkit-justify-content: space-between;
            margin: 0 0 7px 0;
        }

        .cl-gc-card_top .invite-top-bar .title[b-pojzf0kr2w] {
            cursor: pointer;
            display: flex;
            justify-content: flex-start;
            -webkit-justify-content: flex-start;
            align-items: center;
            -webkit-align-items: center;
        }

            .cl-gc-card_top .invite-top-bar .title span[b-pojzf0kr2w] {
                margin-top: 1px;
            }

        .cl-gc-card_top .invite-top-bar .text[b-pojzf0kr2w] {
            font-size: 13px;
            font-weight: 600;
        }

        .cl-gc-card_top .invite-top-bar .button_align[b-pojzf0kr2w] {
            display: flex;
            justify-content: end;
            -webkit-justify-content: end;
            align-items: center;
            -webkit-align-items: center;
        }

            .cl-gc-card_top .invite-top-bar .button_align .addgroup[b-pojzf0kr2w] {
                box-shadow: none;
                -webkit-box-shadow: none;
                background-color: #F8F4FD !important;
                color: #17171B !important;
                font-size: 10px;
                min-height: 20px;
                min-width: 20px;
                border-radius: 15px;
                -webkit-border-radius: 15px;
                padding: 0px 15px;
                margin: 0 6px 0 0;
            }

            .cl-gc-card_top .invite-top-bar .button_align .addgroup[b-pojzf0kr2w] {
                box-shadow: none;
                -webkit-box-shadow: none;
                background-color: #E5F0FE !important;
                color: #17171B !important;
                font-size: 10px;
                min-height: 20px;
                min-width: 20px;
                border-radius: 15px;
                -webkit-border-radius: 15px;
                padding: 0px 15px;
            }

.cl-gc-card_body[b-pojzf0kr2w] {
    box-shadow: none;
    -webkit-box-shadow: none;
    padding: 15px 10px 0 8px;
}




.cl_ivy-chattings[b-pojzf0kr2w] {
    width: 100%;
    overflow-y: scroll;
}

.list_box[b-pojzf0kr2w] {
    width: 100%;
}

    .list_box .wrap[b-pojzf0kr2w] {
        padding: 0px 0px 0px 0px;
        display: flex;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-direction: column;
        -webkit-flex-direction: column;
    }

        .list_box .wrap .line[b-pojzf0kr2w] {
            display: flex;
            align-items: center;
            -webkit-align-items: center;
            padding: 10px 20px;
            margin-bottom: 0px;
            text-decoration: none;
            -webkit-text-decoration: none;
            color: #000;
            cursor: pointer;
        }

            .list_box .wrap .line .align[b-pojzf0kr2w] {
                display: flex;
                flex-direction: row;
                -webkit-flex-direction: row;
                user-select: none;
                -webkit-user-select: none;
            }

            .list_box .wrap .line .entry[b-pojzf0kr2w] {
                display: flex;
                align-items: center;
                -webkit-align-items: center;
                justify-content: center;
                -webkit-justify-content: center;
                flex-wrap: wrap;
                -webkit-flex-wrap: wrap;
                border-radius: 45%;
                -webkit-border-radius: 45%;
                user-select: none;
                -webkit-user-select: none;
            }

                .list_box .wrap .line .entry img[b-pojzf0kr2w] {
                    width: 40px;
                    height: 40px;
                    user-select: none;
                    -webkit-user-select: none;
                }

.cl_ivy-chattings .line .info_wrap[b-pojzf0kr2w] {
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    width: 100%;
    margin: 0 0 0 9px;
}

    .cl_ivy-chattings .line .info_wrap .info[b-pojzf0kr2w] {
        display: flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        justify-content: center;
        -webkit-justify-content: center;
    }

        .cl_ivy-chattings .line .info_wrap .info .title[b-pojzf0kr2w] {
            font-size: 11.5px;
            user-select: none;
            -webkit-user-select: none;
        }

        .cl_ivy-chattings .line .info_wrap .info .detail[b-pojzf0kr2w] {
            font-size: 11px;
            margin: 3px 0 0 0;
            color: #828282;
        }

    .cl_ivy-chattings .line .info_wrap .date_wrap[b-pojzf0kr2w] {
        display: flex;
        align-items: flex-start;
        -webkit-align-items: flex-start;
        justify-content: center;
        -webkit-justify-content: center;
        height: 100%;
    }

        .cl_ivy-chattings .line .info_wrap .date_wrap .date[b-pojzf0kr2w] {
            display: flex;
            align-items: center;
            -webkit-align-items: center;
            justify-content: center;
            -webkit-justify-content: center;
            margin-right: 5px;
        }

            .cl_ivy-chattings .line .info_wrap .date_wrap .date span[b-pojzf0kr2w] {
                font-size: 10px;
            }


.back-to-before[b-pojzf0kr2w] {
    width: 13px;
    height: 13px;
    margin: 0 5px 0 0px;
}

/*Contacts*/
.cl_ivy-contacts-top .wrap[b-pojzf0kr2w] {
    width: 100%;
    background: #FFF;
    display: flex;
    padding: 5px 10px 0 10px;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    margin-bottom: 20px;
}

.button_align .addchatting[b-pojzf0kr2w] {
    box-shadow: none;
    -webkit-box-shadow: none;
    background-color: #F8F4FD !important;
    color: #17171B !important;
    font-size: 12px;
    min-height: 20px;
    min-width: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    padding: 4px 10px;
    margin: 0 6px 0 0;
}

.button_align .contact[b-pojzf0kr2w] {
    box-shadow: none;
    -webkit-box-shadow: none;
    background-color: #E5F0FE !important;
    color: #17171B !important;
    font-size: 12px;
    min-height: 20px;
    min-width: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    padding: 4px 10px;
}

.button_align .addgroup[b-pojzf0kr2w] {
    box-shadow: none;
    -webkit-box-shadow: none;
    background-color: #E5F0FE !important;
    color: #17171B !important;
    font-size: 12px;
    min-height: 20px;
    min-width: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    padding: 4px 10px;
    margin-right: 5px;
}
/* _content/Clevi.App.Components.Communications/Pages/Contact/FavoriteContacts.razor.rz.scp.css */

.line[b-a3l5ugkjny] {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 10px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

    .line .wrap[b-a3l5ugkjny] {
        display: flex;
        flex-direction: row;
    }

    .line .entry[b-a3l5ugkjny] {
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        width: 60px;
        height: 45px;
        border-radius: 45%;
        -webkit-border-radius: 45%;
    }

        .line .entry img[b-a3l5ugkjny] {
            width: 45px;
            height: 45px;
        }

    .line .wrap .info_wrap[b-a3l5ugkjny] {
        display: flex;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        width: 100%;
        margin: 0 0 0 9px;
    }

        .line .wrap .info_wrap .info[b-a3l5ugkjny] {
            display: flex;
            flex-direction: column;
            -webkit-flex-direction: column;
            justify-content: center;
            -webkit-justify-content: center;
        }

            .line .wrap .info_wrap .info .title[b-a3l5ugkjny] {
                font-size: 11.5px;
            }

            .line .wrap .info_wrap .info .detail[b-a3l5ugkjny] {
                font-size: 11px;
                margin: 3px 0 0 0;
                color: #828282;
            }
/* _content/Clevi.App.Components.Communications/Pages/Contact/MyProfileComponent.razor.rz.scp.css */

.line[b-whwheosluq] {
    display: flex;
    margin-bottom: 5px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    user-select:none;
    -webkit-user-select:none;
    flex-direction:column;
    -webkit-flex-direction:column;
}
.line .wrap[b-whwheosluq]{
    display:flex;
    flex-direction:row;
}

.profile-span[b-whwheosluq] {
    font-size: 13px;
    color: #767676;
    margin-bottom:15px;
}

.line .entry[b-whwheosluq] {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    border-radius: 45%;
    -webkit-border-radius: 45%;
}

    .line .entry img[b-whwheosluq] {
        width: 40px;
        height: 40px;
    }

.line .wrap .info_wrap[b-whwheosluq] {
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    width: 100%;
    margin: 0 0 0 9px;
}

    .line .wrap .info_wrap .info[b-whwheosluq] {
        display: flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        justify-content: center;
        -webkit-justify-content: center;
    }

        .line .wrap .info_wrap .info .title[b-whwheosluq] {
            font-size: 11.5px;
        }

        .line .wrap .info_wrap .info .detail[b-whwheosluq] {
            font-size: 11px;
            margin: 3px 0 0 0;
            color: #828282;
        }
/* _content/Clevi.App.Components.Communications/Pages/Notification/NotificationSetting.razor.rz.scp.css */

.page-wrap[b-uuu6csqbfb]{
    padding:10px 0;
    width:100%;
    max-width: 1024px;
    height:100%;
    background-color:#fff;
}

.notification-setting[b-uuu6csqbfb] {
    height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    background-color: #f8f9fa;
}

.move-btn-img[b-uuu6csqbfb] {
    width: 25px;
    height: 25px;
}

.notification-setting .top[b-uuu6csqbfb] {
    background-color: #FFF;
    padding:10px 20px;
}

.notification-setting .bottom[b-uuu6csqbfb] {
    background-color: #FFF;
    margin-top:10px;
}

.notification-setting .top .title[b-uuu6csqbfb] {
    display: flex;
    -webkit-align-items: center;
    padding-bottom: 10px;
}

    .notification-setting .top .title img[b-uuu6csqbfb]{
        margin-right:15px;
    }

.on-off[b-uuu6csqbfb]{
    padding:20px 0px;
    display:flex;
    -webkit-justify-content:space-between;
    -webkit-align-items:center;
}

    .on-off .text[b-uuu6csqbfb] {
        font-size: 15px;
        font-weight: 400;
        color: #111;
    }

[b-uuu6csqbfb] .clc-switch .clc-switch-circle {
    box-shadow: none;
    background-color: #d9d9d9;
    width: 46px;
    height: 26px;
}

[b-uuu6csqbfb] .clc-switch.clc-switch-checked .clc-switch-circle {
    box-shadow: none;
    background-color: #4676F4;
    width: 46px;
    height: 26px;
}

[b-uuu6csqbfb] .clc-switch .clc-switch-circle:before {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    margin: 0;
    box-shadow: none;
}

[b-uuu6csqbfb] .clc-switch .clc-switch-circle:active:not(.clc-disabled):before{
    margin:0;
}

[b-uuu6csqbfb] .clc-switch .clc-switch-circle:hover {
    margin: 0;
    box-shadow: none;
}

.chat-wrap[b-uuu6csqbfb], .project-wrap[b-uuu6csqbfb] {
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    padding: 25px 25px 25px 20px;
    border-bottom:1px solid #ebeced;
}

    .chat-wrap[b-uuu6csqbfb], .project-wrap .text[b-uuu6csqbfb] {
        font-size: 15px;
        font-weight: 400;
        color: #111;
    }

.notification-chat-setting[b-uuu6csqbfb] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

.notification-chat-setting .top[b-uuu6csqbfb]{
        padding:10px 20px;
        background-color:#FFF;
}

    .notification-chat-setting .top .title[b-uuu6csqbfb]{
        display:flex;
        -webkit-align-items:center;
        padding-bottom:5px;
    }

    .notification-chat-setting .top .title .text[b-uuu6csqbfb] {
        color: #111;
        font-size: 17px;
        margin:1px 0 0 10px;
    }

    .notification-chat-setting .on-off .text[b-uuu6csqbfb] {
        color: #111;
        font-size: 15px;
    }

    .notification-chat-setting .on-off[b-uuu6csqbfb] {
        display:flex;
        -webkit-align-items:center;
    }

    .notification-chat-setting .bottom[b-uuu6csqbfb] {
        margin-top:10px;
        padding: 0px 0px;
        background-color: #FFF;
    }

    [b-uuu6csqbfb] .notification-chat-setting .event-mode-switch {
        margin-top:3px;
    }


.notification-chat-setting .bottom .friend-manage-wrap[b-uuu6csqbfb] {
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid #ebeced;
}


.notification-friend-setting[b-uuu6csqbfb] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

.notification-friend-setting .title[b-uuu6csqbfb]{
    padding: 10px 20px 0;
    display:flex;
    -webkit-align-items:center;
}

    .notification-friend-setting .title .text[b-uuu6csqbfb] {
        color: #111;
        font-size: 17px;
        margin-top: 2px;
    }

.cl-gc-search_wrap[b-uuu6csqbfb] {
    padding: 0 20px 20px;
    border-bottom: 1px solid #ebeced;
}

.notification-friend-setting .friend-wrap[b-uuu6csqbfb] {
    margin-top: 10px;
}

.notification-friend-setting .friend[b-uuu6csqbfb] {
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items:center;
    padding:11px 20px;
}

.notification-friend-setting .friend-info[b-uuu6csqbfb] {
    display: flex;
    -webkit-align-items:center;
}

    .friend-info img[b-uuu6csqbfb] {
        width: 30px;
        height: 30px;
        margin-right:10px;
    }

.friend-info .friend-name[b-uuu6csqbfb] {
    font-size: 15px;
    color: #111;
}

.alarm-on[b-uuu6csqbfb] {
    color: #4676F4;
    font-size: 13px;
    width: 64px;
    height: 33px;
    padding: 0px;
    border-radius: 17px;
    background-color: rgba(228, 238, 255, 0.8);
    display:flex;
    -webkit-align-items:center;
    -webkit-justify-content:center;
    font-weight:400;
}

.alarm-off[b-uuu6csqbfb] {
    color: #767676;
    font-size: 13px;
    width: 64px;
    height: 33px;
    padding: 0px;
    border-radius: 17px;
    background-color: #f2f4f6;
    display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    font-weight: 400;
}
/* _content/Clevi.App.Components.Communications/Pages/Notification/NotificationSettingChat.razor.rz.scp.css */

.page-wrap[b-13nmy4knue] {
    padding: 10px 0;
    width: 100%;
    max-width: 1024px;
    height: 100%;
    background-color: #fff;
}

.notification-setting[b-13nmy4knue] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

.move-btn-img[b-13nmy4knue] {
    width: 25px;
    height: 25px;
}

.notification-setting .top[b-13nmy4knue] {
    background-color: #FFF;
    padding: 10px 20px;
}

.notification-setting .bottom[b-13nmy4knue] {
    background-color: #FFF;
    margin-top: 10px;
}

.notification-setting .top .title[b-13nmy4knue] {
    display: flex;
    -webkit-align-items: center;
    padding-bottom: 10px;
}

    .notification-setting .top .title img[b-13nmy4knue] {
        margin-right: 15px;
    }

.on-off[b-13nmy4knue] {
    padding: 20px 0px;
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
}

    .on-off .text[b-13nmy4knue] {
        font-size: 15px;
        font-weight: 400;
        color: #111;
    }

[b-13nmy4knue] .clc-switch .clc-switch-circle {
    box-shadow: none;
    background-color: #d9d9d9;
    width: 46px;
    height: 26px;
}

[b-13nmy4knue] .clc-switch.clc-switch-checked .clc-switch-circle {
    box-shadow: none;
    background-color: #4676F4;
    width: 46px;
    height: 26px;
}

[b-13nmy4knue] .clc-switch .clc-switch-circle:before {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    margin: 0;
    box-shadow: none;
}

[b-13nmy4knue] .clc-switch .clc-switch-circle:active:not(.clc-disabled):before {
    margin: 0;
}

[b-13nmy4knue] .clc-switch .clc-switch-circle:hover {
    margin: 0;
    box-shadow: none;
}

.chat-wrap[b-13nmy4knue], .project-wrap[b-13nmy4knue] {
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    padding: 25px 25px 25px 20px;
    border-bottom: 1px solid #ebeced;
}

    .chat-wrap[b-13nmy4knue], .project-wrap .text[b-13nmy4knue] {
        font-size: 15px;
        font-weight: 400;
        color: #111;
    }

.notification-chat-setting[b-13nmy4knue] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

    .notification-chat-setting .top[b-13nmy4knue] {
        padding: 10px 20px;
        background-color: #FFF;
    }

        .notification-chat-setting .top .title[b-13nmy4knue] {
            display: flex;
            -webkit-align-items: center;
            padding-bottom: 5px;
        }

            .notification-chat-setting .top .title .text[b-13nmy4knue] {
                color: #111;
                font-size: 17px;
                margin: 1px 0 0 10px;
            }

    .notification-chat-setting .on-off .text[b-13nmy4knue] {
        color: #111;
        font-size: 15px;
    }

    .notification-chat-setting .on-off[b-13nmy4knue] {
        display: flex;
        -webkit-align-items: center;
    }

    .notification-chat-setting .bottom[b-13nmy4knue] {
        margin-top: 10px;
        padding: 0px 0px;
        background-color: #FFF;
    }

[b-13nmy4knue] .notification-chat-setting .event-mode-switch {
    margin-top: 3px;
}


.notification-chat-setting .bottom .friend-manage-wrap[b-13nmy4knue] {
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid #ebeced;
}


.notification-friend-setting[b-13nmy4knue] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

    .notification-friend-setting .title[b-13nmy4knue] {
        padding: 10px 20px 0;
        display: flex;
        -webkit-align-items: center;
    }

        .notification-friend-setting .title .text[b-13nmy4knue] {
            color: #111;
            font-size: 17px;
            margin-top: 2px;
        }

.cl-gc-search_wrap[b-13nmy4knue] {
    padding: 0 20px 20px;
    border-bottom: 1px solid #ebeced;
}

.notification-friend-setting .friend-wrap[b-13nmy4knue] {
    margin-top: 10px;
}

.notification-friend-setting .friend[b-13nmy4knue] {
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    padding: 11px 20px;
}

.notification-friend-setting .friend-info[b-13nmy4knue] {
    display: flex;
    -webkit-align-items: center;
}

.friend-info img[b-13nmy4knue] {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.friend-info .friend-name[b-13nmy4knue] {
    font-size: 15px;
    color: #111;
}

.alarm-on[b-13nmy4knue] {
    color: #4676F4;
    font-size: 13px;
    width: 64px;
    height: 33px;
    padding: 0px;
    border-radius: 17px;
    background-color: rgba(228, 238, 255, 0.8);
    display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    font-weight: 400;
}

.alarm-off[b-13nmy4knue] {
    color: #767676;
    font-size: 13px;
    width: 64px;
    height: 33px;
    padding: 0px;
    border-radius: 17px;
    background-color: #f2f4f6;
    display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    font-weight: 400;
}body[b-13nmy4knue] {
}
/* _content/Clevi.App.Components.Communications/Pages/Notification/NotificationSettingFriends.razor.rz.scp.css */

.page-wrap[b-pr938qhig4] {
    padding: 10px 0;
    width: 100%;
    max-width: 1024px;
    height: 100%;
    background-color: #fff;
}

.notification-setting[b-pr938qhig4] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

.move-btn-img[b-pr938qhig4] {
    width: 25px;
    height: 25px;
}

.notification-setting .top[b-pr938qhig4] {
    background-color: #FFF;
    padding: 10px 20px;
}

.notification-setting .bottom[b-pr938qhig4] {
    background-color: #FFF;
    margin-top: 10px;
}

.notification-setting .top .title[b-pr938qhig4] {
    display: flex;
    -webkit-align-items: center;
    padding-bottom: 10px;
}

    .notification-setting .top .title img[b-pr938qhig4] {
        margin-right: 15px;
    }

.on-off[b-pr938qhig4] {
    padding: 20px 0px;
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
}

    .on-off .text[b-pr938qhig4] {
        font-size: 15px;
        font-weight: 400;
        color: #111;
    }

[b-pr938qhig4] .clc-switch .clc-switch-circle {
    box-shadow: none;
    background-color: #d9d9d9;
    width: 46px;
    height: 26px;
}

[b-pr938qhig4] .clc-switch.clc-switch-checked .clc-switch-circle {
    box-shadow: none;
    background-color: #4676F4;
    width: 46px;
    height: 26px;
}

[b-pr938qhig4] .clc-switch .clc-switch-circle:before {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    margin: 0;
    box-shadow: none;
}

[b-pr938qhig4] .clc-switch .clc-switch-circle:active:not(.clc-disabled):before {
    margin: 0;
}

[b-pr938qhig4] .clc-switch .clc-switch-circle:hover {
    margin: 0;
    box-shadow: none;
}

.chat-wrap[b-pr938qhig4], .project-wrap[b-pr938qhig4] {
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    padding: 25px 25px 25px 20px;
    border-bottom: 1px solid #ebeced;
}

    .chat-wrap[b-pr938qhig4], .project-wrap .text[b-pr938qhig4] {
        font-size: 15px;
        font-weight: 400;
        color: #111;
    }

.notification-chat-setting[b-pr938qhig4] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

    .notification-chat-setting .top[b-pr938qhig4] {
        padding: 10px 20px;
        background-color: #FFF;
    }

        .notification-chat-setting .top .title[b-pr938qhig4] {
            display: flex;
            -webkit-align-items: center;
            padding-bottom: 5px;
        }

            .notification-chat-setting .top .title .text[b-pr938qhig4] {
                color: #111;
                font-size: 17px;
                margin: 1px 0 0 10px;
            }

    .notification-chat-setting .on-off .text[b-pr938qhig4] {
        color: #111;
        font-size: 15px;
    }

    .notification-chat-setting .on-off[b-pr938qhig4] {
        display: flex;
        -webkit-align-items: center;
    }

    .notification-chat-setting .bottom[b-pr938qhig4] {
        margin-top: 10px;
        padding: 0px 0px;
        background-color: #FFF;
    }

[b-pr938qhig4] .notification-chat-setting .event-mode-switch {
    margin-top: 3px;
}


.notification-chat-setting .bottom .friend-manage-wrap[b-pr938qhig4] {
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid #ebeced;
}


.notification-friend-setting[b-pr938qhig4] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

    .notification-friend-setting .title[b-pr938qhig4] {
        padding: 10px 20px 0;
        display: flex;
        -webkit-align-items: center;
    }

        .notification-friend-setting .title .text[b-pr938qhig4] {
            color: #111;
            font-size: 17px;
            margin-top: 2px;
        }

.cl-gc-search_wrap[b-pr938qhig4] {
    padding: 0 20px 20px;
    border-bottom: 1px solid #ebeced;
}

.notification-friend-setting .friend-wrap[b-pr938qhig4] {
    margin-top: 10px;
}

.notification-friend-setting .friend[b-pr938qhig4] {
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    padding: 11px 20px;
}

.notification-friend-setting .friend-info[b-pr938qhig4] {
    display: flex;
    -webkit-align-items: center;
}

.friend-info img[b-pr938qhig4] {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.friend-info .friend-name[b-pr938qhig4] {
    font-size: 15px;
    color: #111;
}

.alarm-on[b-pr938qhig4] {
    color: #4676F4;
    font-size: 13px;
    width: 64px;
    height: 33px;
    padding: 0px;
    border-radius: 17px;
    background-color: rgba(228, 238, 255, 0.8);
    display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    font-weight: 400;
}

.alarm-off[b-pr938qhig4] {
    color: #767676;
    font-size: 13px;
    width: 64px;
    height: 33px;
    padding: 0px;
    border-radius: 17px;
    background-color: #f2f4f6;
    display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    font-weight: 400;
}
/* _content/Clevi.App.Components.Communications/Pages/Notification/NotificationSettingProject.razor.rz.scp.css */

.page-wrap[b-2ei7xxf2y1] {
    padding: 10px 0;
    width: 100%;
    max-width: 1024px;
    height: 100%;
    background-color: #fff;
}

.notification-setting[b-2ei7xxf2y1] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

.move-btn-img[b-2ei7xxf2y1] {
    width: 25px;
    height: 25px;
}

.notification-setting .top[b-2ei7xxf2y1] {
    background-color: #FFF;
    padding: 10px 20px;
}

.notification-setting .bottom[b-2ei7xxf2y1] {
    background-color: #FFF;
    margin-top: 10px;
}

.notification-setting .top .title[b-2ei7xxf2y1] {
    display: flex;
    -webkit-align-items: center;
    padding-bottom: 10px;
}

    .notification-setting .top .title img[b-2ei7xxf2y1] {
        margin-right: 15px;
    }

.on-off[b-2ei7xxf2y1] {
    padding: 20px 0px;
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
}

    .on-off .text[b-2ei7xxf2y1] {
        font-size: 15px;
        font-weight: 400;
        color: #111;
    }

[b-2ei7xxf2y1] .clc-switch .clc-switch-circle {
    box-shadow: none;
    background-color: #d9d9d9;
    width: 46px;
    height: 26px;
}

[b-2ei7xxf2y1] .clc-switch.clc-switch-checked .clc-switch-circle {
    box-shadow: none;
    background-color: #4676F4;
    width: 46px;
    height: 26px;
}

[b-2ei7xxf2y1] .clc-switch .clc-switch-circle:before {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    margin: 0;
    box-shadow: none;
}

[b-2ei7xxf2y1] .clc-switch .clc-switch-circle:active:not(.clc-disabled):before {
    margin: 0;
}

[b-2ei7xxf2y1] .clc-switch .clc-switch-circle:hover {
    margin: 0;
    box-shadow: none;
}

.chat-wrap[b-2ei7xxf2y1], .project-wrap[b-2ei7xxf2y1] {
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    padding: 25px 25px 25px 20px;
    border-bottom: 1px solid #ebeced;
}

    .chat-wrap[b-2ei7xxf2y1], .project-wrap .text[b-2ei7xxf2y1] {
        font-size: 15px;
        font-weight: 400;
        color: #111;
    }

.notification-chat-setting[b-2ei7xxf2y1] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

    .notification-chat-setting .top[b-2ei7xxf2y1] {
        padding: 10px 20px;
        background-color: #FFF;
    }

        .notification-chat-setting .top .title[b-2ei7xxf2y1] {
            display: flex;
            -webkit-align-items: center;
            padding-bottom: 5px;
        }

            .notification-chat-setting .top .title .text[b-2ei7xxf2y1] {
                color: #111;
                font-size: 17px;
                margin: 1px 0 0 10px;
            }

    .notification-chat-setting .on-off .text[b-2ei7xxf2y1] {
        color: #111;
        font-size: 15px;
    }

    .notification-chat-setting .on-off[b-2ei7xxf2y1] {
        display: flex;
        -webkit-align-items: center;
    }

    .notification-chat-setting .bottom[b-2ei7xxf2y1] {
        margin-top: 10px;
        padding: 0px 0px;
        background-color: #FFF;
    }

[b-2ei7xxf2y1] .notification-chat-setting .event-mode-switch {
    margin-top: 3px;
}


.notification-chat-setting .bottom .friend-manage-wrap[b-2ei7xxf2y1] {
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid #ebeced;
}


.notification-friend-setting[b-2ei7xxf2y1] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

    .notification-friend-setting .title[b-2ei7xxf2y1] {
        padding: 10px 20px 0;
        display: flex;
        -webkit-align-items: center;
    }

        .notification-friend-setting .title .text[b-2ei7xxf2y1] {
            color: #111;
            font-size: 17px;
            margin-top: 2px;
        }

.cl-gc-search_wrap[b-2ei7xxf2y1] {
    padding: 0 20px 20px;
    border-bottom: 1px solid #ebeced;
}

.notification-friend-setting .friend-wrap[b-2ei7xxf2y1] {
    margin-top: 10px;
}

.notification-friend-setting .friend[b-2ei7xxf2y1] {
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    padding: 11px 20px;
}

.notification-friend-setting .friend-info[b-2ei7xxf2y1] {
    display: flex;
    -webkit-align-items: center;
}

.friend-info img[b-2ei7xxf2y1] {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.friend-info .friend-name[b-2ei7xxf2y1] {
    font-size: 15px;
    color: #111;
}

.alarm-on[b-2ei7xxf2y1] {
    color: #4676F4;
    font-size: 13px;
    width: 64px;
    height: 33px;
    padding: 0px;
    border-radius: 17px;
    background-color: rgba(228, 238, 255, 0.8);
    display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    font-weight: 400;
}

.alarm-off[b-2ei7xxf2y1] {
    color: #767676;
    font-size: 13px;
    width: 64px;
    height: 33px;
    padding: 0px;
    border-radius: 17px;
    background-color: #f2f4f6;
    display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    font-weight: 400;
}

body[b-2ei7xxf2y1] {
}
