:root {
    --primaryColor: #007bff;
}

main .container{
    height: 100vh;
}

.chat-container{
    height: 100vh;
    overflow: hidden;
    /*position: fixed;
    height: 100%;
    width: 100%;*/
}

*::-webkit-scrollbar {
    background-color:#fff;
    width:16px
}

/* background of the scrollbar except button or resizer */
*::-webkit-scrollbar-track {
    background-color:#fff;
}

/* scrollbar itself */
*::-webkit-scrollbar-thumb {
    background-color:#babac0;
    border-radius:16px;
    border:4px solid #fff
}

/* set button(top and bottom of the scrollbar) */
*::-webkit-scrollbar-button {display:none}

emoji-picker{
    display: none !important;
}

.bg-light-hover:hover{
    background-color: #f8f9fa!important;
}

.btn-primary{
    background-color: var(--primaryColor) !important;
    border-color: var(--primaryColor) !important;
}

.my-message .message-text {
    background-color: var(--primaryColor) !important;
}

.btn-outline-primary{
    color: var(--primaryColor) !important;
    border-color: var(--primaryColor) !important;
}

.btn-outline-primary:hover{
    color: #fff !important;
    background-color: var(--primaryColor) !important;
}

.chat-area{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
    background-color: #fff;

    height: calc(100% - 60px);

    position: fixed;
    top: 0;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 64px 15px !important;
}



.chat-header{
    position: fixed;
    width: 100%;
    z-index: 999;
    background-color: #fff;

    padding: 8px 12px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}

.chat-input {
    padding-top: 5px;
    padding-bottom: 13px;
    position: fixed;
    z-index: 1;
    /*bottom: 8px;*/
}

.chat-input.powered{
    padding-bottom: 0px !important;
}

.chat-input .input-group{
    overflow: visible;
    position: relative;
}

.chat-input .uploadBtt{
    width: 45px;
    height: 45px;
    cursor: pointer;
}

.chat-input .composerC{
    width: 100%;
}

.chat-input .dropdown-menu{
    top: 0px;
    right: 0px;
    left: unset;
    width: 240px !important;
    z-index: 9999 !important;
}

.chat-input .dropup .dropdown-toggle::after {
    content: unset;
}

.chat-input .dropdown-toggle::after {
    content: unset;
}

.chat-input .form-control{
    border-radius: 10px !important;
    max-height: 70vh;
    resize: none;
}

textarea:hover, 
input:hover, 
textarea:active, 
input:active, 
textarea:focus, 
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active
{
    outline:0px !important;
    -webkit-appearance:none;
    box-shadow: none !important;
}

.chat-ice-breaker{
    position: fixed;
    right: 20px;
    bottom: 60px;
}


.r_horizontal{
    height: 150px !important;
}

.r_square{
    width: 300px !important;
    height: 300px !important; 
    object-fit: fill !important; 
}

/*
@media (max-width: 767px)
{
    .chat-container{
        height: -moz-available;
        height: -webkit-fill-available;
        height: fill-available;
    }
}
*/