/********** Template CSS **********/
body{
    font-family: 'Poppins', sans-serif !important;
}

:root {
    --primary: #0063FF;
    --light: #f9f9f9 ;
    --dark: #191C24;
}
.bg-light{
    background-color: var(--light) !important;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** floating ***/
.fab-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  user-select: none;
  position: fixed;
  z-index: 1000;
  bottom: 30px; right: 30px;
  &:hover {
    height: 100%;
    .sub-button:nth-child(2) {
        transform: translateY(-80px);
    }
    .sub-button:nth-child(3) {
        transform: translateY(-130px);
    }
    .sub-button:nth-child(4) {
        transform: translateY(-180px);
    }
    .sub-button:nth-child(5) {
        transform: translateY(-230px);
    }
    .sub-button:nth-child(6) {
        transform: translateY(-320px);
    }
  }
  .fab {
    position: relative;
    height: 50px; width: 50px;
    background-color: #0063ff;
    border-radius: 50%;
    z-index: 2;
    &::before {
      content: " ";
      position: absolute;
      bottom: 0; right: 0;
      height: 35px; width: 35px;
      background-color: inherit;
      border-radius: 0 0 10px 0;
      z-index: -1;
    }
    .fab-content {
      display: flex;
      align-items: center; justify-content: center;
      height: 100%; width: 100%;
      border-radius: 50%;
    }
  }
  .sub-button {
    position: absolute;
    display: flex;
    font-size: 12px;
    align-items: center; justify-content: center;
    bottom: 5px; right: 5px;
    height: 40px; width: 40px;
    background-color: #101113;
    border-radius: 50%;
    transition: all .3s ease;
    &:hover {
      cursor: pointer;
    }
  }
  .flico{
    color: #fff;
  }
  .flicocall{
    background-color: #02861f;
  }
  .flicoedit{
    background-color: #019bc2;
  }
  .flicoshare{
    background-color: #051ad3;
  }
  .flicodispose{
    background-color: #c5a800;
  }
}
/*** //floating ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 200px;
    height: 100vh;
    overflow-y: auto;
    background: var(--light);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-left: 200px;
    min-height: 100vh;
    background: #FFFFFF;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 200px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 5px 10px;
    color: var(--dark);
    font-weight: 500;
    font-size: 13px;
    border-left: 3px solid var(--light);
    /* border-radius: 0 30px 30px 0; */
    outline: none;
    border-bottom: 1px solid #ccc;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: #FFFFFF;
    border-color: var(--primary);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--light);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
    font-size: 12px;
    font-weight: 500;
    color: #4e4e4e;
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 3px 0;
    color: var(--dark);
    outline: none;
   font-size: 12px;
    font-weight: 500;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0063ff;
    border-radius: 4px;
    font-size: 14px;
    color: #FFFFFF;
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}
.font-size-1-w6{
    font-size: 12px;
    font-weight: 600;
}
.font-size-1{
    font-size: 12px;
    font-weight: 500;

}
.mytextarea{
    width: 100%;
    height: 100px;
    border: 1px solid var(--light);
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
}
.list-group-item{
        padding: 5px 10px;
}
.agent-status{
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
}
th{
    font-size: 11px;
    font-weight: 500;
}
td{
    font-size: 11px;
    font-weight: 400;
}
.iocnleadcall{
    font-size: 11px;
    margin-right: 10px;
    padding:  2px 12px;
    border-radius: 5px;
}
table{
    margin-bottom: 0px !important;
}
.asignagent_select{
    font-size: 12px;
    font-weight: 500;
    /* line-height: 1; */
    height: 26px;
    padding: 0rem .75rem;
    background-color: #fff !important;
    border-radius: 0px;
    min-width: 105px;
}
.btnasign{
    font-size: 12px;
    padding: 2px 10px;
    font-weight: 500;
    border-radius: 0px;
    height: 26px;
}
.detailpara{
    font-size: 12px;
    margin-top: 8px;
}
.dt-info{
    font-size: 12px;
}
.dt-length{
    font-size: 12px;
}
.dt-search{
    font-size: 12px;
}
.page-link{
    font-size: 12px;
    font-weight: 500 !important;
}
thead tr{
    background-color: #0063FF;
    color: #fff;
    font-weight: 500;
}
.page-link{
    color: #0063FF;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0063FF;
    border-color: #0063FF;
}
.page-heading{
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    margin-left: 20px;
    color: #000;
}
.colorblue{
    color: #0063FF;
}
.form-label{
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #000;
}
.inputsiz-fnt{
    font-size: 12px;
    font-weight: 500;
    border-radius: 2px;
}
.Btncreatdisp{
    background-color: #0063FF !important;
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}
.agentstatuslist{
    position:  relative;
    border-bottom: 1px solid;
    color: #000;
}
.listwrap{

}
.tfootde{
    background-color: #000;
}
.ellipsdetcust{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    margin-bottom: 0px;
}
.truncate-multiline {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Number of lines to show */
  -webkit-box-orient: vertical;
  /* Vendor-less syntax for future compatibility (currently limited support) */
  /* line-clamp: 3; */ 
}
.chatlogscas{
    font-size: 12px;
    font-weight: 500;
}
.dispopdet{
    font-size: 13px;
    font-weight: 500;
    color: #222222;
    width: 100%;
    margin-bottom: 10px;
    height: 35px;
    padding-left: 22px;
}
.dismsbtnpop{
    font-size: 12px;
    font-weight: 500;
}
.submitbtnpop{
    font-size: 12px;
    font-weight: 500;
    background-color: #0063FF !important;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 8px 12px;
    cursor: pointer;
}
.custdetmod{
    padding: 4px 16px 20px 20px;
}
.tfootde1{
    background-color: #0263f5;
}
.tfootde a{
    color: #fff;
    font-weight: 600;
}
.tfootde1 a{
    color: #fff;
    font-weight: 600;
}
.accordion-body{
    padding: 20px 10px;
}
.custiddetpg{
    font-size: 18px;
}
#assigntotech{
    display: flex;
}
.parafromed{
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
    color: #5c5b5b;
    text-transform: capitalize;
} 
.accordion-button{
    font-size: 12px;
    font-weight: 500;
    padding: 8px 1.25rem;
}
.nrcdfnd{
    font-size: 12px;
    font-weight: 500;
    color: #5c5b5b;
}
.countleadad{
    position: fixed;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: #0063FF;
}
.textsrecase{
    width: 100%;
    height: 100px;
    font-size: 13px;
    background-color: #fff;
}