/**********************************************************************************************
** This style turns off the drag and drop feature of images.
**
**
** @filename => $style \main.core.min.css
**********************************************************************************************/

img
{
    user-drag: none;
    -webkit-user-drag: none;
}

/**********************************************************************************************
** This style allows popup messages linked to the sweetalert library to be centered.
**
**
** @filename => $style \main.core.min.css
**********************************************************************************************/

.swal-text
{
    text-align: center;
    line-height: inherit;
}

/**********************************************************************************************
** This style prevents the textarea element from rescaling.
**
**
** @filename => $style \main.core.min.css
**********************************************************************************************/

textarea
{
    resize: none;
}

/**********************************************************************************************
** This style hides the up and down arrow property of an input of type number.
**
**
** @filename => $style \main.core.min.css
**********************************************************************************************/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.chat-wrapper {
    width: auto;
    height: 600px;
    border-radius: 0.25rem;
    position: relative;
    background: rgb(0 0 0 / 14%);
    box-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, .10);
}

.chat-sidebar {
    width: 340px;
    height: 100%;
    position: absolute;
    background: rgb(0 0 0 / 14%);
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
    border-right: 1px solid rgb(255 255 255 / 15%);
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.chat-header {
    position: absolute;
    height: 76px;
    left: 340px;
    right: 0;
    top: 0;
    padding: 15px;
    background: rgb(0 0 0 / 0.14);
    border-bottom: 1px solid rgb(255 255 255 / 0.14);
    border-top-right-radius: 0.25rem;
    z-index: 1;
}

.chat-content {
    position: relative;
    width: auto;
    height: 450px;
    top: 70px;
}

.chat-sidebar-header {
    width: auto;
    height: auto;
    position: relative;
    background: rgb(255 255 255 / 0%);
    border-bottom: 1px solid rgb(255 255 255 / 13%);
    border-right: 0px solid rgba(0, 0, 0, .125);
    border-top-left-radius: 0.25rem;
    padding: 15px;
}