@import url(vendors.css);
@keyframes wd-modal-slide-in {
  from {
    opacity: 0;
    transform: translate(500px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes wd-modal-slide-out {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(-500px, 0);
  }
}
@keyframes wd-modal-slide-in-tiny {
  from {
    opacity: 0;
    transform: translate(50px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0, 0);
  }
}
@keyframes wd-modal-slide-out-tiny {
  from {
    opacity: 1;
    transform: translate(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate(-50px, 0);
  }
}
.wd-modal-body-fixed {
  overflow-y: hidden !important;
}

.wd-modals {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4050;
  overflow: hidden;
}
.wd-modals-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4040;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background-color: rgba(0, 0, 0, 0.5);
}
.wd-modal {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background-clip: padding-box;
  text-align: center;
  margin: auto;
  opacity: 0;
}
.wd-modal__container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  overflow-y: scroll;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background-color: rgba(0, 0, 0, 0.5);
}
.wd-modal__hider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.wd-modal__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.wd-modal.-text-left {
  text-align: left;
}
.wd-modal__header {
  position: relative;
  background-color: #efefef;
  padding: 15px 30px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.wd-modal__header h1, .wd-modal__header h2, .wd-modal__header h3, .wd-modal__header h4, .wd-modal__header h5, .wd-modal__header h6 {
  margin: 0;
  color: #6a6a6a;
}
.wd-modal__header-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  color: #000000;
  opacity: 0.3;
}
.wd-modal__header-close:hover {
  opacity: 0.5;
}
.wd-modal__restrictor {
  background-color: #fff;
  overflow: inherit !important;
  transition: height 0.3s ease;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.wd-modal__content {
  padding: 20px 30px;
}
@media (max-width: 767px) {
  .wd-modal__content {
    padding: 10px;
  }
}
.wd-modal.-solid-header .wd-modal__header {
  background-color: #fff;
}
.wd-modal.-no-content-top-padding .wd-modal__content {
  padding-top: 0;
}
.wd-modal.-no-content-bottom-padding .wd-modal__content {
  padding-bottom: 0;
}
.wd-modal.-no-content-padding .wd-modal__content {
  padding: 0;
}
.wd-modal.-transparent {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wd-modal.-transparent .wd-modal__header {
  background-color: transparent;
}
.wd-modal.-transparent .wd-modal__restrictor {
  background-color: transparent;
}
.wd-modal.-transparent.-solid-header .wd-modal__header {
  background-color: transparent;
}
.wd-modal.-showing {
  animation-duration: 0.7s;
  animation-fill-mode: both;
  animation-name: wd-modal-slide-in;
}
.wd-modal.-showing.-slide-tiny {
  animation-name: wd-modal-slide-in-tiny;
}
.wd-modal.-hiding {
  animation-duration: 0.7s;
  animation-fill-mode: both;
  animation-name: wd-modal-slide-out;
}
.wd-modal.-hiding.-slide-tiny {
  animation-name: wd-modal-slide-out-tiny;
}
.wd-modal.-active {
  opacity: 1;
}

.wd-modals-backdrop.-fullscreen {
  display: none !important;
}

.wd-modals.-fullscreen .wd-modal__header-close {
  display: none !important;
}

.wd-modals.-fullscreen .wd-modal__container {
  background-color: transparent;
}

.wd-modals.-fullscreen .wd-modal__container {
  overflow: hidden;
  overflow-y: hidden;
}

.row.-m10 {
  margin-left: -10px;
  margin-right: -10px;
}
.row.-m5 {
  margin-left: -5px;
  margin-right: -5px;
}

div[class^="col-"].-p10, div[class=" col-"].-p10 {
  padding-left: 10px;
  padding-right: 10px;
}
div[class^="col-"].-p5, div[class=" col-"].-p5 {
  padding-left: 5px;
  padding-right: 5px;
}

.navbar.-no-margin {
  margin: 0;
}

.btn {
  line-height: 20px;
}

table.table-vm > tbody > tr > td, table.table-vm > thead > tr > th, tr.tr-vm > td, tr.tr-vm > th {
  vertical-align: middle;
}

select.form-control.select-xs {
  font-size: 12px;
  padding: 2px 4px;
  height: auto;
}
select.form-control.select-xs-no-border {
  border: 0;
}
select.form-control.select-xs-def {
  color: #b4b6b8;
}

select.form-control.select-sm {
  font-size: 12px;
  padding: 5px 10px;
  height: auto;
}
select.form-control.select-sm-no-border {
  border: 0;
}
select.form-control.select-sm-def {
  color: #b4b6b8;
}

.radio-inline + .radio-inline {
  margin-left: 0;
}

.radio-inline {
  margin-right: 10px;
}

.radio-inline:last-child {
  margin-right: 0;
}

.nav > li a {
  border-left: 4px solid transparent;
}

.nav > li.active {
  border-left: 0;
}
.nav > li.active a {
  border-left: 4px solid #1ab394;
}

.nav-second-level li:last-child {
  margin-bottom: 0;
}
.nav-second-level li:last-child a {
  padding-bottom: 17px;
}

.nav.nav-tabs > li a {
  border-left: 0;
}

.nav.nav-tabs > li.active a {
  border-left: 1px solid #dddddd;
}

@media (max-width: 767px) {
  .nav.nav-tabs > li > a {
    padding: 5px 10px;
  }
}
.form-control.-wp60 {
  width: 60%;
}
.form-control.-wp40 {
  width: 40%;
}

.fa {
  width: 14px;
}

.panel-heading {
  padding: 0;
}

.panel-body {
  padding: 0;
  padding-top: 10px;
}

@media (max-width: 767px) {
  .wrapper-content {
    padding-top: 10px;
  }

  .ibox-content {
    padding: 10px;
  }

  .ibox {
    margin-bottom: 10px;
  }

  .table {
    margin-bottom: 10px;
  }
}
dl:last-child {
  margin-bottom: 0;
}

p:last-child {
  margin-bottom: 0;
}

.note-editor.note-frame {
  border: 1px solid #D1DADE;
  border-radius: 0;
}

.panel-heading.note-toolbar > .btn-group {
  margin-bottom: 5px;
}

.p-xs {
  padding: 5px;
}

.p-sm {
  padding: 10px;
}

.p-md {
  padding: 15px;
}

.p-lg {
  padding: 20px;
}

.ph-xs {
  padding-left: 5px;
  padding-right: 5px;
}

.ph8 {
  padding-left: 8px;
  padding-right: 8px;
}

.ibox-tools {
  top: -3px;
  right: -3px;
}

.social-avatar.-left-inline {
  padding: 0;
  float: left;
}

.project-status.-onoff {
  width: 70px;
}

.m0 {
  margin: 0;
}

.ml5 {
  margin-left: 5px;
}

.mr5 {
  margin-right: 5px;
}

.mr2 {
  margin-right: 2px;
}

.mb0 {
  margin-bottom: 0;
}

.mt0 {
  margin-top: 0;
}

.mbl0:last-child {
  /* margin-bottom-last */
  margin-bottom: 0;
}

.mtf0:first-child {
  /* margin-top-first */
  margin-top: 0;
}

.p0 {
  padding: 0;
}

.pb0 {
  padding-bottom: 0;
}

.pt0 {
  padding-top: 0;
}

.nav-tabs > li > a {
  padding: 6px 10px 6px 12px;
}

.social-avatar .media-body a {
  font-size: 12px;
  display: inline;
}

.social-avatar .media-body a.media-body-title {
  font-size: 14px;
  display: block;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #676a6c;
}

.checkbox-inline + .checkbox-inline {
  margin-left: 0;
}

.checkbox-inline {
  margin-right: 10px;
}

.checkbox-inline:last-child {
  margin-right: 0;
}

.checkbox.-xs {
  margin-top: 5px;
  margin-bottom: 5px;
}

.form-horizontal .control-label.-hxs {
  text-align: right;
  margin-bottom: 0;
  padding-top: 7px;
}

.ibox.-bordered {
  border: 1px solid #e7eaec;
}

.ibox.-bordered .ibox-title {
  border-top: 0;
  background-color: #f0f0f0;
  padding: 10px 7px;
  min-height: 0;
}
.ibox.-bordered .ibox-title:before, .ibox.-bordered .ibox-title:after {
  content: " ";
  display: table;
}
.ibox.-bordered .ibox-title:after {
  clear: both;
}
.ibox.-bordered .ibox-title h1, .ibox.-bordered .ibox-title h2, .ibox.-bordered .ibox-title h3, .ibox.-bordered .ibox-title h4, .ibox.-bordered .ibox-title h5, .ibox.-bordered .ibox-title h6 {
  margin: 0;
}

.ibox.-bordered .ibox-content {
  padding: 15px;
}

.table.table-bordered2 {
  border: 1px solid #ddd;
}

.m-b-lg {
  margin-bottom: 25px;
}

.input-xs {
  height: 24px;
  padding: 2px 4px;
  font-size: 10px;
  line-height: 1.5;
  border-radius: 2px;
}

.simplecolorpicker span.color[data-selected]:after {
  color: inherit;
}

.simplecolorpicker select {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.simplecolorpicker span.color {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  line-height: 18px;
  font-size: 10px;
}
.simplecolorpicker span.color:after {
  position: relative;
  margin-left: 2px;
  margin-right: 0;
  top: -2px;
}

.simplecolorpicker.fontawesome span.color[data-selected]:after {
  margin-left: 2px;
  margin-right: 0;
}

/*
.simplecolorpicker {
	position: relative;
}
.simplecolorpicker.picker {
	z-index: 5000;
	max-width: 165px;
	min-width: 165px;
	width: 165px;
}
.simplecolorpicker.icon {
	border: 1px solid $table-border-color;
	width: 17px;
	height: 17px;
	font-size: 11px;
	border-radius: 3px;
	:focus {
		outline: 5px auto -webkit-focus-ring-color;
		outline-offset: -2px;
	}
}
.simplecolorpicker.-row {
	margin-top: 10px;
	margin-bottom: 10px;
}
.simplecolorpicker label {
	min-height: 20px;
	font-weight: normal;
	cursor: pointer;
	margin-bottom: 0;
}
.simplecolorpicker span {
	margin: 0;
	margin-right: 5px;
}
.simplecolorpicker span.color {
	border: 1px dotted #000000;
	width: 17px;
}
*/
.popover {
  color: #676a6c;
  border-radius: 4px;
}

.popover.left {
  border-top-right-radius: 0;
  margin-top: -1px;
  margin-right: -1px;
}

.popover-content {
  padding: 5px;
}

.popover-title {
  padding: 4px 9px;
}

.btn-sm, .btn-group-sm > .btn {
  height: 34px;
}

.form-inline .form-control.-w200 {
  width: 200px;
}

.form-inline .form-control.-w150 {
  width: 150px;
}

.project-title.-blockLink > a {
  display: block;
}

@media (max-width: 767px) {
  .profile-image {
    width: 80px;
  }
  .profile-image img {
    width: 60px;
    height: 60px;
  }
}
.profile-image img.circle-border {
  border-color: #eeeeee;
}

.social-avatar .media-body a.media-body-title {
  float: left;
}

.radio, .checkbox {
  text-align: left;
}

.pagination {
  margin: 0;
  padding: 0;
}
.pagination > li > a, .pagination > li > span {
  padding: 6px 10px;
  line-height: 20px;
}

.pagination > li.pagination-dots > span {
  padding: 6px 4px;
}
.pagination > li.pagination-dots > span:hover {
  background-color: #ffffff;
}

.monospace {
  font-family: Consolas, Lucida Console, monospace;
}

.select2-container {
  z-index: 4060;
}

.progress {
  position: relative;
}
.progress-bar-label {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  color: #575757;
}
.progress-bar-default {
  background-color: #dedede;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

.label.label-default.-nonact {
  color: #7e7e7e;
}
.label.label-default.-nonact:hover {
  background-color: #7e7e7e;
  color: #ffffff;
}

.checkbox label.checkbox-label-empty {
  padding-left: 0;
}

@media (max-width: 767px) {
  .btn.-no-border-xs {
    border: 0;
  }
  .btn.-no-border-xs:hover {
    border: 0;
  }

  .btn-white.-no-border-xs:hover {
    background-color: #f0f0f0;
  }
}
.input-group.-disabled .input-group-addon {
  background-color: #eeeeee;
}

@media (max-width: 767px) {
  .ibox.-bordered .ibox-content {
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .nav.nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 0;
  }

  .nav.nav-tabs > li {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 1px;
    background-color: #f0f0f0;
  }
  .nav.nav-tabs > li > a {
    border: 0;
    text-align: center;
    margin: 8px 10px;
    padding: 0;
    color: #555555;
  }
  .nav.nav-tabs > li.active {
    background-color: #1ab394;
  }
  .nav.nav-tabs > li.active > a {
    border: 0;
    color: #ffffff;
  }
}
.nobr {
  white-space: nowrap;
}

.inline {
  display: inline;
}

body {
  -webkit-text-size-adjust: none;
  /* prevent webkit from resizing text to fit */
  position: fixed;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  -webkit-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
body.tv-body-welcome {
  background-color: #ffffff;
}
body.tv-body-main {
  background-color: #f3f3f4;
}

.tv-logo {
  display: block;
  color: #676a6c;
}
.tv-logo:before, .tv-logo:after {
  content: " ";
  display: table;
}
.tv-logo:after {
  clear: both;
}
.tv-logo-pic {
  background: transparent url("../img/logos.png") -42px 0 no-repeat;
  background-size: 168px 42px;
  width: 42px;
  height: 42px;
  display: block;
  float: left;
}
.tv-logo-text {
  display: block;
  float: left;
  font-size: 20px;
  line-height: 25px;
  margin-top: 6px;
  margin-left: 8px;
  font-weight: normal;
}
.tv-logo-container {
  padding: 0;
}
.tv-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.tv-logo:hover .tv-logo-pic {
  background-position: -84px 0;
}

.nav > li > a.tv-logo {
  display: block;
  height: 52px;
  padding: 0;
  padding-top: 5px;
  padding-left: 25px;
  border-bottom: 1px solid #263340;
}

.tv-with-logo {
  padding-left: 110px;
  position: relative;
  min-height: 90px;
}
.tv-with-logo-pic {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent url("../img/logos.png") -252px 0 no-repeat;
  width: 84px;
  height: 84px;
}
@media (max-width: 767px) {
  .tv-with-logo {
    padding-left: 95px;
  }
}

.tv-dictSwitch.-fullscreen-over {
  position: absolute;
  top: 5px;
  right: 25px;
  z-index: 4060;
}

.tv-container {
  height: 100%;
  overflow: hidden;
}

.tv-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 220px;
  height: 50px;
  background-color: #f3f3f4;
  z-index: 2000;
  -webkit-transition: left 0.5s ease, transform 0.5s ease;
  -o-transition: left 0.5s ease, transform 0.5s ease;
  transition: left 0.5s ease, transform 0.5s ease;
}
.tv-navbar-btn-group {
  margin: 9px 20px;
  float: left;
}
.tv-navbar-btn-group .btn {
  display: inline-block;
  margin-right: 5px;
}
.tv-navbar-btn-group .btn:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .tv-navbar-btn-group {
    margin: 9px 10px;
  }
}

.tv-column {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 220px;
  z-index: 3000;
  background-color: #2F4050;
  overflow: hidden;
  -webkit-transition: left 0.5s ease, transform 0.5s ease;
  -o-transition: left 0.5s ease, transform 0.5s ease;
  transition: left 0.5s ease, transform 0.5s ease;
}
.tv-column-scroll {
  overflow: hidden;
  height: 100%;
}

.tv-content {
  position: fixed;
  top: 51px;
  left: 235px;
  right: 0;
  bottom: 0;
  -webkit-transition: left 0.5s ease, transform 0.5s ease;
  -o-transition: left 0.5s ease, transform 0.5s ease;
  transition: left 0.5s ease, transform 0.5s ease;
  overflow-x: hidden;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .tv-content {
    overflow-y: auto;
  }
}

.tv-navbar-gridfix {
  margin: 0;
  background-color: #f3f3f4;
}

.tv-container.-alternate .tv-navbar {
  left: 0;
}
.tv-container.-alternate .tv-column {
  left: -220px;
}
.tv-container.-alternate .tv-content {
  left: 0;
}

@media (max-width: 767px) {
  .tv-container.-main .tv-navbar {
    left: 0;
  }
  .tv-container.-main .tv-column {
    left: -220px;
  }
  .tv-container.-main .tv-content {
    left: 0;
  }

  .tv-container.-alternate .tv-navbar {
    transform: translate(220px, 0);
  }
  .tv-container.-alternate .tv-column {
    transform: translate(220px, 0);
  }
  .tv-container.-alternate .tv-content {
    transform: translate(220px, 0);
  }
}
@keyframes tv-is-new {
  from {
    background-color: #ffffff;
  }
  50% {
    background-color: rgba(122, 236, 213, 0.7);
  }
  to {
    background-color: #ffffff;
  }
}
.tv-wrapper {
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
.tv-wrapper.-w960 {
  max-width: 980px;
}
.tv-wrapper.-w942 {
  max-width: 962px;
}
.tv-wrapper.-w932 {
  max-width: 952px;
}

.-tv-is-new {
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-name: tv-is-new;
}

.tv-upload-preview {
  margin: 0 auto;
  max-width: 600px;
  position: relative;
}
.tv-upload-preview__sq {
  background-color: #D1DADE;
  width: 100%;
  padding-bottom: 100%;
}
.tv-upload-preview__main, .tv-upload-preview__loading {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  outline: 1px solid #D1DADE;
  outline-offset: 2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.tv-upload-preview__main img, .tv-upload-preview__loading img {
  max-width: 100%;
}
.tv-upload-preview__loading {
  z-index: 2;
}
.tv-upload-preview__loading-freeze {
  width: 50px;
  height: 50px;
  text-align: center;
}
.tv-upload-preview__loading-freeze .fa {
  font-size: 50px;
  line-height: 50px;
  width: 50px;
  color: #ffffff;
  text-shadow: 1px 1px 5px #000000;
}
@media (min-width: 768px) {
  .tv-upload-preview__grid-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    max-width: 720px;
  }
  .tv-upload-preview__grid-item-main {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 600px;
    -moz-box-flex: 0;
    -moz-flex: 0 1 600px;
    -ms-flex: 0 1 600px;
    flex: 0 1 600px;
  }
  .tv-upload-preview__grid-item-preview {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 20px;
  }
}

.tv-avatar {
  overflow: hidden;
  display: block;
}
.tv-avatar.-circled {
  border-radius: 50%;
}
.tv-avatar.-tbordered {
  border: 5px solid rgba(209, 218, 222, 0.5);
}
.tv-avatar.-bordered {
  outline: 1px solid #D1DADE;
  outline-offset: 2px;
}
.tv-avatar.-profile {
  width: 100px;
  height: 100px;
}
.tv-avatar.-menu {
  width: 50px;
  height: 50px;
}
.tv-avatar.-feed {
  width: 40px;
  height: 40px;
}
.tv-avatar.-comments {
  width: 32px;
  height: 32px;
}
.tv-avatar.-placeholder {
  text-align: center;
  background-color: #dedede;
  color: #959595;
  margin-right: 10px;
}
.tv-avatar.-placeholder .fa {
  font-size: 22px;
  line-height: 30px;
}

.onoffswitch.-tv-show-groups {
  width: 60px;
}
.onoffswitch.-tv-show-groups .onoffswitch-inner:before {
  content: "Simple";
}
.onoffswitch.-tv-show-groups .onoffswitch-inner:after {
  content: "Extended";
}

.tv-bi__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1px;
  margin-right: -1px;
}
.tv-bi__item {
  position: relative;
}
.tv-bi__item-loading, .tv-bi__item-waiting, .tv-bi__item-hover, .tv-bi__item-error {
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  right: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.tv-bi__item-loading-freeze, .tv-bi__item-waiting-freeze, .tv-bi__item-hover-freeze, .tv-bi__item-error-freeze {
  height: 50px;
  width: 50px;
  text-align: center;
}
.tv-bi__item-loading-freeze .fa, .tv-bi__item-waiting-freeze .fa, .tv-bi__item-hover-freeze .fa, .tv-bi__item-error-freeze .fa {
  font-size: 50px;
  line-height: 50px;
  width: 50px;
  color: #ffffff;
  text-shadow: 1px 1px 5px #000000;
}
@media (max-width: 991px) {
  .tv-bi__item-loading-freeze, .tv-bi__item-waiting-freeze, .tv-bi__item-hover-freeze, .tv-bi__item-error-freeze {
    width: 20px;
    height: 20px;
  }
  .tv-bi__item-loading-freeze .fa, .tv-bi__item-waiting-freeze .fa, .tv-bi__item-hover-freeze .fa, .tv-bi__item-error-freeze .fa {
    font-size: 20px;
    line-height: 20px;
    width: 20px;
  }
}
.tv-bi__item-error {
  color: #ED5565;
}
.tv-bi__item-error-freeze .fa {
  color: #ED5565;
}
.tv-bi__item-controls {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.tv-bi__item-pic {
  background: transparent 50% 50% no-repeat;
  background-size: cover;
}
.tv-bi__item-pic img {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.tv-bi__item-pic.-clickable {
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.tv-bi__item-pic.-clickable:hover {
  opacity: 0.9;
}
.tv-bi__item.-size-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.tv-bi__item.-size-1 .tv-bi__item-pic {
  max-height: 500px;
  background-size: contain;
  margin: 1px;
}
.tv-bi__item.-size-1 .tv-bi__item-pic img {
  max-height: 500px;
}
.tv-bi__item.-size-1 .tv-bi__item-pic.-empty {
  padding-bottom: 50%;
}
.tv-bi__item.-size-1-2, .tv-bi__item.-size-2-3, .tv-bi__item.-size-3-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
  -moz-box-flex: 0;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding-bottom: 30%;
}
.tv-bi__item.-size-1-2 .tv-bi__item-pic, .tv-bi__item.-size-2-3 .tv-bi__item-pic, .tv-bi__item.-size-3-4 .tv-bi__item-pic {
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  right: 1px;
}
.tv-bi__item.-size-2-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 66%;
  -moz-box-flex: 0;
  -moz-flex: 0 1 66%;
  -ms-flex: 0 1 66%;
  flex: 0 1 66%;
  padding-bottom: 41.2%;
}
.tv-bi__item.-size-3-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 75%;
  -moz-box-flex: 0;
  -moz-flex: 0 1 75%;
  -ms-flex: 0 1 75%;
  flex: 0 1 75%;
  padding-bottom: 46.876%;
}
.tv-bi__items.-size-1-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 34%;
  -moz-box-flex: 0;
  -moz-flex: 0 1 34%;
  -ms-flex: 0 1 34%;
  flex: 0 1 34%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.tv-bi__items.-size-1-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 25%;
  -moz-box-flex: 0;
  -moz-flex: 0 1 25%;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.tv-bi__items.-size-row {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tv-bi__items .tv-bi__item {
  position: relative;
  top: 0;
  left: 0;
  bottom: auto;
  right: auto;
}
.tv-bi__items .tv-bi__item-pic {
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  right: 1px;
}
.tv-bi__items .tv-bi__item.-size-1-3 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 50%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}
.tv-bi__items .tv-bi__item.-size-1-4 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 34%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 34%;
  -ms-flex: 1 1 34%;
  flex: 1 1 34%;
}
.tv-bi__items .tv-bi__item.-size-row-item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 25%;
  -moz-box-flex: 0;
  -moz-flex: 0 1 25%;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
}
.tv-bi__items .tv-bi__item.-size-row-item .tv-bi__item-pic {
  position: relative;
  margin: 1px;
  top: 0;
  left: 0;
  bottom: auto;
  right: auto;
}
.tv-bi__items .tv-bi__item.-size-row-item .tv-bi__item-pic.-empty {
  padding-bottom: 50%;
}

.tv-table > tbody > tr.tv-table-tr.-success > td {
  color: #337ab7;
}
.tv-table > tbody > tr.tv-table-tr.-error > td {
  color: #c9302c;
}

.tv-table > tbody > tr > td, .tv-table > thead > tr > th {
  vertical-align: middle;
}
.tv-table > tbody > tr > td.tv-table-cell-avatar, .tv-table > thead > tr > th.tv-table-cell-avatar {
  padding: 5px;
  width: 34px;
}
.tv-table > tbody > tr > td.tv-table-cell-n, .tv-table > thead > tr > th.tv-table-cell-n {
  width: 20px;
}
.tv-table > tbody > tr > td.tv-table-cell-checkbox, .tv-table > thead > tr > th.tv-table-cell-checkbox {
  width: 20px;
}
.tv-table > tbody > tr > td.tv-table-cell-name, .tv-table > thead > tr > th.tv-table-cell-name {
  white-space: nowrap;
  width: 20px;
}
.tv-table > tbody > tr > td.tv-table-cell-name.-full, .tv-table > thead > tr > th.tv-table-cell-name.-full {
  width: auto;
}
.tv-table > tbody > tr > td.tv-table-cell-fullname, .tv-table > thead > tr > th.tv-table-cell-fullname {
  white-space: nowrap;
  width: 200px;
}
.tv-table > tbody > tr > td.tv-table-cell-fullname.-full, .tv-table > thead > tr > th.tv-table-cell-fullname.-full {
  width: auto;
}
.tv-table > tbody > tr > td.tv-table-cell-price, .tv-table > thead > tr > th.tv-table-cell-price {
  width: 120px;
}
.tv-table > tbody > tr > td.tv-table-cell-dropdown, .tv-table > thead > tr > th.tv-table-cell-dropdown {
  width: 20px;
}
.tv-table > tbody > tr > td.tv-table-cell-controls, .tv-table > thead > tr > th.tv-table-cell-controls {
  padding: 5px;
  text-align: right;
}
.tv-table > tbody > tr > td.tv-table-cell-input, .tv-table > thead > tr > th.tv-table-cell-input {
  padding: 5px;
}
.tv-table > tbody > tr > td.tv-table-cell-access, .tv-table > thead > tr > th.tv-table-cell-access {
  padding: 5px;
}
.tv-table > tbody > tr > td.tv-table-cell-contacts, .tv-table > thead > tr > th.tv-table-cell-contacts {
  padding: 5px;
}
.tv-table > tbody > tr > td.tv-table-cell.-time, .tv-table > thead > tr > th.tv-table-cell.-time {
  width: 100px;
}
.tv-table > tbody > tr > td.tv-table-th, .tv-table > thead > tr > th.tv-table-th {
  text-align: center;
}
.tv-table > tbody > tr > td.-w70, .tv-table > thead > tr > th.-w70 {
  width: 70px;
}
.tv-table > tbody > tr > td.tv-table-th.-hl, .tv-table > tbody > tr > td.tv-table-td.-hl, .tv-table > thead > tr > th.tv-table-th.-hl, .tv-table > thead > tr > th.tv-table-td.-hl {
  background-color: #f5f5f5;
}
.tv-table > tbody > tr > td.tv-table-th.-clickable, .tv-table > tbody > tr > td.tv-table-td.-clickable, .tv-table > thead > tr > th.tv-table-th.-clickable, .tv-table > thead > tr > th.tv-table-td.-clickable {
  cursor: pointer;
}
.tv-table > tbody > tr > td.tv-table-th.-clickable:hover, .tv-table > tbody > tr > td.tv-table-td.-clickable:hover, .tv-table > thead > tr > th.tv-table-th.-clickable:hover, .tv-table > thead > tr > th.tv-table-td.-clickable:hover {
  background-color: gainsboro;
}
.tv-table > tbody > tr > td.tv-table-th.-weekend, .tv-table > tbody > tr > td.tv-table-td.-weekend, .tv-table > thead > tr > th.tv-table-th.-weekend, .tv-table > thead > tr > th.tv-table-td.-weekend {
  background-color: #f5f5f5;
}
.tv-table > tbody > tr > td.tv-table-th.-with-link, .tv-table > tbody > tr > td.tv-table-td.-with-link, .tv-table > thead > tr > th.tv-table-th.-with-link, .tv-table > thead > tr > th.tv-table-td.-with-link {
  padding: 0;
  position: relative;
}
.tv-table > tbody > tr > td .tv-table-avatar img, .tv-table > thead > tr > th .tv-table-avatar img {
  display: block;
  width: 24px;
  height: 24px;
}
.tv-table > tbody > tr > td .tv-table-icon, .tv-table > thead > tr > th .tv-table-icon {
  display: block;
}
.tv-table > tbody > tr > td .tv-table-td-a, .tv-table > thead > tr > th .tv-table-td-a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: inherit;
}
.tv-table > tbody > tr > td .tv-table-td-a:focus, .tv-table > thead > tr > th .tv-table-td-a:focus {
  outline: 1px dotted -webkit-focus-ring-color;
  outline-offset: -1px;
}
@media (max-width: 767px) {
  .tv-table > tbody > tr > td.tv-table-cell.-no-border-xs, .tv-table > thead > tr > th.tv-table-cell.-no-border-xs {
    padding: 0;
  }
  .tv-table > tbody > tr > td.tv-table-cell.-no-border-xs > .form-control, .tv-table > tbody > tr > td.tv-table-cell.-no-border-xs > .input-group > *, .tv-table > thead > tr > th.tv-table-cell.-no-border-xs > .form-control, .tv-table > thead > tr > th.tv-table-cell.-no-border-xs > .input-group > * {
    border: 0;
  }
}

.tv-table > tbody > tr.tv-table-tr.-hl > td, .tv-table > thead > tr.tv-table-tr.-hl > th {
  background-color: #f5f5f5;
}

.tv-table.invoice-total > tbody > tr > td:last-child {
  width: 120px;
}

.tv-fma {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.tv-fma-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-right: 5px;
  white-space: nowrap;
}
.tv-fma-item.-nonact {
  color: #9a9d9f;
}
.tv-fma-item.-nonact .tv-fma-icon {
  filter: gray;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}
.tv-fma-icon {
  margin-right: 2px;
}
.tv-fma-icon img {
  display: block;
  width: 24px;
  height: 24px;
}
.tv-fma.-strong {
  font-weight: bold;
}
.tv-fma.-commas .tv-fma-item {
  margin-right: 0;
}

@media (min-width: 992px) {
  .tv-sh {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .tv-sh.-n5 .tv-sh-day:nth-child(1), .tv-sh.-n6 .tv-sh-day:nth-child(1) {
    order: 1;
  }
  .tv-sh.-n5 .tv-sh-day:nth-child(2), .tv-sh.-n6 .tv-sh-day:nth-child(2) {
    order: 3;
  }
  .tv-sh.-n5 .tv-sh-day:nth-child(3), .tv-sh.-n6 .tv-sh-day:nth-child(3) {
    order: 5;
  }
  .tv-sh.-n5 .tv-sh-day:nth-child(4), .tv-sh.-n6 .tv-sh-day:nth-child(4) {
    order: 2;
  }
  .tv-sh.-n5 .tv-sh-day:nth-child(5), .tv-sh.-n6 .tv-sh-day:nth-child(5) {
    order: 4;
  }
  .tv-sh.-n5 .tv-sh-day:nth-child(6), .tv-sh.-n6 .tv-sh-day:nth-child(6) {
    order: 6;
  }
  .tv-sh.-n5 .tv-sh-day:nth-child(7), .tv-sh.-n6 .tv-sh-day:nth-child(7) {
    order: 7;
  }
  .tv-sh.-n7 .tv-sh-day:nth-child(1) {
    order: 1;
  }
  .tv-sh.-n7 .tv-sh-day:nth-child(2) {
    order: 3;
  }
  .tv-sh.-n7 .tv-sh-day:nth-child(3) {
    order: 5;
  }
  .tv-sh.-n7 .tv-sh-day:nth-child(4) {
    order: 7;
  }
  .tv-sh.-n7 .tv-sh-day:nth-child(5) {
    order: 2;
  }
  .tv-sh.-n7 .tv-sh-day:nth-child(6) {
    order: 4;
  }
  .tv-sh.-n7 .tv-sh-day:nth-child(7) {
    order: 6;
  }
  .tv-sh.-n4 .tv-sh-day:nth-child(1) {
    order: 1;
  }
  .tv-sh.-n4 .tv-sh-day:nth-child(2) {
    order: 3;
  }
  .tv-sh.-n4 .tv-sh-day:nth-child(3) {
    order: 2;
  }
  .tv-sh.-n4 .tv-sh-day:nth-child(4) {
    order: 4;
  }
}
.tv-sh-day {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch;
  position: relative;
  /*
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  */
}
.tv-sh-day:before {
  content: " ";
  position: absolute;
  top: -1px;
  left: 15px;
  right: 15px;
  border-bottom: 2px solid #919191;
}
.tv-sh-day:after {
  content: " ";
  position: absolute;
  bottom: -1px;
  left: 15px;
  right: 15px;
  border-top: 2px solid #919191;
}
.tv-sh-note {
  -webkit-flex-basis: 20px;
  -moz-flex-basis: 20px;
  -ms-flex-preferred-size: 20px;
  flex-basis: 20px;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tv-sh-note-t1 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20px;
  padding-left: 10px;
  transform: rotate(-90deg) translate(0, 100%);
  transform-origin: 0 100%;
  white-space: nowrap;
}
.tv-sh-container {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.tv-sh-container .tv-table {
  margin-bottom: 0;
  height: 100%;
}
.tv-sh-tr.-additional {
  font-style: italic;
}
.tv-sh-tr.-additional td {
  font-style: italic;
}

h3.tv-in-btn-row {
  margin: 0;
  margin-top: 8px;
  margin-bottom: 8px;
}

.tv-journal-table {
  margin: 0;
}

.tv-journal-table > tbody > tr > td {
  padding: 5px 2px;
  text-align: center;
}

.tv-journal-table > tbody > tr > td.tv-table-td {
  white-space: nowrap;
  height: 30px;
}

.tv-journal {
  color: #666666;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.tv-journal-legend {
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow-x: auto;
}
.tv-journal-content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow-x: auto;
  position: relative;
}

.tv-journal-legend .tv-journal-table > tbody > tr > td.tv-table-td {
  text-align: left;
  padding: 5px;
}

.tv-markform__mark {
  text-align: center;
  font-size: 60px;
  line-height: 60px;
  font-weight: bold;
  padding: 0;
  height: auto;
}

.tv-works {
  table-layout: fixed;
}
@media (max-width: 767px) {
  .tv-works {
    table-layout: auto;
  }
}
.tv-works > tbody > tr {
  height: 1px;
}
.tv-works > tbody > tr > td {
  height: inherit;
  vertical-align: middle;
  position: relative;
}
.tv-works > tbody > tr > td.tv-works-list {
  padding: 0;
}
.tv-works > tbody > tr > td.tv-works-list.-half {
  width: 50%;
}
.tv-works > tbody > tr > td.tv-works-list.-with-control {
  padding-right: 40px;
}
.tv-works > tbody > tr > td.tv-works-subj {
  width: 230px;
}
.tv-works > tbody > tr > td.tv-works-subj.-with-control {
  padding-right: 40px;
}
@media (max-width: 767px) {
  .tv-works > tbody > tr > td.tv-works-subj {
    width: auto;
  }
}
.tv-works > thead > tr {
  height: 1px;
}
.tv-works > thead > tr > th {
  height: inherit;
  vertical-align: middle;
  position: relative;
}
.tv-works > thead > tr > th.tv-works-list.-half {
  width: 50%;
}
.tv-works > thead > tr > th.tv-works-subj {
  width: 230px;
}
.tv-works-ltbl {
  height: 100%;
  margin: 0;
}
.tv-works-ltbl > tbody > tr:first-child > td {
  border-top: 0;
}
.tv-works-ltbl > tbody > tr:first-child > td.tv-works-list-item.-with-control {
  padding-right: 40px;
}
.tv-works-ltbl > tbody > tr > td, .tv-works-ltbl > thead > tr > th {
  position: relative;
  vertical-align: middle;
}
.tv-works-btn {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  right: 8px;
}
.tv-works-hdiv {
  min-height: 24px;
  line-height: 24px;
}

.tv-worklist-item {
  position: relative;
  min-height: 26px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 4px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.tv-worklist-item.-with-control {
  padding-right: 30px;
}
.tv-worklist-item.-with-control:hover {
  background-color: rgba(100, 100, 100, 0.15);
}
.tv-worklist-item-control {
  position: absolute;
  top: 1px;
  right: 1px;
}

.tv-worklist-item p, .tv-works-list-item p {
  margin: 0;
}

.tv-files .label, .tv-labels .label {
  display: inline-block;
  padding: 4px 3px;
}

.tv-btnlike {
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 3px;
  border: 1px solid #e7eaec;
  vertical-align: middle;
  white-space: nowrap;
}

.tv-drt {
  margin: 0;
  border-bottom: 2px solid #919191;
  border-right: 1px solid #ddd;
}
.tv-drt > thead {
  border-right: 1px solid #dddddd;
}
.tv-drt > thead > tr > th {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 8px 2px;
}
.tv-drt > thead > tr > th.tv-drt-name, .tv-drt > thead > tr > th.tv-drt-works, .tv-drt > thead > tr > th.tv-drt-mark {
  background-color: #f5f5f5;
  border-left: 1px solid #dddddd;
  border-top: 1px solid #dddddd !important;
}
.tv-drt > thead > tr > th.tv-drt-btn {
  padding: 2px;
  vertical-align: middle;
}
.tv-drt > tbody > tr > td {
  border: 0;
  vertical-align: middle;
  position: relative;
}
.tv-drt > tbody > tr > td.tv-drt-n, .tv-drt > tbody > tr > td.tv-drt-name, .tv-drt > tbody > tr > td.tv-drt-works, .tv-drt > tbody > tr > td.tv-drt-mark {
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 5px;
}
.tv-drt > tbody > tr > td.tv-drt-n, .tv-drt > tbody > tr > td.tv-drt-name {
  width: 20px;
}
.tv-drt > tbody > tr > td.tv-drt-name.-autowidth {
  width: auto;
}
.tv-drt > tbody > tr > td.tv-drt-works {
  padding: 1px;
}
.tv-drt > tbody > tr > td.tv-drt-mark {
  width: 50px;
  text-align: center;
  padding: 2px;
  font-size: 20px;
  line-height: 22px;
}
.tv-drt > tbody > tr > td.-clickable {
  cursor: pointer;
}
.tv-drt > tbody > tr > td.-popovered {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
.tv-drt > tbody > tr.-firstDayRow > td {
  border-top: 2px solid #919191;
}
.tv-drt > tbody > tr.-holiday > td {
  background-color: #ffecfc;
}
.tv-drt > tbody > tr.-additional > td {
  background-color: rgba(100, 100, 100, 0.07);
}
.tv-drt > tbody > tr.-additional > td.tv-drt-name {
  font-style: italic;
}
.tv-drt-note {
  width: 20px;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
}
.tv-drt-note-text {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20px;
  padding-left: 10px;
  transform: rotate(-90deg) translate(0, 100%);
  transform-origin: 0 100%;
  white-space: nowrap;
}
.tv-drt-cell-control {
  position: absolute;
  top: 2px;
  right: 2px;
}

.tv-contacts-inline .label {
  padding: 8px;
  margin: 1px;
  display: inline-block;
}

.tv-popover {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
.tv-popover .popover-content {
  padding: 0 8px;
}
.tv-popover .popover-content .label {
  display: block;
  padding: 8px;
  margin-left: -8px;
  margin-right: -8px;
  font-size: inherit;
}

.tv-admins-td-avatar {
  width: 30px;
}
.tv-admins-td-name {
  width: 25%;
}
.tv-admins-td-position {
  width: 150px;
}
.tv-admins-td-send-message {
  width: 30px;
}

.tv-flexrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.tv-flexrow.-vcenter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.tv-flexitem.-wide {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.tv-flexitem.-collapsible {
  -webkit-flex-shrink: 1;
  -moz-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

.tv-select2-option img {
  display: block;
  float: left;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.tv-select2-option .fa {
  display: block;
  float: left;
  background-color: #676a6c;
  color: #ffffff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 16px;
  padding-left: 5px;
  margin-right: 5px;
}

.tv-select2-result {
  display: inline;
}

.tv-messages-table .unread td a, .tv-messages-table .unread td {
  color: #1c1d1e;
}
.tv-messages-table.table-mail tr td {
  padding: 12px 6px;
}
.tv-messages-table tr {
  cursor: pointer;
}
.tv-messages-table tr td.check-mail {
  width: 1px;
}
.tv-messages-table tr td.mail-subject {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 0;
}
.tv-messages-table tr td.mail-subject .tv-messages-text {
  font-weight: normal;
}
.tv-messages-table tr td.mail-contact {
  width: 1px;
  white-space: nowrap;
}
.tv-messages-table tr td.mail-date {
  width: 1px;
  padding-right: 20px;
  white-space: nowrap;
}
.tv-messages-table tr td.check-mail {
  padding-left: 20px;
}
.tv-messages-cell.-direction {
  width: 1px;
}

.tv-message-header {
  margin-bottom: 15px;
}
.tv-message-text {
  font-size: 110%;
}
.tv-message-files {
  margin-top: 10px;
}

.tv-mail-body.-with-icon {
  padding-left: 39px;
  padding-top: 12px;
  position: relative;
}
.tv-mail-body-icon {
  position: absolute;
  top: 10px;
  left: 8px;
}

.tv-messages-table.-collapsed {
  margin-bottom: 0;
  background-color: #f3f3f3;
}
.tv-messages-table.-collapsed .check-mail {
  width: 33px;
}

.tv-quiz {
  border: 1px solid #e7eaec;
  padding: 10px;
  margin-bottom: 10px;
}
.tv-quiz__title {
  font-weight: bold;
}
.tv-quiz__options .radio:last-child {
  margin-bottom: 0;
}
.tv-quiz__result {
  margin-top: 5px;
  margin-bottom: 10px;
}
.tv-quiz__result .progress {
  margin-bottom: 0;
}
.tv-quiz__result-title {
  margin-bottom: 3px;
}
.tv-quiz-form {
  border: 1px solid #e7eaec;
  padding: 10px;
  position: relative;
}
.tv-quiz-form-close {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #676a6c;
}

.tv-navbar-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch;
  margin: 8px 10px;
}
.tv-navbar-flex-item {
  margin: 0 2px;
}
.tv-navbar-flex-item:first-child {
  margin-left: 0;
}
.tv-navbar-flex-item:last-child {
  margin-right: 0;
}
.tv-navbar-flex-item.-wide {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .tv-navbar-flex {
    margin-left: 25px;
    margin-right: 25px;
  }
  .tv-navbar-flex-item {
    margin: 0 5px;
  }
  .tv-navbar-flex-item:first-child {
    margin-left: 0;
  }
  .tv-navbar-flex-item:last-child {
    margin-right: 0;
  }
}

.tv-navbar-iflex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.tv-navbar-iflex-item {
  margin: 0 2px;
  white-space: nowrap;
}
.tv-navbar-iflex-item:first-child {
  margin-left: 0;
}
.tv-navbar-iflex-item:last-child {
  margin-right: 0;
}
.tv-navbar-iflex-item.-wide {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -moz-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  width: 0;
}
.tv-navbar-iflex-item h1, .tv-navbar-iflex-item h2, .tv-navbar-iflex-item h3 {
  margin: 0;
}
.tv-navbar-iflex-item h1 a, .tv-navbar-iflex-item h1 span.tv-h-sep, .tv-navbar-iflex-item h2 a, .tv-navbar-iflex-item h2 span.tv-h-sep, .tv-navbar-iflex-item h3 a, .tv-navbar-iflex-item h3 span.tv-h-sep {
  display: inline-block;
}
.tv-navbar-iflex-item h2 {
  margin-top: 3px;
}
@media (min-width: 768px) {
  .tv-navbar-iflex-item {
    margin: 0 5px;
  }
  .tv-navbar-iflex-item:first-child {
    margin-left: 0;
  }
  .tv-navbar-iflex-item:last-child {
    margin-right: 0;
  }
}

.tv-navbar-btns {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  margin-top: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e7eaec;
  /*
  	line,polyline {
  		stroke: currentColor;
  		fill: none;
  	}
  	path,ellipse {
  		fill: currentColor;
  		stroke: none;
  		&.stroked {
  			stroke: currentColor;
  			fill: none;
  		}
  	}
  */
}
.tv-navbar-btns-btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  background-color: #f0f0f0;
  color: #676a6c;
  border-right: 1px solid #e7eaec;
  text-align: center;
}
.tv-navbar-btns-btn:last-child {
  border-bottom: 0;
}
.tv-navbar-btns-btn-text {
  text-align: center;
  display: block;
  font-weight: bold;
  margin-top: -5px;
  margin-bottom: 2px;
}
.tv-navbar-btns-btn svg {
  display: block;
  margin: auto auto;
}
.tv-navbar-btns-btn:hover {
  background-color: #e6e6e6;
}
.tv-navbar-btns-btn.-active {
  background-color: #1ab394;
  color: #ffffff;
}
.tv-navbar-btns-icons {
  display: none;
}
.tv-navbar-btns line, .tv-navbar-btns polyline, .tv-navbar-btns path, .tv-navbar-btns ellipse {
  fill: none;
  stroke: none;
}
.tv-navbar-btns line.fill, .tv-navbar-btns polyline.fill, .tv-navbar-btns path.fill, .tv-navbar-btns ellipse.fill {
  fill: currentColor;
}
.tv-navbar-btns line.stroke, .tv-navbar-btns polyline.stroke, .tv-navbar-btns path.stroke, .tv-navbar-btns ellipse.stroke {
  stroke: currentColor;
}
.tv-navbar-btns line.sharp, .tv-navbar-btns polyline.sharp, .tv-navbar-btns path.sharp, .tv-navbar-btns ellipse.sharp {
  shape-rendering: crispEdges;
}

.tv-box-header-sub {
  margin-bottom: 10px;
}
