/* ДЛЯ ОДНОЙ РУБРИКИ */

/* ------------------------------------------ */
/* СПИСОК - НАЗВАНИЕ - БЕЗ НОМЕРА - 1 КОЛОНКА */
/* ------------------------------------------ */

/* ДИЗАЙН 1 */
/* -------- */

/* ----------------- */
/* ПАНЕЛЬ УПРАВЛЕНИЯ */
/* ----------------- */

:root {

/* Добавить -reverse после row, чтобы Перевернуть НЕчётные карточки */
/* Должно получиться row-reverse */
--reverse-panel-6: row;

/* Закругление карточки */
--radius-panel-6: 25px;

/* Фон карточки */
--bg-panel-6: #ffffff;

/* Закругление рамки обложки */
--border-radius-panel-6: 15px;

/* НАСТРОЙКИ КОНТЕНТА КАРТОЧКИ */
/* --------------------------- */

	/* Количество строк в заголовке материала */
	--title-lines-panel-6: 3;

	/* Цвет заголовка материала */
	--title-color-panel-6: #000000;

	/* Жирность заголовка материала */
	--title-weight-panel-6: 500;

	/* Размер заголовка */
	--title-size-panel-6: 1.9rem;

/* ОТКРЫТЫЙ МАТЕРИАЛ */
/* ----------------- */

	/* Фон ОТКРЫТОГО материала при наведении */
	--open-bg-hover-panel-6: #DFECE0;
	
	/* Прозрачность контента при наведении на ОТКРЫТЫЙ материал */
	--content-opacity-open-hover-panel-6: 0.3;

/* ЗАКРЫТЫЙ МАТЕРИАЛ */
/* ----------------- */

	/* Фон ЗАКРЫТОГО материала при наведении */
	--close-bg-hover-panel-6: #EED5D5;
	
	/* Прозрачность контента при наведении на ЗАКРЫТЫЙ материал */
	--content-opacity-closed-hover-panel-6: 0.3;

/* ЗАКРЫТЫЙ МАТЕРИАЛ АВТОТРЕНИНГА */
/* ------------------------------ */

	/* Фон материала Автотренинга при наведении */
	--auto-bg-hover-panel-6: #D8D8D8;
	
	/* Прозрачность контента при наведении на ЗАКРЫТЫЙ материал АВТОТРЕНИНГА */
	--content-opacity-auto-hover-panel-6: 0.3;

/* НАСТРОЙКИ ИНДИКАТОРОВ */
/* --------------------- */
	
	/* Закругление замка доступности */
	--lock-icon-radius-panel-6: 10px;
	
	/* Фон замка доступности */
	--lock-icon-bg-panel-6: rgb(255, 255, 255, 0.9); 
	
	/* Фон нового статуса НЕ НАЧАТ */
	--new-status-not-started-color-panel-6: #ffffff;
	
	/* Цвет рамки вокруг статуса НЕ НАЧАТ */
	--new-status-not-started-border-color-panel-6: #e6e6e6;
	
	/* Фон нового статуса ПРОВЕРЯЕТСЯ */
	--new-status-checking-color-panel-6: #389de5;

	/* Фон нового статуса ВЫПОЛНЕНО */
	--new-status-done-color-panel-6: #71d43a;

	/* Фон нового статуса НЕ ВЫПОЛНЕНО */
	--new-status-not-right-color-panel-6: #ff2828;

	/* Иконка статуса ПРОВЕРЯЕТСЯ */
	/* "\f253" - песочные часы */
	--new-icon-checking-panel-6: "\f253";

	/* Иконка статуса ВЫПОЛНЕНО */
	/* "\f00c" - галочка */
	/* "\f118" - смайл */
	--new-icon-done-panel-6: "\f00c";

	/* Иконка статуса НЕ ВЫПОЛНЕНО */
	/* "\f00d" - крестик */
	/* "\f119" - грустный смайлик */
	--new-icon-not-right-panel-6: "\f00d";
	
	/* Иконка статуса с ТАЙМЕРОМ */
	/* "\f017" - часы */
	--new-icon-countdown-panel-6: "\f017";

/* ПЛАШКИ НА КАРТОЧКЕ */
/* ------------------ */

	/* Текст на плашке «ДЗ ПРОВЕРЯЕТСЯ» */
	/* ВАЖНО! Измените текст только между кавычками '' */
	--holder-checking-text-panel-6: "Домашка проверяется. Это займёт меньше 1-го часа";

	/* Текст на плашке ОТКЛОНЁННОГО МАТЕРИАЛА */
	--holder-not-right-text-panel-6: "Пересдайте домашку. Откройте и отредактируйте ответ";
	
	/* Фон плашки «ДЗ проверяется» */
	--holder-checking-bg-panel-6: #389de5;
	
	/* Цвет текста на плашке «ДЗ проверяется» */
	--holder-checking-color-panel-6: #ffffff;
	
	/* Фон плашки «Отклонённое ДЗ» */
	--holder-not-right-bg-panel-6: #ff2828;
	
	/* Цвет текста на плашке «Отклонённое ДЗ» */
	--holder-not-right-color-panel-6: #ffffff;
	
	/* Фон плашки с таймером */
	--holder-countdown-bg-panel-6: #389de5;
	
	/* Цвет текста на плашке с таймером */
	--holder-countdown-color-panel-6: #ffffff;

}

/* Раскомментировать, чтобы УБРАТЬ ПЛАШКУ со Статусом ДЗ */

body:not(.custom-super-style) .site-content .materials-row .material-item:has([class*="status"][class*="checking"]):after,
body:not(.custom-super-style) .site-content .materials-row .material-item:has([class*="not-right"]):after {
	/* display: none!important; */
}

/* 1. БЛОК ВСЕХ БЛОКОВ */
/* ------------------- */

/* Корректируем сетку и порядок карточек */

body:not(.custom-super-style) .site-content .materials-row .container .row,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .container .row {
    display: flex;
    flex-wrap: wrap;
}

/* Убираем влияние опции «Материалы в 1 колонку» */

body:not(.custom-super-style) .site-content .materials-row.one-in-line .container {
    max-width: none;
}

@media (min-width: 1400px) {

body:not(.custom-super-style) .site-content .materials-row .container,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .container {
    width: 750px;
}
}

@media (min-width: 1200px) and (max-width: 1399px) {

body:not(.custom-super-style) .site-content .materials-row .container,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .container {
    width: 750px;
}
}

@media (min-width: 992px) and (max-width: 1199px) {

body:not(.custom-super-style) .site-content .materials-row .container,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .container {
    width: 750px;
}
}

@media (min-width: 768px) and (max-width: 991px) {

body:not(.custom-super-style) .site-content .materials-row .container,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .container {
    width: 610px;
}
}

@media (min-width: 460px) and (max-width: 767px) {

body:not(.custom-super-style) .site-content .materials-row .container,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .container {
	width: 90%;
    max-width: 90%;
}
}

@media (min-width: 320px) and (max-width: 459px) {

body:not(.custom-super-style) .site-content .materials-row .container,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .container {
	width: 90%;
    max-width: 90%;
}
}

/* 2. БЛОК ВСЕЙ КАРТОЧКИ */
/* --------------------- */

/* Общие настройки */

body:not(.custom-super-style) .site-content .materials-row .col-md-6,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .col-md-12 {
    float: none;
}

/* Количество карточек в ряду на всех экранах */

body:not(.custom-super-style) .site-content .materials-row .col-md-6,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .col-md-12 {
    width: 100%;
}

/* Карточка урока */
/* Рамка вокруг обложки и описания */

body:not(.custom-super-style) .site-content .materials-row .material-item {
	border-radius: var(--radius-panel-6);
	padding: 10px;
	background: var(--bg-panel-6);
	transition: all 0.25s ease-out!important;
	/* Убираем перекрытие карточки, чтобы видно было галочку ДЗ */
    overflow: visible;
}

/* ДОСТУП ОТКРЫТ ПРИ НАВЕДЕНИИ */
/* --------------------------- */

/* Фон карточки при наведении */

body:not(.custom-super-style) .site-content .materials-row .material-opened:hover {
    background: var(--open-bg-hover-panel-6);
}

/* ДОСТУП ЗАКРЫТ ПРИ НАВЕДЕНИИ */
/* --------------------------- */

/* Фон карточки при наведении */

body:not(.custom-super-style) .site-content .materials-row .material-closed:hover {
    background: var(--close-bg-hover-panel-6);
}

/* 3. БЛОК - ССЫЛКА */
/* ---------------- */

body:not(.custom-super-style) .site-content .materials-row .material-item a,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .material-item a {
	flex-flow: row;
    height: auto;
}

/* Чередование Чётных и Нечётных карточек */

body:not(.custom-super-style) .site-content .materials-row .col-md-6:nth-child(2n) .material-item a,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .col-md-12:nth-child(2n) .material-item a {
    flex-flow: var(--reverse-panel-6);
}

/* 4. БЛОК - ОБЛОЖКА */
/* ----------------- */

/* Убираем обложку */

body:not(.custom-super-style) .site-content .materials-row .material-item .flex-wrap .col-thumb,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .material-item .flex-wrap .col-thumb {
	display: none;
}

/* 5. БЛОК - ОПИСАНИЕ */
/* ------------------ */

/* Убираем кнопки при наведении на карточку */

body:not(.custom-super-style) .site-content .materials-row .material-item:hover .content-overlay {
	display: none;
}

body:not(.custom-super-style) .site-content .materials-row .material-item .flex-wrap .col-content,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .material-item .flex-wrap .col-content {
	/* width: auto; */
	width: 100%;
	height: auto;
	border: none;
	border-radius: 0;
	background: none;

	/* выравниваем блок описания по центру родительского блока */
	align-self: center;
}

/* Убираем фон описания при наведении. Вместо него общий фон карточки */

body:not(.custom-super-style) .site-content .materials-row .material-item:hover .flex-wrap .col-content,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .material-item:hover .flex-wrap .col-content {
	background: none;
}

/* Прозрачность блока с описанием при наведении на ОТКРЫТУЮ карточку */

body:not(.custom-super-style) .site-content .materials-row .material-opened:hover .content-wrap {
    opacity: var(--content-opacity-open-hover-panel-6)!important;
}

/* Прозрачность блока с описанием при наведении на ЗАКРЫТУЮ карточку */

body:not(.custom-super-style) .site-content .materials-row .material-closed:hover .content-wrap {
    opacity: var(--content-opacity-closed-hover-panel-6)!important;
}

/* Прозрачность блока с описанием при наведении на ЗАКРЫТУЮ карточку АВТОТРЕНИНГА */

body:not(.custom-super-style) .site-content .materials-row .material-inaccessible:hover .content-wrap {
    opacity: var(--content-opacity-auto-hover-panel-6)!important;
}

/* Отступы блока описания */
/* Убираем нижнюю рамку, которая обрезает торчащие буквы в описании - потому что нет описания */

body:not(.custom-super-style) .site-content .materials-row .material-item .flex-wrap .col-content .content-wrap,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .material-item .flex-wrap .col-content .content-wrap {
    border: none;
	padding: 0px 10px 0px 15px;
}

/* Заголовок материала */

body:not(.custom-super-style) .site-content .materials-row .material-item .content-wrap .title,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .material-item .content-wrap .title {
	color: var(--title-color-panel-6)!important;
	font-weight: var(--title-weight-panel-6);
	font-family: tahoma, arial, helvetica, sans-serif;
	font-size: var(--title-size-panel-6);
}

/* Количество строк в заголовке материала */

body:not(.custom-super-style) .site-content .materials-row .material-item .flex-wrap .content-wrap .title {
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: var(--title-lines-panel-6);
    line-clamp: var(--title-lines-panel-6);
    -webkit-box-orient: vertical;
	/* перенос текста */
    hyphens: auto;
}

/* Скрываем описание */

body:not(.custom-super-style) .site-content .materials-row .material-item .flex-wrap .content-wrap .description {
	display: none;
}

/* 6. НАЛОЖЕНИЕ АВТОТРЕНИНГА */
/* ------------------------- */

/* НЕ ПРОЙДЕННЫЙ УРОК АВТОТРЕНИНГА ПРИ НАВЕДЕНИИ */
/* --------------------------------------------- */

body:not(.custom-super-style) .site-content .materials-row .material-item.material-inaccessible:before {
	border-radius: var(--radius-panel-6);
	/* коррекция положения наложения */
	left: 0px;
    top: 0;
}

/* Фон карточки при наведении */

body:not(.custom-super-style) .site-content .materials-row .material-inaccessible:hover {
    background: var(--auto-bg-hover-panel-6);
}

/* 7. ИНДИКАТОРЫ МАТЕРИАЛА */
/* ----------------------- */

/* ВЕРХНИЕ ИНДИКАТОРЫ */
/* ------------------ */

/* Выравнивание верхних иконок */

body:not(.custom-super-style) .site-content .materials-row .material-item .thumbnail-wrap .icons-top {
	position: unset;
	width: max-content;
	height: max-content;
}

body:not(.custom-super-style) .site-content .materials-row .material-item .thumbnail-wrap .icons-top .icons {
    margin: 0;
    display: flex;
    width: max-content;
    column-gap: 3px;
	align-items: center;
}

/* Скрываем порядковый номер и типы контента - ВРЕМЕННО  */

body:not(.custom-super-style) .site-content .materials-row .material-item .thumbnail-wrap .icons-top .m-icon,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .material-item .thumbnail-wrap .icons-top .m-icon {
	display: none;
}

/* Скрываем ЗАМОК доступности материала */
/* Вместо него НОВЫЙ ЗАМОК доступности */

body:not(.custom-super-style) .site-content .materials-row .material-item .thumbnail-wrap .icons-top .icons .status-icon {
	display: none;
}

/* Добавляем НОВЫЕ ЗАМКИ доступности */
/* --------------------------------- */

/* Общие настройки */

body:not(.custom-super-style) .site-content .materials-row .material-opened a:after,
body:not(.custom-super-style) .site-content .materials-row .material-closed a:after,
body:not(.custom-super-style) .site-content .materials-row .material-inaccessible a:after {
	font-family: "icomoon" !important;
	font-size: 2rem;
	background: var(--lock-icon-bg-panel-6);
	display: flex;
    align-items: center;
	justify-content: center;
    padding: 20px;
	line-height: normal;
	width: 40px;
	height: 40px;
    border-radius: var(--lock-icon-radius-panel-6);
	
	/* выравниваем замок по верхнему краю родительского блока */
	align-self: start;
	margin-right: 5px;
}

/* НОВЫЙ ОТКРЫТЫЙ ЗАМОК */

body:not(.custom-super-style) .site-content .materials-row .material-opened a:after {
	content: "\f09c";
	color: #56bf50;
}

/* НОВЫЙ ЗАКРЫТЫЙ ЗАМОК */

body:not(.custom-super-style) .site-content .materials-row .material-closed a:after,
body:not(.custom-super-style) .site-content .materials-row .material-inaccessible a:after {
	content: "\f023";
	color: #FF4B3E;
}

/* НИЖНИЕ ИНДИКАТОРЫ */
/* ----------------- */

/* Скрываем нижние индикаторы  */

body:not(.custom-super-style) .site-content .materials-row .material-item .thumbnail-wrap .icons-bottom,
body:not(.custom-super-style) .site-content .materials-row.one-in-line .material-item .thumbnail-wrap .icons-bottom {
	display: none;
}

/* НОВЫЕ ГАЛОЧКИ-ИНДИКАТОРЫ ДЗ */
/* --------------------------- */

/* Общие настройки */

body:not(.custom-super-style) .site-content .materials-row .material-inaccessible:after,
body:not(.custom-super-style) .site-content .materials-row .material-item:not(.material-inaccessible):before {
	display: flex;
    align-items: center;
	justify-content: center;
    font-family: "icomoon" !important;
	position: absolute;
	left: -60px;
    top: 10px;
    font-size: 2rem;
    line-height: normal;
    opacity: 1;
    z-index: 5;
    padding: 10px;
	width: 40px;
	height: 40px;
    border-radius: 50%;
	visibility: visible;
}

/* Новая галочка на маленьких экранах */

@media (min-width: 320px) and (max-width: 767px) {
body:not(.custom-super-style) .site-content .materials-row .material-inaccessible:after,
body:not(.custom-super-style) .site-content .materials-row .material-item:not(.material-inaccessible):before {
	left: -20px;
    top: -15px;
	scale: 0.6;
    z-index: 500;
}
}

/* ПУСТАЯ ГАЛОЧКА У НЕНАЧАТОГО ОБЫЧНОГО МАТЕРИАЛА */
/* ПУСТАЯ ГАЛОЧКА У НЕНАЧАТОГО МАТЕРИАЛА АВТОТРЕНИНГА */
/* ПУСТАЯ ГАЛОЧКА У НЕНАЧАТОГО МАТЕРИАЛА АВТОТРЕНИНГА, СЛЕДУЮЩЕГО ЗА ПРОВЕРЯЕМЫМ МАТЕРИАЛОМ */

body:not(.custom-super-style) .site-content .materials-row .material-inaccessible:after,
body:not(.custom-super-style) .site-content .materials-row .material-item.material-opened:not(.material-done):before,
body:not(.custom-super-style) .site-content .materials-row .material-inaccessible:has([class*="mbl-material-checking-holder"]):after {
    content: "\f192";
    color: var(--new-status-not-started-color-panel-6);
    background: var(--new-status-not-started-color-panel-6);
	border: 2px solid var(--new-status-not-started-border-color-panel-6);
}

/* ГАЛОЧКА У ПРОВЕРЯЕМОГО МАТЕРИАЛА АВТОТРЕНИНГА */
/* --------------------------------------------- */

/* Добавляем галочку реально проверяемому материалу автотренинга */

body:not(.custom-super-style) .site-content .materials-row .material-opened:has([class*="status"][class*="checking"]):before {
    content: var(--new-icon-checking-panel-6);
    color: #ffffff;
    background: var(--new-status-checking-color-panel-6);
	border: none;
}

/* ГАЛОЧКА У ПРОЙДЕННОГО МАТЕРИАЛА */
/* ------------------------------- */

body:not(.custom-super-style) .site-content .materials-row .material-done:before {
    content: var(--new-icon-done-panel-6);
    color: #ffffff;
    background: var(--new-status-done-color-panel-6);
}

/* ГАЛОЧКА У ОТКЛОНЁННОГО МАТЕРИАЛА */
/* -------------------------------- */

body:not(.custom-super-style) .site-content .materials-row .material-item:has([class*="not-right"]):before {
    content: var(--new-icon-not-right-panel-6)!important;
    color: #ffffff !important;
    background: var(--new-status-not-right-color-panel-6) !important;
	border: none!important;
}

/* УБИРАЕМ ГАЛОЧКУ У ЗАКРЫТОГО УРОВНЕМ ДОСТУПА МАТЕРИАЛА */
/* Не работает, если включен Автотренинг. У ещё недоступного материала будет пустой кружок */

body:not(.custom-super-style) .site-content .materials-row .material-item.material-closed:before {
	display: none;
}

/* ГАЛОЧКА У МАТЕРИАЛА АВТОТРЕНИНГА С ТАЙМЕРОМ */
/* Такая же как и на плашке с таймером */

body:not(.custom-super-style) .site-content .materials-row .material-item.material-opened:has([class*="mbl-material-countdown-holder"]):before {
    content: var(--new-icon-countdown-panel-6);
	color: #ffffff;
    background: #389de5;
	border: none;
}

/* ПЛАШКИ НА МАТЕРИАЛЕ */
/* ------------------- */

/* Общие настройки для новых плашек «ДЗ проверяется» и «Пересдайте ДЗ» */

body:not(.custom-super-style) .site-content .materials-row .material-item:has([class*="status"][class*="checking"]):after,
body:not(.custom-super-style) .site-content .materials-row .material-item:has([class*="not-right"]):after {
	padding: 16px;
	margin-top: 10px;
	font-size: 1.8rem;
	font-family: tahoma, arial, helvetica, sans-serif;
	display: flex;
	justify-content: center;
	text-align: center;
	border-radius: calc(var(--radius-panel-6) - 10px);
}

/* СТАРАЯ ПЛАШКА «ДЗ ПРОВЕРЯЕТСЯ» */
/* ------------------------------ */

/* Убираем плашку «ДЗ проверяется» у материала, следующего за реально проверяемым материалом */

body:not(.custom-super-style) .site-content .materials-row .material-inaccessible .mbl-material-checking-holder {
    display: none;
}

/* НОВАЯ ПЛАШКА «ДЗ ПРОВЕРЯЕТСЯ» У РЕАЛЬНО ПРОВЕРЯЕМОГО МАТЕРИАЛА*/
/* ------------------------------------------------------------- */

/* Добавляем плашку «ДЗ проверяется» под блоком Ссылка */

body:not(.custom-super-style) .site-content .materials-row .material-item:has([class*="status"][class*="checking"]):after {
	content: var(--holder-checking-text-panel-6);
	color: var(--holder-checking-color-panel-6);
	background: var(--holder-checking-bg-panel-6);
}

/* НОВАЯ ПЛАШКА У ОТКЛОНЁННОГО МАТЕРИАЛА */
/* ------------------------------------- */

/* Добавляем плашку «Пересдайте домашку» под блоком Ссылка при НЕправильном ответе */

body:not(.custom-super-style) .site-content .materials-row .material-item:has([class*="not-right"]):after {
	content: var(--holder-not-right-text-panel-6);
	color: var(--holder-not-right-color-panel-6);
	background: var(--holder-not-right-bg-panel-6);
}

/* ПЛАШКА С ТАЙМЕРОМ НА МАТЕРИАЛЕ */
/* ------------------------------ */

/* Переориентация содержания карточки + плашки с таймером */

body:not(.custom-super-style) .site-content .materials-row .material-item:has([class*="mbl-material-countdown-holder"]) {
	display: flex;
	flex-flow: column-reverse;
	gap: 10px;
}

/* Блок Заголовка и Таймера */

body:not(.custom-super-style) .site-content .materials-row .material-item .mbl-material-countdown-holder {
	background: var(--holder-countdown-bg-panel-6);
	color: var(--holder-countdown-color-panel-6);
	display: flex;
	flex-flow: row;
	height: auto;
	padding: 10px;
	border-radius: calc(var(--radius-panel-6) - 10px);
	margin: 0px 0px 0px 0px;
	width: auto;
	left: 0;
	top: 0;
	position: relative;
	align-items: center;
	justify-content: center;
	gap: 15px;
	font-family: tahoma, arial, helvetica, sans-serif;
	font-size: 1.6rem;
}

@media (min-width: 1400px) {

body:not(.custom-super-style) .site-content .materials-row .material-item .mbl-material-countdown-holder {
	top: 0;
}
}

/* Переориентация Заголовка и Таймера на маленьких экранах */

@media (max-width: 767px) 
	{
body:not(.custom-super-style) .site-content .materials-row .material-item .mbl-material-countdown-holder {
	flex-flow: column;
	gap: 0px;
}

body:not(.custom-super-style) .site-content .materials-row .material-item .mbl-material-countdown-holder .mbl-material-countdown-title {
	padding: 0;
	font-size: 16px;
}

body:not(.custom-super-style) .site-content .materials-row .material-item .mbl-material-countdown-holder .mbl-material-countdown-content{
	margin: 0;
}
	}

/* Блок только Таймера */

body:not(.custom-super-style) .site-content .materials-row .material-item .mbl-material-countdown-holder .mbl-material-countdown-content{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Иконка на плашке с таймером */

body:not(.custom-super-style) .site-content .materials-row .material-item .mbl-material-countdown-holder .fa-hourglass-half::before {
	content: var(--new-icon-countdown-panel-6);
}

/* Скрываем Иконку таймера на маленьких экранах */

@media (max-width: 767px) {
	
body:not(.custom-super-style) .site-content .materials-row .material-item .mbl-material-countdown-holder .fa-hourglass-half {
	display: none;
}
}