﻿input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
}
.video-editor {
  background: #FFF;
  z-index: 99999;
  border-radius: 6px;
  height: 100%;
  border: solid 1px #DDD;
}
.video-editor .video-editor-header {
  background: #FFF;
  display: flex;
  border-bottom: solid 1px #DDD;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.video-editor .video-editor-header .video-editor-menu {
  display: flex;
}
.video-editor .video-editor-header .video-editor-menu div {
  font-weight: 500;
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  border-bottom: solid 3px #FFF;
  cursor: pointer;
}
.video-editor .video-editor-header .video-editor-menu div:hover {
  border-bottom: solid 3px #DDD;
}
.video-editor .video-editor-header .video-editor-menu div.active {
  border-bottom: solid 3px #EF9A5D;
}
.video-editor .video-editor-header .video-editor-btns {
  padding-right: 1rem;
}
.video-editor .video-editor-header .video-editor-btns .ddl {
  border: none;
  background: unset;
  color: #777;
  font-size: 1rem;
  font-weight: 400;
  margin-right: 1rem;
}
.video-editor .video-editor-content .video-editor-view {
  display: flex;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data {
  width: 40%;
  border-right: solid 1px #DDD;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-actions {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F7F7F7;
  border-bottom: solid 1px #DDD;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-actions .btn.add {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-actions .btn.add .icon {
  margin-right: 5px;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items.active {
  display: block;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items {
  height: 537px;
  overflow-y: scroll;
  display: none;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .items-no-result {
  height: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-timestamp-container {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-timestamp-container input {
  border: none;
  min-width: 65px;
  text-align: center;
  opacity: 0.5;
  cursor: pointer;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-timestamp-container input:focus {
  opacity: 0.8;
  cursor: default;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-timestamp-container .start-time-chapter {
  margin-bottom: 5px;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-txt {
  width: 60%;
  position: relative;
  display: flex;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-txt textarea.tar {
  height: 70px;
  /*float: left;*/
  background-color: none;
  width: 100%;
  border-color: transparent;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-txt .btn.settings {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.35rem 0.6rem 0.35rem 0.6rem;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-txt .btn.settings .icon {
  color: #888;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-timestamp-container {
  visibility: hidden;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .chapter-control-container {
  margin-right: -20px;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .chapter-control-container i.selected {
  visibility: visible;
  color: green;
  position: relative;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .chapter-control-container i.selected:hover {
  cursor: pointer;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .chapter-control-container i.selected p {
  margin: 0;
  position: absolute;
  top: -1px;
  left: 25%;
  font-family: Roboto Condensed, sans-serif;
  color: white;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .chapter-control-container i {
  visibility: hidden;
  display: flex;
  margin-right: 0.5rem;
  color: #ddd;
  font-size: 20px;
  /*display:none;*/
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .chapter-control-container i:hover {
  cursor: pointer;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-delete {
  display: flex;
  align-items: center;
  width: 5%;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-delete .btn.delete {
  visibility: hidden;
  padding: 0;
  margin: auto;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-delete .btn.delete i {
  margin: 0;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item:hover {
  background: #EEE;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item:hover .video-editor-item-delete .btn.delete {
  visibility: visible;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item:hover .video-editor-item-timestamp-container {
  visibility: visible;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item:hover .chapter-control-container i {
  visibility: visible;
  display: flex;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item:hover .chapter-control-container i.selected {
  color: green;
  position: relative;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item:hover .chapter-control-container i.selected:hover {
  cursor: pointer;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item:hover .chapter-control-container i.selected p {
  margin: 0;
  position: absolute;
  top: -1px;
  left: 25%;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active,
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active:hover {
  background: #c7c7c7;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active .video-editor-item-txt textarea.tar,
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active:hover .video-editor-item-txt textarea.tar {
  background-color: #fff;
  border-color: #DDD;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active .video-editor-item-delete .btn.delete,
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active:hover .video-editor-item-delete .btn.delete {
  visibility: visible;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active .video-editor-item-timestamp-container,
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active:hover .video-editor-item-timestamp-container {
  visibility: visible;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active .chapter-control-container,
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active:hover .chapter-control-container {
  visibility: visible;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active .chapter-control-container i.selected,
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active:hover .chapter-control-container i.selected {
  color: green;
  position: relative;
  display: inline-block;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active .chapter-control-container i.selected:hover,
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active:hover .chapter-control-container i.selected:hover {
  cursor: pointer;
}
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active .chapter-control-container i.selected p,
.video-editor .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item.active:hover .chapter-control-container i.selected p {
  margin: 0;
  position: absolute;
  top: -1px;
  left: 25%;
}
.video-editor .video-editor-content .video-editor-view .video-editor-preview {
  width: 60%;
  background: #EEE;
}
.video-editor .video-editor-content .video-editor-view .video-editor-preview video::-webkit-media-controls-fullscreen-button {
  display: none;
}
.video-editor .video-editor-content .video-editor-view .video-editor-preview .videowrapper {
  position: relative;
}
.video-editor .video-editor-content .video-editor-view .video-editor-preview .videowrapper .video-editor-preview-chapter {
  position: absolute;
  top: 10px;
  width: 100%;
  border: none;
  padding: 0;
  display: none;
}
.video-editor .video-editor-content .video-editor-view .video-editor-preview .videowrapper .video-editor-preview-chapter .txt {
  margin: 0 auto 0 auto;
  background: #EF9A5D;
  color: #FFF;
  text-align: center;
  display: table;
  width: auto;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 400;
}
.video-editor .video-editor-content .video-editor-view .video-editor-preview .videowrapper .video-editor-preview-subtitle {
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 100%;
  border: none;
  padding: 0;
  display: none;
  font-size: 0.9rem;
}
.video-editor .video-editor-content .video-editor-view .video-editor-preview .videowrapper .video-editor-preview-subtitle .txt {
  margin: 0 auto 0 auto;
  background: #000;
  color: #FFF;
  text-align: center;
  display: table;
  width: auto;
  padding: 4px 8px;
  margin-bottom: 8px;
}
.video-editor .video-editor-content .video-editor-view .video-editor-preview .videowrapper .video-editor-preview-info .video-editor-preview-info-label {
  font-size: 0.9rem;
  background: #FFF;
  color: #000;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.8);
  text-align: center;
  width: max-content;
  padding: 2px 8px;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.9;
  border-radius: 3px;
  box-shadow: 0px 0px 10px;
  display: none;
}
.video-editor .video-editor-content .video-editor-navigation .video-editor-navigation-timeline {
  overflow-x: scroll;
  width: 100%;
  height: 120px;
  border-top: solid 1px #DDD;
  position: relative;
}
.video-editor .video-editor-content .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-ticks {
  width: 5000px;
  display: flex;
  height: 100%;
  position: relative;
  padding-left: 20px;
}
.video-editor .video-editor-content .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-ticks .video-editor-navigation-marker {
  width: 7px;
  height: 100%;
  position: absolute;
  left: 17px;
  top: 0;
  padding: 0 3px;
}
.video-editor .video-editor-content .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-ticks .video-editor-navigation-marker div.circle {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: red;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999;
}
.video-editor .video-editor-content .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-ticks .video-editor-navigation-marker div.line {
  background: red;
  height: 100%;
  width: 1px;
}
.video-editor .video-editor-content .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-ticks .video-editor-navigation-tick {
  width: 100px;
  border-left: solid 1px #DDD;
  height: 100%;
}
.video-editor .video-editor-content .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-ticks .video-editor-navigation-tick span {
  font-size: 0.8rem;
  display: inline-block;
  margin-left: 0.3rem;
  margin-top: 0.5rem;
}
.video-editor .video-editor-content .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-blocks .video-editor-navigation-block {
  background: #EF9A5D;
  border-radius: 2px;
  color: #FFF;
  padding: 0;
  position: absolute;
  width: 20px;
  min-width: 20px;
  height: 43px;
  min-height: 43px;
  font-weight: 200;
  left: 0px;
  top: 40px;
  cursor: pointer;
}
.video-editor .video-editor-content .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-blocks .video-editor-navigation-block span.txt {
  font-size: 13px;
  line-height: 14px;
  display: inline-block;
  padding: 0.4rem;
}
.video-editor .video-editor-content .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-blocks .video-editor-navigation-block.error {
  background: red;
}
.video-editor.chapters .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-txt textarea.tar {
  height: 34px;
}
.video-editor.info .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-txt textarea.tar {
  height: 34px;
}
.video-editor.info .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-blocks .video-editor-navigation-block {
  background: #EF9A5D;
  border-radius: 2px;
  color: #FFF;
  padding: 0;
  position: absolute;
  width: 20px;
  min-width: 20px;
  height: 7px;
  min-height: 7px;
  font-weight: 200;
  left: 0px;
  top: 28px;
  cursor: pointer;
}
.video-editor.info .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-blocks .video-editor-navigation-block span.txt {
  display: none;
}
.video-editor.info .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-blocks .video-editor-navigation-block:nth-child(2) {
  top: 38px;
}
.video-editor.info .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-blocks .video-editor-navigation-block:nth-child(3) {
  top: 48px;
}
.video-editor.info .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-blocks .video-editor-navigation-block:nth-child(4) {
  top: 58px;
}
.video-editor.info .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-blocks .video-editor-navigation-block:nth-child(5) {
  top: 68px;
}
.video-editor.info .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-blocks .video-editor-navigation-block:nth-child(6) {
  top: 78px;
}
.video-editor.info .video-editor-navigation .video-editor-navigation-timeline .video-editor-navigation-blocks .video-editor-navigation-block:nth-child(7) {
  top: 88px;
}
.video-editor.learningchecks .video-editor-content .video-editor-view .video-editor-data .video-editor-items .video-editor-item .video-editor-item-txt textarea.tar {
  height: 34px;
}
.video-editor-settings .settings {
  background: #FFF;
  z-index: 99999;
  border-radius: 6px;
  height: auto;
  z-index: 9999;
  border: solid 1px #DDD;
  width: 100%;
}
.video-editor-settings .settings .settings-header {
  background: #FFF;
  display: flex;
  border-bottom: solid 1px #DDD;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.video-editor-settings .settings .settings-header .settings-menu {
  display: flex;
}
.video-editor-settings .settings .settings-header .settings-menu div {
  font-weight: 500;
  padding: 1.2rem 1.7rem 1rem 1.7rem;
  border-bottom: solid 3px #FFF;
  cursor: pointer;
}
.video-editor-settings .settings .settings-header .settings-btns {
  padding-right: 0.5rem;
}
.video-editor-settings .settings .settings-content {
  padding: 1.5rem;
}
.video-editor-settings .settings .settings-content .setting label {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.video-editor-settings .settings .settings-content .setting input {
  width: 90%;
}
.video-editor-settings .settings .settings-actions {
  padding: 1.5rem;
  text-align: right;
}