﻿body {
    margin: 0;
    background-color: #eee
}

.chat-wrapper {
    position: fixed;
    z-index: 1000;
    bottom: 50px;
    left: 100px;
    width: 500px;
    max-height: 90%;
}
.convo-area {
    box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    bottom: 64px;
    z-index: 1000;
}

.table-cursor{
    cursor:pointer !important;
}

.chat-btn-2 {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: var(--royal-blue-700);
    color: #fff;
    font-size: 22px;
    border: none;
    margin: 5px auto 0 0;
    box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
    position: relative;
}

.chat-btn-2:hover {
    background-color: var(--royal-blue-900);
    cursor: pointer;
}

.new-message-dot {
    --notification-dot-size: 10px;
    height: var(--notification-dot-size);
    width: var(--notification-dot-size);
    background-color: var(--maroon-700);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    right: 2px;
    animation: scale-in-animation 0.5s ease 0s 1 normal forwards;
}

@keyframes scale-in-animation {
    0% {
        transform: scale(0);
        transform-origin: 50% 0;
    }

    100% {
        transform: scale(1);
        transform-origin: 50% 0;
    }
}

.chat-btn {
    position: absolute;
    right: 78px;
    bottom: 30px;
    cursor: pointer
}

.chat-btn .close {
    display: none
}

.chat-btn i {
    transition: all 0.9s ease
}

#check:checked ~ .chat-btn i {
    display: block;
    pointer-events: auto;
    transform: rotate(180deg)
}

#desktop-sidebar {
    overflow-y: auto !important;
}

#check:checked ~ .chat-btn .comment {
    display: none
}

.chat-btn i {
    font-size: 22px;
    color: #fff !important
}

.chat-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: #27AAE1;
    color: #fff;
    font-size: 22px;
    border: none
}

.wrapper {
    position: absolute;
    right: 78px;
    bottom: 100px;
    width: 300px;
    background-color: #ECF4FF;
    border-radius: 5px;
    display: none;
    transition: all 0.4s;
    z-index: 1000;
}

#check:checked ~ .wrapper {
    display: initial
}

.header {
    padding: 13px;
    background-color: #27AAE1;
    border-radius: 5px 5px 0 0;
    margin-bottom: 10px;
    color: white !important
}

.chat-form {
    padding: 15px
}

.chat-form input,
textarea,
button {
    margin-bottom: 10px
}

.chat-form textarea {
    resize: none
}

.form-control:focus,
.btn:focus {
    box-shadow: none
}

#check {
    display: none !important
}


/*Barcode styling start*/
@font-face {
    font-family: CCode39;
    src: url("./fonts/ConnectCode39.woff") format('woff')
}

#barcode {
    font-family: 'CCode39', sans-serif;
}

#barcode_text {
}

/*Barcode styling end*/

/*blazorise color-profile picker styling*/
.b-file-picker .b-text-drop {
    height: 160px !important;
    border: 1px dashed blue !important;
}