*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

/*
/ stylelint-disable selector-list-comma-newline-after
/ Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers)
*/
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-size: 1rem;
}
html, body {
    min-width: 320px; /* fail-safe */
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: var(--tpl-color-brand, #0000EE);
}

a:hover {
    color: var(--tpl-color-brand-light, #0000EE);
}

a:active {
    color: var(--tpl-color-brand-lighter, #FF0000);
}

a:hover {
    color: var(--tpl-color-brand-dark, #551A8B);
}

img {
    vertical-align: middle;
    border-style: none; /* Remove the border on images inside links in IE 10 - . */
}

svg {
    /*
    // Workaround for the SVG overflow bug in IE10/11 is still required.
    // See https://github.com/twbs/bootstrap/issues/26878
    */
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    /*
    //Prevent double borders
    */
}

label {
    /* Allow labels to use `margin` for spacing. */
    display: inline-block;
    margin-bottom: .5rem;
}

/*
// Remove the default `border-radius` that macOS Chrome adds.
//
// Details at https://github.com/twbs/bootstrap/issues/24093
*/
button {
    border-radius: 0;
    cursor: pointer;
}

/*
// Work around a Firefox/IE bug where the transparent `button` background
// results in a loss of the default `button` focus styles.
//
// Credit: https://github.com/suitcss/base/
*/
button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    /* Remove the margin in Firefox and Safari font-family: inherit; */
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible; /* Show the overflow in Edge */
}

button,
select {
    text-transform: none; /* Remove the inheritance of text transform in Firefox */
}

/*
// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
//    controls in Android 4.
// 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/* Remove inner border and padding from Firefox, but don't restore the outline like Normalize. */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box; /* 1. Add the correct box sizing in IE 10- */
    padding: 0; /* 2. Remove the padding in IE 10- */
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    /*
    // Remove the default appearance of temporal inputs to avoid a Mobile Safari
    // bug where setting a custom line-height prevents text from being vertically
    // centered within the input.
    // See https://bugs.webkit.org/show_bug.cgi?id=139848
    // and https://github.com/twbs/bootstrap/issues/11266
    */
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto; /* Remove the default vertical scrollbar in IE. */
    /* Textareas should really only resize vertically so they don't break their (horizontal) containers. */
    resize: vertical;
}

fieldset {
    /*
// Browsers set a default `min-width: min-content;` on fieldsets,
// unlike e.g. `<div>`s, which have `min-width: 0;` by default.
// So we reset that to ensure fieldsets behave more like a standard block element.
// See https://github.com/twbs/bootstrap/issues/12359
// and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
*/
    min-width: 0;
    /* Reset the default outline behavior of fieldsets so they don't affect page layout. */
    padding: 0;
    margin: 0;
    border: 0;
}

/*
// 1. Correct the text wrapping in Edge and IE.
// 2. Correct the color inheritance from `fieldset` elements in IE.
*/
legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
    /* Add the correct vertical alignment in Chrome, Firefox, and Opera . */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {

    outline-offset: -2px;
    /* 2 . Correct the outline style in Safari . -webkit-appearance: none; */
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    /* Add the correct display in all browsers cursor: pointer; */
}

template {
    display: none;
    /* Add the correct display in IE */
}

/*
// Always hide an element with the `hidden` HTML attribute (from PureCSS).
// Needed for proper display in IE 10-.
*/
[hidden] {
    display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

h1, .h1 {
    font-size: 2rem;
}

h2, .h2 {
    font-size: 1.8rem;
}

h3, .h3 {
    font-size: 1.6rem;
}

h4, .h4 {
    font-size: 1.4rem;

}

h5, .h5 {
    font-size: 1.2rem;

}

h6, .h6 {
    font-size: 1.1rem;

}
/* inputs */
.release-tools .search_input,
.release-tools .search_input:hover,
.release-tools .search_input:focus,
.subscriber-form .username-block [type="email"],
.subscriber-form .username-block [type="email"]:hover,
.subscriber-form .username-block [type="email"]:focus,
.input.search-block-input.nc-search-input,
.input.search-block-input.nc-search-input:hover,
.input.search-block-input.nc-search-input:focus,
.filter-program [type="date"],
.filter-program [type="date"]:hover,
.filter-program [type="date"]:focus,
.filter-program [type="text"],
.filter-program [type="text"]:hover,
.filter-program [type="text"]:focus {
    width: 100%;
    height: auto;
    padding: 6px 8px;
    border-radius: 0;
    font-size: 14px;
    border: 0;
    background-color: #ffffff;
    box-shadow: inset 0 0 0 2px rgba(11, 123, 213, 1);
}
.release-tools .search_input:hover,
.release-tools .search_input:focus,
.subscriber-form .username-block [type="email"]:hover,
.subscriber-form .username-block [type="email"]:focus,
.input.search-block-input.nc-search-input:hover,
.input.search-block-input.nc-search-input:focus,
.filter-program [type="date"]:hover,
.filter-program [type="date"]:focus,
.filter-program [type="text"]:hover,
.filter-program [type="text"]:focus {
    font-size: 14px;
    box-shadow: inset 0 0 1px 2px rgba(11, 123, 213, 1);
}
/* Стиль заголовков */
.block_heading {
    min-height: unset;
    text-align: inherit;
    display: block;
    background-color: #cc0000;
    color: #fff;
    margin: 15px 15px 10px !important;
    font-weight: 500;
    padding: 8px 10px 5px;
}
h5.block_heading {
    font-size: 18px;
}
.block_heading .window-close {
    color: inherit !important;
    text-decoration: none !important;
    float: right;
}
.small {
    font-size: smaller;
}
.tpl-area-main {
    min-height: 100vh;
}
.tpl-area-modal {
    min-height: 0;
}
.menu-item-with-submenu > span::after,
.menu-item-with-submenu > a::after {
    font-weight: 300;
    content: " \25BE "; /* \25BF */
    color: #b5b5b5;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    margin: 9px 0 0 3px;
}
.menu-item-with-submenu:hover > span:after,
.menu-item-with-submenu:hover > a:after {
    content: " \25B4 "; /* \25B5 */
}
/* pagination */
.pagination { /* nav */
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    padding-top:1rem;
    padding-bottom: 1rem;
}

.pagination .pagination-item {
    display: inline-block;
    margin: 0.3rem;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    box-shadow: 0 0 0 2px #444;
    padding: 0.3rem;
    min-width: 25px;
    color: #444;
    border-radius: 1px;
    font-size: 14px;
}
.pagination .pagination-item:hover,
.pagination .pagination-item:active,
.pagination .pagination-item:focus { /* a */
    color: #ffffff;
    background-color: #444444;
}
.pagination .pagination-item.active {
    background-color: #cccccc;
}
.pagination .pagination-item.disabled { /* a */
    pointer-events: none;
    cursor: auto;
    box-shadow: 0 0 0 2px #cccccc;
    color: #cccccc; /*var(--tpl-color-brand-lighter);*/
}
.pagination .pagination-item.active.disabled {
    color: #ffffff;
}

/* buttons */
.tpl-button {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    display: inline-block;
    font-weight: 400 !important;
    text-align: center !important;
    vertical-align: middle !important;
    line-height: 100%;
    user-select: none !important;
    border: 1px solid transparent !important;
    padding: 0.475rem 0.75rem 0.275rem !important;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.tpl-button:hover,
.tpl-button:hover:focus,
.tpl-button:active {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    display: inline-block;
    font-weight: 400 !important;
    text-align: center !important;
    vertical-align: middle !important;
    user-select: none !important;
    border: 1px solid transparent !important;
    padding: 0.375rem 0.75rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
    margin: 0 !important;
    border-radius: 0 !important;
    text-decoration: none !important;
}

.tpl-button-link {
    color: var(--tpl-color-brand) !important;
    background-color: transparent !important;
    text-decoration: underline !important;
}

.table-valign-middle td {
    vertical-align: middle !important;
}
.fa-question-circle {
    color: var(--tpl-color-brand-white);
    text-shadow: 0 0 1px var(--tpl-color-brand);
    font-size: 24px;
    position: relative;
    top: 3px;
}
.tpl-button-rounded {
    border-radius: 0.40rem;
}
.tpl-button-round-left {
    border-top-left-radius: 0.4rem;
    border-bottom-left-radius: 0.4rem;
}
.tpl-button-round-right {
    border-top-right-radius: 0.4rem;
    border-bottom-right-radius: 0.4rem;
}
.tpl-button-small {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}
.tpl-button-small.tpl-button-rounded {
    border-radius: 0.2rem;
}
.tpl-button-small.tpl-button-rounded-left {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}
.tpl-button-small.tpl-button-rounded-right {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}
.tpl-button-big {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
}
.tpl-button-big.tpl-button-rounded {
    border-radius: 0.5rem;
}
.tpl-button-big.tpl-button-rounded-left {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}
.tpl-button-big.tpl-button-rounded-right {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}


.tpl-button-brand {
    border: 1px solid var(--tpl-color-brand);
    background-color: var(--tpl-color-brand);
    color: white;
}
.tpl-button-brand:hover {
    border: 1px solid var(--tpl-color-brand-dark);
    background-color: var(--tpl-color-brand-dark);
    color: white;
}
.tpl-button-brand-outline {
    border: 1px solid var(--tpl-color-brand);
    background-color: transparent;
    color: var(--tpl-color-brand);
}
.tpl-button-brand-outline:hover {
    border: 1px solid var(--tpl-color-brand);
    background-color: var(--tpl-color-brand);
    color: white;
}


.tpl-button-accent {
    border: 1px solid var(--tpl-color-background-accent);
    background-color: var(--tpl-color-background-accent);
    color: var(--tpl-color-foreground-main);
}
.tpl-button-accent:hover {
    border: 1px solid var(--tpl-color-background-accent-dark);
    background-color: var(--tpl-color-background-accent-dark);
    color: var(--tpl-color-foreground-main-dark);
}
.tpl-button-accent-outline {
    border: 1px solid var(--tpl-color-background-accent);
    background-color: transparent;
    color: var(--tpl-color-brand);
}
.tpl-button-accent-outline:hover {
    border: 1px solid var(--tpl-color-background-accent);
    background-color: var(--tpl-color-background-accent);
    color: var(--tpl-color-foreground-main);
}

.tpl-button-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.tpl-button-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}
.tpl-button-success-outline {
    color: #28a745;
    background-color: transparent;
    background-image: none;
    border-color: #28a745;
}
.tpl-button-success-outline:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.tpl-button-error {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.tpl-button-error:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}
.tpl-button-error-outline {
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border-color: #dc3545;
}
.tpl-button-error-outline:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.tpl-button-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.tpl-button-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}
.tpl-button-warning-outline {
    color: #ffc107;
    background-color: transparent;
    background-image: none;
    border-color: #ffc107;
}
.tpl-button-warning-outline:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.tpl-button-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.tpl-button-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}
.tpl-button-light-outline {
    border-color: #f8f9fa;
    background-color: transparent;
    color: #f8f9fa;
}
.tpl-button-light-outline:hover {
    border-color: #f8f9fa;
    background-color: #f8f9fa;
    color: #212529;
}

.tpl-button-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}
.tpl-button-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}
.tpl-button-dark-outline {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40;
}
.tpl-button-dark-outline:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.tpl-button-link {
    font-weight: 400;
    color: #007bff;
    background-color: transparent;
}
.tpl-button-link:hover {
    color: #0056b3;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent;
}

/* Растягивание блока с содержимым контейнера на 100% высоты этого контейнера — для применения position: sticky внутри него */
.tpl-container, .tpl-container > .tpl-block-list { display: flex;}
.tpl-container > .tpl-block-list, .tpl-container > .tpl-block-list > .tpl-block-list-objects { width: 100% }

.ytp-button:focus, .ytp-button {
    outline: 0;
}
.ytp-large-play-button {
    border: none;
    padding: 0 !important;
    color: inherit;
    text-align: inherit;
    font-size: 100%;
    font-family: inherit;
    cursor: pointer;
    line-height: inherit;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48px;
    height: 28px;
    margin-left: -24px;
    margin-top: 0;
    opacity: 0.9;
    -moz-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    -webkit-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    z-index: 63;
    background-color: transparent !important;
}
.teaser:hover .ytp-large-play-button {
    opacity: 1;
}
.html5-video-player svg {
    pointer-events: none;
}
.ytp-large-play-button svg {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.ytp-large-play-button-bg {
    -moz-transition: fill .1s cubic-bezier(0.4,0.0,1,1),fill-opacity .1s cubic-bezier(0.4,0.0,1,1);
    -webkit-transition: fill .1s cubic-bezier(0.4,0.0,1,1),fill-opacity .1s cubic-bezier(0.4,0.0,1,1);
    transition: fill .1s cubic-bezier(0.4,0.0,1,1),fill-opacity .1s cubic-bezier(0.4,0.0,1,1);
    fill: #212121;
    fill-opacity: .8;
}
.teaser:hover .ytp-large-play-button-bg,
.ytp-large-play-button-bg:hover {
    -moz-transition: fill .1s cubic-bezier(0.0,0.0,0.2,1),fill-opacity .1s cubic-bezier(0.0,0.0,0.2,1);
    -webkit-transition: fill .1s cubic-bezier(0.0,0.0,0.2,1),fill-opacity .1s cubic-bezier(0.0,0.0,0.2,1);
    transition: fill .1s cubic-bezier(0.0,0.0,0.2,1),fill-opacity .1s cubic-bezier(0.0,0.0,0.2,1);
    fill: #f00;
    fill-opacity: 1;
}
.ytp-button:not([aria-disabled="true"]):not([disabled]):not([aria-hidden="true"]) {
    cursor: pointer;
}

.video-container {
    background: #000000;
    -moz-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    -webkit-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    text-align: center;
    padding: 0;
}
.video-container iframe {
    max-width: 100% !important;
}
@media screen and (min-width: 300px) {
    .video-container iframe {
        height: 220px;
    }
}
@media screen and (min-width: 768px) {
    .video-container iframe {
        height: 320px;
    }
}
@media screen and (min-width: 1024px) {
    .video-container iframe {
        height: 510px;
    }
}

.tags {
    color: #666666;
    padding: 20px 0;
    font-size: 14px;
}
.tags a {
    color: #666666;
    display: inline-block;
    margin-left: 10px;
}
.tags a:before {
    content: "#";
}
.tags a + a {

}

.about-video .description {
    white-space: pre-line;
}
/*  кнопки навигации карусели  */
.owl-dots {
    text-align: center;
    position: relative;
    bottom: auto;
    right: 0;
    left: 0;
    width: 100%;
    top: 10px;
}
.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 50%;
}
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: #4993ff;
}

.owl-carousel .owl-nav button.owl-next.disabled,
.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel button.owl-dot.disabled,
.owl-carousel .owl-nav button.owl-next.disabled:hover,
.owl-carousel .owl-nav button.owl-prev.disabled:hover,
.owl-carousel button.owl-dot.disabled:hover {
    opacity: 0.2;
}
.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 0;
    margin-top: -16px; /* 50% от высоты кнопки */
    overflow: hidden;
}
.owl-next {
    left: auto;
    right: 0;
}
.owl-prev span,
.owl-next span {
    background: rgba(71, 71, 77, 0.91);
    color: #fff;
    font-size: 50px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

/* Авторы */
.account-about {
    display: flex;
    align-items: center;
    justify-content: stretch;
    margin: 0 0 10px 0;
}

.tpl-block-full .account-about {
    align-items: start;
}
.account-about article {
    padding: 0 20px 25px;
}
.account-about h3 {
    font-family: "Roboto";
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 12px;
    line-height: 120%;
}
.account-about a {
    color: rgba(61, 59, 59, 1);
    text-decoration: none !important;
}
.account-image img {
    box-shadow: 0 0 0 1px #ededed;
    max-width: 320px;
    height: auto;
}

@media screen and (max-width: 420px) {
    .tpl-body-site-1 h1 {
    }
}
@media screen and (max-width: 567px) {
    .account-image img {
        margin: 0 auto 10px;
    }
}
@media screen and (max-width: 737px) {
    .account-about {
        display: block;
        margin: 0 0 10px 0;
    }
    .account-about article {
        padding: 0 0 10px;
    }
    .account-image img {
        margin: 0 auto 10px;
    }
}
.authors-list .account-image img {
    box-shadow: 0 0 0 4px #ededed;
    width: 130px;
    max-width: 180px;
    height: auto;
    margin: 6px;
}

.authors-list .lastVideo a {
    color: var(--tpl-color-brand, #0000EE);
    text-decoration: underline;
}
.authors-list .owl-carousel .account-about {
    display: flex;
    justify-content: stretch;
    align-items: start;
}
.authors-list .owl-carousel .owl-dots {
    z-index: -1;
}
.authors-list .owl-carousel .owl-prev,
.authors-list .owl-carousel .owl-next {
    /* bottom: auto; */
    /* top: 100%; */
    /* margin: -34px 10px 0; */
}
@media screen and (max-width: 1000px) {
    .authors-list .owl-carousel .owl-prev,
    .authors-list .owl-carousel .owl-next {
        bottom: auto;
        top: 50%;
        margin-top: -16px;
    }
}

.authors-list .owl-carousel .account-image img {
    max-width: 150px;
}
.authors-list img.imageFeatured {
    width: 100px;
    height: auto;
}
.views {
    text-align: left;
    color: #444444;
    padding: 5px 0;
    font-size: 14px;
}
.views a {
    color: #666666;
    display: inline-block;
}
.external-link a:before,
.views a:before {
    /* content: "#"; */
}
.external-link  a {
    text-decoration: none;
}
.external-link  a + a,
.views a + a {
    margin-left: 10px;
}
.external-link {

}

.to-clipboard {
    cursor: pointer;
    text-decoration: underline dashed;
}
/* видео и выпуски - список */
.teasers .tpl-block-list-objects,
.tpl-block-list-objects .teasers,
.teasers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}
.teasers article {
    margin: 0 2px 15px;
    min-height: 250px;
    text-align: center;
    position: relative;
    width: 267px;
}
@media screen and (max-width: 667px) {
    .teasers {
        justify-content: center;
    }
    .teasers article {
        width: 300px;
    }
}
@media screen and (max-width: 420px) {
    .teasers {
        justify-content: center;
    }
    .teasers article {
        width: 320px;
    }
}
.teasers article img {
    box-shadow: 0 0 0 0 #ededed;
    max-width: 100%;
    height: auto;
}
.teasers article .img {
    box-shadow: 0 0 0 0 #ededed;
    width: 250px;
    height: 175px;
    overflow: hidden;
    text-align: center;
}
.teasers article .img .teaser-img {
    width: auto;
    height: 175px;
    margin: 0 -100% 0 -100%;
}
.teasers article a {
    text-decoration: none;
    color: inherit;
}
.teasers article a.program-url {
    margin: 2px 0 6px;
    display: inline-block;
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
    background: var(--tpl-color-brand-lighter);
    color: #fff;
    font-weight: 400;
    font-size: 10px;
    line-height: 110%;
}
.teasers article a.program-url:hover,
.teasers article a.program-url:active,
.teasers article a.program-url:focus {
    background: rgb(11,123,213);
    color: #fff;
}
.teasers article .views {
    text-align: left;
    color: #444444;
    padding: 5px 0;
    font-size: 14px;
}
.teasers article .views a {
    color: #666666;
    display: inline-block;
    margin-left: 10px;
}
.teasers article .views a:before {
    /* content: "#"; */
}
.teasers article .views a + a {

}

.teasers article h4 {

}
.teasers article .details {

    background-color: #ffffff54;
    text-align: left;
}
.teasers article .details h4 {
    font-size: 14px;
    font-family: "Roboto";
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Программы */
.programs h1 {
    text-align: center;
    margin: -12px 8px 10px !important;
    font-size: 30px !important;
    line-height: 30px !important;
}
.programs .teasers .tpl-block-list-objects,
.programs .tpl-block-list-objects .teasers,
.programs .teasers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.programs .teasers article {
    margin: 15px;
    min-height: 300px;
    text-align: center;
    position: relative;
    width: 100%;
}
.programs .teasers .teasers article {
    width: 267px;
}
.programs  .teasers article img {
    box-shadow: 0 0 0 0px #ededed;
    width: 240px;
    height: auto;
}
.programs .teasers article .img {
    box-shadow: 0 0 0 15px #ededed;
    width: 250px;
    height: 175px;
    overflow: hidden;
    text-align: center;
}
.programs .teasers article .img .teaser-img {
    width: auto;
    height: 175px;
    margin: 0 -100% 0 -100%;
}
.programs .teasers article a {
    text-decoration: none;
    color: inherit;
}
.programs .teasers article h4 {

}
.programs .teasers article .details {
    position: absolute;
    top: 200px;
    bottom: auto;
    left: 0;
    right: 0;
    background-color: transparent;
    text-align: center;
}
.programs .teasers article .details h4 {
    font-size: 14px;
    font-family: "Roboto";
    font-weight: 400;
    margin-top: 14px;
    margin-bottom: 10px;
}
.program-description {
    position: relative;
}
.program-description_text {
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    color: inherit;
    font-size: 1.6em;
    padding: 10px 5vw;
    line-height: 160%;
    align-items: center;
    overflow: hidden;
}
@media screen and (max-width: 800px) {
    .program-description_text {
        font-size: 1em;
    }
}
@media screen and (max-width: 420px) {
    .program-description_text {
        font-size: .8em;
    }
}
.program-description_text.static {
    position: static;
}
.program-description_text p {
    text-overflow: ellipsis;
}
.program-description_text p mark {
    background-color: #00000073;
    color: #fff;
}
.program-description_text.static p mark {
    background-color: transparent;
    color: inherit;
}
.program-description_image {
    position: relative;
    z-index: 0;
}
.program-description_image img {
    width: 100%;
    height: auto;
    opacity: .9;
}
/* Программы - категоии */
.programs.categories .teasers .tpl-block-list-objects,
.programs.categories .tpl-block-list-objects .teasers,
.programs.categories .teasers {
    display: block;
}
.programs.categories .teasers article.program {
    margin: 0 0 15px;
    min-height: unset;
    text-align: inherit;
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
    align-items: baseline;
    background-color: #cc0000;
    color: #fff;
}
.programs.categories .teasers article a {
    text-decoration: none;
    color: inherit;
}
.programs.categories .teasers article a.program-url {
    color: #fff;
}
.programs.categories div.teasers .program.teaser small.program_counter .ti-more-alt {
    position: relative;
    top: 6px;
}
.programs.categories .teasers article .img {
    box-shadow: 0 0 0 0 #ededed;
    width: auto;
    height: auto;
    flex: .71;
    padding: 5px 20px 5px 5px;
}
.programs.categories .teasers article .img .teaser-img {
    box-shadow: 0 0 0 5px #ededed;
    width: 100%;
    max-width: 150px;
    height: auto;
    margin: 0;
}
.programs.categories .teasers article h4 {
    font-size: 20px;
    margin: 5px 0;
    font-weight: 500;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.programs.categories .teasers article h4 .program_counter {
    font-size: 16px;
    color: #E5E5E5;
}
.programs.categories .teasers article .details {
    position: static;
    text-align: inherit;
    flex: 2;
    padding: 0 25px;
}
.programs.categories .teasers article .details {
    position: static;
    text-align: inherit;
    flex: 2;
    padding: 0 10px 0 10px;
}
.programs.categories .nav a + a:before {

}
.programs.categories .nav a + a {

}
/* Авторы - Публицисты */
.authors h1 {
    text-align: center;
    margin: -12px 8px 10px !important;
    font-size: 30px !important;
    line-height: 30px !important;
}
.authors .teasers .tpl-block-list-objects,
.authors .tpl-block-list-objects .teasers,
.authors .teasers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.authors .teasers article {
    margin: 0 2px 15px;
    min-height: 300px;
    text-align: center;
    position: relative;
}
.authors  .teasers article img {
    box-shadow: 0 0 0 1px #ededed;
    width: 240px;
    height: auto;
}
.authors .teasers article .img {
    box-shadow: 0 0 0 0 #ededed;
    width: 250px;
    height: 175px;
    overflow: hidden;
    text-align: center;
    padding: 1px;
}
.authors .teasers article .img .teaser-img {
    width: auto;
    height: 175px;
    margin: 0 -100% 0 -100%;
}
.authors .teasers article a {
    text-decoration: none;
    color: inherit !important;
}
.authors .teasers article h4 {

}
.authors .teasers article .details {
    position: absolute;
    top: 200px;
    bottom: auto;
    left: 0;
    right: 0;
    background-color: #ffffff54;
    text-align: center;
}
.authors .teasers article .details h3 {
    font-size: 24px;
    font-family: "Roboto";
    font-weight: 400;
    margin-top: 14px;
    margin-bottom: 10px;
    text-align: center;
}

/* Авторы на главной */

.authors_on_left .teasers .tpl-block-list-objects,
.authors_on_left .tpl-block-list-objects .teasers,
.authors_on_left .teasers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.authors_on_left .teasers article {
    margin: 15px;
    min-height: 120px;
    text-align: center;
    position: relative;
    display: flex;
    font-size: 14px;
    width: auto;
}
.authors_on_left .teasers article img {
    box-shadow: none;
    width: 90px;
    height: auto;
}
.authors_on_left .teasers article .img {
    box-shadow: 0 0 0 5px #ededed;
    width: 90px;
    height: 90px;
    overflow: hidden;
    text-align: center;
    background-color: #fff;
}
.authors_on_left .teasers article .img .teaser-img {
    width: auto;
    height: 75px;
    margin: 0 -100% 0 -100%;
}
.authors_on_left .teasers article a {
    text-decoration: none;
    color: inherit !important;
}
.authors_on_left .teasers article h4 {

}
.authors_on_left .teasers article .details {
    position: absolute;
    top: 95px;
    bottom: auto;
    left: 0;
    right: 0;
    background-color: #ffffff54;
    text-align: center;
}
.authors_on_left .teasers article .details h4 {
    font-size: 14px;
    font-family: "Roboto";
    font-weight: 400;
    margin-top: 14px;
    margin-bottom: 10px;
}
/* Роделитьчя в соц-сетях */
.yandex-share {
    padding: 25px 0 25px 0;
}

.release-members {
    color: #666666;
}
.release-members dd {
    margin: 5px 5px 15px 20px;
    padding: 0;
}
.release-members dd a {
    color: #333333;
    text-decoration: none !important;
    border-bottom: 1px dashed;
}

/* Фильтры и сортировки */
.release-tools {
    background-color: #ededed;
    margin: 0 0 20px;
}
.release-tools .sorting {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.release-tools .search_input {
    max-width: 200px;
}
.release-tools .sorting > div {
    flex-grow: 1;
    color: #444444;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    padding: 10px 2px;
}
.release-tools .sorting > div a {
    color: #666666;
    text-decoration: none !important;
    border-bottom: 1px dashed;
    font-size: 14px;
}
.release-tools .sorting > div a.active {
    color: #000000;
}
.release-tools .sorting .search-videos button {

}

/* Слайдер в шапке */

.tpl-block-list-objects .slider.teasers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    overflow: hidden;
    height: 270px;
}
.tpl-block-list-objects .slider.teasers .article {
    min-height: 100%;
    text-align: center;
    position: relative;
    display: block;
    box-shadow: 0 0 0 5px #fff;
}
.tpl-block-list-objects .slider.teasers .article img {
    width: auto;
    /* max-width: 390px; */
    height: auto;
    box-shadow: none;
    margin: auto;
}
.tpl-block-list-objects .slider.teasers .article a {
    text-decoration: none;
    color: #00afea !important;
}
.tpl-block-list-objects .slider.teasers .article h4 {

}
.tpl-block-list-objects .slider.teasers .article .details {
    position: relative;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #47474d;
    padding: 20px;
}
.tpl-block-list-objects .slider.teasers .article .details h4 {
    font-size: 20px;
    font-family: "Roboto";
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
    color: #fafafa;
}

.slider.teasers {

}
/* Слайдер под шапкой */
.slider.teasers .owl-nav {
    color: #888;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    border-radius: 50%;
    opacity: .7;
    color: var(--tpl-color-brand, #0000EE) !important;
}
.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel button.owl-dot:hover {
    border-radius: 50%;
    opacity: 1;
    color: var(--tpl-color-brand, #0000EE) !important;
}
.slider.teasers .owl-nav .disabled {
    opacity: 0.2;
}
.slider.teasers .owl-prev,
.slider.teasers .owl-next {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 0;
    margin-top: -16px;
    overflow: hidden;
}
.slider.teasers .owl-next {
    left: auto;
    right: 0;
}

.slider.teasers .owl-prev span,
.slider.teasers .owl-next span {
    background: rgba(71, 71, 77, 0.91);
    color: #fff;
    font-size: 50px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

/* Статьи в списке видео на Главной */
.teaser.list-aticles, .tpl-block-list-objects .main-page.teasers article.list-aticles {
    background-color: #f5f5f5;
    box-shadow: 0 0 0 1px #ededed;
    padding-bottom: 1px;
}

.teaser.list-aticles h3.block_heading {
    margin: 0 0 10px !important;
}
.teaser.list-aticles ul,
.teaser.list-aticles ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.teaser.list-aticles ul li h4,
.tpl-block-list-objects .main-page.teasers article.teaser.list-aticles ul li .details h4 {
    font-size: 18px;
    padding-left: 15px;
}
.teaser.list-aticles ul li h4::before {
    content: "• ";
    font-size: 16px;
    color: #00AA00;
    margin-left: -10px;
}

/* Главная */

.tpl-block-list-objects .main-page.teasers {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tpl-block-list-objects .main-page.teasers article {
    margin: 0 2px 15px;
    min-height: 230px;
    text-align: inherit;
    position: relative;
    max-width: 100%;
    width: auto;
}

.tpl-block-list-objects .main-page.teasers article img {
    width: 100%;
    height: auto;
    box-shadow: none;
}

@media screen and (max-width: 667px) {
    .tpl-block-list-objects .main-page.teasers .two-items {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .tpl-block-list-objects .main-page.teasers article {
        width: 300px;
    }
    .tpl-block-list-objects .main-page.teasers article.item--0 {
        flex-basis: 100%;
        width: 100%;
    }
}
@media screen and (max-width: 420px) {
    .tpl-block-list-objects .main-page.teasers {
        justify-content: center;
    }
    .tpl-block-list-objects .main-page.teasers .two-items {
        display: block;
        width: auto;
    }
    .tpl-block-list-objects .main-page.teasers article {
        width: 320px;
    }
    .tpl-block-list-objects .main-page.teasers article.item--0 {
        flex-basis: 100%;
        width: 100%;
    }
}
/* Слайлер внутренних */
.inner-slider.teasers {
    height: 280px;
    width: 100%;
    max-width: 850px;
    background: #ffffff;
    box-shadow: 0 0 0 1px #ededed;
    padding-top: 10px;
    overflow: hidden;
}
.inner-slider.teasers article {
    margin: 0 auto;
}
.inner-slider.teasers .owl-nav {
    color: #888;
}

.inner-slider.teasers .owl-nav .disabled {
    opacity: 0.2;
}
.inner-slider.teasers .owl-prev,
.inner-slider.teasers .owl-next {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 0;
    margin-top: -25px;
    overflow: hidden;
}
.inner-slider.teasers .owl-next {
    left: auto;
    right: 0;
}

.inner-slider.teasers .owl-prev span,
.inner-slider.teasers .owl-next span {
    background: rgba(71, 71, 77, 0.91);
    color: #fff;
    font-size: 50px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.tpl-block-list-objects .main-page.teasers article.item--0 {
    flex-basis: auto;
}

@media screen and (min-width: 300px) {
    .tpl-block-list-objects .main-page.teasers article .details h4,
    .tpl-block-list-objects .main-page.teasers article img {
        width: auto;
        max-width: 100%;
    }
    .tpl-block-list-objects .main-page.teasers article.item--0 {
        flex-basis: auto;
    }
    .programs.categories .teasers article .details .description {
        padding-bottom: 20px;
    }
}
@media screen and (min-width: 668px) {
    .tpl-block-list-objects .main-page.teasers article .details h4,
    .tpl-block-list-objects .main-page.teasers article img {
        width: 210px;
    }
    .tpl-block-list-objects .main-page.teasers article.item--0 .details h4,
    .tpl-block-list-objects .main-page.teasers article.item--0 img {
        width: 100%;
        max-width: 100%;
    }
    .tpl-block-list-objects .main-page.teasers article.item--0 {
        align-self: flex-start;
    }
    .tpl-block-list-objects .main-page.teasers .two-items {
        align-self: flex-start;
    }
    .tpl-block-list-objects .main-page.teasers article.item--0 .details h4 {
        font-size: 20px;
    }
    .tpl-block-list-objects .main-page.teasers {
        display: flex !important;
        flex-wrap: wrap;
    }
}
@media screen and (min-width: 1025px) {
    .tpl-block-list-objects .main-page.teasers article .details h4,
    .tpl-block-list-objects .main-page.teasers article img {
        width: 267px;
    }
    .tpl-block-list-objects .main-page.teasers article.item--0 img {
        width: 100%;
        max-width: 588px;
    }
    .tpl-block-list-objects .main-page.teasers article.item--0 .details h4 {
        width: 100%;
        max-width: 617px;
        font-size: 24px;
    }
}
@media screen and (min-width: 668px) {
    .tpl-block-list-objects .main-page.teasers article.item--0 {
        flex-basis: 50%;
    }
}
@media screen and (min-width: 737px) {
    .tpl-block-list-objects .main-page.teasers article.item--0 {
        flex-basis: 65%;
    }
}
@media screen and (min-width: 750px) {
    .tpl-block-list-objects .main-page.teasers article.item--0 {
        flex-basis: 60%;
    }
}
@media screen and (min-width: 1000px) {
    .tpl-block-list-objects .main-page.teasers article.item--0 {
        flex-basis: 50%;
    }
}
@media screen and (min-width: 1186px) {
    .tpl-block-list-objects .main-page.teasers article.item--0 {
        flex-basis: 66%;
    }
}
.tpl-block-list-objects .main-page.teasers article a {
    font-family: "Roboto";
}
.tpl-block-list-objects .main-page.teasers article .details {
    background-color: transparent;
    padding: 0;
}
.tpl-block-list-objects .main-page.teasers article .details h4 {
    font-size: 14px;
    font-family: "Roboto";
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 10px;
}

.tpl-block-list-objects .main-page.teasers {

}
.tpl-block-list-objects .main-page.teasers .owl-nav .disabled {
    opacity: 0.2;
}
.tpl-block-list-objects .main-page.teasers .owl-prev,
.tpl-block-list-objects .main-page.teasers .owl-next {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 0;
    margin-top: -25px;
    overflow: hidden;
}
.tpl-block-list-objects .main-page.teasers .owl-next {
    left: auto;
    right: 0;
}

.tpl-block-list-objects .main-page.teasers .owl-prev span,
.tpl-block-list-objects .main-page.teasers .owl-next span {
    background: rgba(71, 71, 77, 0.91);
    color: #fff;
    font-size: 50px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
/* Комментанрии */

.comments-wall {
    font-size: 14px;
    font-family: "Roboto";
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
    color: #444444;
    background: #fefefe;
    padding: 10px;
}
.comments-wall ul {
    padding: 0;
    list-style: none;
}
.comments-wall ul ul {
}
.comments-block {

}

.comments-wall .comments-block-content:first-child {
    margin-left: 0;
}
.comments-wall .comments-block-content {
    margin: 20px 0 0 25px;
    padding: 0;
}
.comments-wall .comments-block-content .comments-block-content {

}
.comments-wall .comments-block-icon {
    width: 20px;
    float: left;
    margin-right: 6px;
}
.comments-wall .comments-block .comments-block-user a {
    color: #affafa;
}
.comments-wall .comments-block .comments-block-user {
    color: #affafa;
    display: flex;
    margin-bottom: 10px;
    background: #47474d;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
}
.comments-wall .comments-block-reply {

}
.comments-add-block {

}
.comments-label {
    padding: 10px 0 0;
    margin: 0 0 10px;
    display: block;
}
.comments-textarea {
    margin: 0;
}
.comments-wall * {
    box-sizing: border-box;
}
.comments-wall .button:hover,
.comments-wall .button {
    border-radius: 4px;
    cursor: pointer;
    border-width: 0;
    border-style: solid;
    background-color: rgba(204, 0, 0, 1) !important;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none !important;
    padding: 10px 20px !important;
    margin: 10px;
}

.comments-wall button {

}

.comments-wall label input {
    display: block;
    width: 320px;
    max-width: 100%;
    padding: 8px 6px;
}
.comments-wall .comments-block-body-links a + a {
    margin-left: 20px;
}
.comments-wall .comments-block-body-text {
    padding: 4px 6px;
    margin: 2px 0 10px;
    background-color: #fefefe;
    box-shadow: 0 0 0 1px #ededed;
}
#nc_commentTextArea {
    max-width: 100%;
}
.comments-wall .comments-block .comments-block-user {
    color: var(--tpl-color-foreground-accent-lightest);
    background: var(--tpl-color-background-accent-dark);
}
.comments-wall .comments-block .comments-block-user a {
    color: var(--tpl-color-brand);
}
.comments-wall .comments-block-content {
    margin: 2rem 0 0 2rem;
    padding: 0;
}
.comments-wall .comments-block-reply + .comments-block-reply {
    margin-left: 2rem;
}
.comments-wall .comments-block-icon {
    color: var(--tpl-color-background-main-dark);
    transform: rotate(180deg)
}
.comments-block-rating .list-group {
}
.comments-block-rating .list-group-item {
    padding: 0.29rem 0.75rem;
}
.comments-block-rating .list-group-item + .list-group-item {

}
/* Реклама в шапке */

.header-reklama {
    background-color: #ffffff;
    box-shadow: 0 0 0 1px #0000003d;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
.header-reklama-item {
    padding: 0;
    margin: 0;
    text-align: center;
    height: 100%;
    width: auto; /* @todo конфиг */
}
.header-reklama-item > a {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
}
.header-reklama-item-code {

}
.header-reklama-item-image {

}
.header-reklama-item-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 120px;
}

/* Листалка ПРЕД / СЛЕД */

.video-pagination {
    background-color: #000;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.video-pagination .video-pagination-inner {
    display: flex;
    align-items: center;
}
.video-pagination .video-pagination-inner .video-pagination-link {
    color: #fafafa;
    text-decoration: none !important;
    padding: 0 10px;
    font-size: 12px;
}

.video-pagination .video-pagination-inner .video-pagination-link.prev--link {
    text-align: left;
}

.video-pagination .video-pagination-inner .video-pagination-link.prev--link {
    text-align: right;
}

/* Главное меню */

div.tpl-block-15 .tpl-component-netcat-navigation-universal-menu ul > li > a, div.tpl-block-15 .tpl-component-netcat-navigation-universal-menu ul > li > span {
    display: inline-block;
    height: 33px;
    line-height: 33px;
    white-space: nowrap;
}
.menu-item .menu-submenu {
    display: none;
    background-color: rgba(245, 245, 245, 1);
    transition: all .5s ease-in-out;
    position: absolute;
    margin: -4px 0 0 0;
    box-shadow: 0 4px 4px 0 #55555569;
    top: auto;
    bottom: auto;
    left: auto;
}
.menu-item .menu-submenu > div {
    padding: 10px 20px 10px 0;
}
.menu-item:focus .menu-submenu,
.no-touchevents .menu-item:hover .menu-submenu { /* modernizr "no-touchevents" in action */
    display: block;
}

.menu-item .menu-submenu ul:first-child {
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
}
.menu-item .menu-submenu ul:first-child > li {
    text-align: left;
    width: 100%;
}
.menu-item .menu-submenu ul:first-child > li > a {
    text-decoration: none !important;
    font: normal 14px/120% "Roboto";
}
.menu-item .menu-submenu ul:first-child > li .menu-item-icon {
    height: 1rem;
    width: 1rem;
    position: absolute;
    margin: 5px 0 0 -20px;
}
.menu-item .menu-submenu ul:first-child > li > span,
.menu-item .menu-submenu ul:first-child > li > a >span {
    display: block;
    padding: 6px 8px;
    font: normal 14px/120% "Roboto";
}

@media screen and (max-width: 833px) {
    .menu-item .menu-submenu {
        display: block;
        position: static;
        box-shadow: none;
    }
    .menu-item a:focus span,
    .menu-item a:active span {
        background-color: var(--tpl-color-brand, #0000EE);
        color: #fff;
    }
    a:focus,
    a:active {
        text-decoration: underline;
    }
    .menu-item-with-submenu > span::after,
    .menu-item-with-submenu > a::after {
        position: absolute;
        margin: 0 0 0 10px;
    }
    .menu-item .menu-submenu li {
        padding: 0;
    }
}
.tpl-container.tpl-container-31,
.tpl-container.tpl-container-31 .tpl-block-container.tpl-block-list {
    flex-wrap: wrap;
}

/* Форма подписки */
.subscriber-content {
    padding: 0;
    text-align: center;
}
.subscriber-form .username-block {
    max-width: 300px;
    display: flex;
    align-items: flex-start;
    margin: 0;
    justify-content: space-evenly;
}
.subscriber-form label {
    margin: 0;
}
.subscriber-content .subscriber-caption {
    margin: 0 0 10px;
}
.subscriber-form .username-block [type="email"],
.subscriber-form .username-block [type="submit"] {
}
.subscriber-form .username-block [type="email"],
.subscriber-form .username-block [type="email"]:hover,
.subscriber-form .username-block [type="email"]:focus {
    width: 150px;
    font-size: 14px;
}

.subscriber-form .username-block [type="submit"] {
}
nav.breadcrumbs {
    font-size: small;
    display: inline-block;
    position: relative;
    top: -13px;
}
.breadcrumbs ul, .breadcrumbs li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumbs li {
    display: inline-block;
}
.breadcrumbs li {
    margin-left: 12px;
}
.breadcrumbs li:first-child {
    margin-left: 0;
}
.breadcrumbs li + li:before {
    content: "/";
    position: absolute;
    margin-left: -8px;
}
.breadcrumbs li a {
    color: #313131;
    text-decoration: none !important;
}
.breadcrumbs li a.active {

}
@media screen and (max-width: 600px) {
    nav.breadcrumbs {
        position: relative;
        top: auto;
    }
}
/* Управление кнопками */

.handle-with {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.handle-with__button {
    border-width: 0;
    border-style: solid;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 10px;
    margin: 0 6px;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none !important;
    text-align: center;
}
.handle-with__button_red {
    background-color: rgba(204, 0, 0, 1);
    color: rgba(255, 255, 255, 1) !important;
}
.handle-with__button_gold {
    background-color: #c57b27;
    color: rgba(255, 255, 255, 1) !important;
}
.handle-with__button_black {
    background-color: #313131;
    color: rgba(255, 255, 255, 1) !important;
}
.handle-with__button_black:hover {
    background-color: rgba(204, 0, 0, 1);
}

/* popup */
.mfp-inline-holder .mfp-content {
    background-color: #ffffff;
    padding: 10px 10px;
    max-width: 720px;
    height: auto;
    margin: auto;
    box-shadow: inset 0 0 0 10px #ededed;
}
.mfp-inline-holder .mfp-content ul li {
    line-height: 150%;
    font-weight: 400;
}
.mfp-wrap .mfp-close {
    padding: 0 !important;
    font-size: 2em;
    top: 12px;
    right: 10px;
    opacity: 1;
    width: 1em;
    height: 1em;
    line-height: 24px;
    background-color: transparent;
}
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:focus,
.mfp-wrap .mfp-close:hover {
    background-color: var(--tpl-color-brand-light);
}
.mfp-inline-holder .mfp-content .mpf-header {
    background: #cc0000;
    color: #ffffff;
    font-weight: 500;
    font-size: 24px;
    border-bottom: 1px solid #313131;
    padding: 10px;
}

/* табы */

.tabs-items {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    background-color: #ededed;
}

.tabs-items li {
    list-style: none;
    margin: 0;
    padding: 0;
    float: left;
}

.tabs-items li a {
    background-color: inherit;
    display: block;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    color: #313131 !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    border-left: 1px solid #ededed;
    border-top: 1px solid #ededed;
    border-right: 1px solid #ededed;
}

.tabs-items li a:hover {
    background-color: #ddd;
}

.tabs-items li a.active {
    background-color: #ccc;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.tabs-content {
    display: none;
    padding: 6px 12px;
    border-top: none;
}
.tabs-content.active {
    display: block;
}
.tabs-content {
    animation: fadeEffect .5s; /* Fading effect takes 1 second */
}
/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

.youtube-ytsubscribe {
    padding: 10px 10px 0;
    display: block;
    text-align: center;
}
.youtube-ytsubscribe_text {
    font-size: small;
    color: rgb(68, 68, 68);
    display: block;
}
.yandex_share_custom__actionfull {
    float: right;
    display: flex;
    margin: -10px 0 0;
    max-width: 100%;
}
.yandex_share_custom__actionfull .yandex-share {
    padding: 0;
    white-space: nowrap;
    overflow: hidden;

}
.yandex_share_custom__actionfull .youtube-ytsubscribe {
    display: inline-block;
    margin: 0 5px 0 0;
    padding: 0;
    text-align: unset;
    max-width: 122px;
}
.yandex_share_custom__actionfull .youtube-ytsubscribe_text {
    display: none;
}
/* ссылки и пр. над списками видео */
.top-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    top: -10px;
    position: relative;
    margin-bottom: -30px;
}
.top-tools > div {
    margin-bottom: 10px;
}
.top-tools_video {
    float: left;
    margin: -4px 0 0;
    white-space: nowrap;
}
.top-tools_video .tpl-button {
    font-size: 13px !important;
    line-height: 19px !important;
    padding: 3px 6px !important;
    margin: 0 !important;
}
.top-tools_video .tpl-button.active {
    background-color: #0056b3 !important;
    color: #ffffff !important;
}
/* Фильтрация выпусков */
.filter-program {
    max-width: 320px;
    width: 100%;
    padding: 10px 20px;
}
.filter-program label {
    display: inline-block;
    width: auto;
}
.filter-program [type="date"] {

}
.filter-program .type-date {
    display: flex;
}
.filter-program .type-date label {
    width: 50%;
}
.filter-program .srchPatName {
    width: 270px !important;
}
.filter-program .srchPatUser,
.filter-program .srchPatUser:hover,
.filter-program .srchPatUser:focus {
    width: 270px !important;
    padding: 6px 8px;
    border-radius: 0;
    font-size: 13px;
    background-color: #ffffff;
    border: 2px solid rgba(11, 123, 213, 1);
    box-shadow: none;
}
.filter-program .calend_dm {
    width: 32px !important;
}
.filter-program .calend_y {
    width: 48px !important;
}
.filter-program [type="submit"] {
    margin: 0;
}
.info-message {
    color: royalblue;
}
.error-message {
    color: red;
}
.success-message {
    color: #7CFC00;
}

.loading,
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #cc0000;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin: auto auto;
    transform: translate(-50%, -50%);
    left: calc(50% - 60px);
    position: absolute;
    top: calc(50% - 120px);
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.text-center {
    text-align: center !important;
}
.simplemodal-overlay {
    background-color: #9C9294;
    cursor: wait;
    filter: alpha(opacity=50);
    height: 100%;
}
#nc_auth_layer {
    position: absolute;
    z-index: 1041;
    left: 0;
    top: 60px;
    right: 0;
    bottom: auto;
    margin: auto auto;
    padding: 0 !important;
    max-width: 320px;
}
.simplemodal-close {
    padding: 0 !important;
    display: inline-block;
    position: absolute;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 0;
    top: 12px;
    right: 10px;
    opacity: 1;
    width: 1em;
    height: 1em;
    background-color: var(--tpl-color-brand-blue);
    text-align: center;
    cursor: pointer;
}
.simplemodal-close:focus,
.simplemodal-close:active,
.simplemodal-close:hover {
    background-color: var(--tpl-color-brand);
}
.simplemodal-close:before {
    content: " x ";
    line-height: .9;
}
.webcaster-auth {
    text-align: center;
}