@font-face {
    font-family: "Source Sans Pro";
    src: url('../fonts/SourceSansPro/SourceSansPro-Regular.ttf');
}

@font-face {
    font-family: "Roboto";
    src: url('../fonts/Roboto/Roboto-Regular.ttf');
}

:root {
    --blue: #377dff;
    --indigo: #6610f2;
    --purple: #796eff;
    --pink: #e83e8c;
    --red: #de4437;
    --orange: #fd7e14;
    --yellow: #fcd53b;
    --green: #28a745;
    --teal: #00c9a7;
    --cyan: #00dffc;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #8069f2;
    --secondary: #07d7f7;
    --success: #0cdcb9;
    --info: #474dee;
    --warning: #fcd53b;
    --danger: #ef5b5b;
    --light: #cdced6;
    --dark: #1e2022;
    --primary-darker: #2e11c1;
    --primary-lighter: #ebe8fd;
    --darker: #151829;
    --lighter: #f9f9f9;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Source Sans Pro", Helvetica, Arial, sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.theme-caller-mini-bg{
    background-color: var(--themebgcolor1);
    background-image: linear-gradient(to right, var(--themebgcolor1),rgb(202, 54, 190));
  }

  
.agent_campaign_heading {
    border-radius: 10% !important;
}

.green-bg {
    background-color: var(--green);
}

.wa-bg {
    background-color: #25D366;
}

.red-bg {
    background-color: var(--red);
}

.orange-bg {
    background-color: var(--orange);
}

.teal-bg {
    background-color: var(--teal);
}

.purple-bg {
    background-color: var(--purple);
}

.pink-bg {
    background-color: var(--pink);
}

.theme-bg {
    background-color: var(--themebgcolor1);
    background-image: linear-gradient(to right, var(--themebgcolor1), var(--themebgcolor2));
    color: var(--themecolor);
}

.themecolor {
    color: var(--themecolor) !important;
}

#p-manualdial.themecolor {
    background-color: var(--themebgcolor1) !important;
    background-image: linear-gradient(to right, var(--themebgcolor1), var(--themebgcolor2)) !important;
    color: var(--themecolor) !important;
}

.themecolor1 {
    color: var(--themebgcolor1);
}

.popup {
    z-index: 999999 !important;
    background-color: #f1f1f1;
    border: 1px solid #d3d3d3;
    text-align: center;
    height: auto;
    min-height: 70px;
    min-width: 200px;
    max-height: 1000px;
    max-width: 1000px;
    top: 42px;
    left: 45px;
}

.popup-que-call {
    z-index: 999999 !important;
    background-color: #f1f1f1;
    border: 1px solid #d3d3d3;
    text-align: center;
    height: auto;
    min-height: 70px;
    min-width: 200px;
    max-height: 1000px;
    max-width: 1000px;
    top: 99px;
    left: 45px;
}

.queueDataTable {
    margin-bottom: 0 !important;
}

.custom-table-cls {
    margin-bottom: 0 !important;
}


/*Drgable */

.popup {
    display: none;
    position: absolute;
    overflow: hidden;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    background-color: white;
}

.popup-que-call {
    display: none;
    position: absolute;
    overflow: hidden;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    background-color: white;
}

#queueDataDiv {
    max-height: 110px;
    min-width: 210px;
    overflow-y: auto;
}

.queueDataTable .timer {
    display: flex;
    margin: auto;
    color: #000;
    justify-content: center;
}

.popup-header {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 5px;
    cursor: move;
    z-index: 10;
    background-color: var(--themebgcolor1);
    color: #fff;
}

.popup-que-call-header {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 5px;
    cursor: move;
    z-index: 10;
    background-color: var(--themebgcolor1);
    color: #fff;
}


/*Resizeable*/

.popup .resizer-right {
    width: 5px;
    height: 100%;
    background: transparent;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: e-resize;
}

.popup .resizer-bottom {
    width: 100%;
    height: 5px;
    background: transparent;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: n-resize;
}

.popup .resizer-both {
    width: 5px;
    height: 5px;
    background: transparent;
    z-index: 10;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: nw-resize;
}


/*NOSELECT*/

.popup * {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}

.popup-que-call * {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}

#draggable_webphone * {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}

.queueStatusDv {
    position: fixed;
    width: 40px;
    height: 40px;
    top: 42px;
    left: 0px;
    background-color: var(--themebgcolor1);
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 1200;
}

.queueStatusDv2 {
    position: fixed;
    width: 40px;
    height: 40px;
    top: 99px;
    left: 0px;
    background-color: var(--themebgcolor1);
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 1200;
}

.floatInnerDiv {
    position: fixed;
    border-radius: 30px;
    background: #fff;
    margin-top: 6px;
    height: 30px;
    width: 30px;
    margin-left: 5px;
   
}

.btn-logtime {
    font-size: 10px;
    width: 150px;
    background-color: var(--themebgcolor1) !important;
    color: var(--themecolor);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-left: 0px;
    pointer-events: none;
    margin-top: 2px;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff !important;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    background-color: #fff;
    font-size: 14px;
    color: #4a4e69;
    overflow-x: hidden;
    /* overflow-y: hidden; */
}

#agent-master-form{
    margin-bottom: 125px !important;
}
.any-other-class {
    background-color: var(--themebgcolor1);
    color: var(--themecolor);
}
.any-other-class:hover {
    color: var(--themecolor) !important;
}

.signin {
    background-color: #fff;
    width: 100%;
    max-width: 380px;
    border-radius: 12px !important;
    box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.2), 0 4px 8px 0 rgba(0, 0, 0, 0.19) !important;
    position: static;
    margin-left: 828px;
    right: 3%;
    top: 1px;
    bottom: 0px;
    /* margin:auto; */
    /* min-height: 400px; */
    max-height: 450px !important;
    /* border: none !important; */
    /* box-shadow: 1px 1px 3px rgba(0,0, 0, 0.1); */
}

.setprocess {
    width: 100%;
    max-width: 400px;
    position: absolute;
    right: 0%;
    left: 0;
    top: 15%;
    margin: auto;
    min-height: 420px;
    max-height: 420px;
    overflow-y: auto;
    border: 0px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-control {
    border: 1px solid #ccc;
}

.form-control:focus {
    border-color: #0d6efd;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.full-width {
    width: 100%;
}

a {
    text-decoration: none;
    ;
}

.signin card-body {
    position: relative;
}

.signin .contact {
    position: inherit;
    bottom: 5px;
}

.header {
    background-color: #fff;
    box-shadow: 2px 0px 5px #ccc;
}

.header .dropdown-item {
    font-size: 14px;
}

.header .nav-link {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: .50rem;
    margin-bottom: .50rem;
}

.header .header-logo {
    margin-top: 3px;
    margin-bottom: 0rem;
}

.header .logo {
    max-height: 30px;
    background-color: #fff;
    border-radius: 5px;
}

.footer .navbar .nav li {
    background-color: var(--themebgcolor1);
    background-image: linear-gradient(to right, var(--themebgcolor1), var(--themebgcolor2));
    color: var(--themecolor);
}

.ready-main {
    max-width: 370px;
    margin: auto;
    margin-top: 60px;
    font-family: "Roboto";
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    background-color: #fff;
}
.ready-main_mini {
    max-width: 298px;
    margin: auto;
    margin-top: 60px;
    font-family: "Roboto";
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    /* background-color: #fff; */
}
.webphonemini{
    display: flex;
    justify-content: center;
    margin: auto;
    margin-top: 60px;
}
.wrapup-box{
    display: flex;
    justify-content: center;
    margin: auto;
    margin-top: 60px;
}
 wraup-minicard {
    display: flex;
    justify-content: center;
    margin-top: 60px;
 }

.footer .footer-ul li.nav-item {
    list-style: none;
    margin-right: 10px;
    min-width: 100px;
    text-align: center;
}

.footer .footer-ul li .footer-main-content {
    width: 100%;
    background-color: var(--themebgcolor1);
    background-image: linear-gradient(to right, var(--themebgcolor1), var(--themebgcolor2));
    color: var(--themecolor);
    padding: 5px 7px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 12px;
    font-family: 'Font Awesome 5 Brands';
    font-weight: bold;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.footer-more-dropdown-item {
    font-size: 14px;
    ;
}

.footer-ul {
    margin: 0px;
}

.ready-main .time {
    min-width: 96px;
    ;
}

.ready-main .timer h3 {
    font-size: 24px;
    ;
}

.form-label {
    margin-bottom: .2rem;
}

.breaktime {
    color: rgba(255, 255, 255, 0.35)
}

.breaktime ul {
    background-color: #000;
    margin: auto;
    max-width: 200px;
    list-style: none;
    overflow-x: hidden;
    text-align: center;
    margin: 0;
    padding: 4px;
    margin: auto;
}

.breakdetails ul {
    background-color: #000;
    margin: auto;
    max-width: 200px;
    list-style: none;
    overflow-x: hidden;
    text-align: center;
    margin: 0;
    padding: 4px;
    margin: auto;
}

.breakdetails ul>li {
    float: left;
    width: 50%;
    text-align: center;
    color: #fff;
}

.breaktime ul>li {
    float: left;
    width: 33.3%;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.breaktime ul>li:last-child {
    border: none
}

.breaktime ul>li .hour,
.breaktime ul>li .minutes,
.breaktime ul>li .seconds {
    color: #fff;
    letter-spacing: 5px;
}

.agent-home {
    margin-top: 5px;
}

.agent-home .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #fff !important;
    color: var(--themebgcolor1) !important;
}

.agent-home-dashbaord .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #fff !important;
    color: var(--themebgcolor1) !important;
}

.agent-call-time .hours,
.agent-call-time .minutes,
.agent-call-time .seconds {
    background-color: #fff;
    border-radius: 4px;
    padding: 0px 3px;
    font-size: 25px;
    height: 30px;
    line-height: 30px;
    letter-spacing: 1.5px;
    font-weight: 400;
    font-family: Roboto;
}

.agent-calltime-right {
    line-height: 30px;
    ;
}

.fs-9px {
    font-size: 9px;
}

.agent-panel-right-call-details {
    font-size: 12px;
}

.bg-warning-light {
    background: rgba(255, 243, 224, 0.5);
}

.bg-info-light {
    background: rgba(224, 247, 255, 0.5);
}

.agent-form .navbar .nav-link {
    color: #fff;
}

.agent-form {
    background-color: #fff;
}

.bg-light {
    background-color: #ebe9e9 !important;
    color: #333 !important;
}

.agent-call-buttons {
    position: relative;
    padding-bottom: 10px;
    margin: 4px;
    text-align: center;
    width: 40px;
    padding: 0px;
    height: 40px;
    color: #fff !important;
    transition: 0.2s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    /*
transition-duration: 5s !important; */
}

.agent-call-buttons .icon {
    padding-left: 0px !important;
    width: 100%;
    overflow-x: hidden;
    width: 100%;
    font-size: 15px;
    margin-top: -11px;
    transition: 0.4s;
}

.agent-call-buttons label {
    width: 100%;
    font-size: 8px;
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0px;
    margin: auto;
    letter-spacing: 1px;
    font-family: Roboto;
    font-weight: 200;
    transition: 0.1s;
}

.agent-call-buttons:hover>label {
    transform: scale(1.2);
}

.form-content {
    background-color: #ffffff;
}

.form-content .card-body {
    background-color: transparent;
}

.agent-call-buttons:hover {
    transform: scale(1.2);
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);   */
}

.min-h-300 {
    min-height: 300px;
    ;
}

.callwaiting_popup {
    position: fixed;
    right: 5px;
    top: 45px;
    z-index: 1006;
}

.picker__holder {
    min-width: 250px !important;
    width: 90%;
}

/* .ready-timer-main {
    box-shadow: 0 0 7px 7px rgba(0, 0, 0, .075)!important;
} */

.custom-shadow-sm {
    box-shadow: 0 0 .125rem .25rem rgba(0, 0, 0, .075)!important;
}

.ready .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--themebgcolor1);
    background-image: linear-gradient(to right, var(--themebgcolor1), var(--themebgcolor2)) !important;
    color: var(--themecolor);
}

.ready .nav-pills .nav-link.active.bg-danger {
    background-color: #dc3545!important;
    background-image: none !important;
    color: #fff !important;
}

.yellow-background {
    background-color: #f7f7de;
}

#fixedloader {
    z-index: 10001;
    background-color: rgb(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

img.no-record {
    max-height: 100px;
    max-width: 100%;
}

.custom-button span,
.custom-button-xl span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.custom-button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: -15px;
    right: -30px;
    transition: 0.5s;
    font-size: 30px;
}

.custom-button-xl span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: -13px;
    right: -50px;
    transition: 0.5s;
    font-size: 30px;
}

.custom-button:hover span,
.custom-button-xl:hover span {
    padding-right: 25px;
}

.custom-button:hover span:after,
.custom-button-xl:hover span:after {
    opacity: 1;
    right: 0;
}

.custom-button,
.custom-button-xl,
.btn-shadow {
    box-shadow: 0 10px 20px -8px rgb(0 0 0 / 70%);
}

.mw-100px {
    min-width: 100px;
}

.call-right-panel-selectbox {
    padding: 0px 7px;
    margin: 0px;
    font-size: 12px;
    background-color: transparent;
    border: none;
    color: #212529!important;
    font-weight: bold;
    text-align: right;
    outline: none;
    float: right;
}

.modal-content {
    border: none !important;
    overflow: auto;
}

.toast-body p {
    padding: 0px !important;
    margin: 0px !important;
}

.toast-icon {
    margin: auto 0px auto 10px !important;
}

#report_content {
    min-height: 350px;
}

.footer .time {
    letter-spacing: 1.2px;
}

.notepad-modal {
    overflow: hidden;
    display: none;
    position: fixed;
    width: 95%;
    max-width: 500px;
    top: 0;
    bottom: 0;
    right: 2%;
    /* right: 0; */
    margin: auto;
    z-index: 100000010101;
    background-color: #fff;
    height: 80%;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .3rem;
    outline: 0;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

#draggable_notepad .draggable_notepad_header {
    cursor: move;
}

.custom-label {
    padding: .10rem .5rem;
    font-size: .800rem;
    border-radius: .2rem;
}

.conf-btn {
    min-width: 35px;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: #212529 !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
}

.bootstrap-select.form-control-sm .dropdown-toggle {
    padding: none;
    border: 1px solid #ccc !important;
    outline: none !important;
}

.dropdown-item {
    padding: .15rem 0.5rem;
    font-size: .875rem;
}

.dropdown-menu {
    padding: .3rem 0;
}

.template_header.Email_template {
    width: 60%;
    float: left;
}

.Email_template_right {
    width: 40%;
    float: right;
}

.Whatsapp_template_right {
    width: 40%;
    float: right;
}

.template_header.Whatsapp_template {
    width: 60%;
    float: left;
}

.header .nav-pills .nav-link.active,
.header .nav-pills .show>.nav-link,
#preview_dialing_record_outer .nav-pills .nav-link.active,
#preview_dialing_record_outer .nav-pills .show>.nav-link {
    background-color: #fff !important;
    color: var(--themebgcolor1) !important;
}

#playicon {
    color: var(--themebgcolor1) !important;
}

.iframe-outer {
    height: 100%;
}


/* .iframe-outer{       
       min-height: 500px;
       height: calc(100vh - 100px);
}

.iframe-outer iframe{
    width: 100%;  
    min-height: 500px;  
    border-radius: 5px;;
} */

.dial-panel-minheight {
    min-height: 150px;
}

.bgImageBody {
    background-image: url('../../html/images/bg.jpg');
    background-size: cover !important;
    height: 100% !important;
    width: 100% !important;
}


/* .bgImageBody{
    background-image: url('../../../upload/loginbgimages/1601464093SanTrans.png');
    background-size: cover !important;
    background-repeat: no-repeat;
    height: 100% !important;
    width: 100% !important;
    position: absolute;
    z-index: -1;
    pointer-events: none; */


/* .bgimg {
        width: 100%;
        height: 100%;
    } */


/* } */

.agent-form-main {
    min-height: 750px;
}

.bg-img-body {
    width: auto;
    max-width: none;
    background-position: center;
    background-repeat: repeat;
    min-width: 100%;
    max-width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    margin: auto;
}

.webphone-modal {
    background: #fff;
    overflow: hidden;
    display: none;
    position: fixed;
    width: 95%;
    max-width: 215px;
    top: 0;
    bottom: 0;
    right: 1.5%;
    /* right: 0; */
    margin: auto;
    z-index: 100000010101;
    height: 320px;
    border: 1px solid rgba(0, 0, 0, .1);
    /* border-radius: .3rem; */
    outline: 0;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

#webphone-content iframe {
    margin: 0;
    width: 225px;
    min-height: 325px;
    /* margin-top:-18px !important ; */
}

.draggable_webphone_header button {
    float: right !important;
}

.webphone-btn {
    position: fixed;
    right: 1.5%;
    bottom: 2%;
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 40px;
    cursor: pointer;
    letter-spacing: 1px;
    font-family: Roboto;
    font-weight: 200;
    transition: 0.15s;
    box-shadow: 0 10px 20px -8px rgb(0 0 0 / 70%)
}

.webphone-btn:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.page-item.active .page-link {
    background-color: var(--themebgcolor1) !important;
    border-color: var(--themebgcolor1) !important;
    color: #FFF !important;
}

.page-item .page-link {
    color: var(--themebgcolor1) !important;
}

.popup-chat {
    z-index: 9;
    background-color: #f1f1f1;
    border: 1px solid #d3d3d3;
    /* min-height: 250px !important;
    min-width: 200px !important; */
    top: 200px;
    left: 120px;
    max-width: -moz-available;
    max-width: -webkit-fill-available;
    max-width: fill-available;
}

.chat-body {
    height: 98%;
    padding: 1px 1px 45px 1px;
}

.popup-chat {
    display: none;
    position: absolute;
    /*resize: both; !*enable this to css resize*! */
    overflow: hidden;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    background-color: var(--themebgcolor2) !important;
    height: 350px;
    max-width: -moz-available;
    max-width: -webkit-fill-available;
}

.popup-chat-header {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    padding: 3px;
    cursor: move;
    z-index: 10;
    background-color: var(--themebgcolor1);
    color: #fff;
}

.popup-chat .resizer-right {
    width: 3px;
    height: 100%;
    background: transparent;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: e-resize;
}

.popup-chat .resizer-bottom {
    width: 100%;
    height: 3px;
    background: transparent;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: n-resize;
}

.popup-chat .resizer-both {
    width: 3px;
    height: 3px;
    background: transparent;
    z-index: 10;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: nw-resize;
}

.popup-chat * {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}

.icon-bar {
    position: fixed;
    top: 75%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 4px 4px 4px 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}


/* social media icons css start */

.whatsApp-img {
    width: 30px;
}


/* .instagram-img {
    width: 30px;
} */

.facebook-img {
    width: 30px;
}

.viber-img {
    width: 30px;
}

.chat-img {
    width: 30px;
}

.twitter-img {
    width: 30px;
}


/* social media icons css end */


/* social media icons base css start */

.whatsApp {
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 60%);
}


/* .instagram {
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 60%);
} */

.facebook {
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 60%);
}

.viber {
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 60%);
}

.website {
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 60%);
}

.twitter {
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 60%);
}


/* social media icons base css end */

.list {
    list-style: none;
    font-size: 14px;
}

.dropdown-menu-chat-list {
    inset: 10px auto auto 0px !important;
}

.btn-group-vertical>.btn-check:checked+.btn,
.btn-group-vertical>.btn-check:focus+.btn,
.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:hover,
.btn-group>.btn-check:checked+.btn,
.btn-group>.btn-check:focus+.btn,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
    z-index: 0 !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #FFF !important;
    background-color: #0a58ca !important;
}

.chat-drp-list {
    display: flex;
}

.headerBtn {
    height: 22px;
    width: 25px;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    color: #FFF;
}

.headerBtn {
    float: right;
}

.chat-modal {
    background: #fff;
    overflow: hidden;
    display: none;
    position: fixed;
    width: 95%;
    max-width: 225px;
    top: 0;
    bottom: 0%;
    left: 4.2%;
    margin: auto;
    z-index: 100000010101;
    height: 349px;
    border: 1px solid rgba(0, 0, 0, .1);
    outline: 0;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.customNavbar {
    border-radius: 0.25rem;
}

.w-70 {
    width: 70% !important;
}



#draggable_internal .draggable_internal_header {
    cursor: move;
}
#internal-content iframe{
   
    margin: 0;
    width: 460px;
    /* min-height: 487px; */
    /* margin-top:-18px !important ; */
    
     
}
 
.draggable_internal_header button{
    float: right !important;
}

.internal-btn{
    position: fixed;
    right: 1.5%;
    bottom:15%;
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 40px;
    cursor: pointer;
    letter-spacing: 1px;
    font-family: Roboto;     
    font-weight: 200;
    transition: 0.15s;
    box-shadow: 0 10px 20px -8px rgb(0 0 0 / 70%)
} 

.internal-btn:hover {
    transform: scale(1.2); 
    cursor: pointer;  
}
.internal-modal {
   background: #fff;
   overflow: hidden;
   display: none;
   position: fixed;
   width: 95%;
   max-width: 460px;
   top: 0;
   bottom: 0;
   right: 1.5%;
   margin: auto;
   z-index: 100000010101;
   height: 522px;
   border: 1px solid rgba(0, 0, 0, .1);
   outline: 0;
   box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}
.notifyjs-internalchatmsg-base{
    max-width:200px;
    
}
.file-attachment-container {
    display: flex;
    width: 100%;
}

.file-input-container {
    width: 50%;
    padding-right: 5px; 
}

.file-name-container {
    width: 50%;
    padding-left: 5px; 
}

.file-name.small-text {
    font-size: 0.8rem; 
    color: #666; 
    word-wrap: break-word; 
}

.file-input-container input {
    width: 100%; 
}


.whatsapsan {
    position: fixed;
    right: 1.5%;
    bottom: 27%;
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 40px;
    cursor: pointer;
    letter-spacing: 1px;
    font-family: Roboto;
    font-weight: 200;
    transition: 0.15s;
    box-shadow: 0 10px 20px -8px rgb(0 0 0 / 70%)
}

.whatsapsan:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.form-attachment-table {
    border-radius: 10px; 
    border-spacing: 0; 
  }


  .form-attachment-table  td {
    color: #4a4e69 !important; 
  }

  .overflowCls{
    min-height: 100vh;max-height: 100vh; overflow-y: auto
  }