.btn-scroll {
    display: inline-block;
    padding: 10px 0;
    color: #e8e8e8;
    text-decoration: none;
    width: 100%;
    text-align: center;
    background: #535353;
    border-radius: 0 0 .25rem .25rem;
    transition: background-color 0.2s;
}

.btn-scroll:hover {
    background: #75597b;
}

@media screen and (max-width: 600px) {
    .btn-scroll {
        font-size: 13px;
        padding: 5px 0;
        position: absolute;
        border-radius: .25rem .25rem 0 0;
        top: -25px;
    }
}

@media screen and (min-width: 601px) and (max-width: 1024px) {
    .btn-scroll {
        font-size: 13px;
    }
}

.js-full-show {
    background: #333;
    color: #e8e8e8;
    text-align: center;
    border-radius: 0 0 .25rem .25rem;
    padding: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.js-full-show:hover {
    background: #75597b;
}

.js-full {
    overflow: hidden;
}

.player-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.player-tabs li {
    padding: 11px 6px 10px;
    line-height: 25px;
    cursor: pointer;
    font-weight: 700;
    text-shadow: 1px 1px 1px #000;
    color: #c9c9c9;
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s, text-shadow 0.2s;
    border-radius: 2px;
}

.player-tabs li:hover {
    background-color: #a8a8a8;
    color: #010101;
    text-shadow: 1px 1px 1px #eee;
}

.player-tabs li.current {
    background-color: #1c1c1c;
    color: #ccc;
    cursor: default;
    pointer-events: none;
    padding: 11px 8px 10px;
}

.player-container {
    height: 380px;
    background: #000 url(/templates/kinogo/images/iframe-img2.svg) no-repeat center;
    position: relative;
}

.player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
/* тёмная тема (по умолчанию) */
.schedule-container {
  color: #e8e8e8;
  margin: 0px -20px;
}

.schedule-season-header,
.schedule-show-seasons {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  background: #242424;
  border-radius: 6px;
  padding: 0.4rem 1rem;
  font-weight: 400;
  align-items: center;
  border: 1px solid #444;
  color: #e8e8e8;
}

.schedule-season-header:hover {
  cursor: pointer;
  background: #343434;
}
.schedule-season-header:hover .schedule-header-icon {
  stroke: #fff;
}

.schedule-header-icon {
  width: 38px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s cubic-bezier(0.4,0,0.2,1);
}
.schedule-active .schedule-header-icon {
  transform: rotate(180deg);
}

.schedule-season {
  display: none;
  width: 100%;
  font-size: 13px;
  background: #1c1c1c;
  border-radius: 0 0 .75rem .75rem;
  border: 1px solid #444;
}
.schedule-active .schedule-season {
  display: table;
}

.schedule-season tr:hover td:not(.schedule-show-episodes) {
  background: #343434;
}

.schedule-season tr:nth-child(odd)  { background: #1c1c1c; }
.schedule-season tr:nth-child(even) { background: #242424; }

.schedule-season td {
  height: 30px;
  padding: 0 .5rem;
  color: #e8e8e8;
  border-bottom: 1px solid #444;
}
.schedule-season td:nth-child(1) { width:160px; text-align:center; }
.schedule-season td:nth-child(3) { width: 90px; text-align:center; }
.schedule-season td:nth-child(4) { width: 80px; text-align:center; }

.schedule-show-episodes {
  cursor: pointer;
  border-radius: 0 0 6px 6px !important;
}
.schedule-show-episodes > span {
  color: #e8e8e8;
  font-weight: 600;
  font-size: 11px;
}
.schedule-show-episodes:hover {
  background: #343434;
}

.schedule-show-seasons > div > span {
  color: #e8e8e8;
  font-weight: 600;
  font-size: 12px;
}
.schedule-show-seasons:hover {
  cursor: pointer;
  background: #343434;
}

.episode-hidden,
.season-hidden {
  display: none;
}

.fa-check-circle { color: #4CAF50; }
.fa-times        { color: #FF9800; }

.days-left {
  font-size: 11px;
  color: #999;
  margin-left: 5px;
}

.schedule-season td:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

@media (max-width: 430px) {
  .schedule-season td:nth-child(2) { max-width:100px; }
  .schedule-season td:nth-child(3) { width:75px; }
  .schedule-season { font-size:12px; }
  .schedule-season tr { height:60px; }
  .schedule-season td { padding:0 .1rem; }
}
.episode-status {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
}

.episode-status.released {
  color: #4CAF50;
  background-color: rgba(76, 175, 80, 0.1);
}

.episode-status.upcoming {
  color: #FF9800;
  background-color: rgba(255, 152, 0, 0.1);
}

/* Стили блока "Коллекции" */
.blockmenu1 {
    border: 1px solid #848480;
    flex-grow: 1;
    cursor: pointer;
    background-color: #5a2a2a;
    padding: 10px;
    font-weight: normal;
    text-align: center;
    font-size: 14px;
    display: block;
    margin-right: 1px;
    margin-bottom: 2px;
}

.blockmenu1:hover {
    background-color: #333333;
}

/* Стили селекта "Дополнительные коллекции" */
.blockmenu2 {
    width: 99.8%;
    height: 40px;
    border: 1px solid #848480;
    background-color: #3f3f3f;
    color: #e0dfdc;
    position: relative;
    margin-right: 1px;
    margin-top: 3px;
}

.blockmenu2:hover {
    background-color: #333333;
}


/* Общий фон редактора и области ввода */
.dleaddcomments-editor,
.tox,
.tox-edit-area__iframe,
.tox-edit-area iframe body,
.tox .tox-editor-container {
    background-color: #1e1e1e !important;
    color: #f0f0f0 !important;
    border: 1px solid #333 !important;
}

/* Цвет текста в поле */
.tox-edit-area iframe {
    background-color: #1e1e1e !important;
    color: #f0f0f0 !important;
}

/* Стили кнопок тулбара */
.tox .tox-toolbar__group,
.tox .tox-toolbar__primary {
    background-color: #2a2a2a !important;
    border-color: #444 !important;
}

.tox .tox-tbtn {
    background-color: #2e2e2e !important;
    border: none !important;
    color: #f0f0f0 !important;
}

.tox .tox-tbtn:hover {
    background-color: #3a3a3a !important;
}

.tox .tox-tbtn--enabled {
    background-color: #444 !important;
    color: #fff !important;
}

/* Иконки */
.tox .tox-icon svg {
    fill: #ccc !important;
}

/* Фокус/активные элементы */
.tox .tox-tbtn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #5a9cff !important;
}

/* Сайдбар (если используется) */
.tox-sidebar {
    background-color: #252525 !important;
}

/* Панели */
.tox .tox-editor-header {
    background-color: #262626 !important;
    border-bottom: 1px solid #444 !important;
}

/* Нижняя панель (якорь и прочее) */
.tox .tox-anchorbar,
.tox .tox-bottom-anchorbar {
    background-color: #2b2b2b !important;
    border-top: 1px solid #444 !important;
}
.title_spoiler svg{
	vertical-align: middle;
	margin-top: -4px;
	margin-right: 7px;
	height: 16px;
	width: 16px;
}
.mce-accordion summary {
	cursor: pointer;
}

.self_delete_link {
	border: 0 none;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	padding: 12px 27px;
	border-radius: 10px;
	outline: none;
	background-color: #f44336;
	color: #fff;
	text-shadow: 0 1px #333;
	text-decoration: none !important;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	box-sizing: border-box;
	transition: all ease .1s; transition: all ease .1s;
}

.ui-dialog-buttonset button.ui-button-delete {
    background-color: #f44336;
    border-color: #f44336;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(51, 51, 51, .5);
}
.ui-dialog-buttonset button.ui-button-delete:hover {
    background-color: #db3a2f;
    border-color: #db3a2f;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(51, 51, 51, .5);
}
.form-check-label {
    cursor: pointer;
}
.form-check-input {
    color: #0c5f7eed;
    flex-shrink: 0;
    width: 1.12rem;
    height: 1.12rem;
    margin: -0.188rem 0.625rem 0 0;
    appearance: none;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #0c5f7eed;
    vertical-align: middle;
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%230c5f7eed' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%230c5f7eed'/%3e%3c/svg%3e");
}

.form-check-input[type=checkbox] {
    border-radius: .25rem;
}

.form-check-input[type=radio] {
    border-radius: 50%;
}

.DLEPush {
	z-index: 99999;
	position: fixed;
	right: 20px;
	top: 20px;
}

@keyframes DLEPush-show {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.DLEPush-notification.wrapper {
	animation-name: DLEPush-show;
	animation-duration: 0.6s;
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	color: #f0f0f0;
	margin-bottom: 10px;
	width: 100%;
	max-width: 400px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
	background-color: #1e1e1e;
	border-radius: 10px;
}

.DLEPush-notification .DLEPush-icon {
	grid-column: 1;
	grid-row: 1 / span 2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 45px;
	height: 100%;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	text-align: center;
	background-color: #2c2c2c;
}

.DLEPush-notification .DLEPush-icon svg {
	scale: .8;
	fill: currentColor;
}

.DLEPush-notification .DLEPush-header {
	font-weight: 500;
	grid-column: 2;
	grid-row: 1;
	font-size: 1rem;
	margin-left: 1rem;
	margin-top: .5rem;
	color: #ffffff;
}
.DLEPush-notification .DLEPush-header:empty {
	margin-top: 0;
}

.DLEPush-notification .DLEPush-message {
	grid-column: 2;
	grid-row: 2;
	font-size: .875rem;
	margin: 1rem;
	color: #cccccc;
}

.DLEPush-notification .DLEPush-message li,
.DLEPush-notification .DLEPush-message ul {
	list-style-type: none;
	padding-left: 0;
}

.DLEPush-notification .DLEPush-close {
	position: absolute;
	top: 8px;
	right: 10px;
	font-weight: 300;
	background: none;
	border: 0;
	font-size: 1.15rem;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	color: #aaa;
	outline: 0;
	opacity: 0.75;
	transition: opacity 0.2s ease;
}

.DLEPush-notification .DLEPush-close:hover {
	opacity: 1;
	color: #fff;
}

@media only screen and (min-width: 601px) {
	.DLEPush-notification.wrapper {
		min-width: 400px;
	}
}

/* Типы уведомлений */
.DLEPush-notification.wrapper.push-success {
	background-color: #26332f;
}

.DLEPush-notification.wrapper.push-success .DLEPush-icon {
	background-color: #00bfa5;
}

.DLEPush-notification.wrapper.push-warning {
	background-color: #3b2f1d;
}

.DLEPush-notification.wrapper.push-warning .DLEPush-icon {
	background-color: #ffb300;
}

.DLEPush-notification.wrapper.push-error {
	background-color: #3a1f1c;
}

.DLEPush-notification.wrapper.push-error .DLEPush-icon {
	background-color: #ff5252;
    }

/* Поле ввода */
input[type="text"].comments_author_field {
	width: 100%;
	margin-bottom: 10px;
	background-color: #2a2a2a;
	color: #ffffff;
	border: 1px solid #444;
	border-radius: 5px;
	padding: 8px;
}
@media (max-width: 600px) {
  .DLEPush {
    top: 70px; /* ниже шапки */
    right: 10px;
    left: 10px;
  }

  .DLEPush-notification.wrapper {
    max-width: 100%;
    width: auto;
    font-size: 0.85rem;
    grid-template-columns: auto 1fr;
  }

  .DLEPush-notification .DLEPush-header {
    font-size: 0.95rem;
  }

  .DLEPush-notification .DLEPush-message {
    font-size: 0.8rem;
  }
}

.DLEPush-notification.wrapper {
  overflow: hidden;
  word-break: break-word;
}