* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased !important;
}

input {
  outline: none;
}

.selected {
  font-weight: bold;
}

.shadow {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.disableSection {
  pointer-events: none;
  opacity: 50%;
  cursor: not-allowed !important;
  color: #9c9898 !important;
}

.w-5 {
  width: 5% !important;
}

.w-10 {
  width: 10% !important;
}

.w-30 {
  width: 30% !important;
}

.w-40 {
  width: 40% !important;
}

.w-60 {
  width: 60% !important;
}

.h-15 {
  height: 15% !important;
}

.h-85 {
  height: 85% !important;
}

.p-05,
.p-05 {
  padding: 0.125rem !important;
}

.pt-05,
.py-05 {
  padding-top: 0.125rem !important;
}

.pb-05,
.py-05 {
  padding-bottom: 0.125rem !important;
}

.pr-05,
.px-05 {
  padding-right: 0.125rem !important;
}

.pl-05,
.px-05 {
  padding-left: 0.125rem !important;
}

.mr-5 {
  margin-right: 2rem !important;
}

.fa-md {
  font-size: 1.23em;
  line-height: 0.7em;
  vertical-align: -0.0667em;
}

.medium {
  font-size: 85%;
  font-weight: 400;
}

.main {
  margin-top: 15px;
  background-color: #e9ecef;
  border-radius: 0.3rem;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  box-shadow: 1px 2px 2px 3px rgb(192, 192, 192);
}

.form-control {
  margin-bottom: 5px;
}

.reset-password {
  margin: 5px;
}

.breadcrumb {
  background-color: #f37435;
  box-shadow: 1px 2px 2px 3px rgb(192, 192, 192);
  font-size: 1.2rem;
}

.breadcrumb-item.active {
  color: whitesmoke;
  font-weight: bold;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: whitesmoke;
}

.table thead {
  background-color: #d3d4dd;
  text-align: center;
}

.table td {
  vertical-align: middle;
}

.btn-secondary {
  background-color: #f37435;
  border-color: #f37435;
}

.col-form-label {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;

  font-weight: bold;
  text-align: right;
}

.control {
  display: absolute;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.1rem;
  padding-top: 0.1rem;
  cursor: pointer;
}

.control input {
  position: relative;
  z-index: -1;
  opacity: 0;
}

.control_indicator {
  stroke: #2d486a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transform: translate3d(0, 0, 0);
  position: absolute;
  top: 3px;
  left: 15px;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border: 2px solid #acacac;
  border-radius: 3px;
}

.control-checkbox input:checked ~ .control_indicator {
  stroke: #e6e6e6;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transform: translate3d(0, 0, 0);
  background: #2d486a;
  border: 2px solid #2d486a;
  border-radius: 3px;
}

.control input:disabled ~ .control_indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}

.control_indicator:after {
  box-sizing: unset;
  content: "";
  position: absolute;
  display: none;
}

.control input:checked ~ .control_indicator:after {
  display: block;
}

.control-checkbox .control_indicator:after {
  left: 5px;
  top: 3px;
  width: 3px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.control-checkbox input:disabled ~ .control_indicator:after {
  border-color: #7b7b7b;
}

.control-radio .control_indicator {
  border-radius: 100%;
}

.control-radio input:checked ~ .control_indicator {
  stroke: #e6e6e6;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transform: translate3d(0, 0, 0);
  background: #2d486a;
  border: 2px solid #2d486a;
  border-radius: 100%;
}

.control-radio .control_indicator:after {
  left: 5px;
  top: 3px;
  width: 3px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.imgSelected img {
  border: 2px solid #2d486a;
  border-radius: 3px;
  padding: 1px;
}

.img-responsive {
  background-color: #e6e6e6;
  padding: 1px;
}

.sidebar-dropdown {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

.form-group.required .col-form-label:after,
.required-label:after {
  content: "*";
  color: red;
}

/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop to it once it's empty
 */
.dnd-list {
  min-height: 42px;
  max-height: 400px;
  overflow-y: scroll;
  padding-left: 0px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: block;
  padding: 5px 5px;
  margin-bottom: -1px;
}

/**
 * The dndDraggingSource class will be applied to
 * the source element of a drag operation. It makes
 * sense to hide it to give the user the feeling
 * that he's actually moving it.
 */
.dndDraggingSource {
  display: none;
}

/**
 * An element with .dndPlaceholder class will be
 * added to the dnd-list while the user is dragging
 * over it.
 */
.dndPlaceholder {
  background-color: #ddd;
  display: block;
  min-height: 42px;
}

ul.list-group.list-group-striped li:nth-of-type(even) {
  background: rgb(241, 241, 241);
}

.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: rgb(24, 145, 0);
}

input:focus + .slider {
  box-shadow: 0 0 1px rgb(24, 145, 0);
}

input:checked + .slider:before {
  -webkit-transform: translateX(19px);
  -ms-transform: translateX(19px);
  transform: translateX(19px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 25px;
}

.slider.round:before {
  border-radius: 50%;
}

input:checked + .slider.round.slider-warning {
  background-color: #ff9532;
}

.login,
.forgot-password {
  width: 100%;
  min-height: 92vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 1%;
  padding-top: 2rem;
}

.wrap-login100,
.wrap-forgot-password {
  width: 420px;
  background: whitesmoke;
  border-radius: 10px;
  overflow: hidden;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  box-shadow: 1px 2px 2px 3px rgb(192, 192, 192);
  padding: 3rem 2rem;
}

.wrap-forgot-password {
  padding: 2rem 2rem 3rem 2rem;
}

.login100-pic img,
.forgot-password-pic img {
  width: 100%;
  max-width: 280px;
}

/*------------------------------------------------------------------
[  ]*/
.login100-form,
.forgot-password-form {
  width: 100%;
}

.login100-form-title,
.forgot-password-form-title {
  font-size: 24px;
  color: #333333;
  line-height: 1.2;
  text-align: center;

  width: 100%;
  display: block;
  padding-bottom: 40px;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn,
.container-forgot-password-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
  letter-spacing: 0.1rem;
}

.msg-alert-forgot-password {
  white-space: pre-line;
}

.login100-form-btn,
.forgot-password-btn {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;

  width: 100%;
  height: 50px;
  border-radius: 25px;

  background: #429733;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  border-width: 0px;
}

.login100-form-btn:hover {
  background: #357a29;
}

.chart-container,
.chart {
  min-width: 10rem;
  min-height: 10rem;
}

.agent-logged-free {
  font-size: 0.8rem;
  width: 8rem;
  background-color: rgb(230, 244, 250);
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.agent-logged-free-noactivity {
  font-size: 0.8rem;
  width: 8rem;
  background-color: rgb(230, 244, 250);
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  animation: pulse-logged-free-noactivity 2s infinite;
}

.agent-logged-busy {
  font-size: 0.8rem;
  width: 8rem;
  background-color: rgb(214, 255, 214);
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.agent-logged-paused {
  font-size: 0.8rem;
  width: 8rem;
  background-color: rgb(255, 215, 215);
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.agent-logged-paused-exceeded {
  font-size: 0.8rem;
  width: 8rem;
  background-color: rgb(255, 215, 215);
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  animation: pulse-pause-exceeded 2s infinite;
}

.agent-loggedoff {
  font-size: 0.8rem;
  width: 8rem;
  background-color: whitesmoke;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  opacity: 0.5;
}

@keyframes pulse-pause-exceeded {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 189, 189, 0.2),
      0px 4px 5px 0px rgba(255, 189, 189, 0.14),
      0px 1px 10px 0px rgba(255, 189, 189, 0.12);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(255, 189, 189, 0.2),
      0px 4px 5px 0px rgba(255, 189, 189, 0.14),
      0px 1px 10px 0px rgba(255, 189, 189, 0.12);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(252, 156, 156, 0.2),
      0px 4px 5px 0px rgba(252, 156, 156, 0.14),
      0px 1px 10px 0px rgba(252, 156, 156, 0.12);
  }
}

@keyframes pulse-logged-free-noactivity {
  0% {
    transform: scale(0.95);
    box-shadow: 0px 2px 4px -1px rgba(202, 183, 255, 0.2),
      0px 4px 5px 0px rgba(202, 183, 255, 0.14),
      0px 1px 10px 0px rgba(202, 183, 255, 0.12);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(204, 196, 252, 0.2),
      0px 4px 5px 0px rgba(204, 196, 252, 0.14),
      0px 1px 10px 0px rgba(204, 196, 252, 0.12);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(204, 196, 252, 0.2),
      0px 4px 5px 0px rgba(204, 196, 252, 0.14),
      0px 1px 10px 0px rgba(204, 196, 252, 0.12);
  }
}

.bg-blue {
  background-color: #2d486a !important;
}

.bg-native {
  background-color: #f37435 !important;
}

.bg-yellow {
  background-color: #fad047 !important;
}

.bg-light-blue {
  background-color: #bfdeff !important;
}

.bg-light-yellow {
  background-color: #f7f1e0 !important;
}

.bg-light-red {
  background-color: #f8efef !important;
}

.bg-green {
  background-color: #56e962 !important;
}

.bg-light-green {
  background-color: #cff7b0 !important;
}

.bg-light-native {
  background-color: #fa9867 !important;
}

.text-blue {
  color: #2d486a;
}

.text-native {
  color: #f37435;
}

.text-red {
  color: #c56562 !important;
}

.text-yellow {
  color: #ddb83e !important;
}

.text-green {
  color: #5cb85c !important;
}

.cursor-pointer {
  cursor: pointer;
}

.clean {
  padding: 0 !important;
  margin: 0 !important;
}

.clean-dashboard {
  padding-top: 0 !important;
}

.clean-dashboard .border {
  border: 2px solid #2d486a !important;
  border-bottom: 1px solid rgb(43, 43, 43) !important;
}

.clean-dashboard > div {
  padding: 0 !important;
}

.toggled .clean-dashboard > div {
  padding: 0 0 0 10px !important;
}

.callcenter {
  display: flex;
  flex-direction: column;
}

.callcenter-full {
  height: 100vh;
}

.callcenter-container {
  flex: 1 0 auto;
  min-height: auto;
}

.callcenter .navbar .fa:hover {
  color: #f37435;
}

.table-wrapper {
  background: #f5f5f5;
  margin: 1px 15px;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  line-height: 14px;
}

.callcenter .table-wrapper:first-child {
  margin-top: 45px;
}

.table-title {
  background: #2d486a;
  color: #fff;
  padding: 9px 30px 2px 30px;
  border-radius: 5px 5px 0 0;
}

.table-title h2 {
  padding-top: 2px;
  font-size: 16px;
}

.table-title i {
  font-size: 18px;
  color: #ff9532;
}

.table-title i:hover {
  color: #ddd;
}

.callcenter table tr th,
.callcenter table tr td {
  border-color: #e9e9e9;
  padding: 7px 15px;
  vertical-align: middle;
  text-align: center;
  justify-content: center;
}

.img {
  padding: 3px !important;
}

.td-min {
  padding: 0px !important;
}

.td-equal-width {
  width: 20%;
}

.td-max {
  padding: 0px !important;
  margin: 0px !important;
}

.callcenter table td .fa-phone-slash {
  cursor: pointer;
}

.callcenter table td .fa-phone-slash:hover {
  opacity: 70%;
}

.table-wrapper .bg-danger {
  background-color: rgb(248, 209, 209) !important;
}

.table-wrapper .bg-warning {
  background-color: rgb(252, 247, 186) !important;
}

.table-wrapper .bg-success {
  background-color: rgb(193, 240, 193) !important;
}

.table-wrapper .dialerDashboardProgressBar .bg-success {
  background-color: #28a745 !important;
}

.table-wrapper .dialerDashboardProgressBar .bg-info {
  background-color: #007bff !important;
}

.table-wrapper .dialerDashboardProgressBar .bg-warning {
  background-color: #ffc107 !important;
}

.table-wrapper .dialerDashboardProgressBar .bg-orange {
  background-color: #e96d07 !important;
}

.callcenter .callcenter-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.peers-panel-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
}

.callcenter .callcenter-card-container,
.sms-card-container {
  background-color: #fefefe;
  border: 1px solid rgb(180, 175, 175);
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.callcenter .callcenter-img {
  max-width: 42px;
}

.callcenter .callcenter-queues {
  word-break: break-all;
}

.callcenter .callcenter-noqueue {
  opacity: 70%;
}

.callcenter .callcenter-img img,
.agenda-img img {
  border-radius: 50%;
  border: 1px solid #eee;
  background-color: #eee;
  padding: 2px;
}

.agenda-img img {
  max-width: 28px;
}

.avatar-callcenter img {
  padding: 0px;
  max-width: 1.5rem;
}

.callcenter .lostcalls {
  height: 400px;
}

.callcenter .lostcalls .lostcalls-table,
.smsByDay-table {
  overflow-y: auto;
}

.callcenter .lostcalls .doughnut-graph {
  padding: 0;
  display: flex;
  justify-content: center;
  align-content: center;
}

.callcenter .lostcalls canvas {
  max-width: 400px;
  max-height: 400px;
}

.btn-split-sm {
  cursor: pointer;
}

.btn-split-sm .fa:hover,
.btn-split-sm .dropdown-toggle:hover {
  opacity: 70%;
}

.badge-notification {
  display: inline-block;
  background: #f37435;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  position: absolute;
  bottom: 1;
  margin-left: 5px;
}

.badge-notification:after {
  content: "";
  position: absolute;
  bottom: 1;
  left: 0;
  border: 2px solid #f37435;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: sonar 1.5s infinite;
}

.sonar {
  animation: sonar 1.5s infinite;
  padding: 0 5px;
}

.pulse {
  border-radius: 50%;
  transform: scale(1);
  box-shadow: 0 0 0 0 rgba(52, 172, 224, 1);
  animation: pulse 2s infinite;
}

.badge-danger {
  background: #d9534f;
}

.badge-danger:after {
  animation: none;
}

.badge-success {
  background: #28a745;
}

.badge-success:after {
  border: 2px solid #28a745 !important;
}

.badge-warn {
  display: inline-block;
  background: #fad047;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 2px;
}

.badge-warn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #fad047;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: sonar 1.5s infinite;
}

.navbar-notification {
  position: absolute;
  top: 0;
  right: 0;
}

.navbar-notification-slider {
  margin: 11px 90px;
}

.navbar-notification-slider .switch {
  transform: scale(0.75);
}

.navbar-notification-bell {
  margin-right: 60px;
}

.navbar-notification-swing {
  animation: swing 0.7s infinite ease-in-out;
}

.navbar-notification-sound {
  margin-right: 225px;
}

.navbar-notification-sound .fa {
  transition: opacity 0.2s;
  color: #f75e5e;
}

.navbar-notification-sound .fa:hover {
  opacity: 0.8;
}

.navbar-notification .badge {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px 10px 0 0;
}

.queues-box {
  right: 2px !important;
  width: 35%;
  min-width: 520px;
  max-height: 650px;
  overflow-y: auto;
  padding: 0%;
  box-shadow: 0px 1px 7px 2px rgba(0, 0, 0, 0.1);
}

.queues-box .switch {
  transform: scale(0.7);
}

.queues-box .queues-box-header {
  background-color: rgb(236, 232, 232);
  -webkit-user-select: none;
}

.queues-box .queues-box-header .fa:hover {
  color: currentColor;
}

.queues-box-callcenter {
  left: initial !important;
}

.queues-box-supervisor {
  margin: 2px 15px;
  -moz-user-select: none;
}

.queues-box .check:hover {
  opacity: 80%;
  cursor: pointer;
  -moz-user-select: none;
}

.queues-box .dropdown-item {
  padding: 10px;
}

.queues-box .dropdown-item:hover {
  background-color: #f0f0f0;
}

.queues-box .dropdown-item:active {
  background-color: #f7e8da;
  color: inherit;
}

.checked {
  background-color: #f0f0f0;
}

.queues-box .btn {
  font-weight: bold;
  border-radius: 0%;
  line-height: 2em;
  width: 100%;
}

#queues-modal-btn .btn {
  background-color: #f37435;
  border-color: #f37435;
  border-radius: 0.3rem;
}

.queues-box .btn:focus {
  box-shadow: none;
}

.queues-box .btn:hover {
  background-color: #e06435;
  border-color: #e06435;
}

.queues-agent {
  width: 40%;
  min-width: 400px;
}

.queues-agent .penalty {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.queues-agent input {
  padding-right: 25px !important;
}

.queues-agent input:focus {
  background-color: rgb(255, 255, 206);
  border: 1px solid #ccc;
}

input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  background: #eee
    url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAKUlEQVQYlWNgwAT/sYhhKPiPT+F/LJgEsHv37v+EMGkmkuImoh2NoQAANlcun/q4OoYAAAAASUVORK5CYII=)
    no-repeat center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  border-left: 1px solid #bbb;
  opacity: 0.5;
  cursor: pointer;
}

input[type="number"]::-webkit-inner-spin-button:hover {
  opacity: 1;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23525150%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right 0.65em top 50%, 0 0;
  background-size: 0.5em auto, 100%;
  cursor: pointer;
}

select:hover,
select:focus {
  background-color: #fafafa;
}

select::-ms-expand {
  display: none;
}

.notification-dialog {
  width: 350px;
  padding: 0 !important;
  border: none !important;
  line-height: 2em;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  margin: 5px 40px 0 0;
}

.notification-dialog .head {
  text-align: center;
  padding: 2px;
  color: #fff;
  background-color: #2d486a;
  border: 1px solid #2d486a;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.notification-dialog .body {
  border: 1px solid #ddd;
  border-top: none;
  font-size: 12px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

.notification-dialog .notification {
  padding: 5px 10px 5px 5px;
  line-height: 1.5em;
}

.notification-dialog .notification:hover {
  background-color: #eff;
}

.notification-dialog .notification:not(:first-child) {
  border-top: 1px solid #ddd;
}

.notification-dialog img {
  border-radius: 50%;
  height: 100%;
  align-self: center;
}

.notification-dialog .btn {
  padding: 3px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.angular-ui-tree-handle {
  background: #f8faff;
  border: 1px solid #dae2ea;
  color: #7c9eb2;
  padding: 5px;
}

.angular-ui-tree-handle:hover {
  color: #438eb9;
  background: #f4f6f7;
  border-color: #dce2e8;
}

.angular-ui-tree-placeholder {
  background: #f0f9ff;
  border: 2px dashed #bed2db;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

tr.angular-ui-tree-empty {
  height: 100px;
}

.tree-node {
  border: 1px solid #dae2ea;
  background: #f8faff;
  color: #7c9eb2;
}

.nodrop {
  background-color: #f2dede;
}

.hidden {
  display: none;
}

.tree-node-content {
  margin: 5px;
  line-height: 2.3 !important;
  color: #2d486a;
}

.tree-node-content .fa {
  color: #fff;
  width: 0.75rem;
}

.tree-node-content .btn {
  font-size: 12px;
  border-radius: 3px;
}

.modal.fade.in {
  opacity: 1;
}
.modal.fade .modal-dialog {
  padding-top: 1rem;
  transform: translate(0, 0) !important;
}

.modal-backdrop.fade {
  opacity: 0.5 !important;
}

.modal-content {
  border-radius: 1.3rem !important;
}

input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

input[type="date"]::-webkit-clear-button {
  display: none;
}

input[type="date"] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

input[type="date"]::after {
  right: 0;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f073";
  color: #000;
  background-color: #ddd;
  padding: 0.375rem 0.75rem;
  user-select: none;
  height: 100%;
}

input[type="date"]:hover::after {
  color: #f37435;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
  z-index: 999999;
  cursor: pointer;
}

.time-picker {
  position: relative;
}

.time-picker::after {
  right: 0;
  top: 0;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f017";
  color: #000;
  background-color: #ddd;
  padding: 0.5rem 0.75rem;
  user-select: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.time-picker:hover::after {
  color: #f37435;
}

.report-footer {
  color: #fff;
  border-radius: 2px;
  line-height: 2rem;
  user-select: none;
}

.report-footer .buttons {
  margin: 0 5px;
  cursor: pointer;
}

.report-footer .disabled {
  opacity: 40%;
  pointer-events: none;
}

.report-footer .buttons:hover {
  color: #ddd;
}

.report-footer .currentPage {
  margin: 0 5px;
  padding: 0 3px 0 6px;
  border-radius: 2px;
  background-color: #ddd;
  text-align: center;
  color: #000;
  cursor: default;
  user-select: none;
}

#call-history {
  position: absolute;
  right: 15px;
  bottom: 38px;
  display: flex;
  flex-direction: column-reverse;
  z-index: 9999999999;
}

#call-history .container {
  padding: 0;
  width: 500px;
}

#call-history .container table {
  line-height: 0.9rem;
}

#call-history .header {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

#call-history .footer {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}

#call-history .footer i {
  cursor: pointer;
  transition: filter 0.2s;
}

#call-history .footer i:hover {
  filter: brightness(90%);
}

#call-history .footer .page {
  font-size: 12px;
}

.history .history-table {
  overflow-y: auto;
  max-height: calc(100vh - 118px);
}

.callcenter .dialerInfo {
  font-size: 0.75rem;
  overflow-y: auto;
  max-height: calc(100vh - 171px);
}

.callcenter .scriptInfo {
  font-size: 0.75rem;
  overflow-y: auto;
  max-height: calc(100vh - 120px);
}

.dashboard-tv {
  display: flex;
  height: 100vh;
  margin: 0 15px;
}

.dashboard-tv .navbar {
  position: absolute;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  height: 2.75rem;
  right: 1.2rem;
  top: 0;
  z-index: 99;
  font-size: 22px;
}

.dashboard-tv .navbar .fa {
  cursor: pointer;
  transition: opacity 0.2s;
  line-height: 2.75rem;
  margin-right: 0.5rem;
  color: #eee;
}

.dashboard-tv .navbar .fa:hover {
  opacity: 50%;
}

.dashboard-tv .navbar-brand {
  background-color: #f37435;
  position: absolute;
  padding: 0;
  display: flex;
  flex-direction: row;
  left: 1.75rem;
  top: 0.375rem;
}

.dashboard-tv .navbar-brand img {
  width: 20%;
  display: inline-block;
  z-index: 999;
}

.dashboard-tv .box {
  position: absolute;
  right: 1.7rem;
  top: 2.35rem;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  border: 1px solid #ccc;
  max-height: 700px;
  overflow-y: auto;
  border-radius: 3px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.dashboard-tv .box header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #e1e1e1;
  color: #2d486a;
  padding: 0.75rem 1.25rem;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

.dashboard-tv .box header .title,
.dashboard-tv .box header .controls {
  display: flex;
  flex-direction: row;
}

.dashboard-tv .box header .controls .fa {
  cursor: pointer;
  transition: filter 0.2s;
}

.dashboard-tv .box header .controls .fa:hover {
  filter: brightness(0.8);
}

.dashboard-tv section .queue,
.dashboard-tv section .configs {
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  font-size: 18px;
  background-color: #fefefe;
  color: #333;
  user-select: none;
}

.dashboard-tv section .queue {
  justify-content: space-between;
  flex-direction: row;
  border-bottom: 1px solid #ccc;
  transition: filter 0.2s;
}

.dashboard-tv section .queue:last-child {
  border: none;
}

.dashboard-tv section .queue:hover {
  filter: brightness(0.95);
}

.dashboard-tv section .queue .switch {
  transform: scale(0.85);
}

.dashboard-tv .configs > div {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
}

.dashboard-tv .configs div input {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 100px;
  padding: 0 20px 0 5px;
  right: 1rem !important;
  font-size: 18px;
  position: absolute;
  height: 27px;
  color: #333;
}

.dashboard-tv .configs .pages-header {
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}

.tab-navigation {
  width: 100vw;
  display: flex;
  position: absolute;
  flex-direction: column;
  height: 100%;
}

.tab-navigation > .tab-content {
  position: relative;
  display: flex;
  flex: 1;
}

.tab-navigation > .tab-content > .tab-pane {
  width: 100%;
  transition: 0.2s linear transform;
  margin: 10px;
}

.tab-navigation > .tab-content > .tab-pane.active-remove {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.tab-navigation > .tab-content > .tab-pane.active-remove-active {
  transform: translateX(-100%);
}

.tab-navigation > .tab-content > .tab-pane.active-add {
  transform: translateX(100%);
}

.tab-navigation .nav-tabs {
  font-size: 18px;
  padding-left: 170px;
  background-color: #2d486a;
  color: #fff;
  border-bottom: 1px solid #4d4d4d;
}

.tab-navigation .nav-tabs a {
  color: #eee;
  border-radius: 0;
}

.tab-navigation .nav-tabs a:hover {
  border: none;
  border-bottom: 1px solid #fff;
}

.tab-navigation .nav-tabs .nav-link.active {
  background-color: #54595e;
  border-color: #4d4d4d;
  border-bottom: 1px solid #f37435;
  border-radius: 0;
  color: #fff;
}

.dashboard-tv .table-title {
  border: 1px solid #2d486a;
  padding: 7px 15px;
  font-size: 26px;
  align-items: center;
  font-weight: bold;
  line-height: 40px;
}

.dashboard-tv .table {
  font-size: 26px;
  letter-spacing: 0.05rem;
}

.dashboard-tv .table-calls img {
  border-radius: 50%;
  background-color: #fff;
  padding: 2px;
  max-width: 39px;
}

.dashboard-tv .table-queues tr td {
  line-height: 50px;
}

.dashboard-tv table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.1);
}

.dashboard-tv-agents thead tr th {
  border: 1px solid #ccc;
  padding: 0%;
}

.dashboard-tv-agents tbody tr td {
  border: 1px solid #ccc;
  padding: 0%;
}

.dashboard-tv-agents img {
  max-width: 42px;
  border-radius: 50%;
  border: 1px solid #eee;
  background-color: #eee;
  padding: 2px;
}

.dashboard-tv table thead tr th {
  border-color: #aaa;
  border-top: none;
}

.dashboard-tv table tbody tr td {
  border-color: #ccc;
}

.dashboard-tv table tbody tr:hover {
  background-color: #f1f1e1;
}

.dashboard-tv .table-calls .bg-danger {
  background-color: rgb(248, 209, 209) !important;
}

.dashboard-tv .table-calls .bg-warning {
  background-color: rgb(252, 247, 186) !important;
}

.dashboard-tv .table-calls .bg-success {
  background-color: rgb(193, 240, 193) !important;
}

.dashboard-tv .polar-graph,
.dashboard-tv .doughnut-graph {
  background-color: #eee;
  padding-bottom: 100px;
  border: 1px solid #ccc;
  height: 800px;
}

.dashboard-tv .doughnut-graph {
  display: flex;
  flex-direction: row;
}

.graphs-tv {
  display: flex;
  flex-direction: column;
}

.history-calls .dropdown-item {
  padding: 0.75rem 0.5rem !important;
  font-size: 0.75rem;
}

.history-calls .dropdown-menu {
  padding-bottom: 0 !important;
}

.history-calls .calls {
  max-height: 400px !important;
  overflow-y: auto;
}

.history-calls span {
  line-height: 0.9rem;
  font-size: 0.8rem;
}

.history-calls a:hover {
  filter: brightness(0.95);
}

.history-calls .dropdown-divider {
  margin: 0;
}

.history-calls .messages-header {
  margin-bottom: 0.5rem !important;
}

.dashboard-dialer {
  margin: -10px -25px -10px -15px;
}

.dashboard-dialer .graphs {
  min-height: 250px;
}

.dashboard-dialer .calls-table {
  min-height: 600px;
  overflow-y: auto;
}

.text-fit {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.user-avatar-box {
  max-height: 9rem;
  overflow-x: hidden;
  background-color: white;
}

.slider-volume {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 5px;
  height: 15px;
  border-radius: 2px;
  background: #e96d07;
  cursor: pointer;
}

.slider-volume::-webkit-slider-thumb:hover {
  background-color: #bb5705;
}

.slider-volume::-moz-range-thumb {
  width: 6px;
  height: 15px;
  border-radius: 2px;
  background: #e96d07;
  cursor: pointer;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 20px;
}

.card-integrations-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.card-img-top-integrations {
  background-color: lightgray;
  height: 8vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

.peer-selection .queues-box-header {
  padding: 11px 24px;
}

.peer-selection .peers {
  max-height: 320px;
  overflow: auto;
}

.peer-selection .peers::-webkit-scrollbar {
  width: 8px !important;
  height: 6px !important;
}

.peer-selection .peers::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
}

.peer-selection .peers::-webkit-scrollbar-track {
  background: hsla(0, 0%, 100%, 0.1);
}

.peer-selection input[type="text"] {
  border: 1px solid #ddd;
  font-size: 14px;
  color: #333;
  border-radius: 3px;
  padding: 3px 5px;
}

.peer-selection input[type="text"]:focus {
  border: 1px solid rgb(175, 253, 136);
}

.chat-hover:hover {
  padding: 1px 9px 2px;
  font-size: 10px;
  font-weight: bold;
  background-color: rgb(190, 202, 186);
  border-radius: 9px;
}

.agent-progress-bar .bg-danger {
  background-color: #dc3545 !important;
}

.agent-progress-bar .bg-warning {
  background-color: #ffc107 !important;
}

.agent-progress-bar .bg-success {
  background-color: #28a745 !important;
}

.graphics-warning {
  height: 7rem;
  width: 20rem;
  border-radius: 10px;
  background-color: #e9f0f0;
  color: #6c757d;
  align-self: center;
}

.click-to-add {
  margin-top: 0.5rem;
  border: 2px dashed #bbb;
  border-radius: 0.3rem;
  padding: 0.5rem;
  text-align: center;
  font: 15pt bold;
  color: rgb(153, 153, 153);
}

#console {
  min-height: 30vh;
}

#callcenter-contacts {
  position: absolute;
  right: 60px;
  bottom: 40px;
  z-index: 999;
  min-width: 275px;
  max-width: 350px;
}

#callcenter-contacts main div:hover {
  cursor: pointer;
  background-color: #eee;
}

#callcenter-contacts input {
  padding: 5px;
  margin: 5px;
  width: calc(100% - 10px);
}

#callcenter-contacts-list {
  overflow-y: auto;
  height: 50vh;
}

.scroll::-webkit-scrollbar {
  width: 6px !important;
  height: 6px !important;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
}

.scroll::-webkit-scrollbar-track {
  background: hsla(0, 0%, 100%, 0.1);
}

#callcenter-contacts-new {
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 99999999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

#callcenter-contacts-new > div {
  background-color: #eee;
}

#callcenter-contacts-new div .row {
  margin: 0 0 1rem 0;
}

#callcenter-contacts-new .control-checkbox input:checked ~ .control_indicator {
  background: #53b347;
  border: 2px solid #44913a;
}

.monitoring-card {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  align-self: center;
}

.bg-rating-green {
  background-color: rgb(190, 255, 190) !important;
}

.bg-rating-red {
  background-color: rgb(255, 163, 163) !important;
}

.rating {
  display: inline-block;
}

.rating > input {
  display: none;
}

.rating > label:before {
  content: "\2605";
  font-size: 1.2rem;
  color: grey;
  cursor: pointer;
}

.rating > input:checked + label:before {
  color: rgb(196, 167, 1);
}

.rating > input:focus + label:before {
  color: rgb(196, 167, 1);
}

#callcenter-header {
  z-index: 9999;
}

.rounded-button {
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: all 0.1s;
}

.rounded-button:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.peers-panel-ringing {
  background-color: rgb(252, 243, 207) !important;
}

.peers-panel-inuse {
  background-color: rgb(212, 239, 223) !important;
}

.peers-panel-transfer {
  background-color: rgb(174, 214, 241) !important;
}

.peers-panel-help-disabled {
  color: rgb(204, 204, 204) !important;
}

.nav-tabs .nav-link {
  border: 1px solid #cecece;
  border-bottom-color: transparent;
}

.uib-tab-style .nav-tabs li a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}

.uib-tab-style .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: #2d486a;
}

.peers-panel-dropdown {
  min-width: 400px;
  max-height: 650px;
  overflow-y: auto;
  box-shadow: 0px 1px 7px 2px rgba(190, 184, 184, 0.1);
  margin: 2px 5px;
  -moz-user-select: none;
}

.peers-panel-dropdown .switch {
  transform: scale(0.7);
}

#history-contacts-new {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000000000;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

#history-contacts-new > div {
  background-color: #eee;
}

#history-contacts-new div .row {
  margin: 0 0 1rem 0;
}

#history-contacts-new .control-checkbox input:checked ~ .control_indicator {
  background: #53b347;
  border: 2px solid #44913a;
}

.script-radio-button {
  margin-bottom: 10px;
}

.script-radio-button:last-child {
  margin-bottom: 5px;
}

.hiddenRow {
  padding: 0 !important;
}

.rowsHistoryCalls div {
  border-right: 0.5px solid #e9e9e9;
  min-height: 27px;
}

#helps {
  color: white;
}

#boxVideo {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  margin: 0 auto;
}
#boxVideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#HelpsCallCenter {
  font-size: 19px;
}

#modalPeersPanelHelp {
  padding-left: 10px;
  padding-right: 5px;
  width: 47em;
}

#scriptFlexColumn {
  flex-direction: column;
}

.widget-softphone {
  position: fixed;
  left: 0;
  bottom: 20px;
  border-radius: 0 8px 8px 0px;
  width: 35px;
  transition-delay: 0.3s;
  z-index: 99999;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  padding: 3px 0px;
}

.widget-softphone i {
  font-size: 15px;
  color: #fff;
}

.widget-softphone > div {
  margin-top: 8px;
  cursor: pointer;
}

.widget-softphone > .mute > i {
  font-size: 17px;
}

.widget-softphone > .open-softphone {
  margin-top: 15px;
}

.agentContactBook:hover {
  font-size: 12px;
  font-weight: bold;
}

#helpsCallcenter:hover {
  color: #fd7e14;
}

#helpsCallcenter {
  font-size: 1.33333em;
}

.billing {
  display: flex;
  flex-direction: column;
}

.billing-container {
  flex: 1 0 auto;
  min-height: auto;
}

.billing .billing-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
}

.billing .billing-card-container {
  background-color: #fefefe;
  border: 1px solid rgb(180, 175, 175);
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.gradient-modal-header {
  display: block;
  background-color: #2d486a; /* For browsers that do not support gradients */
  background-image: linear-gradient(#2d486a, #4871a3);

  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.gradient-modal-footer {
  background-color: #2d486a;
  background-image: linear-gradient(#4871a3, #2d486a);

  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.gradient-modal-header h5 {
  color: white;
}

.modal-body div {
  color: #000;
}

.browsers img {
  max-width: 3rem;
}

.table-rocket-success td {
  background-color: #c3e6cb;
}

.table-rocket-danger td {
  background-color: #f5c6cb;
}

.table-rocket-info td {
  background-color: #bee5eb;
}

.rocket-padding {
  padding-top: 2px;
}

.container .dropdown-item:hover {
  background-color: #f0f0f0;
}

.container .dropdown-item:active {
  background-color: #f7e8da;
  color: inherit;
}
