/*
 * Component: Box
 * --------------
 */
.bbx {
  position: relative;
  border-radius: 3px;
  background: #ffffff;
  border-top: 3px solid #d2d6de;
  margin-bottom: 20px;
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.bbx.bbx-primary {
  /*border-top-color: #3c8dbc;*/
  border-top-color: #009999;
}
.bbx.bbx-info {
  border-top-color: #00c0ef;
}
.bbx.bbx-danger {
  border-top-color: #dd4b39;
}
.bbx.bbx-warning {
  border-top-color: #f39c12;
}
.bbx.bbx-success {
  border-top-color: #00a65a;
}
.bbx.bbx-default {
  border-top-color: #d2d6de;
}
.bbx.collapsed-box .bbx-body,
.bbx.collapsed-box .bbx-footer {
  display: none;
}
.bbx .nav-stacked > li {
  border-bottom: 1px solid #f4f4f4;
  margin: 0;
}
.bbx .nav-stacked > li:last-of-type {
  border-bottom: none;
}
.bbx.height-control .bbx-body {
  max-height: 300px;
  overflow: auto;
}
.bbx .border-right {
  border-right: 1px solid #f4f4f4;
}
.bbx .border-left {
  border-left: 1px solid #f4f4f4;
}
.bbx.bbx-solid {
  border-top: 0;
}
.bbx.bbx-solid > .bbx-header .btn.btn-default {
  background: transparent;
}
.bbx.bbx-solid > .bbx-header .btn:hover,
.bbx.bbx-solid > .bbx-header a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.bbx.bbx-solid.bbx-default {
  border: 1px solid #d2d6de;
}
.bbx.bbx-solid.bbx-default > .bbx-header {
  color: #444;
  background: #d2d6de;
  background-color: #d2d6de;
}
.bbx.bbx-solid.bbx-default > .bbx-header a,
.bbx.bbx-solid.bbx-default > .bbx-header .btn {
  color: #444;
}
.bbx.bbx-solid.bbx-primary {
  /*border: 1px solid #3c8dbc;*/
  border: 1px solid #009999;
}
.bbx.bbx-solid.bbx-primary > .bbx-header {
  color: #fff;
  /*background: #3c8dbc;*/
  background: #009999;
  /*background-color: #3c8dbc;*/
  background-color: #009999;
}
.bbx.bbx-solid.bbx-primary > .bbx-header a,
.bbx.bbx-solid.bbx-primary > .bbx-header .btn {
  color: #fff;
}
.bbx.bbx-solid.bbx-info {
  border: 1px solid #00c0ef;
}
.bbx.bbx-solid.bbx-info > .bbx-header {
  color: #fff;
  background: #00c0ef;
  background-color: #00c0ef;
}
.bbx.bbx-solid.bbx-info > .bbx-header a,
.bbx.bbx-solid.bbx-info > .bbx-header .btn {
  color: #fff;
}
.bbx.bbx-solid.bbx-danger {
  border: 1px solid #dd4b39;
}
.bbx.bbx-solid.bbx-danger > .bbx-header {
  color: #fff;
  background: #dd4b39;
  background-color: #dd4b39;
}
.bbx.bbx-solid.bbx-danger > .bbx-header a,
.bbx.bbx-solid.bbx-danger > .bbx-header .btn {
  color: #fff;
}
.bbx.bbx-solid.bbx-warning {
  border: 1px solid #f39c12;
}
.bbx.bbx-solid.bbx-warning > .bbx-header {
  color: #fff;
  background: #f39c12;
  background-color: #f39c12;
}
.bbx.bbx-solid.bbx-warning > .bbx-header a,
.bbx.bbx-solid.bbx-warning > .bbx-header .btn {
  color: #fff;
}
.bbx.bbx-solid.bbx-success {
  border: 1px solid #00a65a;
}
.bbx.bbx-solid.bbx-success > .bbx-header {
  color: #fff;
  background: #00a65a;
  background-color: #00a65a;
}
.bbx.bbx-solid.bbx-success > .bbx-header a,
.bbx.bbx-solid.bbx-success > .bbx-header .btn {
  color: #fff;
}
.bbx.bbx-solid > .bbx-header > .bbx-tools .btn {
  border: 0;
  box-shadow: none;
}
.bbx.bbx-solid[class*="bg"] > .bbx-header {
  color: #fff;
}
.bbx .bbx-group > .bbx {
  margin-bottom: 5px;
}
.bbx .knob-label {
  text-align: center;
  color: #333;
  font-weight: 100;
  font-size: 12px;
  margin-bottom: 0.3em;
}
.bbx > .overlay,
.overlay-wrapper > .overlay,
.bbx > .loading-img,
.overlay-wrapper > .loading-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bbx .overlay,
.overlay-wrapper .overlay {
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
}
.bbx .overlay > .fa,
.overlay-wrapper .overlay > .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  color: #000;
  font-size: 30px;
}
.bbx .overlay.dark,
.overlay-wrapper .overlay.dark {
  background: rgba(0, 0, 0, 0.5);
}
.bbx-header:before,
.bbx-body:before,
.bbx-footer:before,
.bbx-header:after,
.bbx-body:after,
.bbx-footer:after {
  content: " ";
  display: table;
}
.bbx-header:after,
.bbx-body:after,
.bbx-footer:after {
  clear: both;
}
.bbx-header {
  color: #444;
  display: block;
  padding: 10px;
  position: relative;
}
.bbx-header.with-border {
  border-bottom: 1px solid #f4f4f4;
}
.collapsed-box .bbx-header.with-border {
  border-bottom: none;
}
.bbx-header > .fa,
.bbx-header > .glyphicon,
.bbx-header > .ion,
.bbx-header .bbx-title {
  display: inline-block;
  font-size: 18px;
  margin: 0;
  line-height: 1;
}
.bbx-header > .fa,
.bbx-header > .glyphicon,
.bbx-header > .ion {
  margin-right: 5px;
}
.bbx-header > .bbx-tools {
  float: right;
  margin-top: -5px;
  margin-bottom: -5px;
}
.bbx-header > .bbx-tools [data-toggle="tooltip"] {
  position: relative;
}
.bbx-header > .bbx-tools.pull-right .dropdown-menu {
  right: 0;
  left: auto;
}
.bbx-header > .bbx-tools .dropdown-menu > li > a {
  color: #444 !important;
}
.btn-box-tool {
  padding: 5px;
  font-size: 12px;
  background: transparent;
  color: #97a0b3;
}
.open .btn-box-tool,
.btn-box-tool:hover {
  color: #606c84;
}
.btn-box-tool.btn:active {
  box-shadow: none;
}
.bbx-body {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 10px;
}
.no-header .bbx-body {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.bbx-body > .table {
  margin-bottom: 0;
}
.bbx-body .fc {
  margin-top: 5px;
}
.bbx-body .full-width-chart {
  margin: -19px;
}
.bbx-body.no-padding .full-width-chart {
  margin: -9px;
}
.bbx-body .bbx-pane {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 3px;
}
.bbx-body .bbx-pane-right {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 0;
}
.bbx-footer {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top: 1px solid #f4f4f4;
  padding: 10px;
  background-color: #fff;
}
.chart-legend {
  margin: 10px 0;
}
@media (max-width: 991px) {
  .chart-legend > li {
    float: left;
    margin-right: 10px;
  }
}
.bbx-comments {
  background: #f7f7f7;
}
.bbx-comments .bbx-comment {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.bbx-comments .bbx-comment:before,
.bbx-comments .bbx-comment:after {
  content: " ";
  display: table;
}
.bbx-comments .bbx-comment:after {
  clear: both;
}
.bbx-comments .bbx-comment:last-of-type {
  border-bottom: 0;
}
.bbx-comments .bbx-comment:first-of-type {
  padding-top: 0;
}
.bbx-comments .bbx-comment img {
  float: left;
}
.bbx-comments .comment-text {
  margin-left: 40px;
  color: #555;
}
.bbx-comments .username {
  color: #444;
  display: block;
  font-weight: 600;
}
.bbx-comments .text-muted {
  font-weight: 400;
  font-size: 12px;
}
/*
 * Component: Direct Chat
 * ----------------------
 */
.direct-chat .bbx-body {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  position: relative;
  overflow-x: hidden;
  padding: 0;
}
.direct-chat.chat-pane-open .direct-chat-contacts {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.direct-chat-messages {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  padding: 10px;
  height: 450px;
  overflow: auto;
}
.direct-chat-msg,
.direct-chat-text {
  display: block;
}
.direct-chat-msg {
  margin-bottom: 10px;
}
.direct-chat-msg:before,
.direct-chat-msg:after {
  content: " ";
  display: table;
}
.direct-chat-msg:after {
  clear: both;
}
.direct-chat-messages,
.direct-chat-contacts {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out;
  -o-transition: -o-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}
.direct-chat-text {
  border-radius: 5px;
  position: relative;
  padding: 5px 10px;
  background: #d2d6de;
  border: 1px solid #d2d6de;
  margin: 5px 0 0 50px;
  color: #444;
  overflow-wrap: break-word;
}
.direct-chat-text:after,
.direct-chat-text:before {
  position: absolute;
  right: 100%;
  top: 15px;
  border: solid transparent;
  border-right-color: #d2d6de;
  content: " ";
  height: 0;
  width: 0;
  pointer-events: none;
}
.direct-chat-text:after {
  border-width: 5px;
  margin-top: -5px;
}
.direct-chat-text:before {
  border-width: 6px;
  margin-top: -6px;
}
.right .direct-chat-text {
  margin-right: 50px;
  margin-left: 0;
}
.right .direct-chat-text:after,
.right .direct-chat-text:before {
  right: auto;
  left: 100%;
  border-right-color: transparent;
  border-left-color: #d2d6de;
}
.direct-chat-img {
  border-radius: 50%;
  float: left;
  width: 40px;
  height: 40px;
}
.right .direct-chat-img {
  float: right;
}
.direct-chat-info {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
}
.direct-chat-name {
  font-weight: 600;
}
.direct-chat-timestamp {
  color: #999;
}
.direct-chat-contacts-open .direct-chat-contacts {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.direct-chat-contacts {
  -webkit-transform: translate(101%, 0);
  -ms-transform: translate(101%, 0);
  -o-transform: translate(101%, 0);
  transform: translate(101%, 0);
  position: absolute;
  top: 0;
  bottom: 0;
  height: 450px;
  width: 100%;
  background: #222d32;
  color: #fff;
  overflow: auto;
}
.contacts-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  margin: 0;
}
.contacts-list > li:before,
.contacts-list > li:after {
  content: " ";
  display: table;
}
.contacts-list > li:after {
  clear: both;
}
.contacts-list > li:last-of-type {
  border-bottom: none;
}
.contacts-list-img {
  border-radius: 50%;
  width: 40px;
  float: left;
}
.contacts-list-info {
  margin-left: 45px;
  color: #fff;
}
.contacts-list-name,
.contacts-list-status {
  display: block;
}
.contacts-list-name {
  font-weight: 600;
}
.contacts-list-status {
  font-size: 12px;
}
.contacts-list-date {
  color: #aaa;
  font-weight: normal;
}
.contacts-list-msg {
  color: #999;
}
.direct-chat-danger .right > .direct-chat-text {
  background: #dd4b39;
  border-color: #dd4b39;
  color: #fff;
}
.direct-chat-danger .right > .direct-chat-text:after,
.direct-chat-danger .right > .direct-chat-text:before {
  border-left-color: #dd4b39;
}
.direct-chat-primary .right > .direct-chat-text {
  /*background: #3c8dbc;*/
  background: #009999;
  /*border-color: #3c8dbc;*/
  border-color: #009999;
  color: #fff;
}
.direct-chat-primary .right > .direct-chat-text:after,
.direct-chat-primary .right > .direct-chat-text:before {
  /*border-left-color: #3c8dbc;*/
  border-left-color: #009999;
}
.direct-chat-warning .right > .direct-chat-text {
  background: #f39c12;
  border-color: #f39c12;
  color: #fff;
}
.direct-chat-warning .right > .direct-chat-text:after,
.direct-chat-warning .right > .direct-chat-text:before {
  border-left-color: #f39c12;
}
.direct-chat-info .right > .direct-chat-text {
  background: #00c0ef;
  border-color: #00c0ef;
  color: #fff;
}
.direct-chat-info .right > .direct-chat-text:after,
.direct-chat-info .right > .direct-chat-text:before {
  border-left-color: #00c0ef;
}
.direct-chat-success .right > .direct-chat-text {
  background: #00a65a;
  border-color: #00a65a;
  color: #fff;
}
.direct-chat-success .right > .direct-chat-text:after,
.direct-chat-success .right > .direct-chat-text:before {
  border-left-color: #00a65a;
}
.direct-chat-to-bottom {
  display: none;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  color: white;
  position: absolute;
  border-radius: 25px;
  bottom: 50px;
  right: 35px;
  background-color: #673ab7;
}
.direct-chat-to-bottom:hover {
  color: white;
  background-color: #000;
  transition: all 0.5s;
}
/*
 * General: Miscellaneous
 * ----------------------
 */
.pad {
  padding: 10px;
}
.margin {
  margin: 10px;
}
.margin-bottom {
  margin-bottom: 20px;
}
.margin-bottom-none {
  margin-bottom: 0;
}
.margin-r-5 {
  margin-right: 5px;
}
.inline {
  display: inline;
}
.description-block {
  display: block;
  margin: 10px 0;
  text-align: center;
}
.description-block.margin-bottom {
  margin-bottom: 25px;
}
.description-block > .description-header {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
}
.description-block > .description-text {
  text-transform: uppercase;
}
.bg-red,
.bg-yellow,
.bg-aqua,
.bg-blue,
.bg-light-blue,
.bg-green,
.bg-navy,
.bg-teal,
.bg-olive,
.bg-lime,
.bg-orange,
.bg-fuchsia,
.bg-purple,
.bg-maroon,
.bg-black,
.bg-dens,
.bg-red-active,
.bg-yellow-active,
.bg-aqua-active,
.bg-blue-active,
.bg-light-blue-active,
.bg-green-active,
.bg-navy-active,
.bg-teal-active,
.bg-olive-active,
.bg-lime-active,
.bg-orange-active,
.bg-fuchsia-active,
.bg-purple-active,
.bg-maroon-active,
.bg-black-active,
.bg-dens-active,
.callout.callout-danger,
.callout.callout-warning,
.callout.callout-info,
.callout.callout-success,
.alert-success,
.alert-danger,
.alert-error,
.alert-warning,
.alert-info,
.label-danger,
.label-info,
.label-warning,
.label-primary,
.label-success,
.modal-primary .modal-body,
.modal-primary .modal-header,
.modal-primary .modal-footer,
.modal-warning .modal-body,
.modal-warning .modal-header,
.modal-warning .modal-footer,
.modal-info .modal-body,
.modal-info .modal-header,
.modal-info .modal-footer,
.modal-success .modal-body,
.modal-success .modal-header,
.modal-success .modal-footer,
.modal-danger .modal-body,
.modal-danger .modal-header,
.modal-danger .modal-footer {
  color: #fff !important;
}
.bg-gray {
  color: #000;
  background-color: #d2d6de !important;
}
.bg-gray-light {
  background-color: #f7f7f7;
}
.bg-black {
  background-color: #111 !important;
}
.bg-red,
.callout.callout-danger,
.alert-danger,
.alert-error,
.label-danger,
.modal-danger .modal-body {
  background-color: #dd4b39 !important;
}
.bg-yellow,
.callout.callout-warning,
.alert-warning,
.label-warning,
.modal-warning .modal-body {
  background-color: #f39c12 !important;
}
.bg-aqua,
.callout.callout-info,
.alert-info,
.label-info,
.modal-info .modal-body {
  background-color: #00c0ef !important;
}
.bg-blue {
  background-color: #0073b7 !important;
}
.bg-light-blue,
.label-primary,
.modal-primary .modal-body {
  /*background-color: #3c8dbc !important;*/
  background-color: #009999 !important;
}
.bg-green,
.callout.callout-success,
.alert-success,
.label-success,
.modal-success .modal-body {
  background-color: #00a65a !important;
}
.bg-navy {
  background-color: #001f3f !important;
}
.bg-teal {
  background-color: #39cccc !important;
}
.bg-olive {
  background-color: #3d9970 !important;
}
.bg-lime {
  background-color: #01ff70 !important;
}
.bg-orange {
  background-color: #ff851b !important;
}
.bg-fuchsia {
  background-color: #f012be !important;
}
.bg-purple {
  background-color: #605ca8 !important;
}
.bg-maroon {
  background-color: #d81b60 !important;
}
.bg-dens {
  background-color: #009999 !important;
}
.bg-gray-active {
  color: #000;
  background-color: #b5bbc8 !important;
}
.bg-black-active {
  background-color: #000000 !important;
}
.bg-red-active,
.modal-danger .modal-header,
.modal-danger .modal-footer {
  background-color: #d33724 !important;
}
.bg-yellow-active,
.modal-warning .modal-header,
.modal-warning .modal-footer {
  background-color: #db8b0b !important;
}
.bg-aqua-active,
.modal-info .modal-header,
.modal-info .modal-footer {
  background-color: #00a7d0 !important;
}
.bg-blue-active {
  background-color: #005384 !important;
}
.bg-light-blue-active,
.modal-primary .modal-header,
.modal-primary .modal-footer {
  /*background-color: #357ca5 !important;*/
  background-color: #009999 !important;
}
.bg-green-active,
.modal-success .modal-header,
.modal-success .modal-footer {
  background-color: #008d4c !important;
}
.bg-navy-active {
  background-color: #001a35 !important;
}
.bg-teal-active {
  background-color: #30bbbb !important;
}
.bg-olive-active {
  background-color: #368763 !important;
}
.bg-lime-active {
  background-color: #00e765 !important;
}
.bg-orange-active {
  background-color: #ff7701 !important;
}
.bg-fuchsia-active {
  background-color: #db0ead !important;
}
.bg-purple-active {
  background-color: #555299 !important;
}
.bg-maroon-active {
  background-color: #ca195a !important;
}
.bg-dens-active {
  background-color: #009999 !important;
}
[class^="bg-"].disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
}
.text-red {
  color: #dd4b39 !important;
}
.text-yellow {
  color: #f39c12 !important;
}
.text-aqua {
  color: #00c0ef !important;
}
.text-blue {
  color: #0073b7 !important;
}
.text-black {
  color: #111 !important;
}
.text-light-blue {
  color: #3c8dbc !important;
}
.text-green {
  color: #00a65a !important;
}
.text-gray {
  color: #d2d6de !important;
}
.text-navy {
  color: #001f3f !important;
}
.text-teal {
  color: #39cccc !important;
}
.text-olive {
  color: #3d9970 !important;
}
.text-lime {
  color: #01ff70 !important;
}
.text-orange {
  color: #ff851b !important;
}
.text-fuchsia {
  color: #f012be !important;
}
.text-purple {
  color: #605ca8 !important;
}
.text-maroon {
  color: #d81b60 !important;
}
.text-dens {
  color: #009999 !important;
}
.link-muted {
  color: #7a869d;
}
.link-muted:hover,
.link-muted:focus {
  color: #606c84;
}
.link-black {
  color: #666;
}
.link-black:hover,
.link-black:focus {
  color: #999;
}
.hide {
  display: none !important;
}
.no-border {
  border: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}
.no-shadow {
  box-shadow: none !important;
}
.list-unstyled,
.chart-legend,
.contacts-list,
.users-list,
.mailbox-attachments {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-group-unbordered > .list-group-item {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.flat {
  border-radius: 0 !important;
}
.text-bold,
.text-bold.table td,
.text-bold.table th {
  font-weight: 700;
}
.text-sm {
  font-size: 12px;
}
.jqstooltip {
  padding: 5px !important;
  width: auto !important;
  height: auto !important;
}
.bg-teal-gradient {
  background: #39cccc !important;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #39cccc),
    color-stop(1, #7adddd)
  ) !important;
  background: -ms-linear-gradient(bottom, #39cccc, #7adddd) !important;
  background: -moz-linear-gradient(
    center bottom,
    #39cccc 0%,
    #7adddd 100%
  ) !important;
  background: -o-linear-gradient(#7adddd, #39cccc) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39CCCC', GradientType=0) !important;
  color: #fff;
}
.bg-light-blue-gradient {
  background: #3c8dbc !important;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #3c8dbc),
    color-stop(1, #67a8ce)
  ) !important;
  background: -ms-linear-gradient(bottom, #3c8dbc, #67a8ce) !important;
  background: -moz-linear-gradient(
    center bottom,
    #3c8dbc 0%,
    #67a8ce 100%
  ) !important;
  background: -o-linear-gradient(#67a8ce, #3c8dbc) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a8ce', endColorstr='#3c8dbc', GradientType=0) !important;
  color: #fff;
}
.bg-blue-gradient {
  background: #0073b7 !important;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #0073b7),
    color-stop(1, #0089db)
  ) !important;
  background: -ms-linear-gradient(bottom, #0073b7, #0089db) !important;
  background: -moz-linear-gradient(
    center bottom,
    #0073b7 0%,
    #0089db 100%
  ) !important;
  background: -o-linear-gradient(#0089db, #0073b7) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important;
  color: #fff;
}
.bg-aqua-gradient {
  background: #00c0ef !important;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #00c0ef),
    color-stop(1, #14d1ff)
  ) !important;
  background: -ms-linear-gradient(bottom, #00c0ef, #14d1ff) !important;
  background: -moz-linear-gradient(
    center bottom,
    #00c0ef 0%,
    #14d1ff 100%
  ) !important;
  background: -o-linear-gradient(#14d1ff, #00c0ef) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14d1ff', endColorstr='#00c0ef', GradientType=0) !important;
  color: #fff;
}
.bg-yellow-gradient {
  background: #f39c12 !important;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #f39c12),
    color-stop(1, #f7bc60)
  ) !important;
  background: -ms-linear-gradient(bottom, #f39c12, #f7bc60) !important;
  background: -moz-linear-gradient(
    center bottom,
    #f39c12 0%,
    #f7bc60 100%
  ) !important;
  background: -o-linear-gradient(#f7bc60, #f39c12) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important;
  color: #fff;
}
.bg-purple-gradient {
  background: #605ca8 !important;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #605ca8),
    color-stop(1, #9491c4)
  ) !important;
  background: -ms-linear-gradient(bottom, #605ca8, #9491c4) !important;
  background: -moz-linear-gradient(
    center bottom,
    #605ca8 0%,
    #9491c4 100%
  ) !important;
  background: -o-linear-gradient(#9491c4, #605ca8) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9491c4', endColorstr='#605ca8', GradientType=0) !important;
  color: #fff;
}
.bg-green-gradient {
  background: #00a65a !important;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #00a65a),
    color-stop(1, #00ca6d)
  ) !important;
  background: -ms-linear-gradient(bottom, #00a65a, #00ca6d) !important;
  background: -moz-linear-gradient(
    center bottom,
    #00a65a 0%,
    #00ca6d 100%
  ) !important;
  background: -o-linear-gradient(#00ca6d, #00a65a) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ca6d', endColorstr='#00a65a', GradientType=0) !important;
  color: #fff;
}
.bg-red-gradient {
  background: #dd4b39 !important;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #dd4b39),
    color-stop(1, #e47365)
  ) !important;
  background: -ms-linear-gradient(bottom, #dd4b39, #e47365) !important;
  background: -moz-linear-gradient(
    center bottom,
    #dd4b39 0%,
    #e47365 100%
  ) !important;
  background: -o-linear-gradient(#e47365, #dd4b39) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e47365', endColorstr='#dd4b39', GradientType=0) !important;
  color: #fff;
}
.bg-black-gradient {
  background: #111 !important;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #111),
    color-stop(1, #2b2b2b)
  ) !important;
  background: -ms-linear-gradient(bottom, #111, #2b2b2b) !important;
  background: -moz-linear-gradient(
    center bottom,
    #111 0%,
    #2b2b2b 100%
  ) !important;
  background: -o-linear-gradient(#2b2b2b, #111) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2b2b2b', endColorstr='#111', GradientType=0) !important;
  color: #fff;
}
.bg-maroon-gradient {
  background: #d81b60 !important;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #d81b60),
    color-stop(1, #e73f7c)
  ) !important;
  background: -ms-linear-gradient(bottom, #d81b60, #e73f7c) !important;
  background: -moz-linear-gradient(
    center bottom,
    #d81b60 0%,
    #e73f7c 100%
  ) !important;
  background: -o-linear-gradient(#e73f7c, #d81b60) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e73f7c', endColorstr='#D81B60', GradientType=0) !important;
  color: #fff;
}
.description-block .description-icon {
  font-size: 16px;
}
.no-pad-top {
  padding-top: 0;
}
.position-static {
  position: static !important;
}
.list-header {
  font-size: 15px;
  padding: 10px 4px;
  font-weight: bold;
  color: #666;
}
.list-seperator {
  height: 1px;
  background: #f4f4f4;
  margin: 15px 0 9px 0;
}
.list-link > a {
  padding: 4px;
  color: #777;
}
.list-link > a:hover {
  color: #222;
}
.font-light {
  font-weight: 300;
}
.user-block:before,
.user-block:after {
  content: " ";
  display: table;
}
.user-block:after {
  clear: both;
}
.user-block img {
  width: 40px;
  height: 40px;
  float: left;
}
.user-block .username,
.user-block .description,
.user-block .comment {
  display: block;
  margin-left: 50px;
}
.user-block .username {
  font-size: 16px;
  font-weight: 600;
}
.user-block .description {
  color: #999;
  font-size: 13px;
}
.user-block.user-block-sm .username,
.user-block.user-block-sm .description,
.user-block.user-block-sm .comment {
  margin-left: 40px;
}
.user-block.user-block-sm .username {
  font-size: 14px;
}
.img-sm,
.img-md,
.img-lg,
.bbx-comments .bbx-comment img,
.user-block.user-block-sm img {
  float: left;
}
.img-sm,
.bbx-comments .bbx-comment img,
.user-block.user-block-sm img {
  width: 30px !important;
  height: 30px !important;
}
.img-sm + .img-push {
  margin-left: 40px;
}
.img-md {
  width: 60px;
  height: 60px;
}
.img-md + .img-push {
  margin-left: 70px;
}
.img-lg {
  width: 100px;
  height: 100px;
}
.img-lg + .img-push {
  margin-left: 110px;
}
.img-bordered {
  border: 3px solid #d2d6de;
  padding: 3px;
}
.img-bordered-sm {
  border: 2px solid #d2d6de;
  padding: 2px;
}
.attachment-block {
  border: 1px solid #f4f4f4;
  padding: 5px;
  margin-bottom: 10px;
  background: #f7f7f7;
}
.attachment-block .attachment-img {
  max-width: 100px;
  max-height: 100px;
  height: auto;
  float: left;
}
.attachment-block .attachment-pushed {
  margin-left: 110px;
}
.attachment-block .attachment-heading {
  margin: 0;
}
.attachment-block .attachment-text {
  color: #555;
}
.connectedSortable {
  min-height: 100px;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sort-highlight {
  background: #f4f4f4;
  border: 1px dashed #ddd;
  margin-bottom: 10px;
}
.full-opacity-hover {
  opacity: 0.65;
  filter: alpha(opacity=65);
}
.full-opacity-hover:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.chart {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.chart svg,
.chart canvas {
  width: 100% !important;
}
hr {
  border-top: 1px solid #555555;
}
#red .slider-selection {
  background: #f56954;
}
#blue .slider-selection {
  background: #3c8dbc;
}
#green .slider-selection {
  background: #00a65a;
}
#yellow .slider-selection {
  background: #f39c12;
}
#aqua .slider-selection {
  background: #00c0ef;
}
#purple .slider-selection {
  background: #932ab6;
}

/* Patch buat livechat Seperti Youtube */
.player {
  margin-bottom: 0;
}

.player-panel {
  background: white;
  z-index: 9;
}

.floating-chat {
  z-index: 1 !important;
}

#member {
  display: none;
}

#btn-chat {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.bbx {
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.bbx-header {
  border-bottom: 2px solid #f4f4f4 !important;
}

.bbx-header .bbx-title {
  font-size: 16px;
  padding: 5px;
  margin-left: 8px;
}

.bbx-body {
  overflow-y: hidden;
  background: #f9f9f9;
}

.bbx-footer {
  padding: 10px 10px 0 10px;
}

.direct-chat-msg {
  padding: 5px 15px;
  margin: 0;
  position: relative;
}

.direct-chat-text {
  border: none;
  background: none;
  color: #141518;
  font-size: 12px;
  padding: 0 10px;
  margin: 0;
  width: 92%;
  display: inline-block;
}

.direct-chat-text:after,
.direct-chat-text:before {
  border: none;
}

.direct-chat-text img.emojione {
  height: 21px;
}

.direct-chat-img {
  width: 8%;
  display: inline-block;
  height: initial;
}

.direct-chat-img img {
  width: 24px;
  height: 24px;
  float: right;
  border-radius: 999px;
}

.direct-chat-name {
  font-weight: normal;
  color: #aaaaaa;
  margin-right: 5px;
  font-size: 12px;
}

.direct-chat-text a {
  color: #009999;
  text-decoration: underline;
}

.direct-chat-emoticon {
  display: inline-block;
  width: 49%;
}

.direct-chat-counter {
  margin-right: 10px;
}

.direct-counter-send {
  display: inline-block;
  width: 49%;
  margin-bottom: 20px;
  margin-top: 8px;
}

.direct-counter-send #btn-message {
  font-size: 20px;
  color: #aaaaaa;
  margin-right: 5px;
  transition: 0.3s;
}

.direct-counter-send #btn-message:hover {
  color: #009999;
}

.direct-chat-info .btn-group {
  border: 1px solid #ccc;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.direct-chat-info
  .btn-group
  > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-right: 1px solid #ccc;
}

.direct-chat-to-bottom {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 1px 5px;
  background-color: #009999;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.direct-chat-to-bottom:hover,
.direct-chat-to-bottom:visited {
  background: #db8b0b;
  color: #ffffff;
}

.emojionearea {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative;
}

.emojionearea.focused {
  box-shadow: none !important;
}

.emojionearea .emojionearea-editor {
  border-bottom: 2px solid #ccc !important;
  border-top: 1px solid #fff !important;
  transition: 0.3s;
}

.emojionearea .emojionearea-editor:focus {
  border-bottom: 2px solid #009999 !important;
  box-shadow: none;
}

.emojionearea .emojionearea-editor {
  padding: 0 60px 0 0 !important;
  margin: 0 !important;
  font-size: 12px !important;
  padding-top: 7px !important;
}

.emojionearea .emojionearea-button {
  right: -2px !important;
}

.emojionearea .sticker-button {
  position: absolute;
  top: 4px;
  right: 30px;
  width: 21px;
  height: 21px;
}

.emojionearea .sticker-button:hover {
  cursor: pointer;
}

.emojionearea .sticker-button .icon-sticker {
  font-size: 21px;
  filter: invert(72%) sepia(1%) saturate(118%) hue-rotate(336deg)
    brightness(93%) contrast(96%);
}

.emojionearea .sticker-button .icon-sticker:hover {
  filter: invert(53%) sepia(65%) saturate(6161%) hue-rotate(155deg)
    brightness(94%) contrast(101%);
}

.btn-tool {
  color: #ff5c58;
  cursor: pointer;
}

.btn-tool:hover {
  color: #d33724;
  cursor: pointer;
}

.btn-tool-unblock {
  padding: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #f1f1f1;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #ccc;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .row-eq-height {
    display: unset !important;
  }

  .direct-chat-messages {
    height: 320px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .direct-chat-messages {
    height: 360px !important;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .direct-chat-messages {
    height: 480px !important;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .direct-chat-messages {
    height: 500px !important;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1899px) {
  .direct-chat-messages {
    height: 580px !important;
  }
}

@media only screen and (min-width: 1900px) and (max-width: 2559px) {
  .direct-chat-messages {
    height: 700px !important;
  }
}

@media only screen and (min-width: 2560px) {
  .direct-chat-messages {
    height: 980px !important;
  }
}

.bbx-tools .btn-box-tool {
  background: none !important;
}

.bbx-tools .btn-box-tool i {
  color: #009999;
}

.bbx-tools .btn-box-tool i:before {
  font-size: 16px;
}

.bbx-tools .btn-box-tool i:after {
  color: #444;
  content: "User Management";
  margin-left: 10px;
  font-family: "Montserrat_regular", "Segoe UI", arial, sans-serif;
}

#contacts {
  background: white !important;
  padding-bottom: 30px;
  height: 100% !important;
}

.contacts-list-name {
  color: #444;
}

.contacts-list li {
  border-bottom: 1px solid #ccc !important;
}

.btn-tool-unblock {
  font-size: 12px;
  padding: 2px 10px;
  min-height: auto;
  border-radius: 5px;
  margin-top: 3px !important;
}

.direct-chat-contacts-open .bbx-footer {
  display: none;
  transition: 0.2s;
}
/* Patch buat livechat */

/* mojilala start */
.sticker-button {
  /* margin-left: 20px;  */
  cursor: pointer;
  color: #aaaaaa;
  font-size: 16px;
  position: absolute;
  right: 25px;
  bottom: 6px;
}

.sticker-button:hover {
  color: #009999;
}

.stickers {
  width: 78%;
  background: rgba(0, 0, 0, 0.75);
  text-align: center;
  position: absolute;
  bottom: 90px;
  right: 60px;
  border-radius: 10px;
  color: #fff;
}

.msg-sticker {
  width: 100px;
}

@media only screen and (min-width: 767px) {
  .stickers {
    width: 320px;
    right: 60px;
    /* bottom: 110px; */
  }
}

.stickers .nav-tabs {
  border-bottom: 1px solid #111;
}

.stickers .nav-tabs > li > a:hover {
  background: #111;
  border: 1px solid #111;
}

.stickers .nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  border: 1px solid #111;
  background: #111 !important;
  color: #fff;
}

.stickers a {
  color: #ffffff;
}

.stickers .tab-content {
  max-height: 180px;
  overflow-y: scroll;
}

.stickers .tab-content::-webkit-scrollbar {
  -webkit-appearance: none;
}

.stickers .tab-content::-webkit-scrollbar:vertical {
  width: 7px;
}

.stickers .tab-content::-webkit-scrollbar:horizontal {
  height: 7px;
}

.stickers .tab-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
}

.stickers .tab-content::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.25);
}

.stickers ul.sticker-picker-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

.stickers .sticker-picker-list li {
  display: flex;
  flex-direction: column;
  padding: 10px 5px;
  cursor: pointer;
}

.stickers .sticker-picker-list li img {
  transition: 0.2s;
}

.stickers .sticker-picker-list li img:hover {
  transform: scale(1.3);
}

.stickers .tab-footer {
  padding: 5px 10px 5px 0;
}
/* mojilala end */

/* mobile fullscreen view start */

@media screen {
  #close-player-mobile {
    cursor: pointer;
    top: 1%;
    left: 2%;
    position: absolute;
    color: #fff;
    z-index: 11;
  }
  .removeMargin {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .removePadding {
    padding: 0 !important;
  }
  .mobileBody {
    overflow: hidden !important;
    /* height: calc(var(--vh, 1vh) * 100) !important; */
    margin: 0 !important;
    padding: 0 !important;
  }
  .mobileLivestream {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .mobilePlayer {
    /* height: calc(var(--vh, 1vh) * 40); */
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobilePlayer .video-wrap {
    width: 100% !important;
  }
  .mobileLiveChat {
    width: 100%;
    /* height: calc(var(--vh, 1vh) * 60); */
    font-size: 14px;
  }

  #lifestyle-player.removeMargin {
    margin-bottom: 0 !important;
  }

  .mobileLiveChat .bbx {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
  }
  .mobileLiveChat .bbx-header {
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .mobileLiveChat .bbx-body {
    height: 65%;
    width: 100%;
  }
  .mobileLiveChat .direct-chat-messages {
    height: 100% !important;
  }
  .mobileLiveChat .bbx-footer {
    width: 100%;
    height: 25%;
    align-items: center;
    /* display: flex; */
    justify-content: center;
  }
  .mobileLiveChat .bbx-footer form {
    width: 100%;
  }
  .mobileLiveChat .schedule {
    height: 88% !important;
  }
  .mobileLiveChat .schedule_lists,
  .mobileLiveChat .epg-list {
    height: 75% !important;
  }
  /* .mobileLiveChat .button-container {
    height: 12% !important;
  } */
}

@media screen and (orientation: landscape) {
  .mobileLivestream {
    flex-direction: row;
  }
  .mobilePlayer {
    width: 60%;
    /* height: calc(var(--vh, 1vh) * 100); */
  }
  /* .mobilePlayer #jwplayers {
    flex: 2;
  } */
  .mobileLiveChat {
    width: 40%;
    /* height: calc(var(--vh, 1vh) * 100); */
  }
  .mobileLiveChat .bbx {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    /* height: calc(var(--vh, 1vh) * 100) !important;             */
  }
  .mobileLiveChat .bbx-header {
    /* flex: 1 !important; */
    flex: unset;
    width: 100%;
    height: unset !important;
  }
  .mobileLiveChat .bbx-body {
    /* flex: 6 !important; */
    width: 100%;
    /* height: unset !important; */
  }
  .mobileLiveChat .direct-chat-messages {
    height: unset;
  }
  .mobileLiveChat .bbx-footer {
    width: 100%;
    /* flex: 2 !important; */
    flex: unset;
    height: unset !important;
  }
}
/* mobile fullscreen view end */

/* live chat close button */
.live-chat-close {
  font-size: 21px;
  cursor: pointer;
}

/* patch */
.player_video {
  z-index: unset;
}

.emojionearea,
.emojionearea.form-control {
  background-color: transparent;
}
