
/* video editor */
body { padding: 20px 0; background: url("../img/bg.png") rgb( 204, 209, 217); }
@media screen and (max-width: 568px) {
    body { padding: 0; }
    body > .container { margin: 0; padding: 0; }
    body > .container > .card { border: 0; border-radius: 0; }
}
.big { font-size: 120%; }
.small { font-size: 80%; }
.code { max-height: 500px; padding: 5px; overflow: auto; background-color: #eee; }
.btn[disabled] { cursor: not-allowed; color: #fff; background-color: #6c757d; border-color: #6c757d; }

video,
audio { border: 1px solid #ddd; width: 100%; background-color: #ddd; box-sizing: content-box; }

/* logo */
.logo { color: #0046ae; font-size: 20px; }
.logo img { width: auto; height: 60px; }
.logo a { text-decoration: none; }

/* colors */
.bg-white { background-color: #fff; }
.color-blue { color: #236bf1; }
.color-red { color: #f13d2a; }

/* common */
.no-margin { margin: 0 !important; }
.no-wrap { white-space: nowrap; }
.show-on-hover-parent { position: relative; }
.show-on-hover { position: absolute; top: 10px; right: 10px; display: none; }
.show-on-hover-parent:hover .show-on-hover { display: block; }
.card-default { background-color: #F5F5F5; }
.display-inline-block { display: inline-block; }
.btn { cursor: pointer; }
.text-ellipsis { display: block; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.max-height300 { max-height: 300px; overflow: auto; }
.relative { position: relative; }
.position-absolute { position: absolute; }
.pos-absolute-left { left: 15px; top: 15px; }
.pos-absolute-right { right: 15px; top: 15px; }
.pos-absolute-bottom-left { left: 15px; bottom: 15px; }

/* login */
.card-login { margin-top: 150px; }
.card-login form { margin-bottom: 0; }

/* margins */
.margin-top { margin-top: 1rem; }
.margin-bottom { margin-bottom: 1rem; }
.margin-vert { margin-top: 1rem; margin-bottom: 1rem; }
@media screen and (max-width: 768px) {
    .margin-bottom-md { margin-bottom: 1rem; }
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.indent-container {
  margin-top: 30px; /* Пробел в 5 пикселей между полями */
}

.width-container {
  width: 50%; /* Уменьшение размера выпадающего списка вдвое */
}
.position-container {
  align-content: center;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}



/* modal fade show */

.container-gray {
  display: flex; /*Устанавливаем flex контейнер */
 /* Серый цвет фона */
  padding: 20px; /* Отступы внутри контейнера */
  border-radius: 5px; /* Скругленные углы */
  /* align-items: center; Центрируем элементы по вертикали */
}
.contener-timesetter {
  min-width: 125px;
}
.center-container {

  display: flex; /* Включаем Flexbox */
  justify-content: center; /* Центрируем содержимое по горизонтали */
  align-items: center; /* Центрируем содержимое по вертикали */
  text-align: center; /* Центрирование текста для вложенных текстовых элементов */
  height: 50px; /* Высота контейнера, может быть изменена в зависимости от вашего дизайна */
  padding: 20px;
}
.parent-container {
  display: flex;
  max-width: 100%;
  background-color: #f0f0f0;
}
.center-container > *:not(:last-child) {
  margin-right: 10px; /* Отступ слева от кнопки для небольшого пространства между текстом и кнопкой */
}
/* Добавляем некоторый отступ между элементами */
.container-gray > *:not(:last-child) {
  margin-right: 10px; /* Отступ справа для всех элементов кроме последнего */
}

.text-container {
  margin-right: 10px; /* Отступ справа от списка */
  white-space: nowrap; /* Предотвращает перенос текста */
  font-size: 16px;
}


.button-show-down {
  width: 150px; /* Или любая другая ширина по вашему выбору */
}

/* Изначально скрываем список */
.select-show-down {
  display: none;
}
/* Стили для всплывающего окна */
        /* Стилизация всплывающего окна */
.popup {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: white;
  border: 1px solid #ccc;
  display: none;
}

/* Показать одно из всплывающих окон */
.popup.default {
  display: block;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}
.popup-container {
  position: absolute;
  width: 300px;
  border: 1px solid #ccc;
  background: #fff;
  padding: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.close {
  cursor: pointer;
  float: right;
  font-size: 20px;
}
.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
/* button */
.btn:not(.btn-link) { transition: box-shadow 0.3s ease; }
.btn:not(.btn-link):hover { box-shadow: 0 0 10px rgba(0,0,0,0.3); }
.btn[class*="-outline"] { transition: background-color 0.3s ease; }
.btn-icon [class^="icon-"] { line-height: 1.4rem; }
.btn-smp { padding: 0.6rem 1.5rem; }

/* form fields */
.form-control[type="text"],
.form-control[type="email"],
.form-control[type="number"],
.form-control[type="password"],
textarea.form-control { background-color: #f1f1f1; box-shadow: inset 0 0 5px rgba(0,0,0,0.1); }
textarea.form-control:focus { background-color: #f1f1f1; }
input[type="range"] { width: 100%; padding: 0; }
.input-range { padding: 7px; border: 1px solid #ddd; border-radius: 4px; }
.text-box {
  width: 160px;
}


/* dropdown-menu */
.dropdown-menu { box-shadow: 0 0 10px rgba(0,0,0,0.3); }

/* editor-player */
.wve-editor-player { position: relative; background-color: #000; }
.wve-editor-player video { width: 100%; height: 360px; }
.wve-editor-player-panel { position: absolute; left: 0; bottom: 0; width: 100%; padding: 5px 20px; background-color: rgba(0,0,0,0.5); color: rgba(255,255,255,0.7); opacity: 1; transition: opacity 300ms; }
.wve-editor-player .time { float: right; }
.wve-editor-player .time-current { float: left; }
.wve-editor-player:hover .wve-editor-player-panel { opacity: 0; }

/* list-group */
.list-group {  }
.list-group .list-group-item.active .btn-link { color: #fff; }
.list-group .list-group-item .btn-link { max-width: 100%; padding: 0; overflow: hidden; text-overflow: ellipsis; }
.list-group-item a,
.list-group-item .btn-link { text-decoration: none; }

/* editor-timeline */
.editor-timeline-wrapper { position: relative; }
#wve-timeline { position: relative; width: 100%; height: 20px; z-index: 11; overflow: hidden; background: none transparent; border: 0; }
#wve-timeline .ui-slider-handle { z-index: 12; width: 12px; height: 20px; top: 0; margin-left: -6px; margin-top: 0; background: none transparent; border: 0; outline: none; }
#wve-timeline .ui-slider-handle:before { content: ''; display: block; position: absolute; top: 0; left: 50%; margin-left: -5px; width: 0; height: 0; border-style: solid; border-width: 6px 5px 0 5px; border-color: #000000 transparent transparent transparent; }
#wve-timeline .ui-slider-handle:after { content: ''; display: block; position: absolute; bottom: 0; left: 50%; margin-left: -5px; width: 0; height: 0; border-style: solid; border-width: 0 5px 6px 5px; border-color: transparent transparent #000000 transparent; }

#wve-timeline-range { position: absolute; left: 0; top: 0; width: 100%; height: 20px; z-index: 10; border: 1px solid rgba(0,0,0,0.2); background: none #eee; border-radius: 0; }
#wve-timeline-range .ui-slider-range { border-radius: 0; background: none #aaa; }
#wve-timeline-range .ui-slider-handle { width: 17px; height: 20px; margin: 0; top: 0; z-index: 12; border-radius: 0; box-shadow: none; background: none transparent; outline: none; border: 0; }
#wve-timeline-range .ui-slider-handle:before { content: ''; display: block; width: 0; height: 0; position: relative; top: 19px; left: 0; margin: 0; border-color: transparent transparent #777 transparent; border-style: solid; }
#wve-timeline-range span:nth-child(2) { margin-left: -8px; }
#wve-timeline-range span:nth-child(3) { margin-left: -8px; }
#wve-timeline-range span:nth-child(2):before { border-width: 0 17px 17px 0; cursor:ew-resize; left: -9px; transform: rotate(-90deg); }
#wve-timeline-range span:nth-child(3):before { border-width: 0 17px 17px 0; cursor:ew-resize; left: 8px; }

/* btn-group-justified */
.btn-group-justified { display: flex; width: 100%; }
.btn-group-justified .btn,
.btn-group-justified .btn-group { flex: 1; }
.btn-group-justified .btn { width: 100%; }

/* progress bar */
.progress { border: 1px solid rgba(0,0,0,0.2); }
.add-overflow {
  overflow-x: auto;
  overflow-y: auto;
}
/* preloader */
.wve-preloader { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1111; background-color: rgba(0,0,0,0.5); }
.wve-preloader-inner { position: absolute; top: 50%; left: 50%; margin: -70px 0 0 -150px; width: 300px; max-width: 100%; z-index: 1112; padding: 15px; background-color: #fff; border-radius: 6px; }
.wve-preloader-caption { padding: 0 0 15px 0; text-align: center; }
.wve-preloader-content { height: 20px; background: url("../img/preloader.gif") center center no-repeat; }
.wve-preloader-progress {  }
.wve-preloader-progress .progress { border: 1px solid #b1b1b1; }
.wve-preloader-progress .progress-bar { width: 0; height: 20px; overflow: hidden; padding: 2px 0 0 0; }
.wve-preloader-progress .progress-bar-empty { padding-top: 20px; }

/* bottom-list-container */
.bottom-list-container { overflow: auto; }
.bottom-list-container td { min-width: 150px; }
.icons-container {
  display: flex;
  flex-direction: column;
}

.progress-container {
  text-align: center; /* Выравнивает содержимое контейнера по центру */
  display: flex; /* Использует Flexbox для упрощения выравнивания */
  flex-direction: column; /* Располагает элементы вертикально */
  align-items: center; /* Выравнивает элементы по центру по горизонтали */
}
/* episode-item */
.wve-episode-container { margin: 0; padding: 0; }
.episode-item { float: left; margin-top: 15px; padding: 15px 5px; background: url("../img/bg_film2.png") repeat-x; background-size: 100% 100%; }
.episode-item > .card { border-color: rgba(0,0,0,.7); background: url("../img/preloader_circle.gif") no-repeat center center transparent; opacity: 1; overflow: hidden; }
.episode-item .card-block { min-height: 80px; background: none no-repeat center center transparent; background-size: cover; }
.episode-item > .card:hover { background-image: none; }
.episode-item > .card:hover .card-block { opacity: 0.3; }

/* video-thumbnail */
.video-thumbnail { min-height: 150px; background: #eee url("../img/icon_film.png") center center no-repeat; }
span.title_film {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow:ellipsis;
}

.myList-statistic {
  width:80%; /* Занимает все доступное пространство внутри своего контейнера */
  text-align: center;
  font-size: 16px; /* Установите нужный размер шрифта */

}

.select-container {
  display: flex; /* Использование Flexbox */
  justify-content: center; /* Выравнивание содержимого по центру */
  align-items: center; /* Выравнивание содержимого по вертикали */
  width: 100%; /* Занимает всю ширину родительского элемента */
}

.container-videoname {
  padding: 10px;
  background-color: #f0f0f0;
  min-width: 200px; /* Установите нужный размер */
  display: flex; /* Используем Flexbox для выравнивания содержимого */
  align-items: center; /* Выравнивание по центру по вертикали */
}

.container-statistic {
  padding: 10px;
  background-color: #f0f0f0;
  width: 300px; /* Установите нужный размер */
  display: flex; /* Используем Flexbox для выравнивания содержимого */
  align-items: center; /* Выравнивание по центру по вертикали */
}