.online-call .head,
.online-call .body,
.online-call .controls {
  left: 10px;
  position: absolute;
  right: 10px;
}

.online-call #chat {
  height: 100%;
  overflow: hidden;
  padding: 10px;
  position: absolute;
  width: 100%;
}

.online-call .head {
  height: 60px;
  top: 10px;
}

.online-call .body {
  background: #fff;
  border: 1px solid #ccc;
  bottom: 70px;
  overflow: auto;
  padding: 10px;
  top: 70px;
}

.online-call .auth-warning {
  display: none;
  float: right;
  height: 40px;
  line-height: 40px;
  margin-left: 5px;
  position: relative;
  text-align: center;
  width: 40px;
}

.online-call .Autorized .auth-warning {
  display: block;
}

.online-call .auth-warning::before {
  /*animation: warning infinite alternate .8s linear;*/
  content: "\0e802";
  color: rgb(255, 88, 93);
  font-family: fontello;
  font-size: 18px;
}

.online-call .auth-warning .tooltip {
  background: #fff;
  border: 1px solid rgb(255, 88, 93);
  color: #333;
  display: none;
  line-height: 16px;
  min-width: 200px;
  padding: 5px;
  position: absolute;
  right: 5px;
  text-align: justify;
  top: 100%;
  z-index: 100;
}

.online-call .auth-warning:hover .tooltip {
  display: block;
}

.online-call .controls {
  bottom: 10px;
  height: 60px;
  padding: 0 5px;
}

.online-call .head .title {
  font-size: 18px;
  overflow: hidden;
}

.online-call .head .icon {
  display: inline-block;
}

.online-call .head .icon::before {
  content: "\0f1d7";
  font-size: 40px;
  font-family: fontello;
  line-height: 40px;
}

.online-call .msg-item {
  /*border-top: 1px solid #ccc;*/
  min-height: 80px;
  padding: 10px 60px;
  position: relative;
}

.online-call .msg-item::after {
  content: "";
  display: block;
  clear: both;
}

.online-call .msg-item:first-child {
  border-top: none;
}

.online-call .msg-item .user-face {
  color: #1e90ff;
  display: block;
  height: 40px;
  line-height: 20px;
  left: 0;
  position: absolute;
  text-align: center;
  width: 40px;
}

.online-call .msg-item .host-face {
  color: #1e90ff;
  display: block;
  height: 40px;
  line-height: 20px;
  top: 0px;
  right: 0px;
  position: absolute;
  text-align: center;
  width: 40px;
  right: 6px;
  top: 5px;
}

.online-call .msg-item .sad-host-face {
  color: #1e90ff;
  display: block;
  height: 40px;
  line-height: 20px;
  top: 0px;
  right: 0px;
  position: absolute;
  text-align: center;
  width: 40px;
  right: 6px;
  top: 5px;
}

.online-call .user-msg + .user-msg .user-face {
  display: none;
}

.online-call .user-msg + .user-msg .arr,
.online-call .host-msg + .host-msg .arr {
  display: none;
}

.online-call .msg-item [class*='face']::before {
  content: "\0f2be";
  color: #1e90ff;
  display: block;
  font-family: fontello;
  font-size: 40px;
  line-height: 40px;
}

.online-call .msg-item .user-face {
  left: auto;
  right: 0;
}

.online-call .msg-item .txt {
  background: #f3f3f3;
  /*background: rgba(6, 80, 60, .1);*/
  border-radius: 8px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
  float: left;
  line-height: 20px;
  min-height: 46px;
  min-width: 70px;
  position: relative;
  padding: 10px 10px 20px 10px;
}

.online-call .msg-item.active .txt {
  float: none;
}

.online-call .msg-item .txt::after {
  content: attr(data-timestamp);
  display: block;
  font-size: 12px;
  line-height: 14px;
  position: absolute;
  right: 35px;
  bottom: 2px;
}

.online-call .msg-item.user-msg .txt {
  /*background: rgba(220, 223, 60, .1);*/
  float: right;
}

.online-call .msg-item.user-msg .arr::after,
.online-call .msg-item .arr::after {
  border: 5px solid transparent;
  border-right: 10px solid #f3f3f3;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 100%;
  top: 10px;
  width: 0;
}

.online-call .msg-item.user-msg .arr::before,
.online-call .msg-item .arr::before {
  border: 7px solid transparent;
  border-right: 12px solid rgba(0, 0, 0, .2);
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 100%;
  top: 8px;
  width: 0;
}

.online-call .msg-item.user-msg .arr::after {
  border-right: 5px solid transparent;
  border-left: 10px solid #f3f3f3;
  left: 100%;
  right: auto;
}

.online-call .msg-item.user-msg .arr::before {
  border-right: 7px solid transparent;
  border-left: 12px solid rgba(0, 0, 0, .2);
  left: 100%;
  right: auto;
}

.online-call .msg-item:not(.active) .msg-inp,
.online-call .msg-item:not(.active) .msg-btns {
  display: none;
}

.online-call button {
  background: #06503c;
  border: none;
  border-radius: 20px;
  color: #f8f8f8;
  cursor: pointer;
  display: inline-block;
  line-height: 16px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  outline: none;
  opacity: 1;
  padding: 8px 5px;
  text-align: center;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  width: 100%;
}

.online-call .buttons button:hover {
  opacity: .8;
}

.online-call .controls {
  padding: 5px 0;
}

.online-call input[type=text],
.online-call textarea {
  border: 1px solid #ccc;
  font-size: 16px;
  line-height: 20px;
  outline: none;
  min-width: 250px;
  padding: 5px 10px;
}

.online-call textarea {
  resize: none;
  width: 100%;
}

.online-call .input-control {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.online-call .input-control.opened {
  max-height: 300px;
  -webkit-transition: all .4s ease-in;
  -o-transition: all .4s ease-in;
  transition: all .4s ease-in;
}

.online-call .msg-inp input {
  margin: 8px 0;
  min-width: 0;
}

.online-call .msg-inp input,
.online-call .input-control input {
  width: 100%;
}

.online-call .enter-icon {
  cursor: pointer;
  float: right;
  height: 40px;
  margin-left: 10px;
  width: 40px;
}

.online-call .enter-icon::before {
  content: "\0e800";
  color: #1e90ff;
  font-family: fontello;
  font-size: 32px;
}

.online-call .inp-wrap {
  overflow: hidden;
}

.online-call .loading .msg-item:last-child {
  opacity: 0.4;
}

.online-call .loading .msg-item:last-child .txt::before {
  -webkit-animation: spin linear infinite .5s;
  animation: spin linear infinite .5s;
  border: 2px solid #ccc;
  border-top: 2px solid #333;
  border-radius: 50%;
  bottom: 3px;
  content: "";
  display: block;
  height: 10px;
  left: 3px;
  position: absolute;
  width: 10px;
}

.online-call span.err-txt {
  color: red;
  font-size: 12px;
}

.online-call .radio-wrap {
  padding: 10px;
}

.online-call .voting {
  text-align: center;
}

.online-call .voting input[type=radio] {
  display: inline-block;
  margin: 0;
}

.online-call .voting .lbl-txt {
  display: block;
}

.online-call .data-time,.online-call  .data-status{
  font-size: 14px;
  text-align: center;
}
.online-call .data-dtmf-view{
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

/* Table styles */
.online-call .d-none{
  display: none;
}
.online-call .table-wrapper{
  font-family: Calibri, sans-serif;
  font-size: 13px;
  width: 290px;
  border: 5px solid #dce123;
  border-radius: 10px;
  position: fixed;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  max-height: 90%;
  background-color: #ffffff;
}
.online-call .table-body{
  font-size: 12px;
  padding: 10px;
}
.online-call .table-body .desc{
  line-height: 1.4;
  margin-bottom: 10px;
  font-size: 13px;
}
.online-call .table-body table{
  width: 100%;
  border-spacing: 5px 5px;
  text-align: left;
  margin-bottom: 10px;
}
.online-call .warn-title{
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.online-call .warn-title,.online-call  .table-body .comments p {
  display: flex;
  height: auto;
  line-height: 1.1;
  color: #000;
}
@media screen and (min-width: 768px) {
  .online-call .warn-title,.online-call  .table-body .comments p{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}


.online-call .warn-title .icon{
  height: 21px;
  width: auto;
  margin-right: 10px;
  max-width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.online-call .table-body .comments p{
  margin: 0 0 4px 8px;
}
.online-call .table-body .comments img{
  margin-right: 10px;
  max-width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.online-call .browsers-table .icon {
  height: 11px;
  width: auto;
}
.online-call .browsers-table .icon-sync {
  height: 15px;
  width: auto;
}
.online-call .browsers-table tbody th {
  text-align: left;
}
.online-call .browsers-table tbody th:first-of-type {
  width: 50px;
}
.online-call .browsers-table thead th, .browsers-table tbody td {
  text-align: center;
}
.online-call .table-head{
  background-color: #dce123;
}
.online-call .table-head .close {
  cursor: pointer;
  margin-left: auto;
  height: 32px;
  text-align: center;
  width: 30px;
  padding-top: 5px;
}
.online-call .table-head .close img{
  width: 15px;
  height: auto;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .online-call .data-time,.online-call  .data-status{
    font-size: 20px;

  }
  .online-call .data-dtmf-view{
    /*margin-top: 10px;*/
    font-size: 30px;
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes warning {
  0% {
    text-shadow: 0 0 8px red;
  }
  100% {
    text-shadow: 0 0 1px red;
  }
}

@-webkit-keyframes warning {
  0% {
    text-shadow: 0 0 8px red;
  }
  100% {
    text-shadow: 0 0 1px red;
  }
}

@media screen and (min-width: 720px) {
  .online-call .buttons {
    line-height: 0;
    text-align: justify;
  }
  .online-call .buttons::after {
    content: "";
    display: inline-block;
    width: 100%;
  }
  .online-call button {
    width: calc(50% - 3px);
  }
}

@media screen and (max-width: 480px) {
  .online-call .msg-item {
    padding: 10px 0 10px 60px;
  }
  .online-call .msg-item .user-face {
    left: 0;
    right: auto;
  }
  .online-call .msg-item.user-msg .txt {
    float: left;
  }
  .online-call .msg-item.user-msg .txt::before {
    border-left: 5px solid transparent;
    border-right: 10px solid #f3f3f3;
  }
  .online-call .msg-item.user-msg .arr::before,
  .online-call .msg-item.user-msg .arr::after {
    left: auto;
    right: 100%;
  }
  .online-call .msg-item.user-msg .arr::before {
    border: 7px solid transparent;
    border-right: 12px solid rgba(0, 0, 0, .2);
  }
  .online-call .msg-item.user-msg .arr::after {
    border: 5px solid transparent;
    border-right: 10px solid #f3f3f3;
  }
}
