body {
  margin: 10px;
}

div#player {
  font-family: Arial Unicode MS, Arial, sans-serif;
  font-size: small;
}

.tree-item {
  background: #fff
}
.tree-item:hover {
/*   background: #f3f5fb; */
}
.tree-item-parent {
/*   min-height: 46px; */
}
.tree-item-parent:hover {
  background: #f3f5fb;
}
.tree-item-leaf {
/*   min-height: 44px; */
}
.tree-item-leaf:hover {
  background: #f3f5fb;
}
.tree-item-group {
/*   margin: 3px 0px; */
}
.tree-item-group:hover {
/*   background: #f3f5fb; */
}
.tree-item-selected {
  background: #ebeff9;
}
.tree-item-selected:hover {
  background: #dbdfe6;
}

.text-warning {
  color: red;
}

.noselect {
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

table.tree-item-selected td:nth-child(2) {
  width: 100%;
}

.white-iframe {
  background: #fff;
}

.mfp-iframe-scaler iframe {
  background: #fff
}

.gwt-Tree .gwt-TreeItem {
  display: table !important;
}

.gwt-Tree .gwt-TreeItem-selected {
  background: transparent !important;
}

.fancybox-caption {
  border: 0;
  padding: 30px;
}

.fancybox-caption-wrap {
  background: rgba(0, 0, 0, 0.2);
  padding: 0;
}

.fancybox-thumbs {
  top: auto;
  width: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 95px;
  padding: 10px 10px 5px 10px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.3);
}

.fancybox-show-thumbs .fancybox-inner {
  right: 0;
  bottom: 95px;
}

.loader-outer {
  display: table;
  position: absolute;
  width: 100%;
  height: 100%;
}
.loader-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.loader-ring {
  display: inline-block;
  width: 64px;
  height: 64px;
}
.loader-ring:after {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #777;
  border-color: #777 transparent #777 transparent;
  animation: loader-ring 1.2s linear infinite;
}
@keyframes loader-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}