@import "reset.css";
@import "material.css";
@import "opensans.css";
@import "animate.min.css";
.noselect,
.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*
//Simple Blur
body.loading {
  -webkit-filter: blur(3px);
  filter: blur(3px);
  &:after {
    content: ' ';
    display: block;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 253, 253, 0.8);
  }
}
*/
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  -webkit-animation: spin 2s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
  z-index: 1001;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e74c3c;
  -webkit-animation: spin 3s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9c922;
  -webkit-animation: spin 1.5s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #214579;
  z-index: 1000;
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}
body.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(-100%);
  /* IE 9 */
  transform: translateX(-100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
body.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(100%);
  /* IE 9 */
  transform: translateX(100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
body.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
  transition: all 0.3s ease-out;
  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
body.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(-100%);
  /* IE 9 */
  transform: translateY(-100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.3s 1s ease-out;
  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
  transition: all 0.3s 1s ease-out;
  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
html {
  height: 100%;
  font-family: 'Open Sans', sans-serif;
}
body {
  font: 14px 'Open Sans', sans-serif;
  overflow: hidden;
  transition: 0.3s all linear;
  display: flex;
  width: 100%;
  height: 100%;
}
.noselect,
.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
h1 {
  font-size: 20px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 16px;
}
button,
.btn,
.btn-flat {
  -khtml-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
#toast-container > div {
  padding: 7px 7px 7px 45px;
  display: block;
  font-size: 13px;
}
.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
}
.clearfix:after {
  content: "";
  clear: both;
}
body .container {
  width: 100%;
  max-width: none;
  padding: 0 10px;
}
.hidden {
  display: none;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar {
  width: 4px;
  height: 5px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #36C6D3;
  border-radius: 10px;
}
.material-icons {
  cursor: pointer;
}
.main-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  text-align: left;
  background: white;
}
.app-content {
  flex: auto;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
}
app-content.call {
  margin-top: 87px;
}
#main-frame {
  height: 100%;
  overflow-y: scroll;
}
.app-content > section {
  width: 100%;
  display: flex;
}
.app-content > section > section {
  display: flex;
  width: 100%;
}
#header > section {
  height: 50px;
}
#header header {
  display: block;
  background: #D9D9D9;
  padding: 5px 10px;
  width: 100%;
}
#header header .photo {
  width: 50px;
  height: 50px;
  margin: 0 10px 0 0;
}
#header header h1 {
  margin: 6px 0;
  font-size: 16px;
  font-weight: bold;
}
#header header #header-controls {
  float: right;
  margin: 10px 10px;
  letter-spacing: 20px;
  z-index: 10;
  position: relative;
}
#header header #header-controls .btn-settings {
  position: absolute;
  right: 0;
  bottom: 0;
}
#footer.hidden {
  display: none;
}
#footer > section {
  height: 50px;
  background: #e90500;
}
.photo {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 5px 0 0;
  background: white url('../img/avatar_m.png') no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  float: left;
}
.photo.huge {
  width: 150px;
  height: 150px;
}
.online-status:before,
#idle-state:before {
  content: ' ';
  display: inline-block;
  width: 15px;
  height: 15px;
  background: grey;
  border-radius: 50%;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}
.online-status.online,
#idle-state.online {
  color: darkgreen;
}
.online-status.online:before,
#idle-state.online:before {
  background: #0adf00;
}
.online-status.idle,
#idle-state.idle,
.online-status.afk,
#idle-state.afk,
.online-status.calling,
#idle-state.calling {
  color: #ff9800;
}
.online-status.idle:before,
#idle-state.idle:before,
.online-status.afk:before,
#idle-state.afk:before,
.online-status.calling:before,
#idle-state.calling:before {
  background: #ff9800;
}
.online-status.offline,
#idle-state.offline {
  color: #e90500;
}
.online-status.offline:before,
#idle-state.offline:before {
  background: #e90500;
}
#left-menu {
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
  width: 30%;
  min-width: 300px;
  height: 100%;
  background: #EEEEEE;
  border-right: 1px solid #dadada;
  z-index: 10;
}
#left-menu #left-menu-content {
  margin: 0;
}
#left-menu #left-menu-content ul.tabs {
  background-color: #EEEEEE;
}
#left-menu #left-menu-content ul.tabs .indicator {
  background-color: #1C7DB1;
}
#left-menu #left-menu-content li.tab {
  text-align: center;
  line-height: normal;
}
#left-menu #left-menu-content li.tab a {
  color: #999999;
  font-size: 13px;
  letter-spacing: normal;
}
#left-menu #left-menu-content li.tab a > span {
  display: block;
  font-size: 11px;
}
#left-menu #left-menu-content li.tab a.active {
  color: #1C7DB1;
}
#left-menu #left-menu-content li.tab .badge {
  position: absolute;
  left: 50%;
  right: auto;
  margin-left: 13px;
  font-weight: 300;
  font-size: 0.8rem;
  color: #333;
  padding: 0 3px;
  border-radius: 3px;
  min-width: initial;
}
#left-menu #left-menu-content li.tab .badge.new {
  color: white;
  background-color: red;
}
#left-menu #left-menu-content li.tab .badge.new:after {
  content: '';
}
#left-menu #left-menu-content #left-menu-tab-content {
  margin-top: 10px;
}
#left-menu #left-menu-content #left-menu-tab-content #contacts-search-input-row .btn-cancel,
#reply-contact-container #contacts-search-input-row .btn-cancel,
#reply-message-contact-container #contacts-search-input-row .btn-cancel {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  right: 0;
  font-size: 10px;
  width: 20px;
  height: 20px;
  line-height: 21px;
}
#left-menu #left-menu-content #left-menu-tab-content #contacts-search-input-row .btn-cancel i,
#reply-contact-container #contacts-search-input-row .btn-cancel i,
#reply-message-contact-container #contacts-search-input-row .btn-cancel i {
  font-size: 14px;
  line-height: 21px;
}
#left-menu #left-menu-content #left-menu-tab-content #contacts .contact,
#reply-contact-container #contacts .contact,
#reply-message-contact-container #contacts .contact {
  margin-bottom: 5px;
  padding: 10px 0 10px 20px;
  cursor: pointer;
}
#left-menu #left-menu-content #left-menu-tab-content #contacts .contact:hover,
#left-menu #left-menu-content #left-menu-tab-content #contacts .contact:focus,
#reply-contact-container #contacts .contact:hover,
#reply-contact-container #contacts .contact:focus,
#reply-message-contact-container #contacts .contact:hover,
#reply-message-contact-container #contacts .contact:focus,
.selected-contact {
  background: #1C7DB1;
  color: white;
}
#left-menu #left-menu-content #left-menu-tab-content #contacts .contact .contact-name,
#reply-contact-container #contacts .contact .contact-name,
#reply-message-contact-container #contacts .contact .contact-name {
  padding: 8px 0;
  display: block;
}
#left-menu #left-menu-content #left-menu-tab-content #contacts .contact .contact-name .highlight,
#reply-contact-container #contacts .contact .contact-name .highlight,
#reply-message-contact-container #contacts .contact .contact-name .highlight {
  color: #00acc1;
}
.divider {
  font-size: 1px;
  line-height: 1px;
}
#content {
  float: left;
  width: 70%;
  height: 100%;
}
#content .page {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: white;
}
#content .page.active {
  display: block;
}
#content .page#page-main {
  background: white url("../img/main-page-bg.jpg") 50% 50% no-repeat;
  background-size: contain;
}
#content .page > header {
  overflow: hidden;
}
#content .page > header .btn-flat {
  padding: 0 1rem;
}
#content .page > header > div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
#content .page > header > div .name {
  line-height: 35px;
}
#content .page > section {
  padding: 0 10px;
}
#left-menu-content header,
#content header {
  padding-top: 10px;
  height: 65px;
  border-bottom: 1px solid #dadada;
  margin-bottom: 10px;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.status {
  padding: 0 5px;
  font-size: 90%;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  min-height: 20px;
  line-height: 20px;
}
.status .error {
  color: red;
}
.status .warning {
  color: orange;
  text-shadow: none;
}
.status .success {
  color: #82D200;
}
span.ajax,
button.ajax {
  vertical-align: middle;
  display: inline-block;
}
span.ajax:before,
button.ajax:before {
  content: ' ';
  display: inline-block;
  border-radius: 50%;
  border-top: 1px solid #59ebff;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  animation: fa-spin 0.8s linear infinite;
  vertical-align: sub;
}
#login-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: url('../img/login-bg.jpg') center center;
  background-size: cover;
  text-align: center;
}
#login-wrapper .content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -175px;
  margin-left: -200px;
  width: 400px;
  background: rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 50px 41px rgba(0, 0, 0, 0.15);
}
#login-wrapper .status .error {
  color: pink;
}
#login-wrapper .status .success {
  color: #b6f359;
}
#in-call-frame {
  background: linear-gradient(to right, #073e2b, #005e34);
}
#incoming-call-frame,
#outgoing-call-frame {
  background: linear-gradient(to right, #005b97, #5795cf);
  z-index: 60;
}
#end-call-frame {
  background: linear-gradient(to right, #676767, #5795cf);
  z-index: 20;
}
.network_indicator {
  width: 30px;
  height: 30px;
  margin-left: 40px;
}
.pillar {
  width: 5px;
  height: 100%;
  padding-bottom: 0px;
  bottom: 0px;
  margin-right: 2px;
  display: inline-table;
  background: white;
}
section.call-frame {
  padding-right: 25px;
  padding-left: 25px;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 87px;
  /*background: #1C7DB1;*/
  color: white;
  box-shadow: 0 1px 8px #8a8a8a;
  transition: all 130ms ease-in;
  transform: translateY(-103%);
  will-change: transform;
}
section.call-frame h1,
section.call-frame h2,
section.call-frame h3 {
  margin: 0;
  font-weight: normal;
}
section.call-frame .photo_logo {
  max-height: 50px;
  /*width: 180px;*/
}
section.call-frame .call-client-fio {
  font-weight: bold;
}
section.call-frame h2 {
  /*font-weight: bold;*/
  font-size: 19px;
  letter-spacing: 1.3px;
}
section.call-frame > div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  height: 100%;
}
section.call-frame > div.cc {
  width: 100%;
}
section.call-frame > div.rc {
  padding: 0 5px;
}
section.call-frame div.table {
  width: 100%;
}
section.call-frame > div.lc,
section.call-frame > div.rc {
  width: 50px;
  /*padding: 0 30px;*/
}
#incoming-call-frame > div.cc > div {
  margin: 0 auto;
}
#incoming-call-frame > div.cc > div > div {
  padding: 0 5px;
}
#incoming-call-frame > div.cc > div .photo {
  width: 55px;
  height: 55px;
}
section.call-frame .call-time {
  font-size: 18px;
}
section.call-frame.active {
  transform: none;
}
#incoming-call-frame.active a {
  animation: pulse 1s infinite;
}
.call-active {
  top: 87px;
  height: calc(100% - 87px);
}
.dialpad-frame {
  display: none;
  box-sizing: border-box;
  right: 0px;
  width: 255px;
  min-width: 255px;
  height: 100%;
  background: #1C7DB1;
  opacity: 1;
  border-left: 1px solid #dadada;
  overflow-y: auto;
}
.dialpad-frame.active {
  display: block;
  opacity: 1;
  transform: none;
}
.dialpad-frame header {
  background: #E2E2E2;
  color: black;
  font-size: 13px;
  text-shadow: 1px 1px 5px #b3a1a1;
  padding: 5px;
}
.dialpad-frame header .btn-cancel {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.dialpad-frame header .btn-cancel i {
  font-size: 14px;
  line-height: 16px;
}
.dialpad-frame .dialpad {
  -khtml-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  padding: 5px;
}
.dialpad-frame .dialpad .digits {
  margin-left: 7px;
}
.dialpad-frame .dialpad input {
  color: white;
  text-align: center;
}
.dialpad-frame .dialpad .btn {
  background: #E2E2E2;
  color: black;
  margin: 0 10px 10px 0;
}
.dialpad-frame .dialpad .btn:nth-child(3n) {
  margin-right: 5px;
}
#content #page-call-frame {
  background: #1C7DB1;
  color: white;
  transition: all 0.6s linear;
}
#content #page-call-frame .btn-flat {
  color: white;
}
#content #page-call-frame .btn-flat i {
  vertical-align: middle;
}
#content #page-call-frame .control {
  display: none;
}
#content #page-call-frame .control a {
  margin-right: 15px;
}
#content #page-call-frame .control a :last-child {
  margin-right: 0;
}
#content #page-call-frame.calling .control.calling {
  display: block;
}
#content #page-call-frame.in-call {
  background: #2BB33E;
}
#content #page-call-frame.in-call .control.in-call {
  display: block;
}
#content #page-call-frame.call-ended {
  background: #676767;
}
#content #page-call-frame.call-ended .control.call-ended {
  display: block;
}
#content #page-call-frame > section {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
#content #page-call-frame .call-time {
  margin-bottom: 15px;
}
#content #page-call-frame .number {
  margin-bottom: 20px;
}
#content #page-call-frame .name {
  margin-bottom: 35px;
}
#content #page-call-frame .mute {
  margin-top: 15px;
  font-size: 11px;
}
#content #page-call-frame .photo {
  display: inline-block;
  float: none;
  margin: 5px 0;
}
video {
  display: none;
}
/*config window*/
select.audio-select {
  display: block;
  border-style: dashed;
  border-color: black;
}
canvas.soun-activity {
  border: solid 1px #ccc;
  width: 100%;
  height: 25px;
}
span.save {
  width: 100%;
}
span.test-sound {
  border-radius: 50%;
  width: 40px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #9e9e9e;
}
.redirect-call span {
  border-radius: 50%;
  width: 230px;
  height: 50px;
  font-size: 15px;
}
#custom-card-header {
  padding-bottom: 1px;
  padding-top: 1px;
}
#custom-card-body {
  position: fixed;
  width: 98%;
  padding-right: 20px;
  margin-right: 20px;
  color: #000000;
}
#alert-message {
  font-size: 25px;
  margin-bottom: 3px;
}
#modal-alert .modal-content i {
  font-size: 25px;
  color: darkred;
}
#modal-alert .modal-content h1 {
  font-size: 25px;
}
div.collection a.collection-item {
  height: 85px;
}
.font16 {
  font-size: 16px;
}
.tab_caption {
  font-weight: bold;
  color: #1972a8;
  font-size: 18px;
}
#outtabs {
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
}
.padding25 {
  padding-top: 25px;
}
.padding20 {
  padding-top: 20px;
}
.orders_table {
  font-weight: bold;
  font-size: 16px;
}
.order_button {
  height: 35px;
  padding-left: 4px;
  padding-right: 4px;
  text-align: center;
  background-color: #de6100;
  display: none;
}
.order_button:hover {
  background-color: #d54f00;
}
#content {
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.order_number {
  color: #1972a8;
}
.order_button i {
  margin-right: 0;
  line-height: 35px;
}
ul.collapsible.striped li:nth-child(even) div {
  background-color: #ebebeb;
}
ul.collapsible.striped div.collapsible-header {
  font-weight: bold;
}
.long_text {
  width: 500px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.bold_text {
  font-weight: bold;
}
.orange_button {
  background-color: #de6100;
}
.orange_button:hover {
  background-color: #d54f00;
}
.simply_text {
  font-weight: 100;
  color: black;
  font-size: 14px;
}
.orange_text {
  color: #de6100;
}
.tabs_select {
  width: 180px;
  margin-top: 20px;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
}
.redirect-info {
  background-color: #de6100;
  /*margin-left: -5px;
  margin-right: -15px;*/
  /*margin-top: -21px;*/
  height: 60px;
  width: 100%;
}
.redirect-info h3,
.redirect-info h2,
.redirect-info span {
  margin: 0;
  color: white;
}
.redirect-info span.redirect-call-name {
  font-size: 16px;
  font-weight: bold;
}
.redirect-info span.status {
  font-size: 14px;
}
.call-project {
  font-size: 19px;
}
.photo_wrapper {
  min-width: 180px;
  max-width: 180px;
  text-align: left;
}
#in-call-frame.holded {
  background: linear-gradient(to right, #5b1e3e, #860042);
}
p.user_tags span.tag {
  background-color: #D9D9D9;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 100px;
  font-style: italic;
  margin: 5px;
  line-height: 23px;
}
#outtabs.empty span {
  font-size: 22px;
  font-weight: bold;
}
.add_button {
  padding: 0;
  margin-left: 10px;
}
.custom_redirect_number {
  margin-top: 5px;
  transition: transform 0.2s;
  /* Animation */
}
.custom_redirect_number:hover {
  transform: scale(1.1);
  background-color: #81d4fa;
  cursor: pointer;
}
#bug_button {
  position: absolute;
  left: 210px;
  bottom: 40px;
  z-index: 666;
}
#bug_button i {
  font-size: 45px;
}
.problem_item:hover {
  cursor: pointer;
}
.collection .collection-item.selected_problem {
  background-color: #fce4ec;
}
#system_load {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 666;
  background-color: #fff;
  padding: 5px;
}
#system_load .pulse {
  background: #ffcdd2;
}
.missed_calls_project_container:hover {
  background-color: #ddd;
}
.missed_calls_project_container {
  display: block;
  cursor: pointer;
  min-height: 3rem;
  line-height: 3rem;
  padding: 0 1rem;
  text-align: center;
  /*background: linear-gradient(to right, #9E9E9E , #5795cf);*/
  text-transform: uppercase;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  margin-bottom: 5px;
}
.missed_calls_project_container img {
  vertical-align: middle;
  max-height: 40px;
}
.missed_calls_list {
  list-style: none;
}
.missed_call_container {
  padding: 10px;
  box-shadow: 0 0 0 1px rgba(63, 63, 68, 0.05), 0 1px 3px 0 rgba(63, 63, 68, 0.15);
  border: 0px;
  margin-bottom: 10px;
}
#missed_calls {
  height: 100%;
}
.mc_row {
  display: block;
}
.recal_missed_btn {
  margin-right: 10px;
  margin-top: 10px;
  min-width: 60px;
  min-height: 60px;
  position: absolute;
  right: 20px;
}
.mc_time {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  text-align: center;
  font-size: 40px;
  line-height: 70px;
  color: darkgrey;
}
.mc_text {
  z-index: 1;
}
.missed_calls_list a.recallMissedCall {
  z-index: 20;
}
.mc_project_logo {
  font-weight: 400;
  right: 285px;
  position: fixed;
  font-size: 28px;
  margin: 5px;
  text-align: center;
  text-transform: uppercase;
}
.mc_project_close {
  font-weight: 400;
  right: 260px;
  position: fixed;
  font-size: 18px;
  margin: 5px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 100;
}
.selected_mc_container {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1) inset;
  border: 1px solid #ccc;
  background-color: #e5e5e5;
}
.sync_indicator .preloader-wrapper.small {
  width: 22px;
  height: 22px;
}
.sync_indicator {
  display: none;
  font-style: italic;
}
.aftercall_container .tingle-modal-box {
  width: 90%;
}
.action_call_feedback {
  font-size: 14px;
  cursor: pointer;
}
.action_call_feedback:hover {
  color: #1d7db2;
}
.action_call_feedback span {
  float: right;
  color: white;
}
.collection .collection-item.action_call_feedback_selected {
  background-color: #1d7db2;
  color: #fff;
}
.action_call_feedback_selected:hover {
  background-color: #60a4c9;
}
.send-feed {
  height: 40px;
  padding-left: 7px;
  padding-right: 4px;
  background-color: #1d7db2;
  font-size: 15px;
}
.send-feed:hover {
  background-color: #60a4c9;
}
#other-comment {
  border: 1px solid #60a4c9;
  padding: 3px;
}
#other-comment:focus {
  border: 2px solid #1d7db2;
  box-shadow: none;
}
.active-comment:after {
  display: block;
}
.hide-comment {
  display: none;
}
.call_complited_action {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 10px;
}
.aftercall_container .tingle-modal-box .tingle-modal-box__content {
  padding: 15px;
}
#fb_app_problem {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAQAAABIkb+zAAACFElEQVR4Ae2XA4xdURRFT223QW3r7R3U4US1bdsxJqrb2G5j1bZtRXVUja1bjvl4/yRn7Vh/rf8sincURVEURVEGNed5QjxA4NKg5mIXNuU9Gia5TyCYRMN7bGpX/yYNjcuEIv2/u2ktoXvjIv2iBNf6fxO6N7aij8tFCq4SivSLhssWEniMptySOMSdftGOSdQMj2NOeREkVJ3AIRXq5wyPE6kFCRyCBBf69hKcOdiJI7zH98hiOt/jNg5zB2ZZ0XeR4H5F+pYTbOjbTyjStx/Qmk89BbwY1knsM7QfPtJ4XDKmiV2ckUyh8T4UOAtt6k9CNo2/IZ8z7f37OTQBLMcZKdHDXkigCWZIYC+JmDp4QBPg7ksdiRJsoQl4myUcaOxOAzRAAzTA5jSgPDzt7werET4lYcO3YQbgjYQNEsIM4M/wAwrCDEC+hI3fiy7yi1YDNECfxBqgARqgARoQHPok1gANyAk1IKeWf1IiQT/qqwNnQw04o98DGqABGqAB5acBgYP1gauuk2jB5UD1r0rUDO7Cn4Hp/xzcRaLHGce8QPTzOEbswE1BBDgbxR7cgQI/8ijgDrHL8MnI9qyfjQliHwzgC08Br4b2k9iADbgbWW7kkYW9bCCxhNMB8fxRI/lviO/fTmKR3o2cRXxapfxDLu7dSGIbgit4EGf5hJ+RxUx+4VOcwSGsJERRFEVRFEUJkF+uK656taVKowAAAABJRU5ErkJggg==) no-repeat bottom right;
  background-size: 10% auto;
}
#fb_client_problem {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAQAAABIkb+zAAACEklEQVR4AeyXIajCYBRGr0FMRoN9YP13v2APFjusg3ZYh/Vgh/WwDva8ZMduMJrE4H2MB4/3fDJ323dh5/Rw4hFe4jMyMjIykrZpK3HBVM96xlSikpcwWF5KTPIFbjAYbvlCIqI17FutJR4p6fMn4JmSRAMt7JetxEIL2F+1kDhkM1xgL16ymURBK9h/tZIYYKn3twF3LCUC2sDeq43wgzWsx7WQM8GpN+AkE2FG97B+dS+8rOZ6/RhwXc2FFRxgAzwIJ5rhMSjgoZkwgiNsoEfhI21gw00bwnn0BHSjSTiPHvOScR4ddqNJOI8etSacR4/daDLOo8eWch49asE4jw670SScR49aEc6jx240CefRozac8+hxTTiP8gLdaGIH8wb0uKObx6/265AKYCCIoWBdnaGzUzn1V/75sCQ4YNG+6cJCE+CxCwBNi8duADQtHrsB0LR47ApA0+KxOwBNi8fuLDQBHru00AR47NJCE+CxWwtNgMduLTQBHru20AR47B5A0+KxewBNiUcKTY9HAE2AR98D8MgbaFo8+l6AR95A0+LR9wV45A00AR7xIws0AR75AYEmwCM/INAEeMQHBJoUj+aAQhPg0R5QaAI86gMKTYBHe0ChCfCoW2gCPPoWmgCPvoWmx6OHpsejh6bBo+/xePTQpHj0vR6PHpoejx6aHo8emsUjqOr3PMuyLMuyLMsPevXKzcReT84AAAAASUVORK5CYII=) no-repeat bottom right;
  background-size: 10% auto;
}
#fb_client_question {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAQAAABIkb+zAAAEjklEQVR4Ae2bA9AlRxSF79q27d35p8+Jbdu2k0JcilmIbZVjp7yF2M7atr2dUjDvx9zp1z1vtmq+U65+Z9q4r1tK/FFSUlJSEo/CKeYGPo4P+DX/4mJux2Ys4RR+jQ/4uLkBp3CEFJEJHXkOXuIc2nRhNl42Z43pJEXB1PEZbqDNJqzDc3EstYWtzNn4gtZd+ILnsJXUgkndeDuW0HrQItwxqZvkSjNzCVfQetQyc6k0k3yIJvJr2gD6Opoo4cEp3EgbSBtxigSlOe6jDStzf7CuNLQtPqTNQR8NbSv+Mb3wLW0+wrcTuotfJg3HbNocNX3ScPEH+3FuxsH4Fs6oMxw8tO3AdtHAODZn4S1uyuQx1/T313mm6j+MpbyM7aUB2J6XYSmtWlOi3l6GLn9Uf3IbH4w6SBNEHfggt6r9fvQwnPGkuu5XxvuIAu6HlWrPJ6U6zGH6YRcP1U8JnK72PULcYU8u0+5l6gZIBqKBWmcsZU9xBW8os7+JkIyY3bRbErwubsQHqXvqLeIAbqFV6mBxoCVnKrO/pKG5YuIg3IzJXM3VmIybJw5qcH5brCzADIdDD69R1/+VDZyQ38XORJqdfHdCR6kAV9AqdU32+l+ozP6Wge0kwcg2+LnBlD+PbFO5tGGL8iuzpKVkARer6/9TqQDPN5r2eakAn6m/c5FkgVPUxtdKAozEjkbT7sBI147KKaLHHEirVXyQJOADTaZ/wHWmozUHiBa8TqvWWEmAn5pKjZ8lAcemuLusB1EHbKZVq4skSNk0b5AE7EKr1qaog2gwp9KGEtZLgjGdaPUyp4oGPBHypOXehWjxhGjgrwEL8KIkMEdn+vWvks6E7kGDJrtJAjyc7feKw745NL/6F8GsjBVwqH4P5F+/jGzjXlnqPREfC5T9P00vqcAh0vSYpIHPwmffva3xmaTBX/LJvjkBO1y6oaSB2blk/wBucvHCbEkDKz1n/68G+j65wc0NKyUN7HSz1kcrEHG1qx92SBq6M5J7tALjqvlzClskDS73uO7eKhWY8VxWledySUOzNrpGK9i+WnfMCjeNKqIVfLf61dz/QqaOVuBMD66fShp83MVYsWY2UwUKPGwlrnOwVUQreLAv1xR4hIuxIlpxtxfXwyWNsT0cjBXRCn7sw3VCR0kHP+sN9dEK/f9s+qBM0GEsFXC1B9fHcwyrSAUOm2fXsErUgZtoiydsjjqIDr5KW0C9KlrMAUUsAPZ3D68XQVPc/+AohHCxZKIlFhSqAAulpWQD1xWq/q9zuBPKvwpTgL+kpWQn3sfrSmzdZfYWN/B6EQqA18UV9sTSmhdgGXuKOzyi1gUwh3m88JR/AfCkjytnP9SsAD+orpwpzmhTalKAKWN7iB9Mf87NvQD6a5dFvPiK2RyxS189Nr124cvf+FAxdB1pFv76Pe6TZhISns4NhXwAoceMD/UExYwvHwHpmdQNdxT0GZYetsK5+JLWXfgS57KV1JY4xnNY7/IUkZOkKIzpxHP4YvEfg+qf437473PcLVjCKfgGH+IJcwNOiUeJN0pKSkpKSv4GQ3fmK6Rn5VYAAAAASUVORK5CYII=) no-repeat bottom right;
  background-size: 10% auto;
}
.mc_list {
  background: white;
}
.settings {
  overflow-y: auto;
}
.device-settings-info {
  cursor: default;
  display: none;
  width: 100%;
  padding: 5px 10px 5px 10px;
}
.device-settings-info.active {
  display: flex;
}
#reload {
  color: #fff;
  background-color: #26a69a;
  text-align: center;
  padding: 3px;
}
.device-settings-info {
  cursor: default;
  display: none;
  width: 100%;
  padding: 5px 10px 5px 10px;
}
.device-settings-info.active {
  display: flex;
}
#reload {
  color: #fff;
  background-color: #26a69a;
  text-align: center;
  padding: 3px;
}
#start-test,
#stop-test {
  margin-top: 1rem;
}
/*# sourceMappingURL=app.css.map */